rtsp-client: Add unit test of SETUP for RTSP/RTP/TCP
[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     g_option_context_free (optctx);
80     g_clear_error (&error);
81     return -1;
82   }
83   g_option_context_free (optctx);
84
85   if (argc < 2) {
86     g_printerr ("Please pass an URI or file as argument!\n");
87     return -1;
88   }
89
90   loop = g_main_loop_new (NULL, FALSE);
91
92   /* create a server instance */
93   server = gst_rtsp_server_new ();
94   g_object_set (server, "service", port, NULL);
95
96   /* get the mount points for this server, every server has a default object
97    * that be used to map uri mount points to media factories */
98   mounts = gst_rtsp_server_get_mount_points (server);
99
100   /* make a URI media factory for a test stream. */
101   factory = gst_rtsp_media_factory_uri_new ();
102
103   /* when using GStreamer as a client, one can use the gst payloader, which is
104    * more efficient when there is no payloader for the compressed format */
105   /* g_object_set (factory, "use-gstpay", TRUE, NULL); */
106
107   /* check if URI is valid, otherwise convert filename to URI if it's a file */
108   if (gst_uri_is_valid (argv[1])) {
109     uri = g_strdup (argv[1]);
110   } else if (g_file_test (argv[1], G_FILE_TEST_EXISTS)) {
111     uri = gst_filename_to_uri (argv[1], NULL);
112   } else {
113     g_printerr ("Unrecognised command line argument '%s'.\n"
114         "Please pass an URI or file as argument!\n", argv[1]);
115     return -1;
116   }
117
118   gst_rtsp_media_factory_uri_set_uri (factory, uri);
119   g_free (uri);
120
121   /* if you want multiple clients to see the same video, set the shared property
122    * to TRUE */
123   /* gst_rtsp_media_factory_set_shared ( GST_RTSP_MEDIA_FACTORY (factory), TRUE); */
124
125   /* attach the test factory to the /test url */
126   gst_rtsp_mount_points_add_factory (mounts, "/test",
127       GST_RTSP_MEDIA_FACTORY (factory));
128
129   /* don't need the ref to the mapper anymore */
130   g_object_unref (mounts);
131
132   /* attach the server to the default maincontext */
133   if (gst_rtsp_server_attach (server, NULL) == 0)
134     goto failed;
135
136   /* do session cleanup every 2 seconds */
137   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
138
139 #if 0
140   /* remove the mount point after 10 seconds, new clients won't be able to use
141    * the /test url anymore */
142   g_timeout_add_seconds (10, (GSourceFunc) remove_map, server);
143 #endif
144
145   /* start serving */
146   g_print ("stream ready at rtsp://127.0.0.1:%s/test\n", port);
147   g_main_loop_run (loop);
148
149   return 0;
150
151   /* ERRORS */
152 failed:
153   {
154     g_print ("failed to attach the server\n");
155     return -1;
156   }
157 }