s/gst_element_install_std_props/gst_element_class_install_std_props/ -- it just makes...
[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   "Read from arbitrary point in a file",
76   VERSION,
77   "Erik Walthinsen <omega@cse.ogi.edu>",
78   "(C) 1999",
79 };
80
81 /*#define fs_print(format,args...) g_print(format, ## args)*/
82 #define fs_print(format,args...)
83
84 /* FileSrc signals and args */
85 enum {
86   /* FILL ME */
87   LAST_SIGNAL
88 };
89
90 enum {
91   ARG_0,
92   ARG_OFFSET,
93   ARG_LOCATION,
94   ARG_FILESIZE,
95   ARG_FD,
96   ARG_BLOCKSIZE,
97   ARG_MAPSIZE,
98   ARG_TOUCH,
99 };
100
101
102 static void             gst_filesrc_class_init          (GstFileSrcClass *klass);
103 static void             gst_filesrc_init                (GstFileSrc *filesrc);
104 static void             gst_filesrc_dispose             (GObject *object);
105
106 static void             gst_filesrc_set_property        (GObject *object, guint prop_id, 
107                                                          const GValue *value, GParamSpec *pspec);
108 static void             gst_filesrc_get_property        (GObject *object, guint prop_id, 
109                                                          GValue *value, GParamSpec *pspec);
110
111 static GstBuffer *      gst_filesrc_get                 (GstPad *pad);
112 static gboolean         gst_filesrc_srcpad_event        (GstPad *pad, GstEvent *event);
113
114 static GstElementStateReturn    gst_filesrc_change_state        (GstElement *element);
115
116
117 static GstElementClass *parent_class = NULL;
118 /*static guint gst_filesrc_signals[LAST_SIGNAL] = { 0 };*/
119
120 GType
121 gst_filesrc_get_type(void)
122 {
123   static GType filesrc_type = 0;
124
125   if (!filesrc_type) {
126     static const GTypeInfo filesrc_info = {
127       sizeof(GstFileSrcClass),      NULL,
128       NULL,
129       (GClassInitFunc)gst_filesrc_class_init,
130       NULL,
131       NULL,
132       sizeof(GstFileSrc),
133       0,
134       (GInstanceInitFunc)gst_filesrc_init,
135     };
136     filesrc_type = g_type_register_static (GST_TYPE_ELEMENT, "GstFileSrc", &filesrc_info, 0);
137   }
138   return filesrc_type;
139 }
140
141 static void
142 gst_filesrc_class_init (GstFileSrcClass *klass)
143 {
144   GObjectClass *gobject_class;
145   GstElementClass *gstelement_class;
146
147   gobject_class = (GObjectClass*)klass;
148   gstelement_class = (GstElementClass*)klass;
149
150   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
151
152   gst_element_class_install_std_props (
153           GST_ELEMENT_CLASS (klass),
154           "fd",           ARG_FD,           G_PARAM_READABLE,
155           "offset",       ARG_OFFSET,       G_PARAM_READWRITE,
156           "filesize",     ARG_FILESIZE,     G_PARAM_READABLE,
157           "location",     ARG_LOCATION,     G_PARAM_READWRITE,
158           "blocksize",    ARG_BLOCKSIZE,    G_PARAM_READWRITE,
159           "mmapsize",     ARG_MAPSIZE,      G_PARAM_READWRITE,
160           "touch",        ARG_TOUCH,        G_PARAM_READWRITE,
161           NULL);
162
163   gobject_class->dispose        = gst_filesrc_dispose;
164   gobject_class->set_property   = gst_filesrc_set_property;
165   gobject_class->get_property   = gst_filesrc_get_property;
166
167   gstelement_class->change_state = gst_filesrc_change_state;
168 }
169
170 static gint
171 gst_filesrc_bufcmp (gconstpointer a, gconstpointer b)
172 {
173 /*  GstBuffer *bufa = (GstBuffer *)a, *bufb = (GstBuffer *)b;*/
174
175   /* sort first by offset, then in reverse by size */
176   if (GST_BUFFER_OFFSET(a) < GST_BUFFER_OFFSET(b)) return -1;
177   else if (GST_BUFFER_OFFSET(a) > GST_BUFFER_OFFSET(b)) return 1;
178   else if (GST_BUFFER_SIZE(a) > GST_BUFFER_SIZE(b)) return -1;
179   else if (GST_BUFFER_SIZE(a) < GST_BUFFER_SIZE(b)) return 1;
180   else return 0;
181 }
182
183 static void
184 gst_filesrc_init (GstFileSrc *src)
185 {
186   src->srcpad = gst_pad_new ("src", GST_PAD_SRC);
187   gst_pad_set_get_function (src->srcpad,gst_filesrc_get);
188   gst_pad_set_event_function (src->srcpad,gst_filesrc_srcpad_event);
189   gst_element_add_pad (GST_ELEMENT (src), src->srcpad);
190
191   src->pagesize = getpagesize();
192
193   src->filename = NULL;
194   src->fd = 0;
195   src->filelen = 0;
196
197   src->curoffset = 0;
198   src->block_size = 4096;
199   src->touch = TRUE;
200
201   src->mapbuf = NULL;
202   src->mapsize = 4 * 1024 * 1024;               /* default is 4MB */
203
204   src->map_regions = g_tree_new(gst_filesrc_bufcmp);
205   src->map_regions_lock = g_mutex_new();
206
207   src->seek_happened = FALSE;
208 }
209
210 static void
211 gst_filesrc_dispose (GObject *object)
212 {
213   GstFileSrc *src;
214
215   src = GST_FILESRC (object);
216
217   G_OBJECT_CLASS (parent_class)->dispose (object);
218
219   g_tree_destroy (src->map_regions);
220   g_mutex_free (src->map_regions_lock);
221   if (src->filename)
222     g_free (src->filename);
223 }
224
225
226 static void
227 gst_filesrc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
228 {
229   GstFileSrc *src;
230
231   /* it's not null if we got it, but it might not be ours */
232   g_return_if_fail (GST_IS_FILESRC (object));
233
234   src = GST_FILESRC (object);
235
236   switch (prop_id) {
237     case ARG_LOCATION:
238       /* the element must be stopped in order to do this */
239       g_return_if_fail (GST_STATE (src) < GST_STATE_PLAYING);
240
241       if (src->filename) g_free (src->filename);
242       /* clear the filename if we get a NULL (is that possible?) */
243       if (g_value_get_string (value) == NULL) {
244         gst_element_set_state (GST_ELEMENT (object), GST_STATE_NULL);
245         src->filename = NULL;
246       /* otherwise set the new filename */
247       } else {
248         src->filename = g_strdup (g_value_get_string (value));
249       }
250       g_object_notify (G_OBJECT (src), "location");
251       break;
252     case ARG_BLOCKSIZE:
253       src->block_size = g_value_get_ulong (value);
254       g_object_notify (G_OBJECT (src), "blocksize");
255       break;
256     case ARG_OFFSET:
257       src->curoffset = g_value_get_int64 (value);
258       g_object_notify (G_OBJECT (src), "offset");
259       break;
260     case ARG_MAPSIZE:
261       if ((src->mapsize % src->pagesize) == 0)
262       {
263         src->mapsize = g_value_get_ulong (value);
264         g_object_notify (G_OBJECT (src), "mmapsize");
265       }
266       else
267         GST_INFO(0, "invalid mapsize, must a multiple of pagesize, which is %d\n",src->pagesize);
268       break;
269     case ARG_TOUCH:
270       src->touch = g_value_get_boolean (value);
271       g_object_notify (G_OBJECT (src), "touch");
272       break;
273     default:
274       break;
275   }
276 }
277
278 static void
279 gst_filesrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
280 {
281   GstFileSrc *src;
282
283   /* it's not null if we got it, but it might not be ours */
284   g_return_if_fail (GST_IS_FILESRC (object));
285
286   src = GST_FILESRC (object);
287
288   switch (prop_id) {
289     case ARG_LOCATION:
290       g_value_set_string (value, src->filename);
291       break;
292     case ARG_FILESIZE:
293       g_value_set_int64 (value, src->filelen);
294       break;
295     case ARG_FD:
296       g_value_set_int (value, src->fd);
297       break;
298     case ARG_BLOCKSIZE:
299       g_value_set_ulong (value, src->block_size);
300       break;
301     case ARG_OFFSET:
302       g_value_set_int64 (value, src->curoffset);
303       break;
304     case ARG_MAPSIZE:
305       g_value_set_ulong (value, src->mapsize);
306       break;
307     case ARG_TOUCH:
308       g_value_set_boolean (value, src->touch);
309       break;
310     default:
311       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
312       break;
313   }
314 }
315
316 static void
317 gst_filesrc_free_parent_mmap (GstBuffer *buf)
318 {
319   GstFileSrc *src = GST_FILESRC(GST_BUFFER_POOL_PRIVATE(buf));
320
321   fs_print ("freeing mmap()d buffer at %d+%d\n",GST_BUFFER_OFFSET(buf),GST_BUFFER_SIZE(buf));
322
323   /* remove the buffer from the list of available mmap'd regions */
324   g_mutex_lock(src->map_regions_lock);
325   g_tree_remove(src->map_regions,buf);
326   /* check to see if the tree is empty */
327   if (g_tree_nnodes(src->map_regions) == 0) {
328     /* we have to free the bufferpool we don't have yet */
329   }
330   g_mutex_unlock(src->map_regions_lock);
331
332 #ifdef MADV_DONTNEED
333   /* madvise to tell the kernel what to do with it */
334   madvise(GST_BUFFER_DATA(buf),GST_BUFFER_SIZE(buf),MADV_DONTNEED);
335 #endif
336   /* now unmap the memory */
337   munmap(GST_BUFFER_DATA(buf),GST_BUFFER_MAXSIZE(buf));
338 }
339
340 static GstBuffer *
341 gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
342 {
343   GstBuffer *buf;
344   gint retval;
345
346   g_return_val_if_fail (offset >= 0, NULL);
347
348   fs_print  ("mapping region %08lx+%08lx from file into memory\n",offset,size);
349
350   /* time to allocate a new mapbuf */
351   buf = gst_buffer_new();
352   /* mmap() the data into this new buffer */
353   GST_BUFFER_DATA(buf) = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset);
354   if (GST_BUFFER_DATA(buf) == NULL) {
355     gst_element_error (GST_ELEMENT (src), "couldn't map file");
356   } else if (GST_BUFFER_DATA(buf) == MAP_FAILED) {
357     gst_element_error (GST_ELEMENT (src), "mmap (0x%x, %d, 0x%llx) : %s",
358              size, src->fd, offset, strerror (errno));
359   }
360 #ifdef MADV_SEQUENTIAL
361   /* madvise to tell the kernel what to do with it */
362   retval = madvise(GST_BUFFER_DATA(buf),GST_BUFFER_SIZE(buf),MADV_SEQUENTIAL);
363 #endif
364   /* fill in the rest of the fields */
365   GST_BUFFER_FLAGS(buf) = GST_BUFFER_READONLY | GST_BUFFER_ORIGINAL;
366   GST_BUFFER_SIZE(buf) = size;
367   GST_BUFFER_MAXSIZE(buf) = size;
368   GST_BUFFER_OFFSET(buf) = offset;
369   GST_BUFFER_TIMESTAMP(buf) = -1LL;
370   GST_BUFFER_POOL_PRIVATE(buf) = src;
371   GST_BUFFER_FREE_FUNC(buf) = gst_filesrc_free_parent_mmap;
372
373   g_mutex_lock(src->map_regions_lock);
374   g_tree_insert(src->map_regions,buf,buf);
375   g_mutex_unlock(src->map_regions_lock);
376
377   return buf;
378 }
379
380 static GstBuffer *
381 gst_filesrc_map_small_region (GstFileSrc *src, off_t offset, size_t size)
382 {
383   size_t mapsize;
384   off_t mod, mapbase;
385   GstBuffer *map;
386
387 /*  printf("attempting to map a small buffer at %d+%d\n",offset,size); */
388
389   /* if the offset starts at a non-page boundary, we have to special case */
390   if ((mod = offset % src->pagesize)) {
391     GstBuffer *ret;
392
393     mapbase = offset - mod;
394     mapsize = ((size + mod + src->pagesize - 1) / src->pagesize) * src->pagesize;
395 /*    printf("not on page boundaries, resizing map to %d+%d\n",mapbase,mapsize);*/
396     map = gst_filesrc_map_region(src, mapbase, mapsize);
397     ret = gst_buffer_create_sub (map, offset - mapbase, size);
398
399     gst_buffer_unref (map);
400
401     return ret;
402   }
403
404   return gst_filesrc_map_region(src,offset,size);
405 }
406
407 typedef struct {
408   off_t offset;
409   off_t size;
410 } GstFileSrcRegion;
411
412 /* This allows us to search for a potential mmap region. */
413 static gint
414 gst_filesrc_search_region_match (gpointer a, gpointer b)
415 {
416   GstFileSrcRegion *r = (GstFileSrcRegion *)b;
417
418   /* trying to walk b down the tree, current node is a */
419   if (r->offset < GST_BUFFER_OFFSET(a)) return -1;
420   else if (r->offset >= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 1;
421   else if ((r->offset + r->size) <= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 0;
422
423   return -2;
424 }
425
426 /**
427  * gst_filesrc_get:
428  * @pad: #GstPad to push a buffer from
429  *
430  * Push a new buffer from the filesrc at the current offset.
431  */
432 static GstBuffer *
433 gst_filesrc_get (GstPad *pad)
434 {
435   GstFileSrc *src;
436   GstBuffer *buf = NULL, *map;
437   size_t readsize;
438   off_t readend,mapstart,mapend;
439   GstFileSrcRegion region;
440   int i;
441
442   g_return_val_if_fail (pad != NULL, NULL);
443   src = GST_FILESRC (gst_pad_get_parent (pad));
444   g_return_val_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN), NULL);
445
446   /* check for seek */
447   if (src->seek_happened) {
448     src->seek_happened = FALSE;
449     return GST_BUFFER (gst_event_new (GST_EVENT_DISCONTINUOUS));
450   }
451   /* check for flush */
452   if (src->need_flush) {
453     src->need_flush = FALSE;
454     return GST_BUFFER (gst_event_new_flush ());
455   }
456
457   /* check for EOF */
458   if (src->curoffset == src->filelen) {
459     gst_element_set_eos (GST_ELEMENT (src));
460     return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
461   }
462
463   /* calculate end pointers so we don't have to do so repeatedly later */
464   readsize = src->block_size;
465   readend = src->curoffset + src->block_size;           /* note this is the byte *after* the read */
466   mapstart = GST_BUFFER_OFFSET(src->mapbuf);
467   mapend = mapstart + GST_BUFFER_SIZE(src->mapbuf);     /* note this is the byte *after* the map */
468
469   /* check to see if we're going to overflow the end of the file */
470   if (readend > src->filelen) {
471     readsize = src->filelen - src->curoffset;
472     readend = src->curoffset;
473   }
474
475   /* if the start is past the mapstart */
476   if (src->curoffset >= mapstart) {
477     /* if the end is before the mapend, the buffer is in current mmap region... */
478     /* ('cause by definition if readend is in the buffer, so's readstart) */
479     if (readend <= mapend) {
480       fs_print ("read buf %d+%d lives in current mapbuf %d+%d, creating subbuffer of mapbuf\n",
481              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
482       buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - GST_BUFFER_OFFSET(src->mapbuf),
483                                    readsize);
484
485     /* if the start actually is within the current mmap region, map an overlap buffer */
486     } else if (src->curoffset < mapend) {
487       fs_print ("read buf %d+%d starts in mapbuf %d+%d but ends outside, creating new mmap\n",
488              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
489       buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
490     }
491
492     /* the only other option is that buffer is totally outside, which means we search for it */
493
494   /* now we can assume that the start is *before* the current mmap region */
495   /* if the readend is past mapstart, we have two options */
496   } else if (readend >= mapstart) {
497     /* either the read buffer overlaps the start of the mmap region */
498     /* or the read buffer fully contains the current mmap region    */
499     /* either way, it's really not relevant, we just create a new region anyway*/
500     fs_print ("read buf %d+%d starts before mapbuf %d+%d, but overlaps it\n",
501              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
502     buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
503   }
504
505   /* then deal with the case where the read buffer is totally outside */
506   if (buf == NULL) {
507     /* first check to see if there's a map that covers the right region already */
508     fs_print ("searching for mapbuf to cover %d+%d\n",src->curoffset,readsize);
509     region.offset = src->curoffset;
510     region.size = readsize;
511     map = g_tree_search (src->map_regions,
512                          (GCompareFunc) gst_filesrc_search_region_match,
513                          (gpointer)&region);
514
515     /* if we found an exact match, subbuffer it */
516     if (map != NULL) {
517       fs_print ("found mapbuf at %d+%d, creating subbuffer\n",GST_BUFFER_OFFSET(map),GST_BUFFER_SIZE(map));
518       buf = gst_buffer_create_sub (map, src->curoffset - GST_BUFFER_OFFSET(map), readsize);
519
520     /* otherwise we need to create something out of thin air */
521     } else {
522       /* if the read buffer crosses a mmap region boundary, create a one-off region */
523       if ((src->curoffset / src->mapsize) != (readend / src->mapsize)) {
524         fs_print ("read buf %d+%d crosses a %d-byte boundary, creating a one-off\n",
525                src->curoffset,readsize,src->mapsize);
526         buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
527
528       /* otherwise we will create a new mmap region and set it to the default */
529       } else {
530         off_t nextmap = src->curoffset - (src->curoffset % src->mapsize);
531         fs_print ("read buf %d+%d in new mapbuf at %d+%d, mapping and subbuffering\n",
532                src->curoffset,readsize,nextmap,src->mapsize);
533         /* first, we're done with the old mapbuf */
534         gst_buffer_unref(src->mapbuf);
535         /* create a new one */
536         src->mapbuf = gst_filesrc_map_region (src, nextmap, src->mapsize);
537         /* subbuffer it */
538         buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - GST_BUFFER_OFFSET(src->mapbuf), readsize);
539       }
540     }
541   }
542
543   /* if we need to touch the buffer (to bring it into memory), do so */
544   if (src->touch) {
545     volatile guchar *p = GST_BUFFER_DATA (buf), c;
546     for (i=0;i<GST_BUFFER_SIZE(buf);i+=src->pagesize)
547       c = p[i];
548   }
549
550   /* we're done, return the buffer */
551   src->curoffset += GST_BUFFER_SIZE(buf);
552   g_object_notify (G_OBJECT (src), "offset");
553   return buf;
554 }
555
556 /* open the file and mmap it, necessary to go to READY state */
557 static gboolean 
558 gst_filesrc_open_file (GstFileSrc *src)
559 {
560   g_return_val_if_fail (!GST_FLAG_IS_SET (src ,GST_FILESRC_OPEN), FALSE);
561
562   GST_DEBUG(0, "opening file %s\n",src->filename);
563
564   /* open the file */
565   src->fd = open (src->filename, O_RDONLY);
566   if (src->fd < 0) {
567     gst_element_error (GST_ELEMENT (src), "opening file \"%s\" (%s)", 
568                        src->filename, strerror (errno), NULL);
569     return FALSE;
570   } else {
571                 /* check if it is a regular file, otherwise bail out */
572                 struct stat stat_results;
573                 fstat(src->fd, &stat_results);
574                 if (!S_ISREG(stat_results.st_mode)) {
575                         gst_element_error (GST_ELEMENT (src), "opening file \"%s\" failed. it isn't a regular file", 
576                                                                                                  src->filename, NULL);
577                         close(src->fd);
578                         return FALSE;
579                 }
580                 
581     /* find the file length */
582     src->filelen = lseek (src->fd, 0, SEEK_END);
583     lseek (src->fd, 0, SEEK_SET);
584
585     /* allocate the first mmap'd region */
586     src->mapbuf = gst_filesrc_map_region (src, 0, src->mapsize);
587
588     src->curoffset = 0;
589
590     /* now notify of the changes */
591     g_object_freeze_notify (G_OBJECT (src));
592     g_object_notify (G_OBJECT (src), "filesize");
593     g_object_notify (G_OBJECT (src), "offset");
594     g_object_thaw_notify (G_OBJECT (src));
595
596     GST_FLAG_SET (src, GST_FILESRC_OPEN);
597   }
598   return TRUE;
599 }
600
601 /* unmap and close the file */
602 static void
603 gst_filesrc_close_file (GstFileSrc *src)
604 {
605   g_return_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN));
606
607   /* close the file */
608   close (src->fd);
609
610   /* zero out a lot of our state */
611   src->fd = 0;
612   src->filelen = 0;
613   src->curoffset = 0;
614   /* and notify that things changed */
615   g_object_freeze_notify (G_OBJECT (src));
616   g_object_notify (G_OBJECT (src), "filesize");
617   g_object_notify (G_OBJECT (src), "offset");
618   g_object_thaw_notify (G_OBJECT (src));
619
620   if (src->mapbuf)
621     gst_buffer_unref (src->mapbuf);
622
623   GST_FLAG_UNSET (src, GST_FILESRC_OPEN);
624 }
625
626
627 static GstElementStateReturn
628 gst_filesrc_change_state (GstElement *element)
629 {
630   GstFileSrc *src = GST_FILESRC(element);
631
632   switch (GST_STATE_TRANSITION (element)) {
633     case GST_STATE_NULL_TO_READY:
634       if (!GST_FLAG_IS_SET (element, GST_FILESRC_OPEN)) {
635         if (!gst_filesrc_open_file (GST_FILESRC (element)))
636           return GST_STATE_FAILURE;
637       }
638       break;
639     case GST_STATE_READY_TO_NULL:
640       if (GST_FLAG_IS_SET (element, GST_FILESRC_OPEN))
641         gst_filesrc_close_file (GST_FILESRC (element));
642       break;
643     case GST_STATE_READY_TO_PAUSED:
644     case GST_STATE_PAUSED_TO_READY:
645       src->curoffset = 0;
646     default:
647       break;
648   }
649
650   if (GST_ELEMENT_CLASS (parent_class)->change_state)
651     return GST_ELEMENT_CLASS (parent_class)->change_state (element);
652
653   return GST_STATE_SUCCESS;
654 }
655
656 static gboolean
657 gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event)
658 {
659   GstFileSrc *src = GST_FILESRC(GST_PAD_PARENT(pad));
660
661   switch (GST_EVENT_TYPE (event)) {
662     case GST_EVENT_SEEK:
663       switch (GST_EVENT_SEEK_TYPE (event)) {
664         case GST_SEEK_BYTEOFFSET_SET:
665           src->curoffset = (guint64) GST_EVENT_SEEK_OFFSET (event);
666           break;
667         case GST_SEEK_BYTEOFFSET_CUR:
668           src->curoffset += GST_EVENT_SEEK_OFFSET (event);
669           break;
670         case GST_SEEK_BYTEOFFSET_END:
671           src->curoffset = src->filelen - ABS (GST_EVENT_SEEK_OFFSET (event));
672           break;
673         default:
674           return FALSE;
675           break;
676       }
677       g_object_notify (G_OBJECT (src), "offset");  
678       src->seek_happened = TRUE;
679       src->need_flush = GST_EVENT_SEEK_FLUSH(event);
680       gst_event_free (event);
681       /* push a discontinuous event? */
682       break;
683     case GST_EVENT_FLUSH:
684       src->need_flush = TRUE;
685       break;
686     default:
687       return FALSE;
688       break;
689   }
690
691   return TRUE;
692 }