/* GStreamer * Copyright (C) <1999> Erik Walthinsen * Copyright (C) <2004> Thomas Vander Stichele * * 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. */ #ifndef __GST_MULTI_FD_SINK_H__ #define __GST_MULTI_FD_SINK_H__ #include #include #include "gstmultihandlesink.h" G_BEGIN_DECLS #define GST_TYPE_MULTI_FD_SINK \ (gst_multi_fd_sink_get_type()) #define GST_MULTI_FD_SINK(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MULTI_FD_SINK,GstMultiFdSink)) #define GST_MULTI_FD_SINK_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MULTI_FD_SINK,GstMultiFdSinkClass)) #define GST_IS_MULTI_FD_SINK(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MULTI_FD_SINK)) #define GST_IS_MULTI_FD_SINK_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MULTI_FD_SINK)) #define GST_MULTI_FD_SINK_GET_CLASS(klass) \ (G_TYPE_INSTANCE_GET_CLASS ((klass), GST_TYPE_MULTI_FD_SINK, GstMultiFdSinkClass)) typedef struct _GstMultiFdSink GstMultiFdSink; typedef struct _GstMultiFdSinkClass GstMultiFdSinkClass; /** * GstTCPUnitType: * @GST_TCP_UNIT_TYPE_UNDEFINED: undefined * @GST_TCP_UNIT_TYPE_BUFFERS : buffers * @GST_TCP_UNIT_TYPE_TIME : timeunits (in nanoseconds) * @GST_TCP_UNIT_TYPE_BYTES : bytes * * The units used to specify limits. */ typedef enum { GST_TCP_UNIT_TYPE_UNDEFINED, GST_TCP_UNIT_TYPE_BUFFERS, GST_TCP_UNIT_TYPE_TIME, GST_TCP_UNIT_TYPE_BYTES } GstTCPUnitType; /* structure for a client */ typedef struct { GstMultiHandleClient client; GstPollFD fd; gboolean is_socket; gboolean caps_sent; /* method to sync client when connecting */ GstSyncMethod sync_method; GstTCPUnitType burst_min_unit; guint64 burst_min_value; GstTCPUnitType burst_max_unit; guint64 burst_max_value; } GstTCPClient; /** * GstMultiFdSink: * * The multifdsink object structure. */ struct _GstMultiFdSink { GstMultiHandleSink element; /*< private >*/ GRecMutex clientslock; /* lock to protect the clients list */ GList *clients; /* list of clients we are serving */ GHashTable *fd_hash; /* index on fd to client */ guint clients_cookie; /* Cookie to detect changes to the clients list */ gint mode; GstPoll *fdset; GSList *streamheader; /* GSList of GstBuffers to use as streamheader */ gboolean previous_buffer_in_caps; guint mtu; gint qos_dscp; gboolean handle_read; GArray *bufqueue; /* global queue of buffers */ gboolean running; /* the thread state */ GThread *thread; /* the sender thread */ /* these values are used to check if a client is reading fast * enough and to control receovery */ GstTCPUnitType unit_type;/* the type of the units */ gint64 units_max; /* max units to queue for a client */ gint64 units_soft_max; /* max units a client can lag before recovery starts */ GstTCPUnitType def_burst_unit; guint64 def_burst_value; gboolean resend_streamheader; /* resend streamheader if it changes */ /* stats */ gint buffers_queued; /* number of queued buffers */ gint bytes_queued; /* number of queued bytes */ gint time_queued; /* number of queued time */ guint8 header_flags; }; struct _GstMultiFdSinkClass { GstMultiHandleSinkClass parent_class; /* element methods */ void (*add) (GstMultiFdSink *sink, int fd); void (*add_full) (GstMultiFdSink *sink, int fd, GstSyncMethod sync, GstTCPUnitType format, guint64 value, GstTCPUnitType max_unit, guint64 max_value); void (*remove) (GstMultiFdSink *sink, int fd); void (*remove_flush) (GstMultiFdSink *sink, int fd); void (*clear) (GstMultiFdSink *sink); GValueArray* (*get_stats) (GstMultiFdSink *sink, int fd); /* vtable */ gboolean (*init) (GstMultiFdSink *sink); gboolean (*wait) (GstMultiFdSink *sink, GstPoll *set); gboolean (*close) (GstMultiFdSink *sink); void (*removed) (GstMultiFdSink *sink, int fd); /* signals */ void (*client_added) (GstElement *element, gint fd); void (*client_removed) (GstElement *element, gint fd, GstClientStatus status); void (*client_fd_removed) (GstElement *element, gint fd); }; GType gst_multi_fd_sink_get_type (void); void gst_multi_fd_sink_add (GstMultiFdSink *sink, int fd); void gst_multi_fd_sink_add_full (GstMultiFdSink *sink, int fd, GstSyncMethod sync, GstTCPUnitType min_unit, guint64 min_value, GstTCPUnitType max_unit, guint64 max_value); void gst_multi_fd_sink_remove (GstMultiFdSink *sink, int fd); void gst_multi_fd_sink_remove_flush (GstMultiFdSink *sink, int fd); void gst_multi_fd_sink_clear (GstMultiHandleSink *sink); GValueArray* gst_multi_fd_sink_get_stats (GstMultiFdSink *sink, int fd); G_END_DECLS #endif /* __GST_MULTI_FD_SINK_H__ */