5dd5629b63963193131e0540481576587b14ce8f
[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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <errno.h>
24 #include <string.h>
25 #include <sys/time.h>
26 #include <sys/types.h>
27 #include <netinet/in.h>
28 #include <netdb.h>
29 #include <sys/socket.h>
30 #include <sys/wait.h>
31 #include <fcntl.h>
32 #include <arpa/inet.h>
33
34 #include <gst/gst.h>
35
36 #include "rtsp-session-pool.h"
37 #include "rtsp-media-factory.h"
38 #include "rtsp-client.h"
39
40 #ifndef __GST_RTSP_SERVER_H__
41 #define __GST_RTSP_SERVER_H__
42
43 G_BEGIN_DECLS
44
45 #define GST_TYPE_RTSP_SERVER              (gst_rtsp_server_get_type ())
46 #define GST_IS_RTSP_SERVER(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_SERVER))
47 #define GST_IS_RTSP_SERVER_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_SERVER))
48 #define GST_RTSP_SERVER_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_SERVER, GstRTSPServerClass))
49 #define GST_RTSP_SERVER(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_SERVER, GstRTSPServer))
50 #define GST_RTSP_SERVER_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_SERVER, GstRTSPServerClass))
51 #define GST_RTSP_SERVER_CAST(obj)         ((GstRTSPServer*)(obj))
52 #define GST_RTSP_SERVER_CLASS_CAST(klass) ((GstRTSPServerClass*)(klass))
53
54 typedef struct _GstRTSPServer GstRTSPServer;
55 typedef struct _GstRTSPServerClass GstRTSPServerClass;
56
57 struct _GstRTSPServer {
58   GObject       parent;
59
60   /* server information */
61   gint server_port;
62   gint backlog;
63   gchar *host;
64   struct sockaddr_in server_sin;
65
66   /* socket */
67   GstPollFD server_sock;
68
69   GIOChannel *io_channel;
70   GSource *io_watch;
71
72   /* sessions on this server */
73   GstRTSPSessionPool *pool;
74
75   /* media factory for this server */
76   GstRTSPMediaFactory *factory;
77 };
78
79 /**
80  * GstRTSPServerClass:
81  *
82  * @accept_client: Create, configure, accept and return a new GstRTSPClient 
83  *   object that handles the new connection on @channel.
84  *
85  * The RTSP server class structure
86  */
87 struct _GstRTSPServerClass {
88   GObjectClass  parent_class;
89
90   GstRTSPClient * (*accept_client) (GstRTSPServer *server, GIOChannel *channel);
91 };
92
93 GType                 gst_rtsp_server_get_type             (void);
94
95 GstRTSPServer *       gst_rtsp_server_new                  (void);
96
97 void                  gst_rtsp_server_set_port             (GstRTSPServer *server, gint port);
98 gint                  gst_rtsp_server_get_port             (GstRTSPServer *server);
99
100 void                  gst_rtsp_server_set_backlog          (GstRTSPServer *server, gint backlog);
101 gint                  gst_rtsp_server_get_backlog          (GstRTSPServer *server);
102
103 void                  gst_rtsp_server_set_session_pool     (GstRTSPServer *server, GstRTSPSessionPool *pool);
104 GstRTSPSessionPool *  gst_rtsp_server_get_session_pool     (GstRTSPServer *server);
105
106 void                  gst_rtsp_server_set_media_factory    (GstRTSPServer *server, GstRTSPMediaFactory *factory);
107 GstRTSPMediaFactory * gst_rtsp_server_get_media_factory    (GstRTSPServer *server);
108
109 gboolean              gst_rtsp_server_io_func              (GIOChannel *channel, GIOCondition condition,
110                                                            GstRTSPServer *server);
111
112 GIOChannel *          gst_rtsp_server_get_io_channel       (GstRTSPServer *server);
113 GSource *             gst_rtsp_server_create_watch         (GstRTSPServer *server);
114 guint                 gst_rtsp_server_attach               (GstRTSPServer *server, 
115                                                            GMainContext *context);
116
117 G_END_DECLS
118
119 #endif /* __GST_RTSP_SERVER_H__ */