rtsp: make object details private
[platform/upstream/gstreamer.git] / examples / test-auth.c
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 #include <gst/gst.h>
21
22 #include <gst/rtsp-server/rtsp-server.h>
23
24 static gboolean
25 remove_func (GstRTSPSessionPool * pool, GstRTSPSession * session,
26     GstRTSPServer * server)
27 {
28   return GST_RTSP_FILTER_REMOVE;
29 }
30
31 static gboolean
32 remove_sessions (GstRTSPServer * server)
33 {
34   GstRTSPSessionPool *pool;
35
36   g_print ("removing all sessions\n");
37   pool = gst_rtsp_server_get_session_pool (server);
38   gst_rtsp_session_pool_filter (pool,
39       (GstRTSPSessionPoolFilterFunc) remove_func, server);
40   g_object_unref (pool);
41
42   return FALSE;
43 }
44
45 static gboolean
46 timeout (GstRTSPServer * server)
47 {
48   GstRTSPSessionPool *pool;
49
50   pool = gst_rtsp_server_get_session_pool (server);
51   gst_rtsp_session_pool_cleanup (pool);
52   g_object_unref (pool);
53
54   return TRUE;
55 }
56
57 int
58 main (int argc, char *argv[])
59 {
60   GMainLoop *loop;
61   GstRTSPServer *server;
62   GstRTSPMountPoints *mounts;
63   GstRTSPMediaFactory *factory;
64   GstRTSPAuth *auth;
65   gchar *basic;
66
67   gst_init (&argc, &argv);
68
69   loop = g_main_loop_new (NULL, FALSE);
70
71   /* create a server instance */
72   server = gst_rtsp_server_new ();
73
74   /* get the mounts for this server, every server has a default mapper object
75    * that be used to map uri mount points to media factories */
76   mounts = gst_rtsp_server_get_mount_points (server);
77
78
79   /* make a media factory for a test stream. The default media factory can use
80    * gst-launch syntax to create pipelines. 
81    * any launch line works as long as it contains elements named pay%d. Each
82    * element with pay%d names will be a stream */
83   factory = gst_rtsp_media_factory_new ();
84   gst_rtsp_media_factory_set_launch (factory, "( "
85       "videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! "
86       "x264enc ! rtph264pay name=pay0 pt=96 "
87       "audiotestsrc ! audio/x-raw,rate=8000 ! "
88       "alawenc ! rtppcmapay name=pay1 pt=97 " ")");
89
90   /* make a new authentication manager */
91   auth = gst_rtsp_auth_new ();
92   basic = gst_rtsp_auth_make_basic ("user", "admin");
93   gst_rtsp_auth_set_basic (auth, basic);
94   g_free (basic);
95   gst_rtsp_media_factory_set_auth (factory, auth);
96   g_object_unref (auth);
97   /* attach the test factory to the /test url */
98   gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
99
100   /* make another factory */
101   factory = gst_rtsp_media_factory_new ();
102   gst_rtsp_media_factory_set_launch (factory, "( "
103       "videotestsrc ! video/x-raw,width=352,height=288,framerate=30/1 ! "
104       "x264enc ! rtph264pay name=pay0 pt=96 )");
105   /* make a new authentication manager */
106   auth = gst_rtsp_auth_new ();
107   basic = gst_rtsp_auth_make_basic ("user2", "admin2");
108   gst_rtsp_auth_set_basic (auth, basic);
109   g_free (basic);
110   gst_rtsp_media_factory_set_auth (factory, auth);
111   g_object_unref (auth);
112   /* attach the test factory to the /test url */
113   gst_rtsp_mount_points_add_factory (mounts, "/test2", factory);
114
115   /* don't need the ref to the mapper anymore */
116   g_object_unref (mounts);
117
118   /* attach the server to the default maincontext */
119   if (gst_rtsp_server_attach (server, NULL) == 0)
120     goto failed;
121
122   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
123   g_timeout_add_seconds (10, (GSourceFunc) remove_sessions, server);
124
125   /* start serving */
126   g_print ("stream with user:admin ready at rtsp://127.0.0.1:8554/test\n");
127   g_print ("stream with user2:admin2 ready at rtsp://127.0.0.1:8554/test2\n");
128   g_main_loop_run (loop);
129
130   return 0;
131
132   /* ERRORS */
133 failed:
134   {
135     g_print ("failed to attach the server\n");
136     return -1;
137   }
138 }