Merge remote-tracking branch 'origin/master' into 0.11
[platform/upstream/gstreamer.git] / gst / gsturi.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  * Copyright (C) 2011 Tim-Philipp Müller <tim centricular net>
5  *
6  * gsturi.c: register URI handlers
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 /**
25  * SECTION:gsturihandler
26  * @short_description: Interface to ease URI handling in plugins.
27  *
28  * The URIHandler is an interface that is implemented by Source and Sink 
29  * #GstElement to simplify then handling of URI.
30  *
31  * An application can use the following functions to quickly get an element
32  * that handles the given URI for reading or writing
33  * (gst_element_make_from_uri()).
34  *
35  * Source and Sink plugins should implement this interface when possible.
36  *
37  * Last reviewed on 2005-11-09 (0.9.4)
38  */
39
40 #ifdef HAVE_CONFIG_H
41 #  include "config.h"
42 #endif
43
44 #include "gst_private.h"
45 #include "gsturi.h"
46 #include "gstinfo.h"
47 #include "gstmarshal.h"
48 #include "gstregistry.h"
49
50 #include "gst-i18n-lib.h"
51
52 #include <string.h>
53
54 GST_DEBUG_CATEGORY_STATIC (gst_uri_handler_debug);
55 #define GST_CAT_DEFAULT gst_uri_handler_debug
56
57 GType
58 gst_uri_handler_get_type (void)
59 {
60   static volatile gsize urihandler_type = 0;
61
62   if (g_once_init_enter (&urihandler_type)) {
63     GType _type;
64     static const GTypeInfo urihandler_info = {
65       sizeof (GstURIHandlerInterface),
66       NULL,
67       NULL,
68       NULL,
69       NULL,
70       NULL,
71       0,
72       0,
73       NULL,
74       NULL
75     };
76
77     _type = g_type_register_static (G_TYPE_INTERFACE,
78         "GstURIHandler", &urihandler_info, 0);
79
80     GST_DEBUG_CATEGORY_INIT (gst_uri_handler_debug, "GST_URI", GST_DEBUG_BOLD,
81         "handling of URIs");
82     g_once_init_leave (&urihandler_type, _type);
83   }
84   return urihandler_type;
85 }
86
87 GQuark
88 gst_uri_error_quark (void)
89 {
90   return g_quark_from_static_string ("gst-uri-error-quark");
91 }
92
93 static const guchar acceptable[96] = {  /* X0   X1   X2   X3   X4   X5   X6   X7   X8   X9   XA   XB   XC   XD   XE   XF */
94   0x00, 0x3F, 0x20, 0x20, 0x20, 0x00, 0x2C, 0x3F, 0x3F, 0x3F, 0x3F, 0x22, 0x20, 0x3F, 0x3F, 0x1C,       /* 2X  !"#$%&'()*+,-./   */
95   0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x38, 0x20, 0x20, 0x2C, 0x20, 0x2C,       /* 3X 0123456789:;<=>?   */
96   0x30, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F,       /* 4X @ABCDEFGHIJKLMNO   */
97   0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x20, 0x20, 0x20, 0x20, 0x3F,       /* 5X PQRSTUVWXYZ[\]^_   */
98   0x20, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F,       /* 6X `abcdefghijklmno   */
99   0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x20, 0x20, 0x20, 0x3F, 0x20        /* 7X pqrstuvwxyz{|}~DEL */
100 };
101
102 typedef enum
103 {
104   UNSAFE_ALL = 0x1,             /* Escape all unsafe characters   */
105   UNSAFE_ALLOW_PLUS = 0x2,      /* Allows '+'  */
106   UNSAFE_PATH = 0x4,            /* Allows '/' and '?' and '&' and '='  */
107   UNSAFE_DOS_PATH = 0x8,        /* Allows '/' and '?' and '&' and '=' and ':' */
108   UNSAFE_HOST = 0x10,           /* Allows '/' and ':' and '@' */
109   UNSAFE_SLASHES = 0x20         /* Allows all characters except for '/' and '%' */
110 } UnsafeCharacterSet;
111
112 #define HEX_ESCAPE '%'
113
114 /*  Escape undesirable characters using %
115  *  -------------------------------------
116  *
117  * This function takes a pointer to a string in which
118  * some characters may be unacceptable unescaped.
119  * It returns a string which has these characters
120  * represented by a '%' character followed by two hex digits.
121  *
122  * This routine returns a g_malloced string.
123  */
124
125 static const gchar hex[16] = "0123456789ABCDEF";
126
127 static gchar *
128 escape_string_internal (const gchar * string, UnsafeCharacterSet mask)
129 {
130 #define ACCEPTABLE_CHAR(a) ((a)>=32 && (a)<128 && (acceptable[(a)-32] & use_mask))
131
132   const gchar *p;
133   gchar *q;
134   gchar *result;
135   guchar c;
136   gint unacceptable;
137   UnsafeCharacterSet use_mask;
138
139   g_return_val_if_fail (mask == UNSAFE_ALL
140       || mask == UNSAFE_ALLOW_PLUS
141       || mask == UNSAFE_PATH
142       || mask == UNSAFE_DOS_PATH
143       || mask == UNSAFE_HOST || mask == UNSAFE_SLASHES, NULL);
144
145   if (string == NULL) {
146     return NULL;
147   }
148
149   unacceptable = 0;
150   use_mask = mask;
151   for (p = string; *p != '\0'; p++) {
152     c = *p;
153     if (!ACCEPTABLE_CHAR (c)) {
154       unacceptable++;
155     }
156     if ((use_mask == UNSAFE_HOST) && (unacceptable || (c == '/'))) {
157       /* when escaping a host, if we hit something that needs to be escaped, or we finally
158        * hit a path separator, revert to path mode (the host segment of the url is over).
159        */
160       use_mask = UNSAFE_PATH;
161     }
162   }
163
164   result = g_malloc (p - string + unacceptable * 2 + 1);
165
166   use_mask = mask;
167   for (q = result, p = string; *p != '\0'; p++) {
168     c = *p;
169
170     if (!ACCEPTABLE_CHAR (c)) {
171       *q++ = HEX_ESCAPE;        /* means hex coming */
172       *q++ = hex[c >> 4];
173       *q++ = hex[c & 15];
174     } else {
175       *q++ = c;
176     }
177     if ((use_mask == UNSAFE_HOST) && (!ACCEPTABLE_CHAR (c) || (c == '/'))) {
178       use_mask = UNSAFE_PATH;
179     }
180   }
181
182   *q = '\0';
183
184   return result;
185 }
186
187 /* escape_string:
188  * @string: string to be escaped
189  *
190  * Escapes @string, replacing any and all special characters
191  * with equivalent escape sequences.
192  *
193  * Return value: a newly allocated string equivalent to @string
194  * but with all special characters escaped
195  **/
196 static gchar *
197 escape_string (const gchar * string)
198 {
199   return escape_string_internal (string, UNSAFE_ALL);
200 }
201
202 static int
203 hex_to_int (gchar c)
204 {
205   return c >= '0' && c <= '9' ? c - '0'
206       : c >= 'A' && c <= 'F' ? c - 'A' + 10
207       : c >= 'a' && c <= 'f' ? c - 'a' + 10 : -1;
208 }
209
210 static int
211 unescape_character (const char *scanner)
212 {
213   int first_digit;
214   int second_digit;
215
216   first_digit = hex_to_int (*scanner++);
217   if (first_digit < 0) {
218     return -1;
219   }
220
221   second_digit = hex_to_int (*scanner);
222   if (second_digit < 0) {
223     return -1;
224   }
225
226   return (first_digit << 4) | second_digit;
227 }
228
229 /* unescape_string:
230  * @escaped_string: an escaped URI, path, or other string
231  * @illegal_characters: a string containing a sequence of characters
232  * considered "illegal", '\0' is automatically in this list.
233  *
234  * Decodes escaped characters (i.e. PERCENTxx sequences) in @escaped_string.
235  * Characters are encoded in PERCENTxy form, where xy is the ASCII hex code
236  * for character 16x+y.
237  *
238  * Return value: a newly allocated string with the unescaped equivalents,
239  * or %NULL if @escaped_string contained one of the characters
240  * in @illegal_characters.
241  **/
242 static char *
243 unescape_string (const gchar * escaped_string, const gchar * illegal_characters)
244 {
245   const gchar *in;
246   gchar *out, *result;
247   gint character;
248
249   if (escaped_string == NULL) {
250     return NULL;
251   }
252
253   result = g_malloc (strlen (escaped_string) + 1);
254
255   out = result;
256   for (in = escaped_string; *in != '\0'; in++) {
257     character = *in;
258     if (*in == HEX_ESCAPE) {
259       character = unescape_character (in + 1);
260
261       /* Check for an illegal character. We consider '\0' illegal here. */
262       if (character <= 0
263           || (illegal_characters != NULL
264               && strchr (illegal_characters, (char) character) != NULL)) {
265         g_free (result);
266         return NULL;
267       }
268       in += 2;
269     }
270     *out++ = (char) character;
271   }
272
273   *out = '\0';
274   g_assert ((gsize) (out - result) <= strlen (escaped_string));
275   return result;
276
277 }
278
279
280 static void
281 gst_uri_protocol_check_internal (const gchar * uri, gchar ** endptr)
282 {
283   gchar *check = (gchar *) uri;
284
285   g_assert (uri != NULL);
286   g_assert (endptr != NULL);
287
288   if (g_ascii_isalpha (*check)) {
289     check++;
290     while (g_ascii_isalnum (*check) || *check == '+'
291         || *check == '-' || *check == '.')
292       check++;
293   }
294
295   *endptr = check;
296 }
297
298 /**
299  * gst_uri_protocol_is_valid:
300  * @protocol: A string
301  *
302  * Tests if the given string is a valid protocol identifier. Protocols
303  * must consist of alphanumeric characters, '+', '-' and '.' and must
304  * start with a alphabetic character. See RFC 3986 Section 3.1.
305  *
306  * Returns: TRUE if the string is a valid protocol identifier, FALSE otherwise.
307  */
308 gboolean
309 gst_uri_protocol_is_valid (const gchar * protocol)
310 {
311   gchar *endptr;
312
313   g_return_val_if_fail (protocol != NULL, FALSE);
314
315   gst_uri_protocol_check_internal (protocol, &endptr);
316
317   return *endptr == '\0' && endptr != protocol;
318 }
319
320 /**
321  * gst_uri_is_valid:
322  * @uri: A URI string
323  *
324  * Tests if the given string is a valid URI identifier. URIs start with a valid
325  * scheme followed by ":" and maybe a string identifying the location.
326  *
327  * Returns: TRUE if the string is a valid URI
328  */
329 gboolean
330 gst_uri_is_valid (const gchar * uri)
331 {
332   gchar *endptr;
333
334   g_return_val_if_fail (uri != NULL, FALSE);
335
336   gst_uri_protocol_check_internal (uri, &endptr);
337
338   return *endptr == ':';
339 }
340
341 /**
342  * gst_uri_get_protocol:
343  * @uri: A URI string
344  *
345  * Extracts the protocol out of a given valid URI. The returned string must be
346  * freed using g_free().
347  *
348  * Returns: The protocol for this URI.
349  */
350 gchar *
351 gst_uri_get_protocol (const gchar * uri)
352 {
353   gchar *colon;
354
355   g_return_val_if_fail (uri != NULL, NULL);
356   g_return_val_if_fail (gst_uri_is_valid (uri), NULL);
357
358   colon = strstr (uri, ":");
359
360   return g_ascii_strdown (uri, colon - uri);
361 }
362
363 /**
364  * gst_uri_has_protocol:
365  * @uri: a URI string
366  * @protocol: a protocol string (e.g. "http")
367  *
368  * Checks if the protocol of a given valid URI matches @protocol.
369  *
370  * Returns: %TRUE if the protocol matches.
371  *
372  * Since: 0.10.4
373  */
374 gboolean
375 gst_uri_has_protocol (const gchar * uri, const gchar * protocol)
376 {
377   gchar *colon;
378
379   g_return_val_if_fail (uri != NULL, FALSE);
380   g_return_val_if_fail (protocol != NULL, FALSE);
381   g_return_val_if_fail (gst_uri_is_valid (uri), FALSE);
382
383   colon = strstr (uri, ":");
384
385   if (colon == NULL)
386     return FALSE;
387
388   return (g_ascii_strncasecmp (uri, protocol, (gsize) (colon - uri)) == 0);
389 }
390
391 /**
392  * gst_uri_get_location:
393  * @uri: A URI string
394  *
395  * Extracts the location out of a given valid URI, ie. the protocol and "://"
396  * are stripped from the URI, which means that the location returned includes
397  * the hostname if one is specified. The returned string must be freed using
398  * g_free().
399  *
400  * Free-function: g_free
401  *
402  * Returns: (transfer full) (array zero-terminated=1): the location for this
403  *     URI. Returns NULL if the URI isn't valid. If the URI does not contain
404  *     a location, an empty string is returned.
405  */
406 gchar *
407 gst_uri_get_location (const gchar * uri)
408 {
409   const gchar *colon;
410   gchar *unescaped = NULL;
411
412   g_return_val_if_fail (uri != NULL, NULL);
413   g_return_val_if_fail (gst_uri_is_valid (uri), NULL);
414
415   colon = strstr (uri, "://");
416   if (!colon)
417     return NULL;
418
419   unescaped = unescape_string (colon + 3, "/");
420
421   /* On Windows an URI might look like file:///c:/foo/bar.txt or
422    * file:///c|/foo/bar.txt (some Netscape versions) and we want to
423    * return c:/foo/bar.txt as location rather than /c:/foo/bar.txt.
424    * Can't use g_filename_from_uri() here because it will only handle the
425    * file:// protocol */
426 #ifdef G_OS_WIN32
427   if (unescaped != NULL && unescaped[0] == '/' &&
428       g_ascii_isalpha (unescaped[1]) &&
429       (unescaped[2] == ':' || unescaped[2] == '|')) {
430     unescaped[2] = ':';
431     g_memmove (unescaped, unescaped + 1, strlen (unescaped + 1) + 1);
432   }
433 #endif
434
435   GST_LOG ("extracted location '%s' from URI '%s'", GST_STR_NULL (unescaped),
436       uri);
437   return unescaped;
438 }
439
440 /**
441  * gst_uri_construct:
442  * @protocol: Protocol for URI
443  * @location: (array zero-terminated=1) (transfer none): Location for URI
444  *
445  * Constructs a URI for a given valid protocol and location.
446  *
447  * Free-function: g_free
448  *
449  * Returns: (transfer full) (array zero-terminated=1): a new string for this
450  *     URI. Returns NULL if the given URI protocol is not valid, or the given
451  *     location is NULL.
452  */
453 gchar *
454 gst_uri_construct (const gchar * protocol, const gchar * location)
455 {
456   char *escaped, *proto_lowercase;
457   char *retval;
458
459   g_return_val_if_fail (gst_uri_protocol_is_valid (protocol), NULL);
460   g_return_val_if_fail (location != NULL, NULL);
461
462   proto_lowercase = g_ascii_strdown (protocol, -1);
463   escaped = escape_string (location);
464   retval = g_strdup_printf ("%s://%s", proto_lowercase, escaped);
465   g_free (escaped);
466   g_free (proto_lowercase);
467
468   return retval;
469 }
470
471 typedef struct
472 {
473   GstURIType type;
474   const gchar *protocol;
475 }
476 SearchEntry;
477
478 static gboolean
479 search_by_entry (GstPluginFeature * feature, gpointer search_entry)
480 {
481   const gchar *const *protocols;
482   GstElementFactory *factory;
483   SearchEntry *entry = (SearchEntry *) search_entry;
484
485   if (!GST_IS_ELEMENT_FACTORY (feature))
486     return FALSE;
487   factory = GST_ELEMENT_FACTORY_CAST (feature);
488
489   if (factory->uri_type != entry->type)
490     return FALSE;
491
492   protocols = gst_element_factory_get_uri_protocols (factory);
493
494   if (protocols == NULL) {
495     g_warning ("Factory '%s' implements GstUriHandler interface but returned "
496         "no supported protocols!", gst_plugin_feature_get_name (feature));
497     return FALSE;
498   }
499
500   while (*protocols != NULL) {
501     if (g_ascii_strcasecmp (*protocols, entry->protocol) == 0)
502       return TRUE;
503     protocols++;
504   }
505   return FALSE;
506 }
507
508 static gint
509 sort_by_rank (GstPluginFeature * first, GstPluginFeature * second)
510 {
511   return gst_plugin_feature_get_rank (second) -
512       gst_plugin_feature_get_rank (first);
513 }
514
515 static GList *
516 get_element_factories_from_uri_protocol (const GstURIType type,
517     const gchar * protocol)
518 {
519   GList *possibilities;
520   SearchEntry entry;
521
522   g_return_val_if_fail (protocol, NULL);
523
524   entry.type = type;
525   entry.protocol = protocol;
526   possibilities = gst_registry_feature_filter (gst_registry_get_default (),
527       search_by_entry, FALSE, &entry);
528
529   return possibilities;
530 }
531
532 /**
533  * gst_uri_protocol_is_supported:
534  * @type: Whether to check for a source or a sink
535  * @protocol: Protocol that should be checked for (e.g. "http" or "smb")
536  *
537  * Checks if an element exists that supports the given URI protocol. Note
538  * that a positive return value does not imply that a subsequent call to
539  * gst_element_make_from_uri() is guaranteed to work.
540  *
541  * Returns: TRUE
542  *
543  * Since: 0.10.13
544 */
545 gboolean
546 gst_uri_protocol_is_supported (const GstURIType type, const gchar * protocol)
547 {
548   GList *possibilities;
549
550   g_return_val_if_fail (protocol, FALSE);
551
552   possibilities = get_element_factories_from_uri_protocol (type, protocol);
553
554   if (possibilities) {
555     g_list_free (possibilities);
556     return TRUE;
557   } else
558     return FALSE;
559 }
560
561 /**
562  * gst_element_make_from_uri:
563  * @type: Whether to create a source or a sink
564  * @uri: URI to create an element for
565  * @elementname: (allow-none): Name of created element, can be NULL.
566  *
567  * Creates an element for handling the given URI.
568  *
569  * Returns: (transfer full): a new element or NULL if none could be created
570  */
571 GstElement *
572 gst_element_make_from_uri (const GstURIType type, const gchar * uri,
573     const gchar * elementname)
574 {
575   GList *possibilities, *walk;
576   gchar *protocol;
577   GstElement *ret = NULL;
578
579   g_return_val_if_fail (GST_URI_TYPE_IS_VALID (type), NULL);
580   g_return_val_if_fail (gst_uri_is_valid (uri), NULL);
581
582   protocol = gst_uri_get_protocol (uri);
583   possibilities = get_element_factories_from_uri_protocol (type, protocol);
584   g_free (protocol);
585
586   if (!possibilities) {
587     GST_DEBUG ("No %s for URI '%s'", type == GST_URI_SINK ? "sink" : "source",
588         uri);
589     return NULL;
590   }
591
592   possibilities = g_list_sort (possibilities, (GCompareFunc) sort_by_rank);
593   walk = possibilities;
594   while (walk) {
595     if ((ret =
596             gst_element_factory_create (GST_ELEMENT_FACTORY_CAST (walk->data),
597                 elementname)) != NULL) {
598       GstURIHandler *handler = GST_URI_HANDLER (ret);
599
600       if (gst_uri_handler_set_uri (handler, uri, NULL))
601         break;
602       gst_object_unref (ret);
603       ret = NULL;
604     }
605     walk = walk->next;
606   }
607   gst_plugin_feature_list_free (possibilities);
608
609   GST_LOG_OBJECT (ret, "created %s for URL '%s'",
610       type == GST_URI_SINK ? "sink" : "source", uri);
611   return ret;
612 }
613
614 /**
615  * gst_uri_handler_get_uri_type:
616  * @handler: A #GstURIHandler.
617  *
618  * Gets the type of the given URI handler
619  *
620  * Returns: the #GstURIType of the URI handler.
621  * Returns #GST_URI_UNKNOWN if the @handler isn't implemented correctly.
622  */
623 guint
624 gst_uri_handler_get_uri_type (GstURIHandler * handler)
625 {
626   GstURIHandlerInterface *iface;
627   guint ret;
628
629   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), GST_URI_UNKNOWN);
630
631   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
632   g_return_val_if_fail (iface != NULL, GST_URI_UNKNOWN);
633   g_return_val_if_fail (iface->get_type != NULL, GST_URI_UNKNOWN);
634
635   ret = iface->get_type (G_OBJECT_TYPE (handler));
636   g_return_val_if_fail (GST_URI_TYPE_IS_VALID (ret), GST_URI_UNKNOWN);
637
638   return ret;
639 }
640
641 /**
642  * gst_uri_handler_get_protocols:
643  * @handler: A #GstURIHandler.
644  *
645  * Gets the list of protocols supported by @handler. This list may not be
646  * modified.
647  *
648  * Returns: (transfer none) (array zero-terminated=1) (element-type utf8): the
649  *     supported protocols. Returns NULL if the @handler isn't implemented
650  *     properly, or the @handler doesn't support any protocols.
651  */
652 const gchar *const *
653 gst_uri_handler_get_protocols (GstURIHandler * handler)
654 {
655   GstURIHandlerInterface *iface;
656   const gchar *const *ret;
657
658   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), NULL);
659
660   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
661   g_return_val_if_fail (iface != NULL, NULL);
662   g_return_val_if_fail (iface->get_protocols != NULL, NULL);
663
664   ret = iface->get_protocols (G_OBJECT_TYPE (handler));
665   g_return_val_if_fail (ret != NULL, NULL);
666
667   return ret;
668 }
669
670 /**
671  * gst_uri_handler_get_uri:
672  * @handler: A #GstURIHandler
673  *
674  * Gets the currently handled URI.
675  *
676  * Returns: (transfer full): the URI currently handled by the @handler.
677  *   Returns NULL if there are no URI currently handled. The
678  *   returned string must be freed with g_free() when no longer needed.
679  */
680 gchar *
681 gst_uri_handler_get_uri (GstURIHandler * handler)
682 {
683   GstURIHandlerInterface *iface;
684   gchar *ret;
685
686   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), NULL);
687
688   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
689   g_return_val_if_fail (iface != NULL, NULL);
690   g_return_val_if_fail (iface->get_uri != NULL, NULL);
691   ret = iface->get_uri (handler);
692   if (ret != NULL)
693     g_return_val_if_fail (gst_uri_is_valid (ret), NULL);
694
695   return ret;
696 }
697
698 /**
699  * gst_uri_handler_set_uri:
700  * @handler: A #GstURIHandler
701  * @uri: URI to set
702  * @error: (allow-none): address where to store a #GError in case of
703  *    an error, or NULL
704  *
705  * Tries to set the URI of the given handler.
706  *
707  * Returns: TRUE if the URI was set successfully, else FALSE.
708  */
709 gboolean
710 gst_uri_handler_set_uri (GstURIHandler * handler, const gchar * uri,
711     GError ** error)
712 {
713   GstURIHandlerInterface *iface;
714   gboolean ret;
715   gchar *new_uri, *protocol, *location, *colon;
716
717   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), FALSE);
718   g_return_val_if_fail (gst_uri_is_valid (uri), FALSE);
719   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
720
721   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
722   g_return_val_if_fail (iface != NULL, FALSE);
723   g_return_val_if_fail (iface->set_uri != NULL, FALSE);
724
725   protocol = gst_uri_get_protocol (uri);
726
727   if (iface->get_protocols) {
728     const gchar *const *protocols;
729     const gchar *const *p;
730     gboolean found_protocol = FALSE;
731
732     protocols = iface->get_protocols (G_OBJECT_TYPE (handler));
733     if (protocols != NULL) {
734       for (p = protocols; *p != NULL; ++p) {
735         if (g_ascii_strcasecmp (protocol, *p) == 0) {
736           found_protocol = TRUE;
737           break;
738         }
739       }
740
741       if (!found_protocol) {
742         g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_BAD_PROTOCOL,
743             _("URI scheme '%s' not supported"), protocol);
744         g_free (protocol);
745         return FALSE;
746       }
747     }
748   }
749
750   colon = strstr (uri, ":");
751   location = g_strdup (colon);
752
753   new_uri = g_strdup_printf ("%s%s", protocol, location);
754
755   ret = iface->set_uri (handler, uri, error);
756
757   g_free (new_uri);
758   g_free (location);
759   g_free (protocol);
760
761   return ret;
762 }
763
764 static gchar *
765 gst_file_utils_canonicalise_path (const gchar * path)
766 {
767   gchar **parts, **p, *clean_path;
768
769 #ifdef G_OS_WIN32
770   {
771     GST_WARNING ("FIXME: canonicalise win32 path");
772     return g_strdup (path);
773   }
774 #endif
775
776   parts = g_strsplit (path, "/", -1);
777
778   p = parts;
779   while (*p != NULL) {
780     if (strcmp (*p, ".") == 0) {
781       /* just move all following parts on top of this, incl. NUL terminator */
782       g_free (*p);
783       g_memmove (p, p + 1, (g_strv_length (p + 1) + 1) * sizeof (gchar *));
784       /* re-check the new current part again in the next iteration */
785       continue;
786     } else if (strcmp (*p, "..") == 0 && p > parts) {
787       /* just move all following parts on top of the previous part, incl.
788        * NUL terminator */
789       g_free (*(p - 1));
790       g_free (*p);
791       g_memmove (p - 1, p + 1, (g_strv_length (p + 1) + 1) * sizeof (gchar *));
792       /* re-check the new current part again in the next iteration */
793       --p;
794       continue;
795     }
796     ++p;
797   }
798   if (*path == '/') {
799     guint num_parts;
800
801     num_parts = g_strv_length (parts) + 1;      /* incl. terminator */
802     parts = g_renew (gchar *, parts, num_parts + 1);
803     g_memmove (parts + 1, parts, num_parts * sizeof (gchar *));
804     parts[0] = g_strdup ("/");
805   }
806
807   clean_path = g_build_filenamev (parts);
808   g_strfreev (parts);
809   return clean_path;
810 }
811
812 static gboolean
813 file_path_contains_relatives (const gchar * path)
814 {
815   return (strstr (path, "/./") != NULL || strstr (path, "/../") != NULL ||
816       strstr (path, G_DIR_SEPARATOR_S "." G_DIR_SEPARATOR_S) != NULL ||
817       strstr (path, G_DIR_SEPARATOR_S ".." G_DIR_SEPARATOR_S) != NULL);
818 }
819
820 /**
821  * gst_filename_to_uri:
822  * @filename: absolute or relative file name path
823  * @error: pointer to error, or NULL
824  *
825  * Similar to g_filename_to_uri(), but attempts to handle relative file paths
826  * as well. Before converting @filename into an URI, it will be prefixed by
827  * the current working directory if it is a relative path, and then the path
828  * will be canonicalised so that it doesn't contain any './' or '../' segments.
829  *
830  * On Windows #filename should be in UTF-8 encoding.
831  *
832  * Since: 0.10.33
833  */
834 gchar *
835 gst_filename_to_uri (const gchar * filename, GError ** error)
836 {
837   gchar *abs_location = NULL;
838   gchar *uri, *abs_clean;
839
840   g_return_val_if_fail (filename != NULL, NULL);
841   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
842
843   if (g_path_is_absolute (filename)) {
844     if (!file_path_contains_relatives (filename)) {
845       uri = g_filename_to_uri (filename, NULL, error);
846       goto beach;
847     }
848
849     abs_location = g_strdup (filename);
850   } else {
851     gchar *cwd;
852
853     cwd = g_get_current_dir ();
854     abs_location = g_build_filename (cwd, filename, NULL);
855     g_free (cwd);
856
857     if (!file_path_contains_relatives (abs_location)) {
858       uri = g_filename_to_uri (abs_location, NULL, error);
859       goto beach;
860     }
861   }
862
863   /* path is now absolute, but contains '.' or '..' */
864   abs_clean = gst_file_utils_canonicalise_path (abs_location);
865   GST_LOG ("'%s' -> '%s' -> '%s'", filename, abs_location, abs_clean);
866   uri = g_filename_to_uri (abs_clean, NULL, error);
867   g_free (abs_clean);
868
869 beach:
870
871   g_free (abs_location);
872   GST_DEBUG ("'%s' -> '%s'", filename, uri);
873   return uri;
874 }