parse: Add comment about why we disable the "tracing"
[platform/upstream/gstreamer.git] / gst / parse / types.h
1 #ifndef __GST_PARSE_TYPES_H__
2 #define __GST_PARSE_TYPES_H__
3
4 #include <glib-object.h>
5 #include "../gstelement.h"
6 #include "../gstparse.h"
7
8 typedef struct {
9   GstElement *element;
10   gchar *name;
11   GSList *pads;
12 } reference_t;
13
14 typedef struct {
15   reference_t src;
16   reference_t sink;
17   GstCaps *caps;
18 } link_t;
19
20 typedef struct {
21   GSList *elements;
22   reference_t first;
23   reference_t last;
24 } chain_t;
25
26 typedef struct _graph_t graph_t;
27 struct _graph_t {
28   chain_t *chain; /* links are supposed to be done now */
29   GSList *links;
30   GError **error;
31   GstParseContext *ctx; /* may be NULL */
32   GstParseFlags flags;
33 };
34
35
36 /*
37  * Memory checking. Should probably be done with gsttrace stuff, but that
38  * doesn't really work.
39  * This is not safe from reentrance issues, but that doesn't matter as long as
40  * we lock a mutex before parsing anyway.
41  *
42  * FIXME: Disable this for now for the above reasons
43  */
44 #if 0
45 #ifdef GST_DEBUG_ENABLED
46 #  define __GST_PARSE_TRACE
47 #endif
48 #endif
49
50 #ifdef __GST_PARSE_TRACE
51 G_GNUC_INTERNAL  gchar  *__gst_parse_strdup (gchar *org);
52 G_GNUC_INTERNAL  void   __gst_parse_strfree (gchar *str);
53 G_GNUC_INTERNAL  link_t *__gst_parse_link_new (void);
54 G_GNUC_INTERNAL  void   __gst_parse_link_free (link_t *data);
55 G_GNUC_INTERNAL  chain_t *__gst_parse_chain_new (void);
56 G_GNUC_INTERNAL  void   __gst_parse_chain_free (chain_t *data);
57 #  define gst_parse_strdup __gst_parse_strdup
58 #  define gst_parse_strfree __gst_parse_strfree
59 #  define gst_parse_link_new __gst_parse_link_new
60 #  define gst_parse_link_free __gst_parse_link_free
61 #  define gst_parse_chain_new __gst_parse_chain_new
62 #  define gst_parse_chain_free __gst_parse_chain_free
63 #else /* __GST_PARSE_TRACE */
64 #  define gst_parse_strdup g_strdup
65 #  define gst_parse_strfree g_free
66 #  define gst_parse_link_new() g_new0 (link_t, 1)
67 #  define gst_parse_link_free g_free
68 #  define gst_parse_chain_new() g_new0 (chain_t, 1)
69 #  define gst_parse_chain_free g_free
70 #endif /* __GST_PARSE_TRACE */
71
72 static inline void
73 gst_parse_unescape (gchar *str)
74 {
75   gchar *walk;
76   gboolean in_quotes;
77
78   g_return_if_fail (str != NULL);
79
80   walk = str;
81   in_quotes = FALSE;
82
83   GST_DEBUG ("unescaping %s", str);
84
85   while (*walk) {
86     if (*walk == '\\' && !in_quotes) {
87       walk++;
88       /* make sure we don't read beyond the end of the string */
89       if (*walk == '\0')
90         break;
91     } else if (*walk == '"' && (!in_quotes || (in_quotes
92                 && (*(walk - 1) != '\\')))) {
93       /* don't unescape inside quotes and don't switch
94        * state with escaped quoted inside quotes */
95       in_quotes = !in_quotes;
96     }
97     *str = *walk;
98     str++;
99     walk++;
100   }
101   *str = '\0';
102 }
103
104 G_GNUC_INTERNAL GstElement *priv_gst_parse_launch (const gchar      * str,
105                                                    GError          ** err,
106                                                    GstParseContext  * ctx,
107                                                    GstParseFlags      flags);
108
109 #endif /* __GST_PARSE_TYPES_H__ */