media: add lock to protect state changes
[platform/upstream/gstreamer.git] / gst / rtsp-server / rtsp-media-mapping.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
22 #include <gst/rtsp/gstrtspurl.h>
23
24 #include "rtsp-media-factory.h"
25
26 #ifndef __GST_RTSP_MEDIA_MAPPING_H__
27 #define __GST_RTSP_MEDIA_MAPPING_H__
28
29 G_BEGIN_DECLS
30
31 #define GST_TYPE_RTSP_MEDIA_MAPPING              (gst_rtsp_media_mapping_get_type ())
32 #define GST_IS_RTSP_MEDIA_MAPPING(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_MEDIA_MAPPING))
33 #define GST_IS_RTSP_MEDIA_MAPPING_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_MEDIA_MAPPING))
34 #define GST_RTSP_MEDIA_MAPPING_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_MEDIA_MAPPING, GstRTSPMediaMappingClass))
35 #define GST_RTSP_MEDIA_MAPPING(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_MEDIA_MAPPING, GstRTSPMediaMapping))
36 #define GST_RTSP_MEDIA_MAPPING_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_MEDIA_MAPPING, GstRTSPMediaMappingClass))
37 #define GST_RTSP_MEDIA_MAPPING_CAST(obj)         ((GstRTSPMediaMapping*)(obj))
38 #define GST_RTSP_MEDIA_MAPPING_CLASS_CAST(klass) ((GstRTSPMediaMappingClass*)(klass))
39
40 typedef struct _GstRTSPMediaMapping GstRTSPMediaMapping;
41 typedef struct _GstRTSPMediaMappingClass GstRTSPMediaMappingClass;
42
43 /**
44  * GstRTSPMediaMapping:
45  * @parent: parent GObject
46  * @mappings: the mountpoint to media mappings
47  *
48  * Creates a #GstRTSPMediaFactory object for a given url.
49  */
50 struct _GstRTSPMediaMapping {
51   GObject       parent;
52
53   GMutex        lock;
54   GHashTable   *mappings;
55 };
56
57 /**
58  * GstRTSPMediaMappingClass:
59  * @parent_class: parent GObject class
60  * @find_factory: Create or return a previously cached #GstRTSPMediaFactory object
61  *        for the given url. the default implementation will use the mappings
62  *        added with gst_rtsp_media_mapping_add_factory().
63  *
64  * The class for the media mapping object.
65  */
66 struct _GstRTSPMediaMappingClass {
67   GObjectClass  parent_class;
68
69   GstRTSPMediaFactory * (*find_factory)  (GstRTSPMediaMapping *mapping, const GstRTSPUrl *url);
70 };
71
72 GType                 gst_rtsp_media_mapping_get_type     (void);
73
74 /* creating a mapping */
75 GstRTSPMediaMapping * gst_rtsp_media_mapping_new          (void);
76
77 /* finding a media factory */
78 GstRTSPMediaFactory * gst_rtsp_media_mapping_find_factory   (GstRTSPMediaMapping *mapping, const GstRTSPUrl *url);
79
80 /* managing media to a path */
81 void                  gst_rtsp_media_mapping_add_factory    (GstRTSPMediaMapping *mapping, const gchar *path,
82                                                              GstRTSPMediaFactory *factory);
83 void                  gst_rtsp_media_mapping_remove_factory (GstRTSPMediaMapping *mapping, const gchar *path);
84
85 G_END_DECLS
86
87 #endif /* __GST_RTSP_MEDIA_MAPPING_H__ */