client: add vmethod to configure media and streams
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-client.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., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #include <gst/gst.h>
21 #include <gst/rtsp/gstrtspconnection.h>
22
23 #ifndef __GST_RTSP_CLIENT_H__
24 #define __GST_RTSP_CLIENT_H__
25
26 G_BEGIN_DECLS
27
28 typedef struct _GstRTSPClient GstRTSPClient;
29 typedef struct _GstRTSPClientClass GstRTSPClientClass;
30 typedef struct _GstRTSPClientPrivate GstRTSPClientPrivate;
31
32 #include "rtsp-context.h"
33 #include "rtsp-mount-points.h"
34 #include "rtsp-sdp.h"
35 #include "rtsp-auth.h"
36
37 #define GST_TYPE_RTSP_CLIENT              (gst_rtsp_client_get_type ())
38 #define GST_IS_RTSP_CLIENT(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_CLIENT))
39 #define GST_IS_RTSP_CLIENT_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_CLIENT))
40 #define GST_RTSP_CLIENT_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClientClass))
41 #define GST_RTSP_CLIENT(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_CLIENT, GstRTSPClient))
42 #define GST_RTSP_CLIENT_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_CLIENT, GstRTSPClientClass))
43 #define GST_RTSP_CLIENT_CAST(obj)         ((GstRTSPClient*)(obj))
44 #define GST_RTSP_CLIENT_CLASS_CAST(klass) ((GstRTSPClientClass*)(klass))
45
46 /**
47  * GstRTSPClientSendFunc:
48  * @client: a #GstRTSPClient
49  * @message: a #GstRTSPMessage
50  * @close: close the connection
51  * @user_data: user data when registering the callback
52  *
53  * This callback is called when @client wants to send @message. When @close is
54  * %TRUE, the connection should be closed when the message has been sent.
55  *
56  * Returns: %TRUE on success.
57  */
58 typedef gboolean (*GstRTSPClientSendFunc)      (GstRTSPClient *client,
59                                                 GstRTSPMessage *message,
60                                                 gboolean close,
61                                                 gpointer user_data);
62
63 /**
64  * GstRTSPClient:
65  *
66  * The client object represents the connection and its state with a client.
67  */
68 struct _GstRTSPClient {
69   GObject       parent;
70
71   /*< private >*/
72   GstRTSPClientPrivate *priv;
73   gpointer _gst_reserved[GST_PADDING];
74 };
75
76 /**
77  * GstRTSPClientClass:
78  * @create_sdp: called when the SDP needs to be created for media.
79  * @configure_client_media: called when the stream in media needs to be configured.
80  *    The default implementation will configure the blocksize on the payloader when
81  *    spcified in the request headers.
82  * @configure_client_transport: called when the client transport needs to be
83  *    configured.
84  * @params_set: set parameters. This function should also initialize the
85  *    RTSP response(ctx->response) via a call to gst_rtsp_message_init_response()
86  * @params_get: get parameters. This function should also initialize the
87  *    RTSP response(ctx->response) via a call to gst_rtsp_message_init_response()
88  *
89  * The client class structure.
90  */
91 struct _GstRTSPClientClass {
92   GObjectClass  parent_class;
93
94   GstSDPMessage * (*create_sdp) (GstRTSPClient *client, GstRTSPMedia *media);
95   gboolean        (*configure_client_media)     (GstRTSPClient * client,
96                                                  GstRTSPMedia * media, GstRTSPStream * stream,
97                                                  GstRTSPContext * ctx);
98   gboolean        (*configure_client_transport) (GstRTSPClient * client,
99                                                  GstRTSPContext * ctx,
100                                                  GstRTSPTransport * ct);
101   GstRTSPResult   (*params_set) (GstRTSPClient *client, GstRTSPContext *ctx);
102   GstRTSPResult   (*params_get) (GstRTSPClient *client, GstRTSPContext *ctx);
103   gchar *         (*make_path_from_uri) (GstRTSPClient *client, const GstRTSPUrl *uri);
104
105   /* signals */
106   void     (*closed)                  (GstRTSPClient *client);
107   void     (*new_session)             (GstRTSPClient *client, GstRTSPSession *session);
108   void     (*options_request)         (GstRTSPClient *client, GstRTSPContext *ctx);
109   void     (*describe_request)        (GstRTSPClient *client, GstRTSPContext *ctx);
110   void     (*setup_request)           (GstRTSPClient *client, GstRTSPContext *ctx);
111   void     (*play_request)            (GstRTSPClient *client, GstRTSPContext *ctx);
112   void     (*pause_request)           (GstRTSPClient *client, GstRTSPContext *ctx);
113   void     (*teardown_request)        (GstRTSPClient *client, GstRTSPContext *ctx);
114   void     (*set_parameter_request)   (GstRTSPClient *client, GstRTSPContext *ctx);
115   void     (*get_parameter_request)   (GstRTSPClient *client, GstRTSPContext *ctx);
116   void     (*handle_response)         (GstRTSPClient *client, GstRTSPContext *ctx);
117
118   /*< private >*/
119   gpointer _gst_reserved[GST_PADDING_LARGE];
120 };
121
122 GType                 gst_rtsp_client_get_type          (void);
123
124 GstRTSPClient *       gst_rtsp_client_new               (void);
125
126 void                  gst_rtsp_client_set_session_pool  (GstRTSPClient *client,
127                                                          GstRTSPSessionPool *pool);
128 GstRTSPSessionPool *  gst_rtsp_client_get_session_pool  (GstRTSPClient *client);
129
130 void                  gst_rtsp_client_set_mount_points  (GstRTSPClient *client,
131                                                          GstRTSPMountPoints *mounts);
132 GstRTSPMountPoints *  gst_rtsp_client_get_mount_points  (GstRTSPClient *client);
133
134 void                  gst_rtsp_client_set_auth          (GstRTSPClient *client, GstRTSPAuth *auth);
135 GstRTSPAuth *         gst_rtsp_client_get_auth          (GstRTSPClient *client);
136
137 void                  gst_rtsp_client_set_thread_pool   (GstRTSPClient *client, GstRTSPThreadPool *pool);
138 GstRTSPThreadPool *   gst_rtsp_client_get_thread_pool   (GstRTSPClient *client);
139
140 gboolean              gst_rtsp_client_set_connection    (GstRTSPClient *client, GstRTSPConnection *conn);
141 GstRTSPConnection *   gst_rtsp_client_get_connection    (GstRTSPClient *client);
142
143 guint                 gst_rtsp_client_attach            (GstRTSPClient *client,
144                                                          GMainContext *context);
145
146 void                  gst_rtsp_client_set_send_func     (GstRTSPClient *client,
147                                                          GstRTSPClientSendFunc func,
148                                                          gpointer user_data,
149                                                          GDestroyNotify notify);
150
151 GstRTSPResult         gst_rtsp_client_handle_message    (GstRTSPClient *client,
152                                                          GstRTSPMessage *message);
153 GstRTSPResult         gst_rtsp_client_send_message      (GstRTSPClient * client,
154                                                          GstRTSPSession *session,
155                                                          GstRTSPMessage *message);
156 /**
157  * GstRTSPClientSessionFilterFunc:
158  * @client: a #GstRTSPClient object
159  * @sess: a #GstRTSPSession in @client
160  * @user_data: user data that has been given to gst_rtsp_client_session_filter()
161  *
162  * This function will be called by the gst_rtsp_client_session_filter(). An
163  * implementation should return a value of #GstRTSPFilterResult.
164  *
165  * When this function returns #GST_RTSP_FILTER_REMOVE, @sess will be removed
166  * from @client.
167  *
168  * A return value of #GST_RTSP_FILTER_KEEP will leave @sess untouched in
169  * @client.
170  *
171  * A value of #GST_RTSP_FILTER_REF will add @sess to the result #GList of
172  * gst_rtsp_client_session_filter().
173  *
174  * Returns: a #GstRTSPFilterResult.
175  */
176 typedef GstRTSPFilterResult (*GstRTSPClientSessionFilterFunc)  (GstRTSPClient *client,
177                                                                 GstRTSPSession *sess,
178                                                                 gpointer user_data);
179
180 GList *                gst_rtsp_client_session_filter    (GstRTSPClient *client,
181                                                           GstRTSPClientSessionFilterFunc func,
182                                                           gpointer user_data);
183
184
185
186 G_END_DECLS
187
188 #endif /* __GST_RTSP_CLIENT_H__ */