Initial release including wifi display based on gst-rtsp-server-1.4.1
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-context.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_CONTEXT_H__
24 #define __GST_RTSP_CONTEXT_H__
25
26 G_BEGIN_DECLS
27
28 #define GST_TYPE_RTSP_CONTEXT              (gst_rtsp_context_get_type ())
29
30 typedef struct _GstRTSPContext GstRTSPContext;
31
32 #include "rtsp-server.h"
33 #include "rtsp-media.h"
34 #include "rtsp-media-factory.h"
35 #include "rtsp-session-media.h"
36 #include "rtsp-auth.h"
37 #include "rtsp-thread-pool.h"
38 #include "rtsp-token.h"
39
40 /**
41  * GstRTSPContext:
42  * @server: the server
43  * @conn: the connection
44  * @client: the client
45  * @request: the complete request
46  * @uri: the complete url parsed from @request
47  * @method: the parsed method of @uri
48  * @auth: the current auth object or %NULL
49  * @token: authorisation token
50  * @session: the session, can be %NULL
51  * @sessmedia: the session media for the url can be %NULL
52  * @factory: the media factory for the url, can be %NULL
53  * @media: the media for the url can be %NULL
54  * @stream: the stream for the url can be %NULL
55  * @response: the response
56  *
57  * Information passed around containing the context of a request.
58  */
59 struct _GstRTSPContext {
60   GstRTSPServer       *server;
61   GstRTSPConnection   *conn;
62   GstRTSPClient       *client;
63   GstRTSPMessage      *request;
64   GstRTSPUrl          *uri;
65   GstRTSPMethod        method;
66   GstRTSPAuth         *auth;
67   GstRTSPToken        *token;
68   GstRTSPSession      *session;
69   GstRTSPSessionMedia *sessmedia;
70   GstRTSPMediaFactory *factory;
71   GstRTSPMedia        *media;
72   GstRTSPStream       *stream;
73   GstRTSPMessage      *response;
74
75   /*< private >*/
76   gpointer            _gst_reserved[GST_PADDING];
77 };
78
79 GType gst_rtsp_context_get_type (void);
80
81 GstRTSPContext *     gst_rtsp_context_get_current   (void);
82 void                 gst_rtsp_context_push_current  (GstRTSPContext * ctx);
83 void                 gst_rtsp_context_pop_current   (GstRTSPContext * ctx);
84
85
86 G_END_DECLS
87
88 #endif /* __GST_RTSP_CONTEXT_H__ */