2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gstfdsrc.c:
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2004-05-07 02:36:28 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
#include "gst/gst_private.h"
|
|
|
|
|
2005-03-10 17:22:14 +00:00
|
|
|
#ifndef HAVE_WIN32
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2000-02-27 23:18:38 +00:00
|
|
|
#include <stdio.h>
|
2004-05-07 02:36:28 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2000-02-27 23:18:38 +00:00
|
|
|
#include <unistd.h>
|
2004-05-07 02:36:28 +00:00
|
|
|
#endif
|
2000-02-27 23:18:38 +00:00
|
|
|
#include <stdlib.h>
|
2004-02-13 20:16:42 +00:00
|
|
|
#include <errno.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#include "gstfdsrc.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-11-21 23:52:30 +00:00
|
|
|
#define DEFAULT_BLOCKSIZE 4096
|
2000-01-30 09:03:00 +00:00
|
|
|
|
gst/: s/gst_pad_new/&_from_template/ register pad templates in the base_init function add static pad template definit...
Original commit message from CVS:
* gst/autoplug/gstspideridentity.c:
(gst_spider_identity_request_new_pad):
* gst/elements/gstaggregator.c: (gst_aggregator_base_init),
(gst_aggregator_init):
* gst/elements/gstfakesink.c: (gst_fakesink_base_init),
(gst_fakesink_init):
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_init):
* gst/elements/gstfdsink.c: (gst_fdsink_base_init),
(gst_fdsink_init):
* gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
* gst/elements/gstfilesink.c: (gst_filesink_base_init),
(gst_filesink_init):
* gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
(gst_filesrc_init):
* gst/elements/gstidentity.c: (gst_identity_base_init),
(gst_identity_init):
* gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
(gst_multifilesrc_init):
* gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
(gst_pipefilter_init):
* gst/elements/gststatistics.c: (gst_statistics_base_init),
(gst_statistics_init):
* gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
* gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
s/gst_pad_new/&_from_template/
register pad templates in the base_init function
add static pad template definitions
2004-08-17 14:11:23 +00:00
|
|
|
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_fdsrc_debug);
|
2003-06-29 14:05:49 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_fdsrc_debug
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
|
|
|
|
"Source/File",
|
|
|
|
"Synchronous read from a file",
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* FdSrc signals and args */
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2004-02-13 20:16:42 +00:00
|
|
|
SIGNAL_TIMEOUT,
|
2000-01-30 09:03:00 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
enum
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
ARG_0,
|
2002-10-17 22:32:55 +00:00
|
|
|
ARG_FD,
|
2004-02-13 20:16:42 +00:00
|
|
|
ARG_BLOCKSIZE,
|
|
|
|
ARG_TIMEOUT
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2004-02-13 20:16:42 +00:00
|
|
|
static guint gst_fdsrc_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2005-03-14 19:14:05 +00:00
|
|
|
static void gst_fdsrc_uri_handler_init (gpointer g_iface, gpointer iface_data);
|
|
|
|
|
|
|
|
static void
|
|
|
|
_do_init (GType fdsrc_type)
|
|
|
|
{
|
|
|
|
static const GInterfaceInfo urihandler_info = {
|
|
|
|
gst_fdsrc_uri_handler_init,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
g_type_add_interface_static (fdsrc_type, GST_TYPE_URI_HANDLER,
|
|
|
|
&urihandler_info);
|
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_fdsrc_debug, "fdsrc", 0, "fdsrc element");
|
|
|
|
}
|
2004-01-08 04:10:18 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_BOILERPLATE_FULL (GstFdSrc, gst_fdsrc, GstElement, GST_TYPE_ELEMENT,
|
|
|
|
_do_init);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2005-03-14 19:14:05 +00:00
|
|
|
static void gst_fdsrc_dispose (GObject * obj);
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_fdsrc_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_fdsrc_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
2000-11-25 14:18:47 +00:00
|
|
|
|
2004-06-06 21:11:51 +00:00
|
|
|
static GstElementStateReturn gst_fdsrc_change_state (GstElement * element);
|
2005-03-26 15:24:31 +00:00
|
|
|
static gboolean gst_fdsrc_release_locks (GstElement * element);
|
2004-03-13 15:27:01 +00:00
|
|
|
static GstData *gst_fdsrc_get (GstPad * pad);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
static void
|
|
|
|
gst_fdsrc_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
gst/: s/gst_pad_new/&_from_template/ register pad templates in the base_init function add static pad template definit...
Original commit message from CVS:
* gst/autoplug/gstspideridentity.c:
(gst_spider_identity_request_new_pad):
* gst/elements/gstaggregator.c: (gst_aggregator_base_init),
(gst_aggregator_init):
* gst/elements/gstfakesink.c: (gst_fakesink_base_init),
(gst_fakesink_init):
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_init):
* gst/elements/gstfdsink.c: (gst_fdsink_base_init),
(gst_fdsink_init):
* gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
* gst/elements/gstfilesink.c: (gst_filesink_base_init),
(gst_filesink_init):
* gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
(gst_filesrc_init):
* gst/elements/gstidentity.c: (gst_identity_base_init),
(gst_identity_init):
* gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
(gst_multifilesrc_init):
* gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
(gst_pipefilter_init):
* gst/elements/gststatistics.c: (gst_statistics_base_init),
(gst_statistics_init):
* gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
* gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
s/gst_pad_new/&_from_template/
register pad templates in the base_init function
add static pad template definitions
2004-08-17 14:11:23 +00:00
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&srctemplate));
|
2003-10-31 19:32:47 +00:00
|
|
|
gst_element_class_set_details (gstelement_class, &gst_fdsrc_details);
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_fdsrc_class_init (GstFdSrcClass * klass)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2001-06-25 01:20:11 +00:00
|
|
|
GObjectClass *gobject_class;
|
2004-06-06 21:11:51 +00:00
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2003-10-31 19:32:47 +00:00
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-10-17 22:32:55 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FD,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_int ("fd", "fd", "An open file descriptor to read from",
|
2004-03-15 19:27:17 +00:00
|
|
|
0, G_MAXINT, 0, G_PARAM_READWRITE));
|
2002-11-21 23:52:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BLOCKSIZE,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_ulong ("blocksize", "Block size",
|
2004-03-15 19:27:17 +00:00
|
|
|
"Size in bytes to read per buffer", 1, G_MAXULONG, DEFAULT_BLOCKSIZE,
|
|
|
|
G_PARAM_READWRITE));
|
2004-02-13 20:16:42 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TIMEOUT,
|
2004-03-13 15:27:01 +00:00
|
|
|
g_param_spec_uint64 ("timeout", "Timeout", "Read timeout in nanoseconds",
|
2004-03-15 19:27:17 +00:00
|
|
|
0, G_MAXUINT64, 0, G_PARAM_READWRITE));
|
2004-02-13 20:16:42 +00:00
|
|
|
|
|
|
|
gst_fdsrc_signals[SIGNAL_TIMEOUT] =
|
2004-03-13 15:27:01 +00:00
|
|
|
g_signal_new ("timeout", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstFdSrcClass, timeout), NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
2002-10-17 22:32:55 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
gobject_class->set_property = gst_fdsrc_set_property;
|
|
|
|
gobject_class->get_property = gst_fdsrc_get_property;
|
2005-03-14 19:14:05 +00:00
|
|
|
gobject_class->dispose = gst_fdsrc_dispose;
|
2004-06-06 21:11:51 +00:00
|
|
|
|
|
|
|
gstelement_class->change_state = gst_fdsrc_change_state;
|
2005-03-26 15:24:31 +00:00
|
|
|
gstelement_class->release_locks = gst_fdsrc_release_locks;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2005-03-14 19:14:05 +00:00
|
|
|
static void
|
|
|
|
gst_fdsrc_dispose (GObject * obj)
|
|
|
|
{
|
|
|
|
GstFdSrc *src = GST_FDSRC (obj);
|
|
|
|
|
|
|
|
g_free (src->uri);
|
|
|
|
src->uri = NULL;
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (obj);
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_fdsrc_init (GstFdSrc * fdsrc)
|
|
|
|
{
|
gst/: s/gst_pad_new/&_from_template/ register pad templates in the base_init function add static pad template definit...
Original commit message from CVS:
* gst/autoplug/gstspideridentity.c:
(gst_spider_identity_request_new_pad):
* gst/elements/gstaggregator.c: (gst_aggregator_base_init),
(gst_aggregator_init):
* gst/elements/gstfakesink.c: (gst_fakesink_base_init),
(gst_fakesink_init):
* gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
(gst_fakesrc_init):
* gst/elements/gstfdsink.c: (gst_fdsink_base_init),
(gst_fdsink_init):
* gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
* gst/elements/gstfilesink.c: (gst_filesink_base_init),
(gst_filesink_init):
* gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
(gst_filesrc_init):
* gst/elements/gstidentity.c: (gst_identity_base_init),
(gst_identity_init):
* gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
(gst_multifilesrc_init):
* gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
(gst_pipefilter_init):
* gst/elements/gststatistics.c: (gst_statistics_base_init),
(gst_statistics_init):
* gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
* gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
s/gst_pad_new/&_from_template/
register pad templates in the base_init function
add static pad template definitions
2004-08-17 14:11:23 +00:00
|
|
|
fdsrc->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get (&srctemplate),
|
|
|
|
"src");
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2002-11-27 23:14:33 +00:00
|
|
|
gst_pad_set_get_function (fdsrc->srcpad, gst_fdsrc_get);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (fdsrc), fdsrc->srcpad);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
fdsrc->fd = 0;
|
2005-03-14 19:14:05 +00:00
|
|
|
fdsrc->uri = g_strdup_printf ("fd://%d", fdsrc->fd);
|
2000-01-30 09:03:00 +00:00
|
|
|
fdsrc->curoffset = 0;
|
2002-11-21 23:52:30 +00:00
|
|
|
fdsrc->blocksize = DEFAULT_BLOCKSIZE;
|
2004-02-13 20:16:42 +00:00
|
|
|
fdsrc->timeout = 0;
|
2000-01-30 09:03:00 +00:00
|
|
|
fdsrc->seq = 0;
|
|
|
|
}
|
|
|
|
|
2004-06-06 21:11:51 +00:00
|
|
|
static GstElementStateReturn
|
|
|
|
gst_fdsrc_change_state (GstElement * element)
|
|
|
|
{
|
|
|
|
GstFdSrc *src = GST_FDSRC (element);
|
|
|
|
|
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
|
|
|
src->curoffset = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-03-26 15:24:31 +00:00
|
|
|
/* in any case, an interrupt succeeds if we get here */
|
|
|
|
src->interrupted = FALSE;
|
|
|
|
|
2004-06-06 21:11:51 +00:00
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
|
|
|
|
|
|
|
return GST_STATE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_fdsrc_set_property (GObject * object, guint prop_id, const GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstFdSrc *src;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (GST_IS_FDSRC (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
src = GST_FDSRC (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2002-10-17 22:32:55 +00:00
|
|
|
case ARG_FD:
|
|
|
|
src->fd = g_value_get_int (value);
|
2005-03-14 19:14:05 +00:00
|
|
|
g_free (src->uri);
|
|
|
|
src->uri = g_strdup_printf ("fd://%d", src->fd);
|
2002-10-17 22:32:55 +00:00
|
|
|
break;
|
2002-11-21 23:52:30 +00:00
|
|
|
case ARG_BLOCKSIZE:
|
|
|
|
src->blocksize = g_value_get_ulong (value);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
2004-02-13 20:16:42 +00:00
|
|
|
case ARG_TIMEOUT:
|
|
|
|
src->timeout = g_value_get_uint64 (value);
|
|
|
|
break;
|
2000-01-30 09:03:00 +00:00
|
|
|
default:
|
2004-04-20 16:25:41 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void
|
|
|
|
gst_fdsrc_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
GstFdSrc *src;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2000-11-25 14:18:47 +00:00
|
|
|
g_return_if_fail (GST_IS_FDSRC (object));
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
src = GST_FDSRC (object);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-06-25 01:20:11 +00:00
|
|
|
switch (prop_id) {
|
2002-11-21 23:52:30 +00:00
|
|
|
case ARG_BLOCKSIZE:
|
|
|
|
g_value_set_ulong (value, src->blocksize);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
2002-10-17 22:32:55 +00:00
|
|
|
case ARG_FD:
|
|
|
|
g_value_set_int (value, src->fd);
|
|
|
|
break;
|
2004-02-13 20:16:42 +00:00
|
|
|
case ARG_TIMEOUT:
|
|
|
|
g_value_set_uint64 (value, src->timeout);
|
|
|
|
break;
|
2000-01-30 09:03:00 +00:00
|
|
|
default:
|
2001-06-25 01:20:11 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2000-01-30 09:03:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-26 15:24:31 +00:00
|
|
|
static gboolean
|
|
|
|
gst_fdsrc_release_locks (GstElement * element)
|
|
|
|
{
|
|
|
|
GstFdSrc *src = GST_FDSRC (element);
|
|
|
|
|
|
|
|
src->interrupted = TRUE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-10-08 16:06:02 +00:00
|
|
|
static GstData *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_fdsrc_get (GstPad * pad)
|
2000-12-20 09:39:43 +00:00
|
|
|
{
|
Changed the way things are scheduled, especially sources. A Src used to have a push() function, and optionally a pus...
Original commit message from CVS:
Changed the way things are scheduled, especially sources. A Src used to
have a push() function, and optionally a pushregion() to deal with async
reads, etc. That whole thing has gone away, in favor of providing a
pull() function for the output (Src) pad instead, ala chain functions.
This makes constructing cothreaded schedules out of non-loop elements
somewhat easier. Basically there was always a question as to which pad
was being dealt with. In the pullregion case, cothread-specific data was
used to try to pass the region struct to the right place, which is a slow
hack. And in general, the push function severely limited the kind of
tricks that could be played when there's more than one output pad, such as
a multi-out file reader with async capabilities on each pad independently.
This changes the way cothread scheduling occurs. Instead of the hack to
deal with Src's by calling their push() function (or optionally the
pushregion(), in certain cases), we now are working towards a general
mechanism where pads are the only thing that are dealt with directly.
An optimization was made in the process of doing this: the loopfunction
actually run as the outer [stack] frame of the cothread is now set more
intelligently in create_plan() based on what kind of element it is. We
now have:
loopfunc_wrapper: used for loop-based elements, it simply calls the
loopfunc in a loop, paying attention to COTHREAD_STOPPING (see
below). It currently does other, soon to be depracated, stuff.
pullsrc_wrapper: wraps a Src that's not loop-based (since your options
are now loop- or pull-based)
There will be a couple more to deal with other cases, such as Connections
and chain-based elements. The general idea is that it's a lot more
efficient to make the decisions once in create_plan than to keep doing
this huge if/else chain in the wrapper. Just choose the right wrapper up
front. It'll be most apparent performance-wise in the case of whichever
element context is switched to first for each iteration, since the whole
wrapper setup is done for every iteration.
The tricky part is that there is now a bit of overloading of the function
pointers in a pad. The current meanings (possibly to change a bit more
soon) are:
chainfunc: as always, chainfunc pointer is mirrored between peer pads
(this may change, and the chain func may end up in pushfunc)
pushfunc: SrcPad: gst_pad_pushfunc_proxy, cothread_switch to peer
SinkPad: none (may take over chainfunc, see below) pullfunc:
SrcPad: Src or Connection's function to construct buffers
SinkPad: gst_pad_pullfunc_proxy, cothread_switch to peer
There are a number of issues remaining with the scheduling, not the least
of which is the fact that Connections are still dealt with the old way,
with _push() functions and such. I'm trying to figure out a way to unify
the system so it makes sense. Following the scheduling system is hard
enough, trying to change it is murder.
Another useful scheduling addition, mentioned above, is COTHREAD_STOPPING.
It's an element flag that's used to signal whatever code is running in
cothread context that it should be finishing up and exiting soon. An
example of this is in plugins/cobin/spindentity.c. All the loops should
now be composed of do/while loops, rather than while(1) loops:
do {
buf = gst_pad_pull(spindentity->sinkpad);
gst_pad_push(spindentity->srcpad,buf);
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING(element));
The reason for this is that COTHREAD_STOPPING may be set before the above
loop ever gets started. It wouldn't do for the body of the loop to never
once get called, that would simply stall the pipeline. Note that only the
core library code is ever responsible for setting and unsetting this flag.
All elements have to do is respond to it by cleanly exiting the loop and
the function holding it.
This is needed primarily to allow iterations to occur properly.
Basically, there's a single entry point in the cothread scheduling loop,
gst_bin_iterate_func() simply switches to this cothread. If the element
in this context is allowed to loop infinitely, nothing would even switch
back to the context from which the iterate() was originally called. This
is a bit of a problem. The solution is for there to be an implicit switch
back to the originating context. Now, even I'm not sure exactly how this
works, but if the cothread that's switched to actually returns, execution
returns back to the calling context, i.e. iterate_func().
COTHREAD_STOPPING is therefore set just before switching into this
(currently randomly chosen) context, on the assumption that it will return
promptly after finishing its duties. The burden of clearing the flag
falls to the various wrapper functions provided by the Bin code, thus
element writers don't have to worry about doing that at all (and simply
shouldn't).
Related changes:
All the sources in elements/ have been changed to reflect the new system.
FIXMEs:
1) gstpipeline.c calls gst_src_push at some point, dunno why, it's
commented out now.
2) any other sources, including vcdsrc, dvdsrc, and v4lsrc will break
badly and need to be modified to work as pull-based sources.
2000-12-04 10:52:30 +00:00
|
|
|
GstFdSrc *src;
|
2000-01-30 09:03:00 +00:00
|
|
|
GstBuffer *buf;
|
|
|
|
glong readbytes;
|
2004-04-14 01:38:27 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_WIN32
|
2004-02-13 20:16:42 +00:00
|
|
|
fd_set readfds;
|
2005-03-26 15:24:31 +00:00
|
|
|
struct timeval t;
|
2004-02-13 20:16:42 +00:00
|
|
|
gint retval;
|
2004-04-14 01:38:27 +00:00
|
|
|
#endif
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-11-27 23:14:33 +00:00
|
|
|
src = GST_FDSRC (gst_pad_get_parent (pad));
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
/* create the buffer */
|
2002-11-27 23:14:33 +00:00
|
|
|
buf = gst_buffer_new_and_alloc (src->blocksize);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-04-14 01:38:27 +00:00
|
|
|
#ifndef HAVE_WIN32
|
2004-02-13 20:16:42 +00:00
|
|
|
FD_ZERO (&readfds);
|
|
|
|
FD_SET (src->fd, &readfds);
|
2002-11-27 23:14:33 +00:00
|
|
|
|
2005-03-26 15:24:31 +00:00
|
|
|
/* loop until data is available, or a timeout is set. Re-enter
|
|
|
|
* loop if we got a timeout without a timeout set, or if we
|
|
|
|
* received an interrupt event. */
|
2004-03-13 15:27:01 +00:00
|
|
|
do {
|
2005-03-26 15:24:31 +00:00
|
|
|
if (src->timeout != 0) {
|
|
|
|
GST_TIME_TO_TIMEVAL (src->timeout, t);
|
|
|
|
} else {
|
|
|
|
GST_TIME_TO_TIMEVAL (1000000000, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = select (src->fd + 1, &readfds, NULL, NULL, &t);
|
|
|
|
} while (!src->interrupted &&
|
|
|
|
((retval == -1 && errno == EINTR) || (retval == 0 && src->timeout == 0)));
|
|
|
|
|
|
|
|
if (src->interrupted) {
|
|
|
|
GST_DEBUG_OBJECT (src, "received interrupt");
|
|
|
|
return GST_DATA (gst_event_new (GST_EVENT_INTERRUPT));
|
|
|
|
} else if (retval == -1) {
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
|
2004-03-15 19:27:17 +00:00
|
|
|
("select on file descriptor: %s.", g_strerror (errno)));
|
2001-12-28 20:20:26 +00:00
|
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
2003-10-08 16:06:02 +00:00
|
|
|
return GST_DATA (gst_event_new (GST_EVENT_EOS));
|
2004-03-13 15:27:01 +00:00
|
|
|
} else if (retval == 0) {
|
2004-02-13 20:16:42 +00:00
|
|
|
g_signal_emit (G_OBJECT (src), gst_fdsrc_signals[SIGNAL_TIMEOUT], 0);
|
|
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
2004-03-13 15:27:01 +00:00
|
|
|
return GST_DATA (gst_event_new (GST_EVENT_EOS));
|
2004-02-13 20:16:42 +00:00
|
|
|
}
|
2004-04-14 01:38:27 +00:00
|
|
|
#endif
|
2004-02-13 20:16:42 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
do {
|
2004-02-13 20:16:42 +00:00
|
|
|
readbytes = read (src->fd, GST_BUFFER_DATA (buf), src->blocksize);
|
2004-03-15 19:27:17 +00:00
|
|
|
} while (readbytes == -1 && errno == EINTR); /* retry if interrupted */
|
2004-02-13 20:16:42 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (readbytes > 0) {
|
2004-02-13 20:16:42 +00:00
|
|
|
GST_BUFFER_OFFSET (buf) = src->curoffset;
|
|
|
|
GST_BUFFER_SIZE (buf) = readbytes;
|
|
|
|
GST_BUFFER_TIMESTAMP (buf) = GST_CLOCK_TIME_NONE;
|
|
|
|
src->curoffset += readbytes;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-02-13 20:16:42 +00:00
|
|
|
/* we're done, return the buffer */
|
|
|
|
return GST_DATA (buf);
|
2004-03-13 15:27:01 +00:00
|
|
|
} else if (readbytes == 0) {
|
2004-02-13 20:16:42 +00:00
|
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
|
|
|
return GST_DATA (gst_event_new (GST_EVENT_EOS));
|
2004-03-13 15:27:01 +00:00
|
|
|
} else {
|
|
|
|
GST_ELEMENT_ERROR (src, RESOURCE, READ, (NULL),
|
2004-03-15 19:27:17 +00:00
|
|
|
("read on file descriptor: %s.", g_strerror (errno)));
|
2003-10-08 16:06:02 +00:00
|
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
|
|
|
return GST_DATA (gst_event_new (GST_EVENT_EOS));
|
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2005-03-14 19:14:05 +00:00
|
|
|
|
|
|
|
/*** GSTURIHANDLER INTERFACE *************************************************/
|
|
|
|
|
|
|
|
static guint
|
|
|
|
gst_fdsrc_uri_get_type (void)
|
|
|
|
{
|
|
|
|
return GST_URI_SRC;
|
|
|
|
}
|
|
|
|
static gchar **
|
|
|
|
gst_fdsrc_uri_get_protocols (void)
|
|
|
|
{
|
|
|
|
static gchar *protocols[] = { "fd", NULL };
|
|
|
|
|
|
|
|
return protocols;
|
|
|
|
}
|
|
|
|
static const gchar *
|
|
|
|
gst_fdsrc_uri_get_uri (GstURIHandler * handler)
|
|
|
|
{
|
|
|
|
GstFdSrc *src = GST_FDSRC (handler);
|
|
|
|
|
|
|
|
return src->uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_fdsrc_uri_set_uri (GstURIHandler * handler, const gchar * uri)
|
|
|
|
{
|
|
|
|
gchar *protocol;
|
|
|
|
GstFdSrc *src = GST_FDSRC (handler);
|
|
|
|
gint fd = src->fd;
|
|
|
|
|
|
|
|
protocol = gst_uri_get_protocol (uri);
|
|
|
|
if (strcmp (protocol, "fd") != 0) {
|
|
|
|
g_free (protocol);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
g_free (protocol);
|
|
|
|
sscanf (uri, "fd://%d", &fd);
|
|
|
|
src->fd = fd;
|
|
|
|
g_free (src->uri);
|
|
|
|
src->uri = g_strdup (uri);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_fdsrc_uri_handler_init (gpointer g_iface, gpointer iface_data)
|
|
|
|
{
|
|
|
|
GstURIHandlerInterface *iface = (GstURIHandlerInterface *) g_iface;
|
|
|
|
|
|
|
|
iface->get_type = gst_fdsrc_uri_get_type;
|
|
|
|
iface->get_protocols = gst_fdsrc_uri_get_protocols;
|
|
|
|
iface->get_uri = gst_fdsrc_uri_get_uri;
|
|
|
|
iface->set_uri = gst_fdsrc_uri_set_uri;
|
|
|
|
}
|