afe145aa76683c9733022a4c3d7aaaa80256c583
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-server.h
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __GST_RTSP_SERVER_H__
21 #define __GST_RTSP_SERVER_H__
22
23 #include <gst/gst.h>
24
25 G_BEGIN_DECLS
26
27 typedef struct _GstRTSPServer GstRTSPServer;
28 typedef struct _GstRTSPServerClass GstRTSPServerClass;
29 typedef struct _GstRTSPServerPrivate GstRTSPServerPrivate;
30
31 #include "rtsp-session-pool.h"
32 #include "rtsp-mount-points.h"
33 #include "rtsp-client.h"
34 #include "rtsp-auth.h"
35
36 #define GST_TYPE_RTSP_SERVER              (gst_rtsp_server_get_type ())
37 #define GST_IS_RTSP_SERVER(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_SERVER))
38 #define GST_IS_RTSP_SERVER_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_SERVER))
39 #define GST_RTSP_SERVER_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_SERVER, GstRTSPServerClass))
40 #define GST_RTSP_SERVER(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_SERVER, GstRTSPServer))
41 #define GST_RTSP_SERVER_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_SERVER, GstRTSPServerClass))
42 #define GST_RTSP_SERVER_CAST(obj)         ((GstRTSPServer*)(obj))
43 #define GST_RTSP_SERVER_CLASS_CAST(klass) ((GstRTSPServerClass*)(klass))
44
45 /**
46  * GstRTSPServer:
47  *
48  * This object listens on a port, creates and manages the clients connected to
49  * it.
50  */
51 struct _GstRTSPServer {
52   GObject      parent;
53
54   /*< private >*/
55   GstRTSPServerPrivate *priv;
56   gpointer _gst_reserved[GST_PADDING];
57 };
58
59 /**
60  * GstRTSPServerClass:
61  * @create_client: Create, configure a new GstRTSPClient
62  *          object that handles the new connection on @socket. The default
63  *          implementation will create a GstRTSPClient and will configure the
64  *          mount-points, auth, session-pool and thread-pool on the client.
65  * @client_connected: emited when a new client connected.
66  *
67  * The RTSP server class structure
68  */
69 struct _GstRTSPServerClass {
70   GObjectClass  parent_class;
71
72   GstRTSPClient * (*create_client)      (GstRTSPServer *server);
73
74   /* signals */
75   void            (*client_connected)   (GstRTSPServer *server, GstRTSPClient *client);
76
77   /*< private >*/
78   gpointer         _gst_reserved[GST_PADDING_LARGE];
79 };
80
81 GType                 gst_rtsp_server_get_type             (void);
82
83 GstRTSPServer *       gst_rtsp_server_new                  (void);
84
85 void                  gst_rtsp_server_set_address          (GstRTSPServer *server, const gchar *address);
86 gchar *               gst_rtsp_server_get_address          (GstRTSPServer *server);
87
88 void                  gst_rtsp_server_set_service          (GstRTSPServer *server, const gchar *service);
89 gchar *               gst_rtsp_server_get_service          (GstRTSPServer *server);
90
91 void                  gst_rtsp_server_set_backlog          (GstRTSPServer *server, gint backlog);
92 gint                  gst_rtsp_server_get_backlog          (GstRTSPServer *server);
93
94 int                   gst_rtsp_server_get_bound_port       (GstRTSPServer *server);
95
96 void                  gst_rtsp_server_set_session_pool     (GstRTSPServer *server, GstRTSPSessionPool *pool);
97 GstRTSPSessionPool *  gst_rtsp_server_get_session_pool     (GstRTSPServer *server);
98
99 void                  gst_rtsp_server_set_mount_points     (GstRTSPServer *server, GstRTSPMountPoints *mounts);
100 GstRTSPMountPoints *  gst_rtsp_server_get_mount_points     (GstRTSPServer *server);
101
102 void                  gst_rtsp_server_set_auth             (GstRTSPServer *server, GstRTSPAuth *auth);
103 GstRTSPAuth *         gst_rtsp_server_get_auth             (GstRTSPServer *server);
104
105 void                  gst_rtsp_server_set_thread_pool      (GstRTSPServer *server, GstRTSPThreadPool *pool);
106 GstRTSPThreadPool *   gst_rtsp_server_get_thread_pool      (GstRTSPServer *server);
107
108 gboolean              gst_rtsp_server_transfer_connection  (GstRTSPServer * server, GSocket *socket,
109                                                             const gchar * ip, gint port,
110                                                             const gchar *initial_buffer);
111
112 gboolean              gst_rtsp_server_io_func              (GSocket *socket, GIOCondition condition,
113                                                             GstRTSPServer *server);
114
115 GSocket *             gst_rtsp_server_create_socket        (GstRTSPServer *server,
116                                                             GCancellable  *cancellable,
117                                                             GError **error);
118 GSource *             gst_rtsp_server_create_source        (GstRTSPServer *server,
119                                                             GCancellable * cancellable,
120                                                             GError **error);
121 guint                 gst_rtsp_server_attach               (GstRTSPServer *server,
122                                                             GMainContext *context);
123
124 /**
125  * GstRTSPServerClientFilterFunc:
126  * @server: a #GstRTSPServer object
127  * @client: a #GstRTSPClient in @server
128  * @user_data: user data that has been given to gst_rtsp_server_client_filter()
129  *
130  * This function will be called by the gst_rtsp_server_client_filter(). An
131  * implementation should return a value of #GstRTSPFilterResult.
132  *
133  * When this function returns #GST_RTSP_FILTER_REMOVE, @client will be removed
134  * from @server.
135  *
136  * A return value of #GST_RTSP_FILTER_KEEP will leave @client untouched in
137  * @server.
138  *
139  * A value of #GST_RTSP_FILTER_REF will add @client to the result #GList of
140  * gst_rtsp_server_client_filter().
141  *
142  * Returns: a #GstRTSPFilterResult.
143  */
144 typedef GstRTSPFilterResult (*GstRTSPServerClientFilterFunc)  (GstRTSPServer *server,
145                                                                GstRTSPClient *client,
146                                                                gpointer user_data);
147
148 GList *                gst_rtsp_server_client_filter    (GstRTSPServer *server,
149                                                          GstRTSPServerClientFilterFunc func,
150                                                          gpointer user_data);
151
152 G_END_DECLS
153
154 #endif /* __GST_RTSP_SERVER_H__ */