rtsp-server: add padding to many public structures
[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_transport: called when the client transport needs to be
80  *    configured.
81  * @params_set: set parameters. This function should also initialize the
82  *    RTSP response(ctx->response) via a call to gst_rtsp_message_init_response()
83  * @params_get: get parameters. This function should also initialize the
84  *    RTSP response(ctx->response) via a call to gst_rtsp_message_init_response()
85  *
86  * The client class structure.
87  */
88 struct _GstRTSPClientClass {
89   GObjectClass  parent_class;
90
91   GstSDPMessage * (*create_sdp) (GstRTSPClient *client, GstRTSPMedia *media);
92   gboolean        (*configure_client_transport) (GstRTSPClient * client,
93                                                  GstRTSPContext * ctx,
94                                                  GstRTSPTransport * ct);
95   GstRTSPResult   (*params_set) (GstRTSPClient *client, GstRTSPContext *ctx);
96   GstRTSPResult   (*params_get) (GstRTSPClient *client, GstRTSPContext *ctx);
97   gchar *         (*make_path_from_uri) (GstRTSPClient *client, const GstRTSPUrl *uri);
98
99   /* signals */
100   void     (*closed)                  (GstRTSPClient *client);
101   void     (*new_session)             (GstRTSPClient *client, GstRTSPSession *session);
102   void     (*options_request)         (GstRTSPClient *client, GstRTSPContext *ctx);
103   void     (*describe_request)        (GstRTSPClient *client, GstRTSPContext *ctx);
104   void     (*setup_request)           (GstRTSPClient *client, GstRTSPContext *ctx);
105   void     (*play_request)            (GstRTSPClient *client, GstRTSPContext *ctx);
106   void     (*pause_request)           (GstRTSPClient *client, GstRTSPContext *ctx);
107   void     (*teardown_request)        (GstRTSPClient *client, GstRTSPContext *ctx);
108   void     (*set_parameter_request)   (GstRTSPClient *client, GstRTSPContext *ctx);
109   void     (*get_parameter_request)   (GstRTSPClient *client, GstRTSPContext *ctx);
110   void     (*handle_response)         (GstRTSPClient *client, GstRTSPContext *ctx);
111
112   /*< private >*/
113   gpointer _gst_reserved[GST_PADDING_LARGE];
114 };
115
116 GType                 gst_rtsp_client_get_type          (void);
117
118 GstRTSPClient *       gst_rtsp_client_new               (void);
119
120 void                  gst_rtsp_client_set_session_pool  (GstRTSPClient *client,
121                                                          GstRTSPSessionPool *pool);
122 GstRTSPSessionPool *  gst_rtsp_client_get_session_pool  (GstRTSPClient *client);
123
124 void                  gst_rtsp_client_set_mount_points  (GstRTSPClient *client,
125                                                          GstRTSPMountPoints *mounts);
126 GstRTSPMountPoints *  gst_rtsp_client_get_mount_points  (GstRTSPClient *client);
127
128 void                  gst_rtsp_client_set_auth          (GstRTSPClient *client, GstRTSPAuth *auth);
129 GstRTSPAuth *         gst_rtsp_client_get_auth          (GstRTSPClient *client);
130
131 void                  gst_rtsp_client_set_thread_pool   (GstRTSPClient *client, GstRTSPThreadPool *pool);
132 GstRTSPThreadPool *   gst_rtsp_client_get_thread_pool   (GstRTSPClient *client);
133
134 gboolean              gst_rtsp_client_set_connection    (GstRTSPClient *client, GstRTSPConnection *conn);
135 GstRTSPConnection *   gst_rtsp_client_get_connection    (GstRTSPClient *client);
136
137 guint                 gst_rtsp_client_attach            (GstRTSPClient *client,
138                                                          GMainContext *context);
139
140 void                  gst_rtsp_client_set_send_func     (GstRTSPClient *client,
141                                                          GstRTSPClientSendFunc func,
142                                                          gpointer user_data,
143                                                          GDestroyNotify notify);
144
145 GstRTSPResult         gst_rtsp_client_handle_message    (GstRTSPClient *client,
146                                                          GstRTSPMessage *message);
147 GstRTSPResult         gst_rtsp_client_send_message      (GstRTSPClient * client,
148                                                          GstRTSPSession *session,
149                                                          GstRTSPMessage *message);
150 /**
151  * GstRTSPClientSessionFilterFunc:
152  * @client: a #GstRTSPClient object
153  * @sess: a #GstRTSPSession in @client
154  * @user_data: user data that has been given to gst_rtsp_client_session_filter()
155  *
156  * This function will be called by the gst_rtsp_client_session_filter(). An
157  * implementation should return a value of #GstRTSPFilterResult.
158  *
159  * When this function returns #GST_RTSP_FILTER_REMOVE, @sess will be removed
160  * from @client.
161  *
162  * A return value of #GST_RTSP_FILTER_KEEP will leave @sess untouched in
163  * @client.
164  *
165  * A value of #GST_RTSP_FILTER_REF will add @sess to the result #GList of
166  * gst_rtsp_client_session_filter().
167  *
168  * Returns: a #GstRTSPFilterResult.
169  */
170 typedef GstRTSPFilterResult (*GstRTSPClientSessionFilterFunc)  (GstRTSPClient *client,
171                                                                 GstRTSPSession *sess,
172                                                                 gpointer user_data);
173
174 GList *                gst_rtsp_client_session_filter    (GstRTSPClient *client,
175                                                           GstRTSPClientSessionFilterFunc func,
176                                                           gpointer user_data);
177
178
179
180 G_END_DECLS
181
182 #endif /* __GST_RTSP_CLIENT_H__ */