2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
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.
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.
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.
24 * SECTION:element-fdsink
25 * @see_also: #GstFdSrc
27 * Write data to a unix file descriptor.
29 * This element will synchronize on the clock before writing the data on the
30 * socket. For file descriptors where this does not make sense (files, ...) the
31 * #GstBaseSink:sync property can be used to disable synchronisation.
33 * Last reviewed on 2006-04-28 (0.10.6)
40 #include "../../gst/gst-i18n-lib.h"
42 #include <sys/types.h>
45 #include <io.h> /* lseek, open, close, read */
47 #define lseek _lseeki64
53 #ifdef HAVE_SYS_SOCKET_H
54 #include <sys/socket.h>
65 #define S_ISREG(m) (((m)&S_IFREG)==S_IFREG)
70 #include "gstfdsink.h"
72 static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
77 GST_DEBUG_CATEGORY_STATIC (gst_fd_sink__debug);
78 #define GST_CAT_DEFAULT gst_fd_sink__debug
81 /* FdSink signals and args */
94 static void gst_fd_sink_uri_handler_init (gpointer g_iface,
98 G_IMPLEMENT_INTERFACE (GST_TYPE_URI_HANDLER, gst_fd_sink_uri_handler_init); \
99 GST_DEBUG_CATEGORY_INIT (gst_fd_sink__debug, "fdsink", 0, "fdsink element");
100 #define gst_fd_sink_parent_class parent_class
101 G_DEFINE_TYPE_WITH_CODE (GstFdSink, gst_fd_sink, GST_TYPE_BASE_SINK, _do_init);
103 static void gst_fd_sink_set_property (GObject * object, guint prop_id,
104 const GValue * value, GParamSpec * pspec);
105 static void gst_fd_sink_get_property (GObject * object, guint prop_id,
106 GValue * value, GParamSpec * pspec);
107 static void gst_fd_sink_dispose (GObject * obj);
109 static gboolean gst_fd_sink_query (GstBaseSink * bsink, GstQuery * query);
110 static GstFlowReturn gst_fd_sink_render (GstBaseSink * sink,
112 static gboolean gst_fd_sink_start (GstBaseSink * basesink);
113 static gboolean gst_fd_sink_stop (GstBaseSink * basesink);
114 static gboolean gst_fd_sink_unlock (GstBaseSink * basesink);
115 static gboolean gst_fd_sink_unlock_stop (GstBaseSink * basesink);
116 static gboolean gst_fd_sink_event (GstBaseSink * sink, GstEvent * event);
118 static gboolean gst_fd_sink_do_seek (GstFdSink * fdsink, guint64 new_offset);
121 gst_fd_sink_class_init (GstFdSinkClass * klass)
123 GObjectClass *gobject_class;
124 GstElementClass *gstelement_class;
125 GstBaseSinkClass *gstbasesink_class;
127 gobject_class = G_OBJECT_CLASS (klass);
128 gstelement_class = GST_ELEMENT_CLASS (klass);
129 gstbasesink_class = GST_BASE_SINK_CLASS (klass);
131 gobject_class->set_property = gst_fd_sink_set_property;
132 gobject_class->get_property = gst_fd_sink_get_property;
133 gobject_class->dispose = gst_fd_sink_dispose;
135 gst_element_class_set_static_metadata (gstelement_class,
136 "Filedescriptor Sink",
138 "Write data to a file descriptor", "Erik Walthinsen <omega@cse.ogi.edu>");
139 gst_element_class_add_pad_template (gstelement_class,
140 gst_static_pad_template_get (&sinktemplate));
142 gstbasesink_class->render = GST_DEBUG_FUNCPTR (gst_fd_sink_render);
143 gstbasesink_class->start = GST_DEBUG_FUNCPTR (gst_fd_sink_start);
144 gstbasesink_class->stop = GST_DEBUG_FUNCPTR (gst_fd_sink_stop);
145 gstbasesink_class->unlock = GST_DEBUG_FUNCPTR (gst_fd_sink_unlock);
146 gstbasesink_class->unlock_stop = GST_DEBUG_FUNCPTR (gst_fd_sink_unlock_stop);
147 gstbasesink_class->event = GST_DEBUG_FUNCPTR (gst_fd_sink_event);
148 gstbasesink_class->query = GST_DEBUG_FUNCPTR (gst_fd_sink_query);
150 g_object_class_install_property (gobject_class, ARG_FD,
151 g_param_spec_int ("fd", "fd", "An open file descriptor to write to",
152 0, G_MAXINT, 1, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
156 gst_fd_sink_init (GstFdSink * fdsink)
159 fdsink->uri = g_strdup_printf ("fd://%d", fdsink->fd);
160 fdsink->bytes_written = 0;
161 fdsink->current_pos = 0;
163 gst_base_sink_set_sync (GST_BASE_SINK (fdsink), FALSE);
167 gst_fd_sink_dispose (GObject * obj)
169 GstFdSink *fdsink = GST_FD_SINK (obj);
171 g_free (fdsink->uri);
174 G_OBJECT_CLASS (parent_class)->dispose (obj);
178 gst_fd_sink_query (GstBaseSink * bsink, GstQuery * query)
180 gboolean res = FALSE;
183 fdsink = GST_FD_SINK (bsink);
185 switch (GST_QUERY_TYPE (query)) {
186 case GST_QUERY_POSITION:
190 gst_query_parse_position (query, &format, NULL);
193 case GST_FORMAT_DEFAULT:
194 case GST_FORMAT_BYTES:
195 gst_query_set_position (query, GST_FORMAT_BYTES, fdsink->current_pos);
203 case GST_QUERY_FORMATS:
204 gst_query_set_formats (query, 2, GST_FORMAT_DEFAULT, GST_FORMAT_BYTES);
208 gst_query_set_uri (query, fdsink->uri);
211 case GST_QUERY_SEEKING:{
214 gst_query_parse_seeking (query, &format, NULL, NULL, NULL);
215 if (format == GST_FORMAT_BYTES || format == GST_FORMAT_DEFAULT) {
216 gst_query_set_seeking (query, GST_FORMAT_BYTES, fdsink->seekable, 0,
219 gst_query_set_seeking (query, format, FALSE, 0, -1);
225 res = GST_BASE_SINK_CLASS (parent_class)->query (bsink, query);
233 gst_fd_sink_render (GstBaseSink * sink, GstBuffer * buffer)
245 fdsink = GST_FD_SINK (sink);
247 g_return_val_if_fail (fdsink->fd >= 0, GST_FLOW_ERROR);
249 gst_buffer_map (buffer, &info, GST_MAP_READ);
257 GST_DEBUG_OBJECT (fdsink, "going into select, have %" G_GSIZE_FORMAT
258 " bytes to write", info.size);
259 retval = gst_poll_wait (fdsink->fdset, GST_CLOCK_TIME_NONE);
260 } while (retval == -1 && (errno == EINTR || errno == EAGAIN));
270 GST_DEBUG_OBJECT (fdsink, "writing %" G_GSIZE_FORMAT " bytes to"
271 " file descriptor %d", info.size, fdsink->fd);
273 written = write (fdsink->fd, ptr, left);
275 /* check for errors */
276 if (G_UNLIKELY (written < 0)) {
277 /* try to write again on non-fatal errors */
278 if (errno == EAGAIN || errno == EINTR)
281 /* else go to our error handler */
285 /* all is fine when we get here */
288 fdsink->bytes_written += written;
289 fdsink->current_pos += written;
291 GST_DEBUG_OBJECT (fdsink, "wrote %d bytes, %" G_GSIZE_FORMAT " left", written,
294 /* short write, select and try to write the remainder */
295 if (G_UNLIKELY (left > 0))
298 gst_buffer_unmap (buffer, &info);
305 GST_ELEMENT_ERROR (fdsink, RESOURCE, READ, (NULL),
306 ("select on file descriptor: %s.", g_strerror (errno)));
307 GST_DEBUG_OBJECT (fdsink, "Error during select");
308 gst_buffer_unmap (buffer, &info);
309 return GST_FLOW_ERROR;
313 GST_DEBUG_OBJECT (fdsink, "Select stopped");
314 gst_buffer_unmap (buffer, &info);
315 return GST_FLOW_FLUSHING;
323 GST_ELEMENT_ERROR (fdsink, RESOURCE, NO_SPACE_LEFT, (NULL), (NULL));
326 GST_ELEMENT_ERROR (fdsink, RESOURCE, WRITE, (NULL),
327 ("Error while writing to file descriptor %d: %s",
328 fdsink->fd, g_strerror (errno)));
331 gst_buffer_unmap (buffer, &info);
332 return GST_FLOW_ERROR;
337 gst_fd_sink_check_fd (GstFdSink * fdsink, int fd, GError ** error)
339 struct stat stat_results;
342 /* see that it is a valid file descriptor */
343 if (fstat (fd, &stat_results) < 0)
346 if (!S_ISREG (stat_results.st_mode))
349 /* see if it is a seekable stream */
350 result = lseek (fd, 0, SEEK_CUR);
361 GST_DEBUG_OBJECT (fdsink, "File descriptor %d is seekable", fd);
367 GST_ELEMENT_ERROR (fdsink, RESOURCE, WRITE, (NULL),
368 ("File descriptor %d is not valid: %s", fd, g_strerror (errno)));
369 g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_REFERENCE,
370 "File descriptor %d is not valid: %s", fd, g_strerror (errno));
375 GST_DEBUG_OBJECT (fdsink, "File descriptor %d is a pipe", fd);
381 gst_fd_sink_start (GstBaseSink * basesink)
384 GstPollFD fd = GST_POLL_FD_INIT;
386 fdsink = GST_FD_SINK (basesink);
387 if (!gst_fd_sink_check_fd (fdsink, fdsink->fd, NULL))
390 if ((fdsink->fdset = gst_poll_new (TRUE)) == NULL)
394 gst_poll_add_fd (fdsink->fdset, &fd);
395 gst_poll_fd_ctl_write (fdsink->fdset, &fd, TRUE);
397 fdsink->bytes_written = 0;
398 fdsink->current_pos = 0;
400 fdsink->seekable = gst_fd_sink_do_seek (fdsink, 0);
401 GST_INFO_OBJECT (fdsink, "seeking supported: %d", fdsink->seekable);
408 GST_ELEMENT_ERROR (fdsink, RESOURCE, OPEN_READ_WRITE, (NULL),
415 gst_fd_sink_stop (GstBaseSink * basesink)
417 GstFdSink *fdsink = GST_FD_SINK (basesink);
420 gst_poll_free (fdsink->fdset);
421 fdsink->fdset = NULL;
428 gst_fd_sink_unlock (GstBaseSink * basesink)
430 GstFdSink *fdsink = GST_FD_SINK (basesink);
432 GST_LOG_OBJECT (fdsink, "Flushing");
433 GST_OBJECT_LOCK (fdsink);
434 gst_poll_set_flushing (fdsink->fdset, TRUE);
435 GST_OBJECT_UNLOCK (fdsink);
441 gst_fd_sink_unlock_stop (GstBaseSink * basesink)
443 GstFdSink *fdsink = GST_FD_SINK (basesink);
445 GST_LOG_OBJECT (fdsink, "No longer flushing");
446 GST_OBJECT_LOCK (fdsink);
447 gst_poll_set_flushing (fdsink->fdset, FALSE);
448 GST_OBJECT_UNLOCK (fdsink);
454 gst_fd_sink_update_fd (GstFdSink * fdsink, int new_fd, GError ** error)
457 g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_REFERENCE,
458 "File descriptor %d is not valid", new_fd);
462 if (!gst_fd_sink_check_fd (fdsink, new_fd, error))
466 GST_OBJECT_LOCK (fdsink);
468 GstPollFD fd = GST_POLL_FD_INIT;
471 gst_poll_remove_fd (fdsink->fdset, &fd);
474 gst_poll_add_fd (fdsink->fdset, &fd);
475 gst_poll_fd_ctl_write (fdsink->fdset, &fd, TRUE);
478 g_free (fdsink->uri);
479 fdsink->uri = g_strdup_printf ("fd://%d", fdsink->fd);
481 GST_OBJECT_UNLOCK (fdsink);
492 gst_fd_sink_set_property (GObject * object, guint prop_id,
493 const GValue * value, GParamSpec * pspec)
497 fdsink = GST_FD_SINK (object);
503 fd = g_value_get_int (value);
504 gst_fd_sink_update_fd (fdsink, fd, NULL);
508 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
514 gst_fd_sink_get_property (GObject * object, guint prop_id, GValue * value,
519 fdsink = GST_FD_SINK (object);
523 g_value_set_int (value, fdsink->fd);
526 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
532 gst_fd_sink_do_seek (GstFdSink * fdsink, guint64 new_offset)
536 result = lseek (fdsink->fd, new_offset, SEEK_SET);
541 fdsink->current_pos = new_offset;
543 GST_DEBUG_OBJECT (fdsink, "File descriptor %d to seek to position "
544 "%" G_GUINT64_FORMAT, fdsink->fd, fdsink->current_pos);
551 GST_DEBUG_OBJECT (fdsink, "File descriptor %d failed to seek to position "
552 "%" G_GUINT64_FORMAT, fdsink->fd, new_offset);
558 gst_fd_sink_event (GstBaseSink * sink, GstEvent * event)
563 fdsink = GST_FD_SINK (sink);
565 type = GST_EVENT_TYPE (event);
568 case GST_EVENT_SEGMENT:
570 const GstSegment *segment;
572 gst_event_parse_segment (event, &segment);
574 if (segment->format == GST_FORMAT_BYTES) {
575 /* only try to seek and fail when we are going to a different
577 if (fdsink->current_pos != segment->start) {
578 /* FIXME, the seek should be performed on the pos field, start/stop are
579 * just boundaries for valid bytes offsets. We should also fill the file
580 * with zeroes if the new position extends the current EOF (sparse streams
581 * and segment accumulation). */
582 if (!gst_fd_sink_do_seek (fdsink, (guint64) segment->start))
586 GST_DEBUG_OBJECT (fdsink,
587 "Ignored SEGMENT event of format %u (%s)", (guint) segment->format,
588 gst_format_get_name (segment->format));
596 return GST_BASE_SINK_CLASS (parent_class)->event (sink, event);
600 GST_ELEMENT_ERROR (fdsink, RESOURCE, SEEK, (NULL),
601 ("Error while seeking on file descriptor %d: %s",
602 fdsink->fd, g_strerror (errno)));
603 gst_event_unref (event);
609 /*** GSTURIHANDLER INTERFACE *************************************************/
612 gst_fd_sink_uri_get_type (GType type)
617 static const gchar *const *
618 gst_fd_sink_uri_get_protocols (GType type)
620 static const gchar *protocols[] = { "fd", NULL };
626 gst_fd_sink_uri_get_uri (GstURIHandler * handler)
628 GstFdSink *sink = GST_FD_SINK (handler);
630 /* FIXME: make thread-safe */
631 return g_strdup (sink->uri);
635 gst_fd_sink_uri_set_uri (GstURIHandler * handler, const gchar * uri,
638 GstFdSink *sink = GST_FD_SINK (handler);
641 if (sscanf (uri, "fd://%d", &fd) != 1) {
642 g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_URI,
643 "File descriptor URI could not be parsed");
647 return gst_fd_sink_update_fd (sink, fd, error);
651 gst_fd_sink_uri_handler_init (gpointer g_iface, gpointer iface_data)
653 GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
655 iface->get_type = gst_fd_sink_uri_get_type;
656 iface->get_protocols = gst_fd_sink_uri_get_protocols;
657 iface->get_uri = gst_fd_sink_uri_get_uri;
658 iface->set_uri = gst_fd_sink_uri_set_uri;