auth: add authentication object
[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-mapping.h"
38 #include "rtsp-media-factory-uri.h"
39 #include "rtsp-client.h"
40 #include "rtsp-auth.h"
41
42 #ifndef __GST_RTSP_SERVER_H__
43 #define __GST_RTSP_SERVER_H__
44
45 G_BEGIN_DECLS
46
47 #define GST_TYPE_RTSP_SERVER              (gst_rtsp_server_get_type ())
48 #define GST_IS_RTSP_SERVER(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_SERVER))
49 #define GST_IS_RTSP_SERVER_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_SERVER))
50 #define GST_RTSP_SERVER_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_SERVER, GstRTSPServerClass))
51 #define GST_RTSP_SERVER(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_SERVER, GstRTSPServer))
52 #define GST_RTSP_SERVER_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_SERVER, GstRTSPServerClass))
53 #define GST_RTSP_SERVER_CAST(obj)         ((GstRTSPServer*)(obj))
54 #define GST_RTSP_SERVER_CLASS_CAST(klass) ((GstRTSPServerClass*)(klass))
55
56 typedef struct _GstRTSPServer GstRTSPServer;
57 typedef struct _GstRTSPServerClass GstRTSPServerClass;
58
59 struct _GstRTSPServer {
60   GObject       parent;
61
62   /* server information */
63   gchar *address;
64   gchar *service;
65   gint   backlog;
66
67   struct  sockaddr_in server_sin;
68
69   /* socket and channels */
70   GstPollFD    server_sock;
71   GIOChannel  *io_channel;
72   GSource     *io_watch;
73
74   /* sessions on this server */
75   GstRTSPSessionPool  *session_pool;
76
77   /* media mapper for this server */
78   GstRTSPMediaMapping *media_mapping;
79
80   /* authentication manager */
81   GstRTSPAuth *auth;
82 };
83
84 /**
85  * GstRTSPServerClass:
86  *
87  * @accept_client: Create, configure, accept and return a new GstRTSPClient 
88  *   object that handles the new connection on @channel.
89  *
90  * The RTSP server class structure
91  */
92 struct _GstRTSPServerClass {
93   GObjectClass  parent_class;
94
95   GstRTSPClient * (*accept_client) (GstRTSPServer *server, GIOChannel *channel);
96 };
97
98 GType                 gst_rtsp_server_get_type             (void);
99
100 GstRTSPServer *       gst_rtsp_server_new                  (void);
101
102 void                  gst_rtsp_server_set_address          (GstRTSPServer *server, const gchar *address);
103 gchar *               gst_rtsp_server_get_address          (GstRTSPServer *server);
104
105 void                  gst_rtsp_server_set_service          (GstRTSPServer *server, const gchar *service);
106 gchar *               gst_rtsp_server_get_service          (GstRTSPServer *server);
107
108 void                  gst_rtsp_server_set_backlog          (GstRTSPServer *server, gint backlog);
109 gint                  gst_rtsp_server_get_backlog          (GstRTSPServer *server);
110
111 void                  gst_rtsp_server_set_session_pool     (GstRTSPServer *server, GstRTSPSessionPool *pool);
112 GstRTSPSessionPool *  gst_rtsp_server_get_session_pool     (GstRTSPServer *server);
113
114 void                  gst_rtsp_server_set_media_mapping    (GstRTSPServer *server, GstRTSPMediaMapping *mapping);
115 GstRTSPMediaMapping * gst_rtsp_server_get_media_mapping    (GstRTSPServer *server);
116
117 void                  gst_rtsp_server_set_auth             (GstRTSPServer *server, GstRTSPAuth *auth);
118 GstRTSPAuth *         gst_rtsp_server_get_auth             (GstRTSPServer *server);
119
120 gboolean              gst_rtsp_server_io_func              (GIOChannel *channel, GIOCondition condition,
121                                                             GstRTSPServer *server);
122
123 GIOChannel *          gst_rtsp_server_get_io_channel       (GstRTSPServer *server);
124 GSource *             gst_rtsp_server_create_watch         (GstRTSPServer *server);
125 guint                 gst_rtsp_server_attach               (GstRTSPServer *server,
126                                                             GMainContext *context);
127
128 G_END_DECLS
129
130 #endif /* __GST_RTSP_SERVER_H__ */