Added pad_query with percent format on filesrc and some constants
[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_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_PAD_QUERY_TOTAL,
123   GST_PAD_QUERY_POSITION
124 )
125
126 GST_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, GstPadQueryType 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   GST_DEBUG (0, "unmapped region %08llx+%08llx at %p", 
371                   GST_BUFFER_OFFSET (buf), GST_BUFFER_MAXSIZE (buf), 
372                   GST_BUFFER_DATA (buf));
373
374   GST_BUFFER_DATA (buf) = NULL;
375
376   gst_buffer_default_free (buf);
377 }
378
379 static GstBuffer *
380 gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
381 {
382   GstBuffer *buf;
383   gint retval;
384   void *mmapregion;
385
386   g_return_val_if_fail (offset >= 0, NULL);
387
388   fs_print  ("mapping region %08llx+%08x from file into memory\n",offset,size);
389   mmapregion = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset);
390
391   if (mmapregion == NULL) {
392     gst_element_error (GST_ELEMENT (src), "couldn't map file");
393     return NULL;
394   }
395   else if (mmapregion == MAP_FAILED) {
396     gst_element_error (GST_ELEMENT (src), "mmap (0x%x, %d, 0x%llx) : %s",
397              size, src->fd, offset, strerror (errno));
398     return NULL;
399   }
400   GST_DEBUG (0, "mapped region %08llx+%08x from file into memory at %p", 
401                   offset, size, mmapregion);
402
403   /* time to allocate a new mapbuf */
404   buf = gst_buffer_new ();
405   /* mmap() the data into this new buffer */
406   GST_BUFFER_DATA (buf) = mmapregion;
407
408 #ifdef MADV_SEQUENTIAL
409   /* madvise to tell the kernel what to do with it */
410   retval = madvise (GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf), MADV_SEQUENTIAL);
411 #endif
412   /* fill in the rest of the fields */
413   GST_BUFFER_FLAG_SET (buf, GST_BUFFER_READONLY);
414   GST_BUFFER_FLAG_SET (buf, GST_BUFFER_ORIGINAL);
415   GST_BUFFER_SIZE (buf) = size;
416   GST_BUFFER_MAXSIZE (buf) = size;
417   GST_BUFFER_OFFSET (buf) = offset;
418   GST_BUFFER_TIMESTAMP (buf) = GST_CLOCK_TIME_NONE;
419   GST_BUFFER_POOL_PRIVATE (buf) = src;
420   GST_BUFFER_FREE_FUNC (buf) = (GstDataFreeFunction) gst_filesrc_free_parent_mmap;
421
422   g_mutex_lock (src->map_regions_lock);
423   g_tree_insert (src->map_regions,buf,buf);
424   g_mutex_unlock (src->map_regions_lock);
425
426   return buf;
427 }
428
429 static GstBuffer *
430 gst_filesrc_map_small_region (GstFileSrc *src, off_t offset, size_t size)
431 {
432   size_t mapsize;
433   off_t mod, mapbase;
434   GstBuffer *map;
435
436 /*  printf("attempting to map a small buffer at %d+%d\n",offset,size); */
437
438   /* if the offset starts at a non-page boundary, we have to special case */
439   if ((mod = offset % src->pagesize)) {
440     GstBuffer *ret;
441
442     mapbase = offset - mod;
443     mapsize = ((size + mod + src->pagesize - 1) / src->pagesize) * src->pagesize;
444 /*    printf("not on page boundaries, resizing map to %d+%d\n",mapbase,mapsize);*/
445     map = gst_filesrc_map_region(src, mapbase, mapsize);
446     if (map == NULL)
447       return NULL;
448
449     ret = gst_buffer_create_sub (map, offset - mapbase, size);
450
451     gst_buffer_unref (map);
452
453     return ret;
454   }
455
456   return gst_filesrc_map_region(src,offset,size);
457 }
458
459 typedef struct {
460   off_t offset;
461   off_t size;
462 } GstFileSrcRegion;
463
464 /* This allows us to search for a potential mmap region. */
465 static gint
466 gst_filesrc_search_region_match (gpointer a, gpointer b)
467 {
468   GstFileSrcRegion *r = (GstFileSrcRegion *)b;
469
470   /* trying to walk b down the tree, current node is a */
471   if (r->offset < GST_BUFFER_OFFSET(a)) return -1;
472   else if (r->offset >= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 1;
473   else if ((r->offset + r->size) <= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 0;
474
475   return -2;
476 }
477
478 /**
479  * gst_filesrc_get:
480  * @pad: #GstPad to push a buffer from
481  *
482  * Push a new buffer from the filesrc at the current offset.
483  */
484 static GstBuffer *
485 gst_filesrc_get (GstPad *pad)
486 {
487   GstFileSrc *src;
488   GstBuffer *buf = NULL, *map;
489   size_t readsize;
490   off_t readend,mapstart,mapend;
491   GstFileSrcRegion region;
492   int i;
493
494   g_return_val_if_fail (pad != NULL, NULL);
495   src = GST_FILESRC (gst_pad_get_parent (pad));
496   g_return_val_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN), NULL);
497
498   /* check for seek */
499   if (src->seek_happened) {
500     GstEvent *event;
501
502     src->seek_happened = FALSE;
503     GST_DEBUG (GST_CAT_EVENT, "filesrc sending discont");
504     event = gst_event_new_discontinuous (FALSE, GST_FORMAT_BYTES, src->curoffset, NULL);
505     GST_EVENT_DISCONT_NEW_MEDIA (event) = FALSE;
506     src->need_flush = FALSE;
507     return GST_BUFFER (event);
508   }
509   /* check for flush */
510   if (src->need_flush) {
511     src->need_flush = FALSE;
512     GST_DEBUG (GST_CAT_EVENT, "filesrc sending flush");
513     return GST_BUFFER (gst_event_new_flush ());
514   }
515
516   /* check for EOF */
517   if (src->curoffset == src->filelen) {
518     GST_DEBUG (0, "filesrc eos %lld %lld", src->curoffset, src->filelen);
519     gst_element_set_eos (GST_ELEMENT (src));
520     return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
521   }
522
523   /* calculate end pointers so we don't have to do so repeatedly later */
524   readsize = src->block_size;
525   readend = src->curoffset + src->block_size;           /* note this is the byte *after* the read */
526   mapstart = GST_BUFFER_OFFSET(src->mapbuf);
527   mapend = mapstart + GST_BUFFER_SIZE(src->mapbuf);     /* note this is the byte *after* the map */
528
529   /* check to see if we're going to overflow the end of the file */
530   if (readend > src->filelen) {
531     readsize = src->filelen - src->curoffset;
532     readend = src->curoffset + readsize;
533   }
534
535   GST_DEBUG (0, "attempting to read %08x, %08llx, %08llx, %08llx", 
536                   readsize, readend, mapstart, mapend);
537
538   /* if the start is past the mapstart */
539   if (src->curoffset >= mapstart) {
540     /* if the end is before the mapend, the buffer is in current mmap region... */
541     /* ('cause by definition if readend is in the buffer, so's readstart) */
542     if (readend <= mapend) {
543       fs_print ("read buf %llu+%d lives in current mapbuf %lld+%d, creating subbuffer of mapbuf\n",
544              src->curoffset, readsize, mapstart, GST_BUFFER_SIZE(src->mapbuf));
545       buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - GST_BUFFER_OFFSET(src->mapbuf),
546                                    readsize);
547
548     /* if the start actually is within the current mmap region, map an overlap buffer */
549     } else if (src->curoffset < mapend) {
550       fs_print ("read buf %llu+%d starts in mapbuf %d+%d but ends outside, creating new mmap\n",
551              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
552       buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
553       if (buf == NULL)
554         return NULL;
555     }
556
557     /* the only other option is that buffer is totally outside, which means we search for it */
558
559   /* now we can assume that the start is *before* the current mmap region */
560   /* if the readend is past mapstart, we have two options */
561   } else if (readend >= mapstart) {
562     /* either the read buffer overlaps the start of the mmap region */
563     /* or the read buffer fully contains the current mmap region    */
564     /* either way, it's really not relevant, we just create a new region anyway*/
565     fs_print ("read buf %llu+%d starts before mapbuf %d+%d, but overlaps it\n",
566              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
567     buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
568     if (buf == NULL)
569       return NULL;
570   }
571
572   /* then deal with the case where the read buffer is totally outside */
573   if (buf == NULL) {
574     /* first check to see if there's a map that covers the right region already */
575     fs_print ("searching for mapbuf to cover %llu+%d\n",src->curoffset,readsize);
576     region.offset = src->curoffset;
577     region.size = readsize;
578     map = g_tree_search (src->map_regions,
579                          (GCompareFunc) gst_filesrc_search_region_match,
580                          (gpointer)&region);
581
582     /* if we found an exact match, subbuffer it */
583     if (map != NULL) {
584       fs_print ("found mapbuf at %d+%d, creating subbuffer\n",GST_BUFFER_OFFSET(map),GST_BUFFER_SIZE(map));
585       buf = gst_buffer_create_sub (map, src->curoffset - GST_BUFFER_OFFSET(map), readsize);
586
587     /* otherwise we need to create something out of thin air */
588     } else {
589       /* if the read buffer crosses a mmap region boundary, create a one-off region */
590       if ((src->curoffset / src->mapsize) != (readend / src->mapsize)) {
591         fs_print ("read buf %llu+%d crosses a %d-byte boundary, creating a one-off\n",
592                src->curoffset,readsize,src->mapsize);
593         buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
594         if (buf == NULL)
595           return NULL;
596
597       /* otherwise we will create a new mmap region and set it to the default */
598       } else {
599         size_t mapsize;
600
601         off_t nextmap = src->curoffset - (src->curoffset % src->mapsize);
602         fs_print ("read buf %llu+%d in new mapbuf at %llu+%d, mapping and subbuffering\n",
603                src->curoffset, readsize, nextmap, src->mapsize);
604         /* first, we're done with the old mapbuf */
605         gst_buffer_unref(src->mapbuf);
606         mapsize = src->mapsize;
607
608         /* double the mapsize as long as the readsize is smaller */
609         while (readsize - (src->curoffset - nextmap) > mapsize) {
610           fs_print ("readsize smaller then mapsize %08x %d\n", readsize, mapsize);
611           mapsize <<=1;
612         }
613         /* create a new one */
614         src->mapbuf = gst_filesrc_map_region (src, nextmap, mapsize);
615         if (src->mapbuf == NULL)
616           return NULL;
617
618         /* subbuffer it */
619         buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - nextmap, readsize);
620       }
621     }
622   }
623
624   /* if we need to touch the buffer (to bring it into memory), do so */
625   if (src->touch) {
626     volatile guchar *p = GST_BUFFER_DATA (buf), c;
627
628     for (i=0; i < GST_BUFFER_SIZE (buf); i += src->pagesize)
629       c = p[i];
630   }
631
632   /* we're done, return the buffer */
633   src->curoffset += GST_BUFFER_SIZE(buf);
634   return buf;
635 }
636
637 /* open the file and mmap it, necessary to go to READY state */
638 static gboolean 
639 gst_filesrc_open_file (GstFileSrc *src)
640 {
641   g_return_val_if_fail (!GST_FLAG_IS_SET (src ,GST_FILESRC_OPEN), FALSE);
642
643   GST_DEBUG(0, "opening file %s",src->filename);
644
645   /* open the file */
646   src->fd = open (src->filename, O_RDONLY);
647   if (src->fd < 0) {
648     gst_element_error (GST_ELEMENT (src), "opening file \"%s\" (%s)", 
649                        src->filename, strerror (errno), NULL);
650     return FALSE;
651   } else {
652     /* check if it is a regular file, otherwise bail out */
653     struct stat stat_results;
654
655     fstat(src->fd, &stat_results);
656
657     if (!S_ISREG(stat_results.st_mode)) {
658       gst_element_error (GST_ELEMENT (src), "opening file \"%s\" failed. it isn't a regular file", 
659                                         src->filename, NULL);
660       close(src->fd);
661       return FALSE;
662     }
663                 
664     /* find the file length */
665     src->filelen = lseek (src->fd, 0, SEEK_END);
666     lseek (src->fd, 0, SEEK_SET);
667
668     /* allocate the first mmap'd region */
669     src->mapbuf = gst_filesrc_map_region (src, 0, src->mapsize);
670     if (src->mapbuf == NULL)
671       return FALSE;
672
673     src->curoffset = 0;
674
675     GST_FLAG_SET (src, GST_FILESRC_OPEN);
676   }
677   return TRUE;
678 }
679
680 /* unmap and close the file */
681 static void
682 gst_filesrc_close_file (GstFileSrc *src)
683 {
684   g_return_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN));
685
686   /* close the file */
687   close (src->fd);
688
689   /* zero out a lot of our state */
690   src->fd = 0;
691   src->filelen = 0;
692   src->curoffset = 0;
693
694   if (src->mapbuf) {
695     gst_buffer_unref (src->mapbuf);
696     src->mapbuf = NULL;
697   }
698
699   GST_FLAG_UNSET (src, GST_FILESRC_OPEN);
700 }
701
702
703 static GstElementStateReturn
704 gst_filesrc_change_state (GstElement *element)
705 {
706   GstFileSrc *src = GST_FILESRC(element);
707
708   switch (GST_STATE_TRANSITION (element)) {
709     case GST_STATE_NULL_TO_READY:
710       break;
711     case GST_STATE_READY_TO_NULL:
712       break;
713     case GST_STATE_READY_TO_PAUSED:
714       if (!GST_FLAG_IS_SET (element, GST_FILESRC_OPEN)) {
715         if (!gst_filesrc_open_file (GST_FILESRC (element)))
716           return GST_STATE_FAILURE;
717       }
718       break;
719     case GST_STATE_PAUSED_TO_READY:
720       if (GST_FLAG_IS_SET (element, GST_FILESRC_OPEN))
721         gst_filesrc_close_file (GST_FILESRC (element));
722       src->seek_happened = TRUE;
723       break;
724     default:
725       break;
726   }
727
728   if (GST_ELEMENT_CLASS (parent_class)->change_state)
729     return GST_ELEMENT_CLASS (parent_class)->change_state (element);
730
731   return GST_STATE_SUCCESS;
732 }
733
734 static gboolean
735 gst_filesrc_srcpad_query (GstPad *pad, GstPadQueryType type,
736                           GstFormat *format, gint64 *value)
737 {
738   GstFileSrc *src = GST_FILESRC (GST_PAD_PARENT (pad));
739
740   switch (type) {
741     case GST_PAD_QUERY_TOTAL:
742       if (*format != GST_FORMAT_BYTES) {
743         return FALSE;
744       }
745       *value = src->filelen;
746       break;
747     case GST_PAD_QUERY_POSITION:
748       switch (*format) {
749         case GST_FORMAT_BYTES:
750           *value = src->curoffset;
751           break;
752         case GST_FORMAT_PERCENT:
753           if (src->filelen == 0)
754             return FALSE;
755           *value = src->curoffset * GST_FORMAT_PERCENT_MAX / src->filelen;
756           break;
757         default:
758           return FALSE;
759       }
760       break;
761     default:
762       return FALSE;
763       break;
764   }
765   return TRUE;
766 }
767
768 static gboolean
769 gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event)
770 {
771   GstFileSrc *src = GST_FILESRC (GST_PAD_PARENT (pad));
772
773   GST_DEBUG(0, "event %d", GST_EVENT_TYPE (event));
774
775   switch (GST_EVENT_TYPE (event)) {
776     case GST_EVENT_SEEK:
777     {
778       guint64 offset;
779
780       if (GST_EVENT_SEEK_FORMAT (event) != GST_FORMAT_BYTES) {
781         goto error;
782       }
783
784       offset = GST_EVENT_SEEK_OFFSET (event);
785
786       switch (GST_EVENT_SEEK_METHOD (event)) {
787         case GST_SEEK_METHOD_SET:
788           if (offset > src->filelen) 
789             goto error;
790           src->curoffset = offset;
791           GST_DEBUG(0, "seek set pending to %lld", src->curoffset);
792           break;
793         case GST_SEEK_METHOD_CUR:
794           if (offset + src->curoffset > src->filelen) 
795             goto error;
796           src->curoffset += offset;
797           GST_DEBUG(0, "seek cur pending to %lld", src->curoffset);
798           break;
799         case GST_SEEK_METHOD_END:
800           if (ABS (offset) > src->filelen) 
801             goto error;
802           src->curoffset = src->filelen - ABS (offset);
803           GST_DEBUG(0, "seek end pending to %lld", src->curoffset);
804           break;
805         default:
806           goto error;
807           break;
808       }
809       src->seek_happened = TRUE;
810       src->need_flush = GST_EVENT_SEEK_FLAGS(event) & GST_SEEK_FLAG_FLUSH;
811       break;
812     }
813     case GST_EVENT_SIZE:
814       if (GST_EVENT_SIZE_FORMAT (event) != GST_FORMAT_BYTES) {
815         goto error;
816       }
817       src->block_size = GST_EVENT_SIZE_VALUE (event);
818       g_object_notify (G_OBJECT (src), "blocksize");  
819       break;
820     case GST_EVENT_FLUSH:
821       src->need_flush = TRUE;
822       break;
823     default:
824       goto error;
825       break;
826   }
827   gst_event_unref (event);
828   return TRUE;
829
830 error:
831   gst_event_unref (event);
832   return FALSE;
833 }