rtsp-server: Use single-include rtsp header to make sure we get all definitions
[platform/upstream/gstreamer.git] / examples / test-uri.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 #include <gst/rtsp-server/rtsp-media-factory-uri.h>
24
25 #define DEFAULT_RTSP_PORT "8554"
26
27 static char *port = (char *) DEFAULT_RTSP_PORT;
28
29 static GOptionEntry entries[] = {
30   {"port", 'p', 0, G_OPTION_ARG_STRING, &port,
31       "Port to listen on (default: " DEFAULT_RTSP_PORT ")", "PORT"},
32   {NULL}
33 };
34
35
36 static gboolean
37 timeout (GstRTSPServer * server)
38 {
39   GstRTSPSessionPool *pool;
40
41   pool = gst_rtsp_server_get_session_pool (server);
42   gst_rtsp_session_pool_cleanup (pool);
43   g_object_unref (pool);
44
45   return TRUE;
46 }
47
48 #if 0
49 static gboolean
50 remove_map (GstRTSPServer * server)
51 {
52   GstRTSPMountPoints *mounts;
53
54   g_print ("removing /test mount point\n");
55   mounts = gst_rtsp_server_get_mount_points (server);
56   gst_rtsp_mount_points_remove_factory (mounts, "/test");
57   g_object_unref (mounts);
58
59   return FALSE;
60 }
61 #endif
62
63 int
64 main (int argc, gchar * argv[])
65 {
66   GMainLoop *loop;
67   GstRTSPServer *server;
68   GstRTSPMountPoints *mounts;
69   GstRTSPMediaFactoryURI *factory;
70   GOptionContext *optctx;
71   GError *error = NULL;
72   gchar *uri;
73
74   optctx = g_option_context_new ("<uri> - Test RTSP Server, URI");
75   g_option_context_add_main_entries (optctx, entries, NULL);
76   g_option_context_add_group (optctx, gst_init_get_option_group ());
77   if (!g_option_context_parse (optctx, &argc, &argv, &error)) {
78     g_printerr ("Error parsing options: %s\n", error->message);
79     return -1;
80   }
81   g_option_context_free (optctx);
82
83   if (argc < 2) {
84     g_printerr ("Please pass an URI or file as argument!\n");
85     return -1;
86   }
87
88   loop = g_main_loop_new (NULL, FALSE);
89
90   /* create a server instance */
91   server = gst_rtsp_server_new ();
92   g_object_set (server, "service", port, NULL);
93
94   /* get the mount points for this server, every server has a default object
95    * that be used to map uri mount points to media factories */
96   mounts = gst_rtsp_server_get_mount_points (server);
97
98   /* make a URI media factory for a test stream. */
99   factory = gst_rtsp_media_factory_uri_new ();
100
101   /* when using GStreamer as a client, one can use the gst payloader, which is
102    * more efficient when there is no payloader for the compressed format */
103   /* g_object_set (factory, "use-gstpay", TRUE, NULL); */
104
105   /* check if URI is valid, otherwise convert filename to URI if it's a file */
106   if (gst_uri_is_valid (argv[1])) {
107     uri = g_strdup (argv[1]);
108   } else if (g_file_test (argv[1], G_FILE_TEST_EXISTS)) {
109     uri = gst_filename_to_uri (argv[1], NULL);
110   } else {
111     g_printerr ("Unrecognised command line argument '%s'.\n"
112         "Please pass an URI or file as argument!\n", argv[1]);
113     return -1;
114   }
115
116   gst_rtsp_media_factory_uri_set_uri (factory, uri);
117   g_free (uri);
118
119   /* if you want multiple clients to see the same video, set the shared property
120    * to TRUE */
121   /* gst_rtsp_media_factory_set_shared ( GST_RTSP_MEDIA_FACTORY (factory), TRUE); */
122
123   /* attach the test factory to the /test url */
124   gst_rtsp_mount_points_add_factory (mounts, "/test",
125       GST_RTSP_MEDIA_FACTORY (factory));
126
127   /* don't need the ref to the mapper anymore */
128   g_object_unref (mounts);
129
130   /* attach the server to the default maincontext */
131   if (gst_rtsp_server_attach (server, NULL) == 0)
132     goto failed;
133
134   /* do session cleanup every 2 seconds */
135   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
136
137 #if 0
138   /* remove the mount point after 10 seconds, new clients won't be able to use
139    * the /test url anymore */
140   g_timeout_add_seconds (10, (GSourceFunc) remove_map, server);
141 #endif
142
143   /* start serving */
144   g_print ("stream ready at rtsp://127.0.0.1:%s/test\n", port);
145   g_main_loop_run (loop);
146
147   return 0;
148
149   /* ERRORS */
150 failed:
151   {
152     g_print ("failed to attach the server\n");
153     return -1;
154   }
155 }