- First attempt at implementing #113180, this one also removes automatic (byte) offse...
[platform/upstream/gstreamer.git] / gst / elements / gstfilesrc.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstfilesrc.c:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <gst/gst.h>
24
25 #include "gstfilesrc.h"
26
27 #include <stdio.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31 #include <sys/mman.h>
32 #include <errno.h>
33 #include <string.h>
34
35
36 /**********************************************************************
37  * GStreamer Default File Source
38  * Theory of Operation
39  *
40  * This source uses mmap(2) to efficiently load data from a file.
41  * To do this without seriously polluting the applications' memory
42  * space, it must do so in smaller chunks, say 1-4MB at a time.
43  * Buffers are then subdivided from these mmap'd chunks, to directly
44  * make use of the mmap.
45  *
46  * To handle refcounting so that the mmap can be freed at the appropriate
47  * time, a buffer will be created for each mmap'd region, and all new
48  * buffers will be sub-buffers of this top-level buffer.  As they are 
49  * freed, the refcount goes down on the mmap'd buffer and its free()
50  * function is called, which will call munmap(2) on itself.
51  *
52  * If a buffer happens to cross the boundaries of an mmap'd region, we
53  * have to decide whether it's more efficient to copy the data into a
54  * new buffer, or mmap() just that buffer.  There will have to be a
55  * breakpoint size to determine which will be done.  The mmap() size
56  * has a lot to do with this as well, because you end up in double-
57  * jeopardy: the larger the outgoing buffer, the more data to copy when
58  * it overlaps, *and* the more frequently you'll have buffers that *do*
59  * overlap.
60  *
61  * Seeking is another tricky aspect to do efficiently.  The initial
62  * implementation of this source won't make use of these features, however.
63  * The issue is that if an application seeks backwards in a file, *and*
64  * that region of the file is covered by an mmap that hasn't been fully
65  * deallocated, we really should re-use it.  But keeping track of these
66  * regions is tricky because we have to lock the structure that holds
67  * them.  We need to settle on a locking primitive (GMutex seems to be
68  * a really good option...), then we can do that.
69  */
70
71
72 GstElementDetails gst_filesrc_details = {
73   "File Source",
74   "Source/File",
75   "LGPL",
76   "Read from arbitrary point in a file",
77   VERSION,
78   "Erik Walthinsen <omega@cse.ogi.edu>",
79   "(C) 1999",
80 };
81
82 #define DEFAULT_BLOCKSIZE       4*1024
83 #define DEFAULT_MMAPSIZE        4*1024*1024
84
85 #ifdef G_HAVE_ISO_VARARGS
86
87 /* #define fs_print(...) g_print(__VA_ARGS__)  */
88 #define fs_print(...)
89
90 #elif defined(G_HAVE_GNUC_VARARGS)
91
92 /* #define fs_print(format,args...) g_print(format, ## args)  */
93 #define fs_print(format,args...)
94
95 #endif
96
97 /* FileSrc signals and args */
98 enum {
99   /* FILL ME */
100   LAST_SIGNAL
101 };
102
103 enum {
104   ARG_0,
105   ARG_LOCATION,
106   ARG_FD,
107   ARG_BLOCKSIZE,
108   ARG_MMAPSIZE,
109   ARG_TOUCH,
110 };
111
112 GST_PAD_EVENT_MASK_FUNCTION (gst_filesrc_get_event_mask,
113   { GST_EVENT_SEEK, GST_SEEK_METHOD_CUR | 
114                     GST_SEEK_METHOD_SET | 
115                     GST_SEEK_METHOD_END | 
116                     GST_SEEK_FLAG_FLUSH },
117   { GST_EVENT_FLUSH, 0 },
118   { GST_EVENT_SIZE, 0 }
119 )
120
121 GST_PAD_QUERY_TYPE_FUNCTION (gst_filesrc_get_query_types,
122   GST_QUERY_TOTAL,
123   GST_QUERY_POSITION
124 )
125
126 GST_PAD_FORMATS_FUNCTION (gst_filesrc_get_formats,
127   GST_FORMAT_BYTES
128 )
129
130 static void             gst_filesrc_class_init          (GstFileSrcClass *klass);
131 static void             gst_filesrc_init                (GstFileSrc *filesrc);
132 static void             gst_filesrc_dispose             (GObject *object);
133
134 static void             gst_filesrc_set_property        (GObject *object, guint prop_id, 
135                                                          const GValue *value, GParamSpec *pspec);
136 static void             gst_filesrc_get_property        (GObject *object, guint prop_id, 
137                                                          GValue *value, GParamSpec *pspec);
138
139 static GstBuffer *      gst_filesrc_get                 (GstPad *pad);
140 static gboolean         gst_filesrc_srcpad_event        (GstPad *pad, GstEvent *event);
141 static gboolean         gst_filesrc_srcpad_query        (GstPad *pad, GstQueryType type,
142                                                          GstFormat *format, gint64 *value);
143
144 static GstElementStateReturn    gst_filesrc_change_state        (GstElement *element);
145
146
147 static GstElementClass *parent_class = NULL;
148 /*static guint gst_filesrc_signals[LAST_SIGNAL] = { 0 };*/
149
150 GType
151 gst_filesrc_get_type(void)
152 {
153   static GType filesrc_type = 0;
154
155   if (!filesrc_type) {
156     static const GTypeInfo filesrc_info = {
157       sizeof(GstFileSrcClass),      NULL,
158       NULL,
159       (GClassInitFunc)gst_filesrc_class_init,
160       NULL,
161       NULL,
162       sizeof(GstFileSrc),
163       0,
164       (GInstanceInitFunc)gst_filesrc_init,
165     };
166     filesrc_type = g_type_register_static (GST_TYPE_ELEMENT, "GstFileSrc", &filesrc_info, 0);
167   }
168   return filesrc_type;
169 }
170
171 static void
172 gst_filesrc_class_init (GstFileSrcClass *klass)
173 {
174   GObjectClass *gobject_class;
175   GstElementClass *gstelement_class;
176
177   gobject_class = (GObjectClass*)klass;
178   gstelement_class = (GstElementClass*)klass;
179
180   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
181
182   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FD,
183     g_param_spec_int ("fd", "File-descriptor", "File-descriptor for the file being mmap()d",
184                       0, G_MAXINT, 0, G_PARAM_READABLE));
185   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LOCATION,
186     g_param_spec_string ("location", "File Location", "Location of the file to read",
187                          NULL, G_PARAM_READWRITE));
188   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BLOCKSIZE,
189     g_param_spec_ulong ("blocksize", "Block size", "Size in bytes to read per buffer",
190                         1, G_MAXULONG, DEFAULT_BLOCKSIZE, G_PARAM_READWRITE));
191   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MMAPSIZE,
192     g_param_spec_ulong ("mmapsize", "mmap() Block Size",
193                         "Size in bytes of mmap()d regions",
194                         0, G_MAXULONG, DEFAULT_MMAPSIZE, G_PARAM_READWRITE));
195   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TOUCH,
196     g_param_spec_boolean ("touch", "Touch read data",
197                           "Touch data to force disk read", 
198                           FALSE, G_PARAM_READWRITE));
199
200   gobject_class->dispose        = gst_filesrc_dispose;
201   gobject_class->set_property   = gst_filesrc_set_property;
202   gobject_class->get_property   = gst_filesrc_get_property;
203
204   gstelement_class->change_state = gst_filesrc_change_state;
205 }
206
207 static gint
208 gst_filesrc_bufcmp (gconstpointer a, gconstpointer b)
209 {
210 /*  GstBuffer *bufa = (GstBuffer *)a, *bufb = (GstBuffer *)b;*/
211
212   /* sort first by offset, then in reverse by size */
213   if (GST_BUFFER_OFFSET(a) < GST_BUFFER_OFFSET(b)) return -1;
214   else if (GST_BUFFER_OFFSET(a) > GST_BUFFER_OFFSET(b)) return 1;
215   else if (GST_BUFFER_SIZE(a) > GST_BUFFER_SIZE(b)) return -1;
216   else if (GST_BUFFER_SIZE(a) < GST_BUFFER_SIZE(b)) return 1;
217   else return 0;
218 }
219
220 static void
221 gst_filesrc_init (GstFileSrc *src)
222 {
223   src->srcpad = gst_pad_new ("src", GST_PAD_SRC);
224   gst_pad_set_get_function (src->srcpad, gst_filesrc_get);
225   gst_pad_set_event_function (src->srcpad, gst_filesrc_srcpad_event);
226   gst_pad_set_event_mask_function (src->srcpad, gst_filesrc_get_event_mask);
227   gst_pad_set_query_function (src->srcpad, gst_filesrc_srcpad_query);
228   gst_pad_set_query_type_function (src->srcpad, gst_filesrc_get_query_types);
229   gst_pad_set_formats_function (src->srcpad, gst_filesrc_get_formats);
230   gst_element_add_pad (GST_ELEMENT (src), src->srcpad);
231
232   src->pagesize = getpagesize();
233
234   src->filename = NULL;
235   src->fd = 0;
236   src->filelen = 0;
237
238   src->curoffset = 0;
239   src->block_size = DEFAULT_BLOCKSIZE;
240   src->touch = FALSE;
241
242   src->mapbuf = NULL;
243   src->mapsize = DEFAULT_MMAPSIZE;              /* default is 4MB */
244
245   src->map_regions = g_tree_new (gst_filesrc_bufcmp);
246   src->map_regions_lock = g_mutex_new();
247
248   src->seek_happened = FALSE;
249 }
250
251 static void
252 gst_filesrc_dispose (GObject *object)
253 {
254   GstFileSrc *src;
255
256   src = GST_FILESRC (object);
257
258   G_OBJECT_CLASS (parent_class)->dispose (object);
259
260   g_tree_destroy (src->map_regions);
261   g_mutex_free (src->map_regions_lock);
262   if (src->filename)
263     g_free (src->filename);
264 }
265
266
267 static void
268 gst_filesrc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
269 {
270   GstFileSrc *src;
271
272   /* it's not null if we got it, but it might not be ours */
273   g_return_if_fail (GST_IS_FILESRC (object));
274
275   src = GST_FILESRC (object);
276
277   switch (prop_id) {
278     case ARG_LOCATION:
279       /* the element must be stopped in order to do this */
280       g_return_if_fail (GST_STATE (src) < GST_STATE_PLAYING);
281
282       if (src->filename) g_free (src->filename);
283       /* clear the filename if we get a NULL (is that possible?) */
284       if (g_value_get_string (value) == NULL) {
285         gst_element_set_state (GST_ELEMENT (object), GST_STATE_NULL);
286         src->filename = NULL;
287       /* otherwise set the new filename */
288       } else {
289         src->filename = g_strdup (g_value_get_string (value));
290       }
291       g_object_notify (G_OBJECT (src), "location");
292       break;
293     case ARG_BLOCKSIZE:
294       src->block_size = g_value_get_ulong (value);
295       g_object_notify (G_OBJECT (src), "blocksize");
296       break;
297     case ARG_MMAPSIZE:
298       if ((src->mapsize % src->pagesize) == 0) {
299         src->mapsize = g_value_get_ulong (value);
300         g_object_notify (G_OBJECT (src), "mmapsize");
301       } else {
302         GST_INFO (0, "invalid mapsize, must a multiple of pagesize, which is %d", 
303                   src->pagesize);
304       }
305       break;
306     case ARG_TOUCH:
307       src->touch = g_value_get_boolean (value);
308       g_object_notify (G_OBJECT (src), "touch");
309       break;
310     default:
311       break;
312   }
313 }
314
315 static void
316 gst_filesrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
317 {
318   GstFileSrc *src;
319
320   /* it's not null if we got it, but it might not be ours */
321   g_return_if_fail (GST_IS_FILESRC (object));
322
323   src = GST_FILESRC (object);
324
325   switch (prop_id) {
326     case ARG_LOCATION:
327       g_value_set_string (value, src->filename);
328       break;
329     case ARG_FD:
330       g_value_set_int (value, src->fd);
331       break;
332     case ARG_BLOCKSIZE:
333       g_value_set_ulong (value, src->block_size);
334       break;
335     case ARG_MMAPSIZE:
336       g_value_set_ulong (value, src->mapsize);
337       break;
338     case ARG_TOUCH:
339       g_value_set_boolean (value, src->touch);
340       break;
341     default:
342       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
343       break;
344   }
345 }
346
347 static void
348 gst_filesrc_free_parent_mmap (GstBuffer *buf)
349 {
350   GstFileSrc *src = GST_FILESRC (GST_BUFFER_POOL_PRIVATE (buf));
351
352   fs_print ("freeing mmap()d buffer at %d+%d\n", 
353             GST_BUFFER_OFFSET (buf), GST_BUFFER_SIZE (buf));
354
355   /* remove the buffer from the list of available mmap'd regions */
356   g_mutex_lock (src->map_regions_lock);
357   g_tree_remove (src->map_regions, buf);
358   /* check to see if the tree is empty */
359   if (g_tree_nnodes (src->map_regions) == 0) {
360     /* we have to free the bufferpool we don't have yet */
361   }
362   g_mutex_unlock (src->map_regions_lock);
363
364 #ifdef MADV_DONTNEED
365   /* madvise to tell the kernel what to do with it */
366   madvise (GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf), MADV_DONTNEED);
367 #endif
368   /* now unmap the memory */
369   munmap (GST_BUFFER_DATA (buf), GST_BUFFER_MAXSIZE (buf));
370   /* cast to unsigned long, since there's no gportable way to print
371    * guint64 as hex */
372   GST_DEBUG (0, "unmapped region %08lx+%08lx at %p", 
373                   (unsigned long) GST_BUFFER_OFFSET (buf),
374                   (unsigned long) GST_BUFFER_MAXSIZE (buf), 
375                   GST_BUFFER_DATA (buf));
376
377   GST_BUFFER_DATA (buf) = NULL;
378
379   gst_buffer_default_free (buf);
380 }
381
382 static GstBuffer *
383 gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
384 {
385   GstBuffer *buf;
386   gint retval;
387   void *mmapregion;
388
389   g_return_val_if_fail (offset >= 0, NULL);
390
391   fs_print  ("mapping region %08llx+%08x from file into memory\n",offset,size);
392   mmapregion = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset);
393
394   if (mmapregion == NULL) {
395     gst_element_error (GST_ELEMENT (src), "couldn't map file");
396     return NULL;
397   }
398   else if (mmapregion == MAP_FAILED) {
399     gst_element_error (GST_ELEMENT (src), "mmap (0x%x, %d, 0x%llx) : %s",
400              size, src->fd, offset, strerror (errno));
401     return NULL;
402   }
403   GST_DEBUG (0, "mapped region %08lx+%08lx from file into memory at %p", 
404                   (unsigned long)offset, (unsigned long)size, mmapregion);
405
406   /* time to allocate a new mapbuf */
407   buf = gst_buffer_new ();
408   /* mmap() the data into this new buffer */
409   GST_BUFFER_DATA (buf) = mmapregion;
410
411 #ifdef MADV_SEQUENTIAL
412   /* madvise to tell the kernel what to do with it */
413   retval = madvise (GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf), MADV_SEQUENTIAL);
414 #endif
415   /* fill in the rest of the fields */
416   GST_BUFFER_FLAG_SET (buf, GST_BUFFER_READONLY);
417   GST_BUFFER_FLAG_SET (buf, GST_BUFFER_ORIGINAL);
418   GST_BUFFER_SIZE (buf) = size;
419   GST_BUFFER_MAXSIZE (buf) = size;
420   GST_BUFFER_OFFSET (buf) = offset;
421   GST_BUFFER_TIMESTAMP (buf) = GST_CLOCK_TIME_NONE;
422   GST_BUFFER_POOL_PRIVATE (buf) = src;
423   GST_BUFFER_FREE_FUNC (buf) = (GstDataFreeFunction) gst_filesrc_free_parent_mmap;
424
425   g_mutex_lock (src->map_regions_lock);
426   g_tree_insert (src->map_regions,buf,buf);
427   g_mutex_unlock (src->map_regions_lock);
428
429   return buf;
430 }
431
432 static GstBuffer *
433 gst_filesrc_map_small_region (GstFileSrc *src, off_t offset, size_t size)
434 {
435   size_t mapsize;
436   off_t mod, mapbase;
437   GstBuffer *map;
438
439 /*  printf("attempting to map a small buffer at %d+%d\n",offset,size); */
440
441   /* if the offset starts at a non-page boundary, we have to special case */
442   if ((mod = offset % src->pagesize)) {
443     GstBuffer *ret;
444
445     mapbase = offset - mod;
446     mapsize = ((size + mod + src->pagesize - 1) / src->pagesize) * src->pagesize;
447 /*    printf("not on page boundaries, resizing map to %d+%d\n",mapbase,mapsize);*/
448     map = gst_filesrc_map_region(src, mapbase, mapsize);
449     if (map == NULL)
450       return NULL;
451
452     ret = gst_buffer_create_sub (map, offset - mapbase, size);
453     GST_BUFFER_OFFSET (ret) = GST_BUFFER_OFFSET (map) + offset - mapbase;
454
455     gst_buffer_unref (map);
456
457     return ret;
458   }
459
460   return gst_filesrc_map_region(src,offset,size);
461 }
462
463 typedef struct {
464   off_t offset;
465   off_t size;
466 } GstFileSrcRegion;
467
468 /* This allows us to search for a potential mmap region. */
469 static gint
470 gst_filesrc_search_region_match (gpointer a, gpointer b)
471 {
472   GstFileSrcRegion *r = (GstFileSrcRegion *)b;
473
474   /* trying to walk b down the tree, current node is a */
475   if (r->offset < GST_BUFFER_OFFSET(a)) return -1;
476   else if (r->offset >= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 1;
477   else if ((r->offset + r->size) <= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 0;
478
479   return -2;
480 }
481
482 /**
483  * gst_filesrc_get:
484  * @pad: #GstPad to push a buffer from
485  *
486  * Push a new buffer from the filesrc at the current offset.
487  */
488 static GstBuffer *
489 gst_filesrc_get (GstPad *pad)
490 {
491   GstFileSrc *src;
492   GstBuffer *buf = NULL, *map;
493   size_t readsize, mapsize;
494   off_t readend,mapstart,mapend;
495   GstFileSrcRegion region;
496   int i;
497
498   g_return_val_if_fail (pad != NULL, NULL);
499   src = GST_FILESRC (gst_pad_get_parent (pad));
500   g_return_val_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN), NULL);
501
502   /* check for seek */
503   if (src->seek_happened) {
504     GstEvent *event;
505
506     src->seek_happened = FALSE;
507     GST_DEBUG (GST_CAT_EVENT, "filesrc sending discont");
508     event = gst_event_new_discontinuous (FALSE, GST_FORMAT_BYTES, src->curoffset, NULL);
509     src->need_flush = FALSE;
510     return GST_BUFFER (event);
511   }
512   /* check for flush */
513   if (src->need_flush) {
514     src->need_flush = FALSE;
515     GST_DEBUG (GST_CAT_EVENT, "filesrc sending flush");
516     return GST_BUFFER (gst_event_new_flush ());
517   }
518
519   /* check for EOF */
520   if (src->curoffset == src->filelen) {
521     GST_DEBUG (0, "filesrc eos %" G_GINT64_FORMAT
522                   " %" G_GINT64_FORMAT, src->curoffset, src->filelen);
523     gst_element_set_eos (GST_ELEMENT (src));
524     return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
525   }
526
527   /* calculate end pointers so we don't have to do so repeatedly later */
528   readsize = src->block_size;
529   readend = src->curoffset + src->block_size;           /* note this is the byte *after* the read */
530   mapstart = GST_BUFFER_OFFSET (src->mapbuf);
531   mapsize = GST_BUFFER_SIZE (src->mapbuf);
532   mapend = mapstart + mapsize;                  /* note this is the byte *after* the map */
533
534   /* check to see if we're going to overflow the end of the file */
535   if (readend > src->filelen) {
536     readsize = src->filelen - src->curoffset;
537     readend = src->curoffset + readsize;
538   }
539
540   GST_DEBUG (0, "attempting to read %08lx, %08lx, %08lx, %08lx", 
541                   (unsigned long)readsize, (unsigned long)readend,
542                   (unsigned long)mapstart, (unsigned long)mapend);
543
544   /* if the start is past the mapstart */
545   if (src->curoffset >= mapstart) {
546     /* if the end is before the mapend, the buffer is in current mmap region... */
547     /* ('cause by definition if readend is in the buffer, so's readstart) */
548     if (readend <= mapend) {
549       fs_print ("read buf %llu+%d lives in current mapbuf %lld+%d, creating subbuffer of mapbuf\n",
550              src->curoffset, readsize, mapstart, mapsize);
551       buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - mapstart,
552                                    readsize);
553       GST_BUFFER_OFFSET (buf) = src->curoffset;
554
555     /* if the start actually is within the current mmap region, map an overlap buffer */
556     } else if (src->curoffset < mapend) {
557       fs_print ("read buf %llu+%d starts in mapbuf %d+%d but ends outside, creating new mmap\n",
558              src->curoffset, readsize, mapstart, mapsize);
559       buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
560       if (buf == NULL)
561         return NULL;
562     }
563
564     /* the only other option is that buffer is totally outside, which means we search for it */
565
566   /* now we can assume that the start is *before* the current mmap region */
567   /* if the readend is past mapstart, we have two options */
568   } else if (readend >= mapstart) {
569     /* either the read buffer overlaps the start of the mmap region */
570     /* or the read buffer fully contains the current mmap region    */
571     /* either way, it's really not relevant, we just create a new region anyway*/
572     fs_print ("read buf %llu+%d starts before mapbuf %d+%d, but overlaps it\n",
573              src->curoffset,readsize, mapstart, mapsize);
574     buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
575     if (buf == NULL)
576       return NULL;
577   }
578
579   /* then deal with the case where the read buffer is totally outside */
580   if (buf == NULL) {
581     /* first check to see if there's a map that covers the right region already */
582     fs_print ("searching for mapbuf to cover %llu+%d\n",src->curoffset,readsize);
583     region.offset = src->curoffset;
584     region.size = readsize;
585     map = g_tree_search (src->map_regions,
586                          (GCompareFunc) gst_filesrc_search_region_match,
587                          (gpointer)&region);
588
589     /* if we found an exact match, subbuffer it */
590     if (map != NULL) {
591       fs_print ("found mapbuf at %d+%d, creating subbuffer\n",GST_BUFFER_OFFSET(map),GST_BUFFER_SIZE(map));
592       buf = gst_buffer_create_sub (map, src->curoffset - GST_BUFFER_OFFSET(map), readsize);
593       GST_BUFFER_OFFSET (buf) = src->curoffset;
594
595     /* otherwise we need to create something out of thin air */
596     } else {
597       /* if the read buffer crosses a mmap region boundary, create a one-off region */
598       if ((src->curoffset / src->mapsize) != (readend / src->mapsize)) {
599         fs_print ("read buf %llu+%d crosses a %d-byte boundary, creating a one-off\n",
600                src->curoffset,readsize,src->mapsize);
601         buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
602         if (buf == NULL)
603           return NULL;
604
605       /* otherwise we will create a new mmap region and set it to the default */
606       } else {
607         size_t mapsize;
608
609         off_t nextmap = src->curoffset - (src->curoffset % src->mapsize);
610         fs_print ("read buf %llu+%d in new mapbuf at %llu+%d, mapping and subbuffering\n",
611                src->curoffset, readsize, nextmap, src->mapsize);
612         /* first, we're done with the old mapbuf */
613         gst_buffer_unref(src->mapbuf);
614         mapsize = src->mapsize;
615
616         /* double the mapsize as long as the readsize is smaller */
617         while (readsize - (src->curoffset - nextmap) > mapsize) {
618           fs_print ("readsize smaller then mapsize %08x %d\n", readsize, mapsize);
619           mapsize <<=1;
620         }
621         /* create a new one */
622         src->mapbuf = gst_filesrc_map_region (src, nextmap, mapsize);
623         if (src->mapbuf == NULL)
624           return NULL;
625
626         /* subbuffer it */
627         buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - nextmap, readsize);
628         GST_BUFFER_OFFSET (buf) = mapstart + src->curoffset - nextmap;
629       }
630     }
631   }
632
633   /* if we need to touch the buffer (to bring it into memory), do so */
634   if (src->touch) {
635     volatile guchar *p = GST_BUFFER_DATA (buf), c;
636
637     for (i=0; i < GST_BUFFER_SIZE (buf); i += src->pagesize)
638       c = p[i];
639   }
640
641   /* we're done, return the buffer */
642   src->curoffset += GST_BUFFER_SIZE(buf);
643   return buf;
644 }
645
646 /* open the file and mmap it, necessary to go to READY state */
647 static gboolean 
648 gst_filesrc_open_file (GstFileSrc *src)
649 {
650   g_return_val_if_fail (!GST_FLAG_IS_SET (src ,GST_FILESRC_OPEN), FALSE);
651
652   GST_DEBUG(0, "opening file %s",src->filename);
653
654   /* open the file */
655   src->fd = open (src->filename, O_RDONLY);
656   if (src->fd < 0) {
657     gst_element_error (GST_ELEMENT (src), "opening file \"%s\" (%s)", 
658                        src->filename, strerror (errno), NULL);
659     return FALSE;
660   } else {
661     /* check if it is a regular file, otherwise bail out */
662     struct stat stat_results;
663
664     fstat(src->fd, &stat_results);
665
666     if (!S_ISREG(stat_results.st_mode)) {
667       gst_element_error (GST_ELEMENT (src), "opening file \"%s\" failed. it isn't a regular file", 
668                                         src->filename, NULL);
669       close(src->fd);
670       return FALSE;
671     }
672                 
673     /* find the file length */
674     src->filelen = lseek (src->fd, 0, SEEK_END);
675     lseek (src->fd, 0, SEEK_SET);
676
677     /* allocate the first mmap'd region */
678     src->mapbuf = gst_filesrc_map_region (src, 0, src->mapsize);
679     if (src->mapbuf == NULL)
680       return FALSE;
681
682     src->curoffset = 0;
683
684     GST_FLAG_SET (src, GST_FILESRC_OPEN);
685   }
686   return TRUE;
687 }
688
689 /* unmap and close the file */
690 static void
691 gst_filesrc_close_file (GstFileSrc *src)
692 {
693   g_return_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN));
694
695   /* close the file */
696   close (src->fd);
697
698   /* zero out a lot of our state */
699   src->fd = 0;
700   src->filelen = 0;
701   src->curoffset = 0;
702
703   if (src->mapbuf) {
704     gst_buffer_unref (src->mapbuf);
705     src->mapbuf = NULL;
706   }
707
708   GST_FLAG_UNSET (src, GST_FILESRC_OPEN);
709 }
710
711
712 static GstElementStateReturn
713 gst_filesrc_change_state (GstElement *element)
714 {
715   GstFileSrc *src = GST_FILESRC(element);
716
717   switch (GST_STATE_TRANSITION (element)) {
718     case GST_STATE_NULL_TO_READY:
719       break;
720     case GST_STATE_READY_TO_NULL:
721       break;
722     case GST_STATE_READY_TO_PAUSED:
723       if (!GST_FLAG_IS_SET (element, GST_FILESRC_OPEN)) {
724         if (!gst_filesrc_open_file (GST_FILESRC (element)))
725           return GST_STATE_FAILURE;
726       }
727       break;
728     case GST_STATE_PAUSED_TO_READY:
729       if (GST_FLAG_IS_SET (element, GST_FILESRC_OPEN))
730         gst_filesrc_close_file (GST_FILESRC (element));
731       src->seek_happened = TRUE;
732       break;
733     default:
734       break;
735   }
736
737   if (GST_ELEMENT_CLASS (parent_class)->change_state)
738     return GST_ELEMENT_CLASS (parent_class)->change_state (element);
739
740   return GST_STATE_SUCCESS;
741 }
742
743 static gboolean
744 gst_filesrc_srcpad_query (GstPad *pad, GstQueryType type,
745                           GstFormat *format, gint64 *value)
746 {
747   GstFileSrc *src = GST_FILESRC (GST_PAD_PARENT (pad));
748
749   switch (type) {
750     case GST_QUERY_TOTAL:
751       if (*format != GST_FORMAT_BYTES) {
752         return FALSE;
753       }
754       *value = src->filelen;
755       break;
756     case GST_QUERY_POSITION:
757       switch (*format) {
758         case GST_FORMAT_BYTES:
759           *value = src->curoffset;
760           break;
761         case GST_FORMAT_PERCENT:
762           if (src->filelen == 0)
763             return FALSE;
764           *value = src->curoffset * GST_FORMAT_PERCENT_MAX / src->filelen;
765           break;
766         default:
767           return FALSE;
768       }
769       break;
770     default:
771       return FALSE;
772       break;
773   }
774   return TRUE;
775 }
776
777 static gboolean
778 gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event)
779 {
780   GstFileSrc *src = GST_FILESRC (GST_PAD_PARENT (pad));
781
782   GST_DEBUG(0, "event %d", GST_EVENT_TYPE (event));
783
784   switch (GST_EVENT_TYPE (event)) {
785     case GST_EVENT_SEEK:
786     {
787       gint64 offset;
788
789       if (GST_EVENT_SEEK_FORMAT (event) != GST_FORMAT_BYTES) {
790         goto error;
791       }
792
793       offset = GST_EVENT_SEEK_OFFSET (event);
794
795       switch (GST_EVENT_SEEK_METHOD (event)) {
796         case GST_SEEK_METHOD_SET:
797           if (offset > src->filelen) 
798             goto error;
799           src->curoffset = offset;
800           GST_DEBUG(0, "seek set pending to %" G_GINT64_FORMAT, src->curoffset);
801           break;
802         case GST_SEEK_METHOD_CUR:
803           if (offset + src->curoffset > src->filelen) 
804             goto error;
805           src->curoffset += offset;
806           GST_DEBUG(0, "seek cur pending to %" G_GINT64_FORMAT, src->curoffset);
807           break;
808         case GST_SEEK_METHOD_END:
809           if (ABS (offset) > src->filelen) 
810             goto error;
811           src->curoffset = src->filelen - ABS (offset);
812           GST_DEBUG(0, "seek end pending to %" G_GINT64_FORMAT, src->curoffset);
813           break;
814         default:
815           goto error;
816           break;
817       }
818       src->seek_happened = TRUE;
819       src->need_flush = GST_EVENT_SEEK_FLAGS(event) & GST_SEEK_FLAG_FLUSH;
820       break;
821     }
822     case GST_EVENT_SIZE:
823       if (GST_EVENT_SIZE_FORMAT (event) != GST_FORMAT_BYTES) {
824         goto error;
825       }
826       src->block_size = GST_EVENT_SIZE_VALUE (event);
827       g_object_notify (G_OBJECT (src), "blocksize");  
828       break;
829     case GST_EVENT_FLUSH:
830       src->need_flush = TRUE;
831       break;
832     default:
833       goto error;
834       break;
835   }
836   gst_event_unref (event);
837   return TRUE;
838
839 error:
840   gst_event_unref (event);
841   return FALSE;
842 }