Bump git version after unplanned 0.10.35 release
[platform/upstream/gstreamer.git] / plugins / elements / gstfdsrc.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *                    2005 Philippe Khalaf <burger@speedy.org>
5  *
6  * gstfdsrc.c:
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23 /**
24  * SECTION:element-fdsrc
25  * @see_also: #GstFdSink
26  *
27  * Read data from a unix file descriptor.
28  * 
29  * To generate data, enter some data on the console folowed by enter.
30  * The above mentioned pipeline should dump data packets to the console.
31  * 
32  * If the #GstFdSrc:timeout property is set to a value bigger than 0, fdsrc will
33  * generate an element message named
34  * <classname>&quot;GstFdSrcTimeout&quot;</classname>
35  * if no data was recieved in the given timeout.
36  * The message's structure contains one field:
37  * <itemizedlist>
38  * <listitem>
39  *   <para>
40  *   #guint64
41  *   <classname>&quot;timeout&quot;</classname>: the timeout in microseconds that
42  *   expired when waiting for data.
43  *   </para>
44  * </listitem>
45  * </itemizedlist>
46  * 
47  * <refsect2>
48  * <title>Example launch line</title>
49  * |[
50  * echo "Hello GStreamer" | gst-launch -v fdsrc ! fakesink dump=true
51  * ]| A simple pipeline to read from the standard input and dump the data
52  * with a fakesink as hex ascii block.
53  * </refsect2>
54  * 
55  * Last reviewed on 2008-06-20 (0.10.21)
56  */
57
58 #ifdef HAVE_CONFIG_H
59 #  include "config.h"
60 #endif
61 #include "gst/gst_private.h"
62
63 #include <sys/types.h>
64
65 #ifdef G_OS_WIN32
66 #include <io.h>                 /* lseek, open, close, read */
67 #undef lseek
68 #define lseek _lseeki64
69 #undef off_t
70 #define off_t guint64
71 #endif
72
73 #include <sys/stat.h>
74 #ifdef HAVE_SYS_SOCKET_H
75 #include <sys/socket.h>
76 #endif
77 #include <fcntl.h>
78 #include <stdio.h>
79 #ifdef HAVE_UNISTD_H
80 #include <unistd.h>
81 #endif
82 #ifdef _MSC_VER
83 #undef stat
84 #define stat _stat
85 #define fstat _fstat
86 #define S_ISREG(m)      (((m)&S_IFREG)==S_IFREG)
87 #endif
88 #include <stdlib.h>
89 #include <errno.h>
90
91 #include "gstfdsrc.h"
92
93 static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
94     GST_PAD_SRC,
95     GST_PAD_ALWAYS,
96     GST_STATIC_CAPS_ANY);
97
98 GST_DEBUG_CATEGORY_STATIC (gst_fd_src_debug);
99 #define GST_CAT_DEFAULT gst_fd_src_debug
100
101 #define DEFAULT_FD              0
102 #define DEFAULT_TIMEOUT         0
103
104 enum
105 {
106   PROP_0,
107
108   PROP_FD,
109   PROP_TIMEOUT,
110
111   PROP_LAST
112 };
113
114 static void gst_fd_src_uri_handler_init (gpointer g_iface, gpointer iface_data);
115
116 static void
117 _do_init (GType fd_src_type)
118 {
119   static const GInterfaceInfo urihandler_info = {
120     gst_fd_src_uri_handler_init,
121     NULL,
122     NULL
123   };
124
125   g_type_add_interface_static (fd_src_type, GST_TYPE_URI_HANDLER,
126       &urihandler_info);
127
128   GST_DEBUG_CATEGORY_INIT (gst_fd_src_debug, "fdsrc", 0, "fdsrc element");
129 }
130
131 GST_BOILERPLATE_FULL (GstFdSrc, gst_fd_src, GstPushSrc, GST_TYPE_PUSH_SRC,
132     _do_init);
133
134 static void gst_fd_src_set_property (GObject * object, guint prop_id,
135     const GValue * value, GParamSpec * pspec);
136 static void gst_fd_src_get_property (GObject * object, guint prop_id,
137     GValue * value, GParamSpec * pspec);
138 static void gst_fd_src_dispose (GObject * obj);
139
140 static gboolean gst_fd_src_start (GstBaseSrc * bsrc);
141 static gboolean gst_fd_src_stop (GstBaseSrc * bsrc);
142 static gboolean gst_fd_src_unlock (GstBaseSrc * bsrc);
143 static gboolean gst_fd_src_unlock_stop (GstBaseSrc * bsrc);
144 static gboolean gst_fd_src_is_seekable (GstBaseSrc * bsrc);
145 static gboolean gst_fd_src_get_size (GstBaseSrc * src, guint64 * size);
146 static gboolean gst_fd_src_do_seek (GstBaseSrc * src, GstSegment * segment);
147 static gboolean gst_fd_src_query (GstBaseSrc * src, GstQuery * query);
148
149 static GstFlowReturn gst_fd_src_create (GstPushSrc * psrc, GstBuffer ** outbuf);
150
151 static void
152 gst_fd_src_base_init (gpointer g_class)
153 {
154   GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
155
156   gst_element_class_set_details_simple (gstelement_class,
157       "Filedescriptor Source",
158       "Source/File",
159       "Read from a file descriptor", "Erik Walthinsen <omega@cse.ogi.edu>");
160   gst_element_class_add_pad_template (gstelement_class,
161       gst_static_pad_template_get (&srctemplate));
162 }
163
164 static void
165 gst_fd_src_class_init (GstFdSrcClass * klass)
166 {
167   GObjectClass *gobject_class;
168   GstBaseSrcClass *gstbasesrc_class;
169   GstPushSrcClass *gstpush_src_class;
170
171   gobject_class = G_OBJECT_CLASS (klass);
172   gstbasesrc_class = GST_BASE_SRC_CLASS (klass);
173   gstpush_src_class = GST_PUSH_SRC_CLASS (klass);
174
175   gobject_class->set_property = gst_fd_src_set_property;
176   gobject_class->get_property = gst_fd_src_get_property;
177   gobject_class->dispose = gst_fd_src_dispose;
178
179   g_object_class_install_property (gobject_class, PROP_FD,
180       g_param_spec_int ("fd", "fd", "An open file descriptor to read from",
181           0, G_MAXINT, DEFAULT_FD, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
182   /**
183    * GstFdSrc:timeout
184    *
185    * Post a message after timeout microseconds
186    *
187    * Since: 0.10.21
188    */
189   g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_TIMEOUT,
190       g_param_spec_uint64 ("timeout", "Timeout",
191           "Post a message after timeout microseconds (0 = disabled)", 0,
192           G_MAXUINT64, DEFAULT_TIMEOUT,
193           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
194
195   gstbasesrc_class->start = GST_DEBUG_FUNCPTR (gst_fd_src_start);
196   gstbasesrc_class->stop = GST_DEBUG_FUNCPTR (gst_fd_src_stop);
197   gstbasesrc_class->unlock = GST_DEBUG_FUNCPTR (gst_fd_src_unlock);
198   gstbasesrc_class->unlock_stop = GST_DEBUG_FUNCPTR (gst_fd_src_unlock_stop);
199   gstbasesrc_class->is_seekable = GST_DEBUG_FUNCPTR (gst_fd_src_is_seekable);
200   gstbasesrc_class->get_size = GST_DEBUG_FUNCPTR (gst_fd_src_get_size);
201   gstbasesrc_class->do_seek = GST_DEBUG_FUNCPTR (gst_fd_src_do_seek);
202   gstbasesrc_class->query = GST_DEBUG_FUNCPTR (gst_fd_src_query);
203
204   gstpush_src_class->create = GST_DEBUG_FUNCPTR (gst_fd_src_create);
205 }
206
207 static void
208 gst_fd_src_init (GstFdSrc * fdsrc, GstFdSrcClass * klass)
209 {
210   fdsrc->new_fd = DEFAULT_FD;
211   fdsrc->seekable_fd = FALSE;
212   fdsrc->fd = -1;
213   fdsrc->size = -1;
214   fdsrc->timeout = DEFAULT_TIMEOUT;
215   fdsrc->uri = g_strdup_printf ("fd://0");
216   fdsrc->curoffset = 0;
217 }
218
219 static void
220 gst_fd_src_dispose (GObject * obj)
221 {
222   GstFdSrc *src = GST_FD_SRC (obj);
223
224   g_free (src->uri);
225   src->uri = NULL;
226
227   G_OBJECT_CLASS (parent_class)->dispose (obj);
228 }
229
230 static void
231 gst_fd_src_update_fd (GstFdSrc * src, guint64 size)
232 {
233   struct stat stat_results;
234
235   GST_DEBUG_OBJECT (src, "fdset %p, old_fd %d, new_fd %d", src->fdset, src->fd,
236       src->new_fd);
237
238   /* we need to always update the fdset since it may not have existed when
239    * gst_fd_src_update_fd () was called earlier */
240   if (src->fdset != NULL) {
241     GstPollFD fd = GST_POLL_FD_INIT;
242
243     if (src->fd >= 0) {
244       fd.fd = src->fd;
245       /* this will log a harmless warning, if it was never added */
246       gst_poll_remove_fd (src->fdset, &fd);
247     }
248
249     fd.fd = src->new_fd;
250     gst_poll_add_fd (src->fdset, &fd);
251     gst_poll_fd_ctl_read (src->fdset, &fd, TRUE);
252   }
253
254
255   if (src->fd != src->new_fd) {
256     GST_INFO_OBJECT (src, "Updating to fd %d", src->new_fd);
257
258     src->fd = src->new_fd;
259
260     GST_INFO_OBJECT (src, "Setting size to fd %" G_GUINT64_FORMAT, size);
261     src->size = size;
262
263     g_free (src->uri);
264     src->uri = g_strdup_printf ("fd://%d", src->fd);
265
266     if (fstat (src->fd, &stat_results) < 0)
267       goto not_seekable;
268
269     if (!S_ISREG (stat_results.st_mode))
270       goto not_seekable;
271
272     /* Try a seek of 0 bytes offset to check for seekability */
273     if (lseek (src->fd, 0, SEEK_CUR) < 0)
274       goto not_seekable;
275
276     GST_INFO_OBJECT (src, "marking fd %d as seekable", src->fd);
277     src->seekable_fd = TRUE;
278
279     gst_base_src_set_dynamic_size (GST_BASE_SRC (src), TRUE);
280   }
281   return;
282
283 not_seekable:
284   {
285     GST_INFO_OBJECT (src, "marking fd %d as NOT seekable", src->fd);
286     src->seekable_fd = FALSE;
287     gst_base_src_set_dynamic_size (GST_BASE_SRC (src), FALSE);
288   }
289 }
290
291 static gboolean
292 gst_fd_src_start (GstBaseSrc * bsrc)
293 {
294   GstFdSrc *src = GST_FD_SRC (bsrc);
295
296   src->curoffset = 0;
297
298   if ((src->fdset = gst_poll_new (TRUE)) == NULL)
299     goto socket_pair;
300
301   gst_fd_src_update_fd (src, -1);
302
303   return TRUE;
304
305   /* ERRORS */
306 socket_pair:
307   {
308     GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ_WRITE, (NULL),
309         GST_ERROR_SYSTEM);
310     return FALSE;
311   }
312 }
313
314 static gboolean
315 gst_fd_src_stop (GstBaseSrc * bsrc)
316 {
317   GstFdSrc *src = GST_FD_SRC (bsrc);
318
319   if (src->fdset) {
320     gst_poll_free (src->fdset);
321     src->fdset = NULL;
322   }
323
324   return TRUE;
325 }
326
327 static gboolean
328 gst_fd_src_unlock (GstBaseSrc * bsrc)
329 {
330   GstFdSrc *src = GST_FD_SRC (bsrc);
331
332   GST_LOG_OBJECT (src, "Flushing");
333   GST_OBJECT_LOCK (src);
334   gst_poll_set_flushing (src->fdset, TRUE);
335   GST_OBJECT_UNLOCK (src);
336
337   return TRUE;
338 }
339
340 static gboolean
341 gst_fd_src_unlock_stop (GstBaseSrc * bsrc)
342 {
343   GstFdSrc *src = GST_FD_SRC (bsrc);
344
345   GST_LOG_OBJECT (src, "No longer flushing");
346   GST_OBJECT_LOCK (src);
347   gst_poll_set_flushing (src->fdset, FALSE);
348   GST_OBJECT_UNLOCK (src);
349
350   return TRUE;
351 }
352
353 static void
354 gst_fd_src_set_property (GObject * object, guint prop_id, const GValue * value,
355     GParamSpec * pspec)
356 {
357   GstFdSrc *src = GST_FD_SRC (object);
358
359   switch (prop_id) {
360     case PROP_FD:
361       src->new_fd = g_value_get_int (value);
362
363       /* If state is ready or below, update the current fd immediately
364        * so it is reflected in get_properties and uri */
365       GST_OBJECT_LOCK (object);
366       if (GST_STATE (GST_ELEMENT (src)) <= GST_STATE_READY) {
367         GST_DEBUG_OBJECT (src, "state ready or lower, updating to use new fd");
368         gst_fd_src_update_fd (src, -1);
369       } else {
370         GST_DEBUG_OBJECT (src, "state above ready, not updating to new fd yet");
371       }
372       GST_OBJECT_UNLOCK (object);
373       break;
374     case PROP_TIMEOUT:
375       src->timeout = g_value_get_uint64 (value);
376       GST_DEBUG_OBJECT (src, "poll timeout set to %" GST_TIME_FORMAT,
377           GST_TIME_ARGS (src->timeout));
378       break;
379     default:
380       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
381       break;
382   }
383 }
384
385 static void
386 gst_fd_src_get_property (GObject * object, guint prop_id, GValue * value,
387     GParamSpec * pspec)
388 {
389   GstFdSrc *src = GST_FD_SRC (object);
390
391   switch (prop_id) {
392     case PROP_FD:
393       g_value_set_int (value, src->fd);
394       break;
395     case PROP_TIMEOUT:
396       g_value_set_uint64 (value, src->timeout);
397       break;
398     default:
399       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
400       break;
401   }
402 }
403
404 static GstFlowReturn
405 gst_fd_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
406 {
407   GstFdSrc *src;
408   GstBuffer *buf;
409   gssize readbytes;
410   guint blocksize;
411   GstClockTime timeout;
412
413 #ifndef HAVE_WIN32
414   gboolean try_again;
415   gint retval;
416 #endif
417
418   src = GST_FD_SRC (psrc);
419
420   if (src->timeout > 0) {
421     timeout = src->timeout * GST_USECOND;
422   } else {
423     timeout = GST_CLOCK_TIME_NONE;
424   }
425
426 #ifndef HAVE_WIN32
427   do {
428     try_again = FALSE;
429
430     GST_LOG_OBJECT (src, "doing poll, timeout %" GST_TIME_FORMAT,
431         GST_TIME_ARGS (src->timeout));
432
433     retval = gst_poll_wait (src->fdset, timeout);
434     GST_LOG_OBJECT (src, "poll returned %d", retval);
435
436     if (G_UNLIKELY (retval == -1)) {
437       if (errno == EINTR || errno == EAGAIN) {
438         /* retry if interrupted */
439         try_again = TRUE;
440       } else if (errno == EBUSY) {
441         goto stopped;
442       } else {
443         goto poll_error;
444       }
445     } else if (G_UNLIKELY (retval == 0)) {
446       try_again = TRUE;
447       /* timeout, post element message */
448       gst_element_post_message (GST_ELEMENT_CAST (src),
449           gst_message_new_element (GST_OBJECT_CAST (src),
450               gst_structure_new ("GstFdSrcTimeout",
451                   "timeout", G_TYPE_UINT64, src->timeout, NULL)));
452     }
453   } while (G_UNLIKELY (try_again));     /* retry if interrupted or timeout */
454 #endif
455
456   blocksize = GST_BASE_SRC (src)->blocksize;
457
458   /* create the buffer */
459   buf = gst_buffer_try_new_and_alloc (blocksize);
460   if (G_UNLIKELY (buf == NULL)) {
461     GST_ERROR_OBJECT (src, "Failed to allocate %u bytes", blocksize);
462     return GST_FLOW_ERROR;
463   }
464
465   do {
466     readbytes = read (src->fd, GST_BUFFER_DATA (buf), blocksize);
467     GST_LOG_OBJECT (src, "read %" G_GSSIZE_FORMAT, readbytes);
468   } while (readbytes == -1 && errno == EINTR);  /* retry if interrupted */
469
470   if (readbytes < 0)
471     goto read_error;
472
473   if (readbytes == 0)
474     goto eos;
475
476   GST_BUFFER_OFFSET (buf) = src->curoffset;
477   GST_BUFFER_SIZE (buf) = readbytes;
478   GST_BUFFER_TIMESTAMP (buf) = GST_CLOCK_TIME_NONE;
479   src->curoffset += readbytes;
480
481   GST_LOG_OBJECT (psrc, "Read buffer of size %" G_GSSIZE_FORMAT, readbytes);
482
483   /* we're done, return the buffer */
484   *outbuf = buf;
485
486   return GST_FLOW_OK;
487
488   /* ERRORS */
489 #ifndef HAVE_WIN32
490 poll_error:
491   {
492     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
493         ("poll on file descriptor: %s.", g_strerror (errno)));
494     GST_DEBUG_OBJECT (psrc, "Error during poll");
495     return GST_FLOW_ERROR;
496   }
497 stopped:
498   {
499     GST_DEBUG_OBJECT (psrc, "Poll stopped");
500     return GST_FLOW_WRONG_STATE;
501   }
502 #endif
503 eos:
504   {
505     GST_DEBUG_OBJECT (psrc, "Read 0 bytes. EOS.");
506     gst_buffer_unref (buf);
507     return GST_FLOW_UNEXPECTED;
508   }
509 read_error:
510   {
511     GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
512         ("read on file descriptor: %s.", g_strerror (errno)));
513     GST_DEBUG_OBJECT (psrc, "Error reading from fd");
514     gst_buffer_unref (buf);
515     return GST_FLOW_ERROR;
516   }
517 }
518
519 static gboolean
520 gst_fd_src_query (GstBaseSrc * basesrc, GstQuery * query)
521 {
522   gboolean ret = FALSE;
523   GstFdSrc *src = GST_FD_SRC (basesrc);
524
525   switch (GST_QUERY_TYPE (query)) {
526     case GST_QUERY_URI:
527       gst_query_set_uri (query, src->uri);
528       ret = TRUE;
529       break;
530     default:
531       ret = FALSE;
532       break;
533   }
534
535   if (!ret)
536     ret = GST_BASE_SRC_CLASS (parent_class)->query (basesrc, query);
537
538   return ret;
539 }
540
541 static gboolean
542 gst_fd_src_is_seekable (GstBaseSrc * bsrc)
543 {
544   GstFdSrc *src = GST_FD_SRC (bsrc);
545
546   return src->seekable_fd;
547 }
548
549 static gboolean
550 gst_fd_src_get_size (GstBaseSrc * bsrc, guint64 * size)
551 {
552   GstFdSrc *src = GST_FD_SRC (bsrc);
553   struct stat stat_results;
554
555   if (src->size != -1) {
556     *size = src->size;
557     return TRUE;
558   }
559
560   if (!src->seekable_fd) {
561     /* If it isn't seekable, we won't know the length (but fstat will still
562      * succeed, and wrongly say our length is zero. */
563     return FALSE;
564   }
565
566   if (fstat (src->fd, &stat_results) < 0)
567     goto could_not_stat;
568
569   *size = stat_results.st_size;
570
571   return TRUE;
572
573   /* ERROR */
574 could_not_stat:
575   {
576     return FALSE;
577   }
578 }
579
580 static gboolean
581 gst_fd_src_do_seek (GstBaseSrc * bsrc, GstSegment * segment)
582 {
583   gint res;
584   gint64 offset;
585   GstFdSrc *src = GST_FD_SRC (bsrc);
586
587   offset = segment->start;
588
589   /* No need to seek to the current position */
590   if (offset == src->curoffset)
591     return TRUE;
592
593   res = lseek (src->fd, offset, SEEK_SET);
594   if (G_UNLIKELY (res < 0 || res != offset))
595     goto seek_failed;
596
597   segment->last_stop = segment->start;
598   segment->time = segment->start;
599
600   return TRUE;
601
602 seek_failed:
603   GST_DEBUG_OBJECT (src, "lseek returned %" G_GINT64_FORMAT, offset);
604   return FALSE;
605 }
606
607 /*** GSTURIHANDLER INTERFACE *************************************************/
608
609 static GstURIType
610 gst_fd_src_uri_get_type (void)
611 {
612   return GST_URI_SRC;
613 }
614
615 static gchar **
616 gst_fd_src_uri_get_protocols (void)
617 {
618   static gchar *protocols[] = { (char *) "fd", NULL };
619
620   return protocols;
621 }
622
623 static const gchar *
624 gst_fd_src_uri_get_uri (GstURIHandler * handler)
625 {
626   GstFdSrc *src = GST_FD_SRC (handler);
627
628   return src->uri;
629 }
630
631 static gboolean
632 gst_fd_src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
633 {
634   gchar *protocol, *q;
635   GstFdSrc *src = GST_FD_SRC (handler);
636   gint fd;
637   guint64 size = -1;
638
639   GST_INFO_OBJECT (src, "checking uri %s", uri);
640
641   protocol = gst_uri_get_protocol (uri);
642   if (strcmp (protocol, "fd") != 0) {
643     g_free (protocol);
644     return FALSE;
645   }
646   g_free (protocol);
647
648   if (sscanf (uri, "fd://%d", &fd) != 1 || fd < 0)
649     return FALSE;
650
651   if ((q = g_strstr_len (uri, -1, "?"))) {
652     gchar *sp;
653
654     GST_INFO_OBJECT (src, "found ?");
655
656     if ((sp = g_strstr_len (q, -1, "size="))) {
657       if (sscanf (sp, "size=%" G_GUINT64_FORMAT, &size) != 1) {
658         GST_INFO_OBJECT (src, "parsing size failed");
659         size = -1;
660       } else {
661         GST_INFO_OBJECT (src, "found size %" G_GUINT64_FORMAT, size);
662       }
663     }
664   }
665
666   src->new_fd = fd;
667
668   GST_OBJECT_LOCK (src);
669   if (GST_STATE (GST_ELEMENT (src)) <= GST_STATE_READY) {
670     gst_fd_src_update_fd (src, size);
671   }
672   GST_OBJECT_UNLOCK (src);
673
674   return TRUE;
675 }
676
677 static void
678 gst_fd_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
679 {
680   GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
681
682   iface->get_type = gst_fd_src_uri_get_type;
683   iface->get_protocols = gst_fd_src_uri_get_protocols;
684   iface->get_uri = gst_fd_src_uri_get_uri;
685   iface->set_uri = gst_fd_src_uri_set_uri;
686 }