5333f433fdbdc2aff1349cbdd9133e1030f8c18b
[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  * Copyright (C) 2014 David Waring, British Broadcasting Corporation
6  *                        <david.waring@rd.bbc.co.uk>
7  *
8  * gsturi.c: register URI handlers and IETF RFC 3986 URI manipulations.
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Library General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Library General Public License for more details.
19  *
20  * You should have received a copy of the GNU Library General Public
21  * License along with this library; if not, write to the
22  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23  * Boston, MA 02110-1301, USA.
24  */
25
26 /**
27  * SECTION:gsturihandler
28  * @short_description: Interface to ease URI handling in plugins.
29  *
30  * The URIHandler is an interface that is implemented by Source and Sink
31  * #GstElement to simplify then handling of URI.
32  *
33  * An application can use the following functions to quickly get an element
34  * that handles the given URI for reading or writing
35  * (gst_element_make_from_uri()).
36  *
37  * Source and Sink plugins should implement this interface when possible.
38  */
39
40 #ifdef HAVE_CONFIG_H
41 #  include "config.h"
42 #endif
43
44 #include "gst_private.h"
45 #include "gst.h"
46 #include "gsturi.h"
47 #include "gstinfo.h"
48 #include "gstregistry.h"
49
50 #include "gst-i18n-lib.h"
51
52 #include <string.h>
53 #include <glib.h>
54 #include <glib/gprintf.h>
55
56 GST_DEBUG_CATEGORY_STATIC (gst_uri_handler_debug);
57 #define GST_CAT_DEFAULT gst_uri_handler_debug
58
59 #ifndef HAVE_STRCASESTR
60 #define strcasestr _gst_ascii_strcasestr
61
62 /* From https://github.com/freebsd/freebsd/blob/master/contrib/file/src/strcasestr.c
63  * Updated to use GLib types and GLib string functions
64  *
65  * Copyright (c) 1990, 1993
66  *      The Regents of the University of California.  All rights reserved.
67  *
68  * This code is derived from software contributed to Berkeley by
69  * Chris Torek.
70  *
71  * Redistribution and use in source and binary forms, with or without
72  * modification, are permitted provided that the following conditions
73  * are met:
74  * 1. Redistributions of source code must retain the above copyright
75  *    notice, this list of conditions and the following disclaimer.
76  * 2. Redistributions in binary form must reproduce the above copyright
77  *    notice, this list of conditions and the following disclaimer in the
78  *    documentation and/or other materials provided with the distribution.
79  * 3. Neither the name of the University nor the names of its contributors
80  *    may be used to endorse or promote products derived from this software
81  *    without specific prior written permission.
82  *
83  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
84  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
85  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
86  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
87  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
88  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
89  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
90  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
91  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
92  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
93  * SUCH DAMAGE.
94  */
95
96 /*
97  * Find the first occurrence of find in s, ignore case.
98  */
99
100 static gchar *
101 _gst_ascii_strcasestr (const gchar * s, const gchar * find)
102 {
103   gchar c, sc;
104   gsize len;
105
106   if ((c = *find++) != 0) {
107     c = g_ascii_tolower (c);
108     len = strlen (find);
109     do {
110       do {
111         if ((sc = *s++) == 0)
112           return (NULL);
113       } while (g_ascii_tolower (sc) != c);
114     } while (g_ascii_strncasecmp (s, find, len) != 0);
115     s--;
116   }
117   return (gchar *) (gintptr) (s);
118 }
119 #endif
120
121 GType
122 gst_uri_handler_get_type (void)
123 {
124   static volatile gsize urihandler_type = 0;
125
126   if (g_once_init_enter (&urihandler_type)) {
127     GType _type;
128     static const GTypeInfo urihandler_info = {
129       sizeof (GstURIHandlerInterface),
130       NULL,
131       NULL,
132       NULL,
133       NULL,
134       NULL,
135       0,
136       0,
137       NULL,
138       NULL
139     };
140
141     _type = g_type_register_static (G_TYPE_INTERFACE,
142         "GstURIHandler", &urihandler_info, 0);
143
144     GST_DEBUG_CATEGORY_INIT (gst_uri_handler_debug, "GST_URI", GST_DEBUG_BOLD,
145         "handling of URIs");
146     g_once_init_leave (&urihandler_type, _type);
147   }
148   return urihandler_type;
149 }
150
151 GQuark
152 gst_uri_error_quark (void)
153 {
154   return g_quark_from_static_string ("gst-uri-error-quark");
155 }
156
157 static const guchar acceptable[96] = {  /* X0   X1   X2   X3   X4   X5   X6   X7   X8   X9   XA   XB   XC   XD   XE   XF */
158   0x00, 0x3F, 0x20, 0x20, 0x20, 0x00, 0x2C, 0x3F, 0x3F, 0x3F, 0x3F, 0x22, 0x20, 0x3F, 0x3F, 0x1C,       /* 2X  !"#$%&'()*+,-./   */
159   0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x38, 0x20, 0x20, 0x2C, 0x20, 0x2C,       /* 3X 0123456789:;<=>?   */
160   0x30, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F,       /* 4X @ABCDEFGHIJKLMNO   */
161   0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x20, 0x20, 0x20, 0x20, 0x3F,       /* 5X PQRSTUVWXYZ[\]^_   */
162   0x20, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F,       /* 6X `abcdefghijklmno   */
163   0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x3F, 0x20, 0x20, 0x20, 0x3F, 0x20        /* 7X pqrstuvwxyz{|}~DEL */
164 };
165
166 typedef enum
167 {
168   UNSAFE_ALL = 0x1,             /* Escape all unsafe characters   */
169   UNSAFE_ALLOW_PLUS = 0x2,      /* Allows '+'  */
170   UNSAFE_PATH = 0x4,            /* Allows '/' and '?' and '&' and '='  */
171   UNSAFE_DOS_PATH = 0x8,        /* Allows '/' and '?' and '&' and '=' and ':' */
172   UNSAFE_HOST = 0x10,           /* Allows '/' and ':' and '@' */
173   UNSAFE_SLASHES = 0x20         /* Allows all characters except for '/' and '%' */
174 } UnsafeCharacterSet;
175
176 #define HEX_ESCAPE '%'
177
178 /*  Escape undesirable characters using %
179  *  -------------------------------------
180  *
181  * This function takes a pointer to a string in which
182  * some characters may be unacceptable unescaped.
183  * It returns a string which has these characters
184  * represented by a '%' character followed by two hex digits.
185  *
186  * This routine returns a g_malloced string.
187  */
188
189 static const gchar hex[16] = "0123456789ABCDEF";
190
191 static gchar *
192 escape_string_internal (const gchar * string, UnsafeCharacterSet mask)
193 {
194 #define ACCEPTABLE_CHAR(a) ((a)>=32 && (a)<128 && (acceptable[(a)-32] & use_mask))
195
196   const gchar *p;
197   gchar *q;
198   gchar *result;
199   guchar c;
200   gint unacceptable;
201   UnsafeCharacterSet use_mask;
202
203   g_return_val_if_fail (mask == UNSAFE_ALL
204       || mask == UNSAFE_ALLOW_PLUS
205       || mask == UNSAFE_PATH
206       || mask == UNSAFE_DOS_PATH
207       || mask == UNSAFE_HOST || mask == UNSAFE_SLASHES, NULL);
208
209   if (string == NULL) {
210     return NULL;
211   }
212
213   unacceptable = 0;
214   use_mask = mask;
215   for (p = string; *p != '\0'; p++) {
216     c = *p;
217     if (!ACCEPTABLE_CHAR (c)) {
218       unacceptable++;
219     }
220     if ((use_mask == UNSAFE_HOST) && (unacceptable || (c == '/'))) {
221       /* when escaping a host, if we hit something that needs to be escaped, or we finally
222        * hit a path separator, revert to path mode (the host segment of the url is over).
223        */
224       use_mask = UNSAFE_PATH;
225     }
226   }
227
228   result = g_malloc (p - string + unacceptable * 2 + 1);
229
230   use_mask = mask;
231   for (q = result, p = string; *p != '\0'; p++) {
232     c = *p;
233
234     if (!ACCEPTABLE_CHAR (c)) {
235       *q++ = HEX_ESCAPE;        /* means hex coming */
236       *q++ = hex[c >> 4];
237       *q++ = hex[c & 15];
238     } else {
239       *q++ = c;
240     }
241     if ((use_mask == UNSAFE_HOST) && (!ACCEPTABLE_CHAR (c) || (c == '/'))) {
242       use_mask = UNSAFE_PATH;
243     }
244   }
245
246   *q = '\0';
247
248   return result;
249 }
250
251 /* escape_string:
252  * @string: string to be escaped
253  *
254  * Escapes @string, replacing any and all special characters
255  * with equivalent escape sequences.
256  *
257  * Return value: a newly allocated string equivalent to @string
258  * but with all special characters escaped
259  **/
260 static gchar *
261 escape_string (const gchar * string)
262 {
263   return escape_string_internal (string, UNSAFE_ALL);
264 }
265
266 static int
267 hex_to_int (gchar c)
268 {
269   return c >= '0' && c <= '9' ? c - '0'
270       : c >= 'A' && c <= 'F' ? c - 'A' + 10
271       : c >= 'a' && c <= 'f' ? c - 'a' + 10 : -1;
272 }
273
274 static int
275 unescape_character (const char *scanner)
276 {
277   int first_digit;
278   int second_digit;
279
280   first_digit = hex_to_int (*scanner++);
281   if (first_digit < 0) {
282     return -1;
283   }
284
285   second_digit = hex_to_int (*scanner);
286   if (second_digit < 0) {
287     return -1;
288   }
289
290   return (first_digit << 4) | second_digit;
291 }
292
293 /* unescape_string:
294  * @escaped_string: an escaped URI, path, or other string
295  * @illegal_characters: a string containing a sequence of characters
296  * considered "illegal", '\0' is automatically in this list.
297  *
298  * Decodes escaped characters (i.e. PERCENTxx sequences) in @escaped_string.
299  * Characters are encoded in PERCENTxy form, where xy is the ASCII hex code
300  * for character 16x+y.
301  *
302  * Return value: (nullable): a newly allocated string with the
303  * unescaped equivalents, or %NULL if @escaped_string contained one of
304  * the characters in @illegal_characters.
305  **/
306 static char *
307 unescape_string (const gchar * escaped_string, const gchar * illegal_characters)
308 {
309   const gchar *in;
310   gchar *out, *result;
311   gint character;
312
313   if (escaped_string == NULL) {
314     return NULL;
315   }
316
317   result = g_malloc (strlen (escaped_string) + 1);
318
319   out = result;
320   for (in = escaped_string; *in != '\0'; in++) {
321     character = *in;
322     if (*in == HEX_ESCAPE) {
323       character = unescape_character (in + 1);
324
325       /* Check for an illegal character. We consider '\0' illegal here. */
326       if (character <= 0
327           || (illegal_characters != NULL
328               && strchr (illegal_characters, (char) character) != NULL)) {
329         g_free (result);
330         return NULL;
331       }
332       in += 2;
333     }
334     *out++ = (char) character;
335   }
336
337   *out = '\0';
338   g_assert ((gsize) (out - result) <= strlen (escaped_string));
339   return result;
340
341 }
342
343
344 static void
345 gst_uri_protocol_check_internal (const gchar * uri, gchar ** endptr)
346 {
347   gchar *check = (gchar *) uri;
348
349   g_assert (uri != NULL);
350   g_assert (endptr != NULL);
351
352   if (g_ascii_isalpha (*check)) {
353     check++;
354     while (g_ascii_isalnum (*check) || *check == '+'
355         || *check == '-' || *check == '.')
356       check++;
357   }
358
359   *endptr = check;
360 }
361
362 /**
363  * gst_uri_protocol_is_valid:
364  * @protocol: A string
365  *
366  * Tests if the given string is a valid protocol identifier. Protocols
367  * must consist of alphanumeric characters, '+', '-' and '.' and must
368  * start with a alphabetic character. See RFC 3986 Section 3.1.
369  *
370  * Returns: %TRUE if the string is a valid protocol identifier, %FALSE otherwise.
371  */
372 gboolean
373 gst_uri_protocol_is_valid (const gchar * protocol)
374 {
375   gchar *endptr;
376
377   g_return_val_if_fail (protocol != NULL, FALSE);
378
379   gst_uri_protocol_check_internal (protocol, &endptr);
380
381   return *endptr == '\0' && ((gsize) (endptr - protocol)) >= 2;
382 }
383
384 /**
385  * gst_uri_is_valid:
386  * @uri: A URI string
387  *
388  * Tests if the given string is a valid URI identifier. URIs start with a valid
389  * scheme followed by ":" and maybe a string identifying the location.
390  *
391  * Returns: %TRUE if the string is a valid URI
392  */
393 gboolean
394 gst_uri_is_valid (const gchar * uri)
395 {
396   gchar *endptr;
397
398   g_return_val_if_fail (uri != NULL, FALSE);
399
400   gst_uri_protocol_check_internal (uri, &endptr);
401
402   return *endptr == ':' && ((gsize) (endptr - uri)) >= 2;
403 }
404
405 /**
406  * gst_uri_get_protocol:
407  * @uri: A URI string
408  *
409  * Extracts the protocol out of a given valid URI. The returned string must be
410  * freed using g_free().
411  *
412  * Returns: The protocol for this URI.
413  */
414 gchar *
415 gst_uri_get_protocol (const gchar * uri)
416 {
417   gchar *colon;
418
419   g_return_val_if_fail (uri != NULL, NULL);
420   g_return_val_if_fail (gst_uri_is_valid (uri), NULL);
421
422   colon = strstr (uri, ":");
423
424   return g_ascii_strdown (uri, colon - uri);
425 }
426
427 /**
428  * gst_uri_has_protocol:
429  * @uri: a URI string
430  * @protocol: a protocol string (e.g. "http")
431  *
432  * Checks if the protocol of a given valid URI matches @protocol.
433  *
434  * Returns: %TRUE if the protocol matches.
435  */
436 gboolean
437 gst_uri_has_protocol (const gchar * uri, const gchar * protocol)
438 {
439   gchar *colon;
440
441   g_return_val_if_fail (uri != NULL, FALSE);
442   g_return_val_if_fail (protocol != NULL, FALSE);
443   g_return_val_if_fail (gst_uri_is_valid (uri), FALSE);
444
445   colon = strstr (uri, ":");
446
447   if (colon == NULL)
448     return FALSE;
449
450   return (g_ascii_strncasecmp (uri, protocol, (gsize) (colon - uri)) == 0);
451 }
452
453 /**
454  * gst_uri_get_location:
455  * @uri: A URI string
456  *
457  * Extracts the location out of a given valid URI, ie. the protocol and "://"
458  * are stripped from the URI, which means that the location returned includes
459  * the hostname if one is specified. The returned string must be freed using
460  * g_free().
461  *
462  * Free-function: g_free
463  *
464  * Returns: (transfer full): the location for this URI. Returns %NULL if the
465  *     URI isn't valid. If the URI does not contain a location, an empty
466  *     string is returned.
467  */
468 gchar *
469 gst_uri_get_location (const gchar * uri)
470 {
471   const gchar *colon;
472   gchar *unescaped = NULL;
473
474   g_return_val_if_fail (uri != NULL, NULL);
475   g_return_val_if_fail (gst_uri_is_valid (uri), NULL);
476
477   colon = strstr (uri, "://");
478   if (!colon)
479     return NULL;
480
481   unescaped = unescape_string (colon + 3, "/");
482
483   /* On Windows an URI might look like file:///c:/foo/bar.txt or
484    * file:///c|/foo/bar.txt (some Netscape versions) and we want to
485    * return c:/foo/bar.txt as location rather than /c:/foo/bar.txt.
486    * Can't use g_filename_from_uri() here because it will only handle the
487    * file:// protocol */
488 #ifdef G_OS_WIN32
489   if (unescaped != NULL && unescaped[0] == '/' &&
490       g_ascii_isalpha (unescaped[1]) &&
491       (unescaped[2] == ':' || unescaped[2] == '|')) {
492     unescaped[2] = ':';
493     memmove (unescaped, unescaped + 1, strlen (unescaped + 1) + 1);
494   }
495 #endif
496
497   GST_LOG ("extracted location '%s' from URI '%s'", GST_STR_NULL (unescaped),
498       uri);
499   return unescaped;
500 }
501
502 /**
503  * gst_uri_construct:
504  * @protocol: Protocol for URI
505  * @location: (transfer none): Location for URI
506  *
507  * Constructs a URI for a given valid protocol and location.
508  *
509  * Free-function: g_free
510  *
511  * Returns: (transfer full): a new string for this URI. Returns %NULL if the
512  *     given URI protocol is not valid, or the given location is %NULL.
513  */
514 gchar *
515 gst_uri_construct (const gchar * protocol, const gchar * location)
516 {
517   char *escaped, *proto_lowercase;
518   char *retval;
519
520   g_return_val_if_fail (gst_uri_protocol_is_valid (protocol), NULL);
521   g_return_val_if_fail (location != NULL, NULL);
522
523   proto_lowercase = g_ascii_strdown (protocol, -1);
524   escaped = escape_string (location);
525   retval = g_strdup_printf ("%s://%s", proto_lowercase, escaped);
526   g_free (escaped);
527   g_free (proto_lowercase);
528
529   return retval;
530 }
531
532 typedef struct
533 {
534   GstURIType type;
535   const gchar *protocol;
536 }
537 SearchEntry;
538
539 static gboolean
540 search_by_entry (GstPluginFeature * feature, gpointer search_entry)
541 {
542   const gchar *const *protocols;
543   GstElementFactory *factory;
544   SearchEntry *entry = (SearchEntry *) search_entry;
545
546   if (!GST_IS_ELEMENT_FACTORY (feature))
547     return FALSE;
548   factory = GST_ELEMENT_FACTORY_CAST (feature);
549
550   if (factory->uri_type != entry->type)
551     return FALSE;
552
553   protocols = gst_element_factory_get_uri_protocols (factory);
554
555   if (protocols == NULL) {
556     g_warning ("Factory '%s' implements GstUriHandler interface but returned "
557         "no supported protocols!", gst_plugin_feature_get_name (feature));
558     return FALSE;
559   }
560
561   while (*protocols != NULL) {
562     if (g_ascii_strcasecmp (*protocols, entry->protocol) == 0)
563       return TRUE;
564     protocols++;
565   }
566   return FALSE;
567 }
568
569 static gint
570 sort_by_rank (GstPluginFeature * first, GstPluginFeature * second)
571 {
572   return gst_plugin_feature_get_rank (second) -
573       gst_plugin_feature_get_rank (first);
574 }
575
576 static GList *
577 get_element_factories_from_uri_protocol (const GstURIType type,
578     const gchar * protocol)
579 {
580   GList *possibilities;
581   SearchEntry entry;
582
583   g_return_val_if_fail (protocol, NULL);
584
585   entry.type = type;
586   entry.protocol = protocol;
587   possibilities = gst_registry_feature_filter (gst_registry_get (),
588       search_by_entry, FALSE, &entry);
589
590   return possibilities;
591 }
592
593 /**
594  * gst_uri_protocol_is_supported:
595  * @type: Whether to check for a source or a sink
596  * @protocol: Protocol that should be checked for (e.g. "http" or "smb")
597  *
598  * Checks if an element exists that supports the given URI protocol. Note
599  * that a positive return value does not imply that a subsequent call to
600  * gst_element_make_from_uri() is guaranteed to work.
601  *
602  * Returns: %TRUE
603 */
604 gboolean
605 gst_uri_protocol_is_supported (const GstURIType type, const gchar * protocol)
606 {
607   GList *possibilities;
608
609   g_return_val_if_fail (protocol, FALSE);
610
611   possibilities = get_element_factories_from_uri_protocol (type, protocol);
612
613   if (possibilities) {
614     g_list_free (possibilities);
615     return TRUE;
616   } else
617     return FALSE;
618 }
619
620 /**
621  * gst_element_make_from_uri:
622  * @type: Whether to create a source or a sink
623  * @uri: URI to create an element for
624  * @elementname: (allow-none): Name of created element, can be %NULL.
625  * @error: (allow-none): address where to store error information, or %NULL.
626  *
627  * Creates an element for handling the given URI.
628  *
629  * Returns: (transfer floating): a new element or %NULL if none could be created
630  */
631 GstElement *
632 gst_element_make_from_uri (const GstURIType type, const gchar * uri,
633     const gchar * elementname, GError ** error)
634 {
635   GList *possibilities, *walk;
636   gchar *protocol;
637   GstElement *ret = NULL;
638
639   g_return_val_if_fail (gst_is_initialized (), NULL);
640   g_return_val_if_fail (GST_URI_TYPE_IS_VALID (type), NULL);
641   g_return_val_if_fail (gst_uri_is_valid (uri), NULL);
642   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
643
644   GST_DEBUG ("type:%d, uri:%s, elementname:%s", type, uri, elementname);
645
646   protocol = gst_uri_get_protocol (uri);
647   possibilities = get_element_factories_from_uri_protocol (type, protocol);
648
649   if (!possibilities) {
650     GST_DEBUG ("No %s for URI '%s'", type == GST_URI_SINK ? "sink" : "source",
651         uri);
652     /* The error message isn't great, but we don't expect applications to
653      * show that error to users, but call the missing plugins functions */
654     g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_UNSUPPORTED_PROTOCOL,
655         _("No URI handler for the %s protocol found"), protocol);
656     g_free (protocol);
657     return NULL;
658   }
659   g_free (protocol);
660
661   possibilities = g_list_sort (possibilities, (GCompareFunc) sort_by_rank);
662   walk = possibilities;
663   while (walk) {
664     GstElementFactory *factory = walk->data;
665     GError *uri_err = NULL;
666
667     ret = gst_element_factory_create (factory, elementname);
668     if (ret != NULL) {
669       GstURIHandler *handler = GST_URI_HANDLER (ret);
670
671       if (gst_uri_handler_set_uri (handler, uri, &uri_err))
672         break;
673
674       GST_WARNING ("%s didn't accept URI '%s': %s", GST_OBJECT_NAME (ret), uri,
675           uri_err->message);
676
677       if (error != NULL && *error == NULL)
678         g_propagate_error (error, uri_err);
679       else
680         g_error_free (uri_err);
681
682       gst_object_unref (ret);
683       ret = NULL;
684     }
685     walk = walk->next;
686   }
687   gst_plugin_feature_list_free (possibilities);
688
689   GST_LOG_OBJECT (ret, "created %s for URL '%s'",
690       type == GST_URI_SINK ? "sink" : "source", uri);
691
692   /* if the first handler didn't work, but we found another one that works */
693   if (ret != NULL)
694     g_clear_error (error);
695
696   return ret;
697 }
698
699 /**
700  * gst_uri_handler_get_uri_type:
701  * @handler: A #GstURIHandler.
702  *
703  * Gets the type of the given URI handler
704  *
705  * Returns: the #GstURIType of the URI handler.
706  * Returns #GST_URI_UNKNOWN if the @handler isn't implemented correctly.
707  */
708 guint
709 gst_uri_handler_get_uri_type (GstURIHandler * handler)
710 {
711   GstURIHandlerInterface *iface;
712   guint ret;
713
714   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), GST_URI_UNKNOWN);
715
716   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
717   g_return_val_if_fail (iface != NULL, GST_URI_UNKNOWN);
718   g_return_val_if_fail (iface->get_type != NULL, GST_URI_UNKNOWN);
719
720   ret = iface->get_type (G_OBJECT_TYPE (handler));
721   g_return_val_if_fail (GST_URI_TYPE_IS_VALID (ret), GST_URI_UNKNOWN);
722
723   return ret;
724 }
725
726 /**
727  * gst_uri_handler_get_protocols:
728  * @handler: A #GstURIHandler.
729  *
730  * Gets the list of protocols supported by @handler. This list may not be
731  * modified.
732  *
733  * Returns: (transfer none) (element-type utf8) (nullable): the
734  *     supported protocols.  Returns %NULL if the @handler isn't
735  *     implemented properly, or the @handler doesn't support any
736  *     protocols.
737  */
738 const gchar *const *
739 gst_uri_handler_get_protocols (GstURIHandler * handler)
740 {
741   GstURIHandlerInterface *iface;
742   const gchar *const *ret;
743
744   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), NULL);
745
746   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
747   g_return_val_if_fail (iface != NULL, NULL);
748   g_return_val_if_fail (iface->get_protocols != NULL, NULL);
749
750   ret = iface->get_protocols (G_OBJECT_TYPE (handler));
751   g_return_val_if_fail (ret != NULL, NULL);
752
753   return ret;
754 }
755
756 /**
757  * gst_uri_handler_get_uri:
758  * @handler: A #GstURIHandler
759  *
760  * Gets the currently handled URI.
761  *
762  * Returns: (transfer full) (nullable): the URI currently handled by
763  *   the @handler.  Returns %NULL if there are no URI currently
764  *   handled. The returned string must be freed with g_free() when no
765  *   longer needed.
766  */
767 gchar *
768 gst_uri_handler_get_uri (GstURIHandler * handler)
769 {
770   GstURIHandlerInterface *iface;
771   gchar *ret;
772
773   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), NULL);
774
775   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
776   g_return_val_if_fail (iface != NULL, NULL);
777   g_return_val_if_fail (iface->get_uri != NULL, NULL);
778   ret = iface->get_uri (handler);
779   if (ret != NULL)
780     g_return_val_if_fail (gst_uri_is_valid (ret), NULL);
781
782   return ret;
783 }
784
785 /**
786  * gst_uri_handler_set_uri:
787  * @handler: A #GstURIHandler
788  * @uri: URI to set
789  * @error: (allow-none): address where to store a #GError in case of
790  *    an error, or %NULL
791  *
792  * Tries to set the URI of the given handler.
793  *
794  * Returns: %TRUE if the URI was set successfully, else %FALSE.
795  */
796 gboolean
797 gst_uri_handler_set_uri (GstURIHandler * handler, const gchar * uri,
798     GError ** error)
799 {
800   GstURIHandlerInterface *iface;
801   gboolean ret;
802   gchar *protocol;
803
804   g_return_val_if_fail (GST_IS_URI_HANDLER (handler), FALSE);
805   g_return_val_if_fail (gst_uri_is_valid (uri), FALSE);
806   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
807
808   iface = GST_URI_HANDLER_GET_INTERFACE (handler);
809   g_return_val_if_fail (iface != NULL, FALSE);
810   g_return_val_if_fail (iface->set_uri != NULL, FALSE);
811
812   protocol = gst_uri_get_protocol (uri);
813
814   if (iface->get_protocols) {
815     const gchar *const *protocols;
816     const gchar *const *p;
817     gboolean found_protocol = FALSE;
818
819     protocols = iface->get_protocols (G_OBJECT_TYPE (handler));
820     if (protocols != NULL) {
821       for (p = protocols; *p != NULL; ++p) {
822         if (g_ascii_strcasecmp (protocol, *p) == 0) {
823           found_protocol = TRUE;
824           break;
825         }
826       }
827
828       if (!found_protocol) {
829         g_set_error (error, GST_URI_ERROR, GST_URI_ERROR_UNSUPPORTED_PROTOCOL,
830             _("URI scheme '%s' not supported"), protocol);
831         g_free (protocol);
832         return FALSE;
833       }
834     }
835   }
836
837   ret = iface->set_uri (handler, uri, error);
838
839   g_free (protocol);
840
841   return ret;
842 }
843
844 static gchar *
845 gst_file_utils_canonicalise_path (const gchar * path)
846 {
847   gchar **parts, **p, *clean_path;
848
849 #ifdef G_OS_WIN32
850   {
851     GST_WARNING ("FIXME: canonicalise win32 path");
852     return g_strdup (path);
853   }
854 #endif
855
856   parts = g_strsplit (path, "/", -1);
857
858   p = parts;
859   while (*p != NULL) {
860     if (strcmp (*p, ".") == 0) {
861       /* just move all following parts on top of this, incl. NUL terminator */
862       g_free (*p);
863       memmove (p, p + 1, (g_strv_length (p + 1) + 1) * sizeof (gchar *));
864       /* re-check the new current part again in the next iteration */
865       continue;
866     } else if (strcmp (*p, "..") == 0 && p > parts) {
867       /* just move all following parts on top of the previous part, incl.
868        * NUL terminator */
869       g_free (*(p - 1));
870       g_free (*p);
871       memmove (p - 1, p + 1, (g_strv_length (p + 1) + 1) * sizeof (gchar *));
872       /* re-check the new current part again in the next iteration */
873       --p;
874       continue;
875     }
876     ++p;
877   }
878   if (*path == '/') {
879     guint num_parts;
880
881     num_parts = g_strv_length (parts) + 1;      /* incl. terminator */
882     parts = g_renew (gchar *, parts, num_parts + 1);
883     memmove (parts + 1, parts, num_parts * sizeof (gchar *));
884     parts[0] = g_strdup ("/");
885   }
886
887   clean_path = g_build_filenamev (parts);
888   g_strfreev (parts);
889   return clean_path;
890 }
891
892 static gboolean
893 file_path_contains_relatives (const gchar * path)
894 {
895   return (strstr (path, "/./") != NULL || strstr (path, "/../") != NULL ||
896       strstr (path, G_DIR_SEPARATOR_S "." G_DIR_SEPARATOR_S) != NULL ||
897       strstr (path, G_DIR_SEPARATOR_S ".." G_DIR_SEPARATOR_S) != NULL);
898 }
899
900 /**
901  * gst_filename_to_uri:
902  * @filename: absolute or relative file name path
903  * @error: pointer to error, or %NULL
904  *
905  * Similar to g_filename_to_uri(), but attempts to handle relative file paths
906  * as well. Before converting @filename into an URI, it will be prefixed by
907  * the current working directory if it is a relative path, and then the path
908  * will be canonicalised so that it doesn't contain any './' or '../' segments.
909  *
910  * On Windows #filename should be in UTF-8 encoding.
911  */
912 gchar *
913 gst_filename_to_uri (const gchar * filename, GError ** error)
914 {
915   gchar *abs_location = NULL;
916   gchar *uri, *abs_clean;
917
918   g_return_val_if_fail (filename != NULL, NULL);
919   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
920
921   if (g_path_is_absolute (filename)) {
922     if (!file_path_contains_relatives (filename)) {
923       uri = g_filename_to_uri (filename, NULL, error);
924       goto beach;
925     }
926
927     abs_location = g_strdup (filename);
928   } else {
929     gchar *cwd;
930
931     cwd = g_get_current_dir ();
932     abs_location = g_build_filename (cwd, filename, NULL);
933     g_free (cwd);
934
935     if (!file_path_contains_relatives (abs_location)) {
936       uri = g_filename_to_uri (abs_location, NULL, error);
937       goto beach;
938     }
939   }
940
941   /* path is now absolute, but contains '.' or '..' */
942   abs_clean = gst_file_utils_canonicalise_path (abs_location);
943   GST_LOG ("'%s' -> '%s' -> '%s'", filename, abs_location, abs_clean);
944   uri = g_filename_to_uri (abs_clean, NULL, error);
945   g_free (abs_clean);
946
947 beach:
948
949   g_free (abs_location);
950   GST_DEBUG ("'%s' -> '%s'", filename, uri);
951   return uri;
952 }
953
954 /****************************************************************************
955  * GstUri - GstMiniObject to parse and merge URIs according to IETF RFC 3986
956  ****************************************************************************/
957
958 /**
959  * SECTION:gsturi
960  * @short_description: URI parsing and manipulation.
961  *
962  * A #GstUri object can be used to parse and split a URI string into its
963  * constituant parts. Two #GstUri objects can be joined to make a new #GstUri
964  * using the algorithm described in RFC3986.
965  */
966
967 /* Definition for GstUri object */
968 struct _GstUri
969 {
970   /*< private > */
971   GstMiniObject mini_object;
972   gchar *scheme;
973   gchar *userinfo;
974   gchar *host;
975   guint port;
976   GList *path;
977   GHashTable *query;
978   gchar *fragment;
979 };
980
981 GST_DEFINE_MINI_OBJECT_TYPE (GstUri, gst_uri);
982
983 static GstUri *_gst_uri_copy (const GstUri * uri);
984 static void _gst_uri_free (GstUri * uri);
985 static GstUri *_gst_uri_new (void);
986 static GList *_remove_dot_segments (GList * path);
987
988 /** private GstUri functions **/
989
990 static GstUri *
991 _gst_uri_new (void)
992 {
993   GstUri *uri;
994   uri = GST_URI_CAST (g_slice_new0 (GstUri));
995
996   if (uri)
997     gst_mini_object_init (GST_MINI_OBJECT_CAST (uri), 0, gst_uri_get_type (),
998         (GstMiniObjectCopyFunction) _gst_uri_copy, NULL,
999         (GstMiniObjectFreeFunction) _gst_uri_free);
1000
1001   return uri;
1002 }
1003
1004 static void
1005 _gst_uri_free (GstUri * uri)
1006 {
1007   g_return_if_fail (GST_IS_URI (uri));
1008
1009   g_free (uri->scheme);
1010   g_free (uri->userinfo);
1011   g_free (uri->host);
1012   g_list_free_full (uri->path, g_free);
1013   if (uri->query)
1014     g_hash_table_unref (uri->query);
1015   g_free (uri->fragment);
1016
1017   g_slice_free1 (sizeof (*uri), uri);
1018 }
1019
1020 static GHashTable *
1021 _gst_uri_copy_query_table (GHashTable * orig)
1022 {
1023   GHashTable *new = NULL;
1024
1025   if (orig != NULL) {
1026     GHashTableIter iter;
1027     gpointer key, value;
1028     new = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
1029     g_hash_table_iter_init (&iter, orig);
1030     while (g_hash_table_iter_next (&iter, &key, &value)) {
1031       g_hash_table_insert (new, g_strdup (key), g_strdup (value));
1032     }
1033   }
1034
1035   return new;
1036 }
1037
1038 static GstUri *
1039 _gst_uri_copy (const GstUri * orig_uri)
1040 {
1041   GstUri *new_uri;
1042
1043   g_return_val_if_fail (GST_IS_URI (orig_uri), NULL);
1044
1045   new_uri = _gst_uri_new ();
1046
1047   if (new_uri) {
1048     new_uri->scheme = g_strdup (orig_uri->scheme);
1049     new_uri->userinfo = g_strdup (orig_uri->userinfo);
1050     new_uri->host = g_strdup (orig_uri->host);
1051     new_uri->port = orig_uri->port;
1052     new_uri->path = g_list_copy_deep (orig_uri->path, (GCopyFunc) g_strdup,
1053         NULL);
1054     new_uri->query = _gst_uri_copy_query_table (orig_uri->query);
1055     new_uri->fragment = g_strdup (orig_uri->fragment);
1056   }
1057
1058   return new_uri;
1059 }
1060
1061 /*
1062  * _gst_uri_compare_lists:
1063  *
1064  * Compare two lists for equality. This compares the two lists, item for item,
1065  * comparing items in the same position in the two lists. If @first is
1066  * considered less than @second the result will be negative. If @first is
1067  * considered to be more than @second then the result will be positive. If the
1068  * lists are considered to be equal then the result will be 0. If two lists
1069  * have the same items, but one list is shorter than the other, then the
1070  * shorter list is considered to be less than the longer list.
1071  */
1072 static gint
1073 _gst_uri_compare_lists (GList * first, GList * second, GCompareFunc cmp_fn)
1074 {
1075   GList *itr1, *itr2;
1076   gint result;
1077
1078   for (itr1 = first, itr2 = second;
1079       itr1 != NULL || itr2 != NULL; itr1 = itr1->next, itr2 = itr2->next) {
1080     if (itr1 == NULL)
1081       return -1;
1082     if (itr2 == NULL)
1083       return 1;
1084     result = cmp_fn (itr1->data, itr2->data);
1085     if (result != 0)
1086       return result;
1087   }
1088   return 0;
1089 }
1090
1091 typedef enum
1092 {
1093   _GST_URI_NORMALIZE_LOWERCASE = 1,
1094   _GST_URI_NORMALIZE_UPPERCASE = 2
1095 } _GstUriNormalizations;
1096
1097 /*
1098  * Find the first character that hasn't been normalized according to the @flags.
1099  */
1100 static gchar *
1101 _gst_uri_first_non_normalized_char (gchar * str, guint flags)
1102 {
1103   gchar *pos;
1104
1105   if (str == NULL)
1106     return NULL;
1107
1108   for (pos = str; *pos; pos++) {
1109     if ((flags & _GST_URI_NORMALIZE_UPPERCASE) && g_ascii_islower (*pos))
1110       return pos;
1111     if ((flags & _GST_URI_NORMALIZE_LOWERCASE) && g_ascii_isupper (*pos))
1112       return pos;
1113   }
1114   return NULL;
1115 }
1116
1117 static gboolean
1118 _gst_uri_normalize_lowercase (gchar * str)
1119 {
1120   gchar *pos;
1121   gboolean ret = FALSE;
1122
1123   for (pos = _gst_uri_first_non_normalized_char (str,
1124           _GST_URI_NORMALIZE_LOWERCASE);
1125       pos != NULL;
1126       pos = _gst_uri_first_non_normalized_char (pos + 1,
1127           _GST_URI_NORMALIZE_LOWERCASE)) {
1128     *pos = g_ascii_tolower (*pos);
1129     ret = TRUE;
1130   }
1131
1132   return ret;
1133 }
1134
1135 #define _gst_uri_normalize_scheme _gst_uri_normalize_lowercase
1136 #define _gst_uri_normalize_hostname _gst_uri_normalize_lowercase
1137
1138 static gboolean
1139 _gst_uri_normalize_path (GList ** path)
1140 {
1141   GList *new_path;
1142
1143   new_path = _remove_dot_segments (*path);
1144   if (_gst_uri_compare_lists (new_path, *path, (GCompareFunc) g_strcmp0) != 0) {
1145     g_list_free_full (*path, g_free);
1146     *path = new_path;
1147     return TRUE;
1148   }
1149   g_list_free_full (new_path, g_free);
1150
1151   return FALSE;
1152 }
1153
1154 static gboolean
1155 _gst_uri_normalize_str_noop (gchar * str)
1156 {
1157   return FALSE;
1158 }
1159
1160 static gboolean
1161 _gst_uri_normalize_table_noop (GHashTable * table)
1162 {
1163   return FALSE;
1164 }
1165
1166 #define _gst_uri_normalize_userinfo _gst_uri_normalize_str_noop
1167 #define _gst_uri_normalize_query _gst_uri_normalize_table_noop
1168 #define _gst_uri_normalize_fragment _gst_uri_normalize_str_noop
1169
1170 /** RFC 3986 functions **/
1171
1172 static GList *
1173 _merge (GList * base, GList * path)
1174 {
1175   GList *ret, *path_copy, *last;
1176
1177   path_copy = g_list_copy_deep (path, (GCopyFunc) g_strdup, NULL);
1178   /* if base is NULL make path absolute */
1179   if (base == NULL) {
1180     if (path_copy != NULL && path_copy->data != NULL) {
1181       path_copy = g_list_prepend (path_copy, NULL);
1182     }
1183     return path_copy;
1184   }
1185
1186   ret = g_list_copy_deep (base, (GCopyFunc) g_strdup, NULL);
1187   last = g_list_last (ret);
1188   ret = g_list_remove_link (ret, last);
1189   g_list_free_full (last, g_free);
1190   ret = g_list_concat (ret, path_copy);
1191
1192   return ret;
1193 }
1194
1195 static GList *
1196 _remove_dot_segments (GList * path)
1197 {
1198   GList *out, *elem, *next;
1199
1200   if (path == NULL)
1201     return NULL;
1202
1203   out = g_list_copy_deep (path, (GCopyFunc) g_strdup, NULL);
1204
1205   for (elem = out; elem; elem = next) {
1206     next = elem->next;
1207     if (elem->data == NULL && elem != out && next != NULL) {
1208       out = g_list_delete_link (out, elem);
1209     } else if (g_strcmp0 (elem->data, ".") == 0) {
1210       g_free (elem->data);
1211       out = g_list_delete_link (out, elem);
1212     } else if (g_strcmp0 (elem->data, "..") == 0) {
1213       GList *prev = g_list_previous (elem);
1214       if (prev && (prev != out || prev->data != NULL)) {
1215         g_free (prev->data);
1216         out = g_list_delete_link (out, prev);
1217       }
1218       g_free (elem->data);
1219       out = g_list_delete_link (out, elem);
1220     }
1221   }
1222
1223   return out;
1224 }
1225
1226 static gchar *
1227 _gst_uri_escape_userinfo (const gchar * userinfo)
1228 {
1229   return g_uri_escape_string (userinfo,
1230       G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO, FALSE);
1231 }
1232
1233 static gchar *
1234 _gst_uri_escape_host (const gchar * host)
1235 {
1236   return g_uri_escape_string (host,
1237       G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS, FALSE);
1238 }
1239
1240 static gchar *
1241 _gst_uri_escape_path_segment (const gchar * segment)
1242 {
1243   return g_uri_escape_string (segment,
1244       G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT, FALSE);
1245 }
1246
1247 static gchar *
1248 _gst_uri_escape_http_query_element (const gchar * element)
1249 {
1250   gchar *ret, *c;
1251
1252   ret = g_uri_escape_string (element, "!$'()*,;:@/? ", FALSE);
1253   for (c = ret; *c; c++)
1254     if (*c == ' ')
1255       *c = '+';
1256   return ret;
1257 }
1258
1259 static gchar *
1260 _gst_uri_escape_fragment (const gchar * fragment)
1261 {
1262   return g_uri_escape_string (fragment,
1263       G_URI_RESERVED_CHARS_ALLOWED_IN_PATH "?", FALSE);
1264 }
1265
1266 static GList *
1267 _gst_uri_string_to_list (const gchar * str, const gchar * sep, gboolean convert,
1268     gboolean unescape)
1269 {
1270   GList *new_list = NULL;
1271
1272   if (str) {
1273     guint pct_sep_len = 0;
1274     gchar *pct_sep;
1275     gchar **split_str;
1276
1277     if (convert && !unescape) {
1278       pct_sep = g_strdup_printf ("%%%2.2X", (guint) (*sep));
1279       pct_sep_len = 3;
1280     }
1281
1282     split_str = g_strsplit (str, sep, -1);
1283     if (split_str) {
1284       gchar **next_elem;
1285       for (next_elem = split_str; *next_elem; next_elem += 1) {
1286         gchar *elem = *next_elem;
1287         if (*elem == '\0') {
1288           new_list = g_list_append (new_list, NULL);
1289         } else {
1290           if (convert && !unescape) {
1291             gchar *next_sep;
1292             for (next_sep = strcasestr (elem, pct_sep); next_sep;
1293                 next_sep = strcasestr (next_sep + 1, pct_sep)) {
1294               *next_sep = *sep;
1295               memmove (next_sep + 1, next_sep + pct_sep_len,
1296                   strlen (next_sep + pct_sep_len) + 1);
1297             }
1298           }
1299           if (unescape) {
1300             *next_elem = g_uri_unescape_string (elem, NULL);
1301             g_free (elem);
1302             elem = *next_elem;
1303           }
1304           new_list = g_list_append (new_list, g_strdup (elem));
1305         }
1306       }
1307     }
1308     g_strfreev (split_str);
1309     if (convert && !unescape)
1310       g_free (pct_sep);
1311   }
1312
1313   return new_list;
1314 }
1315
1316 static GHashTable *
1317 _gst_uri_string_to_table (const gchar * str, const gchar * part_sep,
1318     const gchar * kv_sep, gboolean convert, gboolean unescape)
1319 {
1320   GHashTable *new_table = NULL;
1321
1322   if (str) {
1323     gchar *pct_part_sep = NULL, *pct_kv_sep = NULL;
1324     gchar **split_parts;
1325
1326     new_table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
1327
1328     if (convert && !unescape) {
1329       pct_part_sep = g_strdup_printf ("%%%2.2X", (guint) (*part_sep));
1330       pct_kv_sep = g_strdup_printf ("%%%2.2X", (guint) (*kv_sep));
1331     }
1332
1333     split_parts = g_strsplit (str, part_sep, -1);
1334     if (split_parts) {
1335       gchar **next_part;
1336       for (next_part = split_parts; *next_part; next_part += 1) {
1337         gchar *part = *next_part;
1338         gchar *kv_sep_pos;
1339         gchar *key, *value;
1340         /* if we are converting percent encoded versions of separators then
1341          *  substitute the part separator now. */
1342         if (convert && !unescape) {
1343           gchar *next_sep;
1344           for (next_sep = strcasestr (part, pct_part_sep); next_sep;
1345               next_sep = strcasestr (next_sep + 1, pct_part_sep)) {
1346             *next_sep = *part_sep;
1347             memmove (next_sep + 1, next_sep + 3, strlen (next_sep + 3) + 1);
1348           }
1349         }
1350         /* find the key/value separator within the part */
1351         kv_sep_pos = g_strstr_len (part, -1, kv_sep);
1352         if (kv_sep_pos == NULL) {
1353           if (unescape) {
1354             key = g_uri_unescape_string (part, NULL);
1355           } else {
1356             key = g_strdup (part);
1357           }
1358           value = NULL;
1359         } else {
1360           if (unescape) {
1361             key = g_uri_unescape_segment (part, kv_sep_pos, NULL);
1362             value = g_uri_unescape_string (kv_sep_pos + 1, NULL);
1363           } else {
1364             key = g_strndup (part, kv_sep_pos - part);
1365             value = g_strdup (kv_sep_pos + 1);
1366           }
1367         }
1368         /* if we are converting percent encoded versions of separators then
1369          *  substitute the key/value separator in both key and value now. */
1370         if (convert && !unescape) {
1371           gchar *next_sep;
1372           for (next_sep = strcasestr (key, pct_kv_sep); next_sep;
1373               next_sep = strcasestr (next_sep + 1, pct_kv_sep)) {
1374             *next_sep = *kv_sep;
1375             memmove (next_sep + 1, next_sep + 3, strlen (next_sep + 3) + 1);
1376           }
1377           if (value) {
1378             for (next_sep = strcasestr (value, pct_kv_sep); next_sep;
1379                 next_sep = strcasestr (next_sep + 1, pct_kv_sep)) {
1380               *next_sep = *kv_sep;
1381               memmove (next_sep + 1, next_sep + 3, strlen (next_sep + 3) + 1);
1382             }
1383           }
1384         }
1385         /* add value to the table */
1386         g_hash_table_insert (new_table, key, value);
1387       }
1388     }
1389     /* tidy up */
1390     g_strfreev (split_parts);
1391     if (convert && !unescape) {
1392       g_free (pct_part_sep);
1393       g_free (pct_kv_sep);
1394     }
1395   }
1396
1397   return new_table;
1398 }
1399
1400
1401 /*
1402  * Method definitions.
1403  */
1404
1405 /**
1406  * gst_uri_new:
1407  * @scheme: (nullable): The scheme for the new URI.
1408  * @userinfo: (nullable): The user-info for the new URI.
1409  * @host: (nullable): The host name for the new URI.
1410  * @port: The port number for the new URI or %GST_URI_NO_PORT.
1411  * @path: (nullable): The path for the new URI with '/' separating path
1412  *                      elements.
1413  * @query: (nullable): The query string for the new URI with '&' separating
1414  *                       query elements. Elements containing '&' characters
1415  *                       should encode them as "%26".
1416  * @fragment: (nullable): The fragment name for the new URI.
1417  *
1418  * Creates a new #GstUri object with the given URI parts. The path and query
1419  * strings will be broken down into their elements. All strings should not be
1420  * escaped except where indicated.
1421  *
1422  * Returns: (transfer full): A new #GstUri object.
1423  *
1424  * Since: 1.6
1425  */
1426 GstUri *
1427 gst_uri_new (const gchar * scheme, const gchar * userinfo, const gchar * host,
1428     guint port, const gchar * path, const gchar * query, const gchar * fragment)
1429 {
1430   GstUri *new_uri;
1431
1432   new_uri = _gst_uri_new ();
1433   if (new_uri) {
1434     new_uri->scheme = g_strdup (scheme);
1435     new_uri->userinfo = g_strdup (userinfo);
1436     new_uri->host = g_strdup (host);
1437     new_uri->port = port;
1438     new_uri->path = _gst_uri_string_to_list (path, "/", FALSE, FALSE);
1439     new_uri->query = _gst_uri_string_to_table (query, "&", "=", TRUE, FALSE);
1440     new_uri->fragment = g_strdup (fragment);
1441   }
1442
1443   return new_uri;
1444 }
1445
1446 /**
1447  * gst_uri_new_with_base:
1448  * @base: (transfer none)(nullable): The base URI to join the new URI to.
1449  * @scheme: (nullable): The scheme for the new URI.
1450  * @userinfo: (nullable): The user-info for the new URI.
1451  * @host: (nullable): The host name for the new URI.
1452  * @port: The port number for the new URI or %GST_URI_NO_PORT.
1453  * @path: (nullable): The path for the new URI with '/' separating path
1454  *                      elements.
1455  * @query: (nullable): The query string for the new URI with '&' separating
1456  *                       query elements. Elements containing '&' characters
1457  *                       should encode them as "%26".
1458  * @fragment: (nullable): The fragment name for the new URI.
1459  *
1460  * Like gst_uri_new(), but joins the new URI onto a base URI.
1461  *
1462  * Returns: (transfer full): The new URI joined onto @base.
1463  *
1464  * Since: 1.6
1465  */
1466 GstUri *
1467 gst_uri_new_with_base (GstUri * base, const gchar * scheme,
1468     const gchar * userinfo, const gchar * host, guint port, const gchar * path,
1469     const gchar * query, const gchar * fragment)
1470 {
1471   GstUri *new_rel_uri;
1472   GstUri *new_uri;
1473
1474   g_return_val_if_fail (base == NULL || GST_IS_URI (base), NULL);
1475
1476   new_rel_uri = gst_uri_new (scheme, userinfo, host, port, path, query,
1477       fragment);
1478   new_uri = gst_uri_join (base, new_rel_uri);
1479   gst_uri_unref (new_rel_uri);
1480
1481   return new_uri;
1482 }
1483
1484 /**
1485  * gst_uri_from_string:
1486  * @uri: The URI string to parse.
1487  *
1488  * Parses a URI string into a new #GstUri object.
1489  *
1490  * Returns: (transfer full): A new #GstUri object.
1491  *
1492  * Since: 1.6
1493  */
1494 GstUri *
1495 gst_uri_from_string (const gchar * uri)
1496 {
1497   GstUri *uri_obj;
1498
1499   uri_obj = _gst_uri_new ();
1500
1501   if (uri_obj && uri != NULL) {
1502     int i = 0;
1503     if (g_ascii_isalpha (uri[i])) {
1504       /* find end of scheme name */
1505       i++;
1506       while (g_ascii_isalnum (uri[i]) || uri[i] == '+' || uri[i] == '-' ||
1507           uri[i] == '.')
1508         i++;
1509     }
1510     if (i > 0 && uri[i] == ':') {
1511       /* get scheme */
1512       uri_obj->scheme = g_strndup (uri, i);
1513       uri += i + 1;
1514     }
1515     if (uri[0] == '/' && uri[1] == '/') {
1516       const gchar *eoa, *eoui, *eoh;
1517       /* get authority [userinfo@]host[:port] */
1518       uri += 2;
1519       /* find end of authority */
1520       eoa = strchr (uri, '/');
1521       if (eoa == NULL)
1522         eoa = uri + strlen (uri);
1523       /* find end of userinfo */
1524       eoui = strchr (uri, '@');
1525       if (eoui != NULL && eoui < eoa) {
1526         uri_obj->userinfo = g_uri_unescape_segment (uri, eoui, NULL);
1527         uri = eoui + 1;
1528       }
1529       /* find end of host */
1530       if (uri[0] == '[') {
1531         eoh = strchr (uri, ']');
1532         if (eoh == NULL || eoh >= eoa)
1533           eoh = eoa - 1;
1534       } else {
1535         eoh = strchr (uri, ':');
1536         if (eoh == NULL || eoh >= eoa)
1537           eoh = eoa - 1;
1538         else
1539           eoh--;
1540       }
1541       uri_obj->host = g_uri_unescape_segment (uri, eoh + 1, NULL);
1542       uri = eoh + 1;
1543       if (uri < eoa) {
1544         /* if port number is malformed, do best effort and concat string */
1545         if (uri[0] != ':' || strspn (uri + 1, "0123456789") != eoa - uri - 1) {
1546           gchar *tmp = uri_obj->host;
1547           uri_obj->host = g_malloc (strlen (uri_obj->host) + eoa - uri + 1);
1548           g_strlcpy (g_stpcpy (uri_obj->host, tmp), uri, eoa - uri + 1);
1549           g_free (tmp);
1550         } else {
1551           /* otherwise treat port as unsigned decimal number */
1552           uri++;
1553           while (uri < eoa) {
1554             uri_obj->port = uri_obj->port * 10 + g_ascii_digit_value (*uri);
1555             uri++;
1556           }
1557         }
1558       }
1559       uri = eoa;
1560     }
1561     if (uri != NULL && uri[0] != '\0') {
1562       /* get path */
1563       size_t len;
1564       len = strcspn (uri, "?#");
1565       if (uri[len] == '\0') {
1566         uri_obj->path = _gst_uri_string_to_list (uri, "/", FALSE, TRUE);
1567         uri = NULL;
1568       } else {
1569         if (len > 0) {
1570           gchar *path_str = g_strndup (uri, len);
1571           uri_obj->path = _gst_uri_string_to_list (path_str, "/", FALSE, TRUE);
1572           g_free (path_str);
1573         }
1574         uri += len;
1575       }
1576     }
1577     if (uri != NULL && uri[0] == '?') {
1578       /* get query */
1579       gchar *eoq;
1580       eoq = strchr (++uri, '#');
1581       if (eoq == NULL) {
1582         uri_obj->query = _gst_uri_string_to_table (uri, "&", "=", TRUE, TRUE);
1583         uri = NULL;
1584       } else {
1585         if (eoq != uri) {
1586           gchar *query_str = g_strndup (uri, eoq - uri);
1587           uri_obj->query = _gst_uri_string_to_table (query_str, "&", "=", TRUE,
1588               TRUE);
1589           g_free (query_str);
1590         }
1591         uri = eoq;
1592       }
1593     }
1594     if (uri != NULL && uri[0] == '#') {
1595       uri_obj->fragment = g_uri_unescape_string (uri + 1, NULL);
1596     }
1597   }
1598
1599   return uri_obj;
1600 }
1601
1602 /**
1603  * gst_uri_from_string_with_base:
1604  * @base: (transfer none)(nullable): The base URI to join the new URI with.
1605  * @uri: The URI string to parse.
1606  *
1607  * Like gst_uri_from_string() but also joins with a base URI.
1608  *
1609  * Returns: (transfer full): A new #GstUri object.
1610  *
1611  * Since: 1.6
1612  */
1613 GstUri *
1614 gst_uri_from_string_with_base (GstUri * base, const gchar * uri)
1615 {
1616   GstUri *new_rel_uri;
1617   GstUri *new_uri;
1618
1619   g_return_val_if_fail (base == NULL || GST_IS_URI (base), NULL);
1620
1621   new_rel_uri = gst_uri_from_string (uri);
1622   new_uri = gst_uri_join (base, new_rel_uri);
1623   gst_uri_unref (new_rel_uri);
1624
1625   return new_uri;
1626 }
1627
1628 /**
1629  * gst_uri_equal:
1630  * @first: First #GstUri to compare.
1631  * @second: Second #GstUri to compare.
1632  *
1633  * Compares two #GstUri objects to see if they represent the same normalized
1634  * URI.
1635  *
1636  * Returns: %TRUE if the normalized versions of the two URI's would be equal.
1637  *
1638  * Since: 1.6
1639  */
1640 gboolean
1641 gst_uri_equal (const GstUri * first, const GstUri * second)
1642 {
1643   gchar *first_norm = NULL, *second_norm = NULL;
1644   GList *first_norm_list = NULL, *second_norm_list = NULL;
1645   const gchar *first_cmp, *second_cmp;
1646   GHashTableIter table_iter;
1647   gpointer key, value;
1648   int result;
1649
1650   g_return_val_if_fail ((first == NULL || GST_IS_URI (first)) &&
1651       (second == NULL || GST_IS_URI (second)), FALSE);
1652
1653   if (first == second)
1654     return TRUE;
1655
1656   if (first == NULL || second == NULL)
1657     return FALSE;
1658
1659   if (first->port != second->port)
1660     return FALSE;
1661
1662 /* work out a version of field value (normalized or not) to compare.
1663  * first_cmp, second_cmp will be the values to compare later.
1664  * first_norm, second_norm will be non-NULL if normalized versions are used,
1665  *  and need to be freed later.
1666  */
1667 #define GST_URI_NORMALIZED_FIELD(pos, field, norm_fn, flags) \
1668   pos##_cmp = pos->field; \
1669   if (_gst_uri_first_non_normalized_char ((gchar*)pos##_cmp, flags) != NULL) { \
1670     pos##_norm = g_strdup (pos##_cmp); \
1671     norm_fn (pos##_norm); \
1672     pos##_cmp = pos##_norm; \
1673   }
1674
1675 /* compare two string values, normalizing if needed */
1676 #define GST_URI_NORMALIZED_CMP_STR(field, norm_fn, flags) \
1677   GST_URI_NORMALIZED_FIELD (first, field, norm_fn, flags) \
1678   GST_URI_NORMALIZED_FIELD (second, field, norm_fn, flags) \
1679   result = g_strcmp0 (first_cmp, second_cmp); \
1680   g_free (first_norm); \
1681   first_norm = NULL; \
1682   g_free (second_norm); \
1683   second_norm = NULL; \
1684   if (result != 0) return FALSE
1685
1686 /* compare two string values */
1687 #define GST_URI_CMP_STR(field) \
1688   if (g_strcmp0 (first->field, second->field) != 0) return FALSE
1689
1690 /* compare two GLists, normalize lists if needed before comparison */
1691 #define GST_URI_NORMALIZED_CMP_LIST(field, norm_fn, copy_fn, cmp_fn, free_fn) \
1692   first_norm_list = g_list_copy_deep (first->field, (GCopyFunc) copy_fn, NULL); \
1693   norm_fn (&first_norm_list); \
1694   second_norm_list = g_list_copy_deep (second->field, (GCopyFunc) copy_fn, NULL); \
1695   norm_fn (&second_norm_list); \
1696   result = _gst_uri_compare_lists (first_norm_list, second_norm_list, (GCompareFunc) cmp_fn); \
1697   g_list_free_full (first_norm_list, free_fn); \
1698   g_list_free_full (second_norm_list, free_fn); \
1699   if (result != 0) return FALSE
1700
1701   GST_URI_CMP_STR (userinfo);
1702
1703   GST_URI_CMP_STR (fragment);
1704
1705   GST_URI_NORMALIZED_CMP_STR (scheme, _gst_uri_normalize_scheme,
1706       _GST_URI_NORMALIZE_LOWERCASE);
1707
1708   GST_URI_NORMALIZED_CMP_STR (host, _gst_uri_normalize_hostname,
1709       _GST_URI_NORMALIZE_LOWERCASE);
1710
1711   GST_URI_NORMALIZED_CMP_LIST (path, _gst_uri_normalize_path, g_strdup,
1712       g_strcmp0, g_free);
1713
1714   if (first->query == NULL && second->query != NULL)
1715     return FALSE;
1716   if (first->query != NULL && second->query == NULL)
1717     return FALSE;
1718   if (first->query != NULL) {
1719     if (g_hash_table_size (first->query) != g_hash_table_size (second->query))
1720       return FALSE;
1721
1722     g_hash_table_iter_init (&table_iter, first->query);
1723     while (g_hash_table_iter_next (&table_iter, &key, &value)) {
1724       if (!g_hash_table_contains (second->query, key))
1725         return FALSE;
1726       result = g_strcmp0 (g_hash_table_lookup (second->query, key), value);
1727       if (result != 0)
1728         return FALSE;
1729     }
1730   }
1731 #undef GST_URI_NORMALIZED_CMP_STR
1732 #undef GST_URI_CMP_STR
1733 #undef GST_URI_NORMALIZED_CMP_LIST
1734 #undef GST_URI_NORMALIZED_FIELD
1735
1736   return TRUE;
1737 }
1738
1739 /**
1740  * gst_uri_join:
1741  * @base_uri: (transfer none)(nullable): The base URI to join another to.
1742  * @ref_uri: (transfer none)(nullable): The reference URI to join onto the
1743  *                                        base URI.
1744  *
1745  * Join a reference URI onto a base URI using the method from RFC 3986.
1746  * If either URI is %NULL then the other URI will be returned with the ref count
1747  * increased.
1748  *
1749  * Returns: (transfer full): A #GstUri which represents the base with the
1750  *                           reference URI joined on.
1751  *
1752  * Since: 1.6
1753  */
1754 GstUri *
1755 gst_uri_join (GstUri * base_uri, GstUri * ref_uri)
1756 {
1757   const gchar *r_scheme;
1758   GstUri *t;
1759
1760   g_return_val_if_fail ((base_uri == NULL || GST_IS_URI (base_uri)) &&
1761       (ref_uri == NULL || GST_IS_URI (ref_uri)), NULL);
1762
1763   if (base_uri == NULL && ref_uri == NULL)
1764     return NULL;
1765   if (base_uri == NULL) {
1766     g_return_val_if_fail (GST_IS_URI (ref_uri), NULL);
1767     return gst_uri_ref (ref_uri);
1768   }
1769   if (ref_uri == NULL) {
1770     g_return_val_if_fail (GST_IS_URI (base_uri), NULL);
1771     return gst_uri_ref (base_uri);
1772   }
1773
1774   g_return_val_if_fail (GST_IS_URI (base_uri) && GST_IS_URI (ref_uri), NULL);
1775
1776   t = _gst_uri_new ();
1777
1778   if (t == NULL)
1779     return t;
1780
1781   /* process according to RFC3986 */
1782   r_scheme = ref_uri->scheme;
1783   if (r_scheme != NULL && g_strcmp0 (base_uri->scheme, r_scheme) == 0) {
1784     r_scheme = NULL;
1785   }
1786   if (r_scheme != NULL) {
1787     t->scheme = g_strdup (r_scheme);
1788     t->userinfo = g_strdup (ref_uri->userinfo);
1789     t->host = g_strdup (ref_uri->host);
1790     t->port = ref_uri->port;
1791     t->path = _remove_dot_segments (ref_uri->path);
1792     t->query = _gst_uri_copy_query_table (ref_uri->query);
1793   } else {
1794     if (ref_uri->host != NULL) {
1795       t->userinfo = g_strdup (ref_uri->userinfo);
1796       t->host = g_strdup (ref_uri->host);
1797       t->port = ref_uri->port;
1798       t->path = _remove_dot_segments (ref_uri->path);
1799       t->query = _gst_uri_copy_query_table (ref_uri->query);
1800     } else {
1801       if (ref_uri->path == NULL) {
1802         t->path = g_list_copy_deep (base_uri->path, (GCopyFunc) g_strdup, NULL);
1803         if (ref_uri->query != NULL)
1804           t->query = _gst_uri_copy_query_table (ref_uri->query);
1805         else
1806           t->query = _gst_uri_copy_query_table (base_uri->query);
1807       } else {
1808         if (ref_uri->path->data == NULL)
1809           t->path = _remove_dot_segments (ref_uri->path);
1810         else {
1811           GList *mrgd = _merge (base_uri->path, ref_uri->path);
1812           t->path = _remove_dot_segments (mrgd);
1813           g_list_free_full (mrgd, g_free);
1814         }
1815         t->query = _gst_uri_copy_query_table (ref_uri->query);
1816       }
1817       t->userinfo = g_strdup (base_uri->userinfo);
1818       t->host = g_strdup (base_uri->host);
1819       t->port = base_uri->port;
1820     }
1821     t->scheme = g_strdup (base_uri->scheme);
1822   }
1823   t->fragment = g_strdup (ref_uri->fragment);
1824
1825   return t;
1826 }
1827
1828 /**
1829  * gst_uri_join_strings:
1830  * @base_uri: The percent-encoded base URI.
1831  * @ref_uri: The percent-encoded reference URI to join to the @base_uri.
1832  *
1833  * This is a convenience function to join two URI strings and return the result.
1834  * The returned string should be g_free()'d after use.
1835  *
1836  * Returns: (transfer full): A string representing the percent-encoded join of
1837  *          the two URIs.
1838  *
1839  * Since: 1.6
1840  */
1841 gchar *
1842 gst_uri_join_strings (const gchar * base_uri, const gchar * ref_uri)
1843 {
1844   GstUri *base, *result;
1845   gchar *result_uri;
1846
1847   base = gst_uri_from_string (base_uri);
1848   result = gst_uri_from_string_with_base (base, ref_uri);
1849   result_uri = gst_uri_to_string (result);
1850   gst_uri_unref (base);
1851   gst_uri_unref (result);
1852
1853   return result_uri;
1854 }
1855
1856 /**
1857  * gst_uri_is_writable:
1858  * @uri: The #GstUri object to test.
1859  *
1860  * Check if it is safe to write to this #GstUri.
1861  *
1862  * Check if the refcount of @uri is exactly 1, meaning that no other
1863  * reference exists to the #GstUri and that the #GstUri is therefore writable.
1864  *
1865  * Modification of a #GstUri should only be done after verifying that it is
1866  * writable.
1867  *
1868  * Returns: %TRUE if it is safe to write to the object.
1869  *
1870  * Since: 1.6
1871  */
1872 gboolean
1873 gst_uri_is_writable (const GstUri * uri)
1874 {
1875   g_return_val_if_fail (GST_IS_URI (uri), FALSE);
1876   return gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (uri));
1877 }
1878
1879 /**
1880  * gst_uri_make_writable:
1881  * @uri: (transfer full): The #GstUri object to make writable.
1882  *
1883  * Make the #GstUri writable.
1884  *
1885  * Checks if @uri is writable, and if so the original object is returned. If
1886  * not, then a writable copy is made and returned. This gives away the
1887  * reference to @uri and returns a reference to the new #GstUri.
1888  * If @uri is %NULL then %NULL is returned.
1889  *
1890  * Returns: (transfer full): A writable version of @uri.
1891  *
1892  * Since: 1.6
1893  */
1894 GstUri *
1895 gst_uri_make_writable (GstUri * uri)
1896 {
1897   g_return_val_if_fail (GST_IS_URI (uri), NULL);
1898   return
1899       GST_URI_CAST (gst_mini_object_make_writable (GST_MINI_OBJECT_CAST (uri)));
1900 }
1901
1902 /**
1903  * gst_uri_to_string:
1904  * @uri: This #GstUri to convert to a string.
1905  *
1906  * Convert the URI to a string.
1907  *
1908  * Returns the URI as held in this object as a gchar* %NUL terminated string.
1909  * The caller should g_free() the string once they are finished with it.
1910  * The string is put together as described in RFC 3986.
1911  *
1912  * Returns: (transfer full): The string version of the URI.
1913  *
1914  * Since: 1.6
1915  */
1916 gchar *
1917 gst_uri_to_string (const GstUri * uri)
1918 {
1919   GString *uri_str;
1920   gchar *escaped;
1921
1922   g_return_val_if_fail (GST_IS_URI (uri), NULL);
1923
1924   uri_str = g_string_new (NULL);
1925
1926   if (uri->scheme != NULL)
1927     g_string_append_printf (uri_str, "%s:", uri->scheme);
1928
1929   if (uri->userinfo != NULL || uri->host != NULL ||
1930       uri->port != GST_URI_NO_PORT)
1931     g_string_append (uri_str, "//");
1932
1933   if (uri->userinfo != NULL) {
1934     escaped = _gst_uri_escape_userinfo (uri->userinfo);
1935     g_string_append_printf (uri_str, "%s@", escaped);
1936     g_free (escaped);
1937   }
1938
1939   if (uri->host != NULL) {
1940     escaped = _gst_uri_escape_host (uri->host);
1941     g_string_append (uri_str, escaped);
1942     g_free (escaped);
1943   }
1944
1945   if (uri->port != GST_URI_NO_PORT)
1946     g_string_append_printf (uri_str, ":%u", uri->port);
1947
1948   if (uri->path != NULL) {
1949     escaped = gst_uri_get_path_string (uri);
1950     g_string_append (uri_str, escaped);
1951     g_free (escaped);
1952   }
1953
1954   if (uri->query) {
1955     g_string_append (uri_str, "?");
1956     escaped = gst_uri_get_query_string (uri);
1957     g_string_append (uri_str, escaped);
1958     g_free (escaped);
1959   }
1960
1961   if (uri->fragment != NULL) {
1962     escaped = _gst_uri_escape_fragment (uri->fragment);
1963     g_string_append_printf (uri_str, "#%s", escaped);
1964     g_free (escaped);
1965   }
1966
1967   return g_string_free (uri_str, FALSE);
1968 }
1969
1970 /**
1971  * gst_uri_is_normalized:
1972  * @uri: The #GstUri to test to see if it is normalized.
1973  *
1974  * Tests the @uri to see if it is normalized. A %NULL @uri is considered to be
1975  * normalized.
1976  *
1977  * Returns: TRUE if the URI is normalized or is %NULL.
1978  *
1979  * Since: 1.6
1980  */
1981 gboolean
1982 gst_uri_is_normalized (const GstUri * uri)
1983 {
1984   GList *new_path;
1985   gboolean ret;
1986
1987   if (uri == NULL)
1988     return TRUE;
1989
1990   g_return_val_if_fail (GST_IS_URI (uri), FALSE);
1991
1992   /* check for non-normalized characters in uri parts */
1993   if (_gst_uri_first_non_normalized_char (uri->scheme,
1994           _GST_URI_NORMALIZE_LOWERCASE) != NULL ||
1995       /*_gst_uri_first_non_normalized_char (uri->userinfo,
1996           _GST_URI_NORMALIZE_PERCENTAGES) != NULL || */
1997       _gst_uri_first_non_normalized_char (uri->host,
1998           _GST_URI_NORMALIZE_LOWERCASE /*| _GST_URI_NORMALIZE_PERCENTAGES */ )
1999       != NULL
2000       /*|| _gst_uri_first_non_normalized_char (uri->path,
2001          _GST_URI_NORMALIZE_PERCENTAGES) != NULL
2002          || _gst_uri_first_non_normalized_char (uri->query,
2003          _GST_URI_NORMALIZE_PERCENTAGES) != NULL
2004          || _gst_uri_first_non_normalized_char (uri->fragment,
2005          _GST_URI_NORMALIZE_PERCENTAGES) != NULL */ )
2006     return FALSE;
2007
2008   /* also check path has had dot segments removed */
2009   new_path = _remove_dot_segments (uri->path);
2010   ret =
2011       (_gst_uri_compare_lists (new_path, uri->path,
2012           (GCompareFunc) g_strcmp0) == 0);
2013   g_list_free_full (new_path, g_free);
2014   return ret;
2015 }
2016
2017 /**
2018  * gst_uri_normalize:
2019  * @uri: (transfer none): The #GstUri to normalize.
2020  *
2021  * Normalization will remove extra path segments ("." and "..") from the URI. It
2022  * will also convert the scheme and host name to lower case and any
2023  * percent-encoded values to uppercase.
2024  *
2025  * The #GstUri object must be writable. Check with gst_uri_is_writable() or use
2026  * gst_uri_make_writable() first.
2027  *
2028  * Returns: TRUE if the URI was modified.
2029  *
2030  * Since: 1.6
2031  */
2032 gboolean
2033 gst_uri_normalize (GstUri * uri)
2034 {
2035   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2036
2037   return _gst_uri_normalize_scheme (uri->scheme) |
2038       _gst_uri_normalize_userinfo (uri->userinfo) |
2039       _gst_uri_normalize_hostname (uri->host) |
2040       _gst_uri_normalize_path (&uri->path) |
2041       _gst_uri_normalize_query (uri->query) |
2042       _gst_uri_normalize_fragment (uri->fragment);
2043 }
2044
2045 /**
2046  * gst_uri_get_scheme:
2047  * @uri: (nullable): This #GstUri object.
2048  *
2049  * Get the scheme name from the URI or %NULL if it doesn't exist.
2050  * If @uri is %NULL then returns %NULL.
2051  *
2052  * Returns: The scheme from the #GstUri object or %NULL.
2053  */
2054 const gchar *
2055 gst_uri_get_scheme (const GstUri * uri)
2056 {
2057   g_return_val_if_fail (uri == NULL || GST_IS_URI (uri), NULL);
2058   return (uri ? uri->scheme : NULL);
2059 }
2060
2061 /**
2062  * gst_uri_set_scheme:
2063  * @uri: (transfer none)(nullable): The #GstUri to modify.
2064  * @scheme: The new scheme to set or %NULL to unset the scheme.
2065  *
2066  * Set or unset the scheme for the URI.
2067  *
2068  * Returns: %TRUE if the scheme was set/unset successfully.
2069  *
2070  * Since: 1.6
2071  */
2072 gboolean
2073 gst_uri_set_scheme (GstUri * uri, const gchar * scheme)
2074 {
2075   if (!uri)
2076     return scheme == NULL;
2077   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2078
2079   g_free (uri->scheme);
2080   uri->scheme = g_strdup (scheme);
2081
2082   return TRUE;
2083 }
2084
2085 /**
2086  * gst_uri_get_userinfo:
2087  * @uri: (nullable): This #GstUri object.
2088  *
2089  * Get the userinfo (usually in the form "username:password") from the URI
2090  * or %NULL if it doesn't exist. If @uri is %NULL then returns %NULL.
2091  *
2092  * Returns: The userinfo from the #GstUri object or %NULL.
2093  *
2094  * Since: 1.6
2095  */
2096 const gchar *
2097 gst_uri_get_userinfo (const GstUri * uri)
2098 {
2099   g_return_val_if_fail (uri == NULL || GST_IS_URI (uri), NULL);
2100   return (uri ? uri->userinfo : NULL);
2101 }
2102
2103 /**
2104  * gst_uri_set_userinfo:
2105  * @uri: (transfer none)(nullable): The #GstUri to modify.
2106  * @userinfo: The new user-information string to set or %NULL to unset.
2107  *
2108  * Set or unset the user information for the URI.
2109  *
2110  * Returns: %TRUE if the user information was set/unset successfully.
2111  *
2112  * Since: 1.6
2113  */
2114 gboolean
2115 gst_uri_set_userinfo (GstUri * uri, const gchar * userinfo)
2116 {
2117   if (!uri)
2118     return userinfo == NULL;
2119   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2120
2121   g_free (uri->userinfo);
2122   uri->userinfo = g_strdup (userinfo);
2123
2124   return TRUE;
2125 }
2126
2127 /**
2128  * gst_uri_get_host:
2129  * @uri: (nullable): This #GstUri object.
2130  *
2131  * Get the host name from the URI or %NULL if it doesn't exist.
2132  * If @uri is %NULL then returns %NULL.
2133  *
2134  * Returns: The host name from the #GstUri object or %NULL.
2135  *
2136  * Since: 1.6
2137  */
2138 const gchar *
2139 gst_uri_get_host (const GstUri * uri)
2140 {
2141   g_return_val_if_fail (uri == NULL || GST_IS_URI (uri), NULL);
2142   return (uri ? uri->host : NULL);
2143 }
2144
2145 /**
2146  * gst_uri_set_host:
2147  * @uri: (transfer none)(nullable): The #GstUri to modify.
2148  * @host: The new host string to set or %NULL to unset.
2149  *
2150  * Set or unset the host for the URI.
2151  *
2152  * Returns: %TRUE if the host was set/unset successfully.
2153  *
2154  * Since: 1.6
2155  */
2156 gboolean
2157 gst_uri_set_host (GstUri * uri, const gchar * host)
2158 {
2159   if (!uri)
2160     return host == NULL;
2161   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2162
2163   g_free (uri->host);
2164   uri->host = g_strdup (host);
2165
2166   return TRUE;
2167 }
2168
2169 /**
2170  * gst_uri_get_port:
2171  * @uri: (nullable): This #GstUri object.
2172  *
2173  * Get the port number from the URI or %GST_URI_NO_PORT if it doesn't exist.
2174  * If @uri is %NULL then returns %GST_URI_NO_PORT.
2175  *
2176  * Returns: The port number from the #GstUri object or %GST_URI_NO_PORT.
2177  *
2178  * Since: 1.6
2179  */
2180 guint
2181 gst_uri_get_port (const GstUri * uri)
2182 {
2183   g_return_val_if_fail (uri == NULL || GST_IS_URI (uri), GST_URI_NO_PORT);
2184   return (uri ? uri->port : GST_URI_NO_PORT);
2185 }
2186
2187 /**
2188  * gst_uri_set_port:
2189  * @uri: (transfer none)(nullable): The #GstUri to modify.
2190  * @port: The new port number to set or %GST_URI_NO_PORT to unset.
2191  *
2192  * Set or unset the port number for the URI.
2193  *
2194  * Returns: %TRUE if the port number was set/unset successfully.
2195  *
2196  * Since: 1.6
2197  */
2198 gboolean
2199 gst_uri_set_port (GstUri * uri, guint port)
2200 {
2201   if (!uri)
2202     return port == GST_URI_NO_PORT;
2203   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2204
2205   uri->port = port;
2206
2207   return TRUE;
2208 }
2209
2210 /**
2211  * gst_uri_get_path:
2212  * @uri: The #GstUri to get the path from.
2213  *
2214  * Extract the path string from the URI object.
2215  *
2216  * Returns: (transfer full): The path from the URI. Once finished with the
2217  *                           string should be g_free()'d.
2218  *
2219  * Since: 1.6
2220  */
2221 gchar *
2222 gst_uri_get_path (const GstUri * uri)
2223 {
2224   GList *path_segment;
2225   const gchar *sep = "";
2226   GString *ret;
2227
2228   if (!uri)
2229     return NULL;
2230   g_return_val_if_fail (GST_IS_URI (uri), NULL);
2231   if (!uri->path)
2232     return NULL;
2233
2234   ret = g_string_new (NULL);
2235
2236   for (path_segment = uri->path; path_segment;
2237       path_segment = path_segment->next) {
2238     g_string_append (ret, sep);
2239     if (path_segment->data) {
2240       g_string_append (ret, path_segment->data);
2241     }
2242     sep = "/";
2243   }
2244
2245   return g_string_free (ret, FALSE);
2246 }
2247
2248 /**
2249  * gst_uri_set_path:
2250  * @uri: (transfer none)(nullable): The #GstUri to modify.
2251  * @path: The new path to set with path segments separated by '/', or use %NULL
2252  *        to unset the path.
2253  *
2254  * Sets or unsets the path in the URI.
2255  *
2256  * Returns: %TRUE if the path was set successfully.
2257  *
2258  * Since: 1.6
2259  */
2260 gboolean
2261 gst_uri_set_path (GstUri * uri, const gchar * path)
2262 {
2263   if (!uri)
2264     return path == NULL;
2265   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2266
2267   g_list_free_full (uri->path, g_free);
2268   uri->path = _gst_uri_string_to_list (path, "/", FALSE, FALSE);
2269
2270   return TRUE;
2271 }
2272
2273 /**
2274  * gst_uri_get_path_string:
2275  * @uri: The #GstUri to get the path from.
2276  *
2277  * Extract the path string from the URI object as a percent encoded URI path.
2278  *
2279  * Returns: (transfer full): The path from the URI. Once finished with the
2280  *                           string should be g_free()'d.
2281  *
2282  * Since: 1.6
2283  */
2284 gchar *
2285 gst_uri_get_path_string (const GstUri * uri)
2286 {
2287   GList *path_segment;
2288   const gchar *sep = "";
2289   GString *ret;
2290   gchar *escaped;
2291
2292   if (!uri)
2293     return NULL;
2294   g_return_val_if_fail (GST_IS_URI (uri), NULL);
2295   if (!uri->path)
2296     return NULL;
2297
2298   ret = g_string_new (NULL);
2299
2300   for (path_segment = uri->path; path_segment;
2301       path_segment = path_segment->next) {
2302     g_string_append (ret, sep);
2303     if (path_segment->data) {
2304       escaped = _gst_uri_escape_path_segment (path_segment->data);
2305       g_string_append (ret, escaped);
2306       g_free (escaped);
2307     }
2308     sep = "/";
2309   }
2310
2311   return g_string_free (ret, FALSE);
2312 }
2313
2314 /**
2315  * gst_uri_set_path_string:
2316  * @uri: (transfer none)(nullable): The #GstUri to modify.
2317  * @path: The new percent encoded path to set with path segments separated by
2318  * '/', or use %NULL to unset the path.
2319  *
2320  * Sets or unsets the path in the URI.
2321  *
2322  * Returns: %TRUE if the path was set successfully.
2323  *
2324  * Since: 1.6
2325  */
2326 gboolean
2327 gst_uri_set_path_string (GstUri * uri, const gchar * path)
2328 {
2329   if (!uri)
2330     return path == NULL;
2331   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2332
2333   g_list_free_full (uri->path, g_free);
2334   uri->path = _gst_uri_string_to_list (path, "/", FALSE, TRUE);
2335   return TRUE;
2336 }
2337
2338 /**
2339  * gst_uri_get_path_segments:
2340  * @uri: (nullable): The #GstUri to get the path from.
2341  *
2342  * Get a list of path segments from the URI.
2343  *
2344  * Returns: (transfer full)(element-type gchar*): A #GList of path segment
2345  *          strings or %NULL if no path segments are available. Free the list
2346  *          when no longer needed with g_list_free_full(list, g_free).
2347  *
2348  * Since: 1.6
2349  */
2350 GList *
2351 gst_uri_get_path_segments (const GstUri * uri)
2352 {
2353   GList *ret = NULL;
2354
2355   g_return_val_if_fail (uri == NULL || GST_IS_URI (uri), NULL);
2356
2357   if (uri) {
2358     ret = g_list_copy_deep (uri->path, (GCopyFunc) g_strdup, NULL);
2359   }
2360
2361   return ret;
2362 }
2363
2364 /**
2365  * gst_uri_set_path_segments:
2366  * @uri: (transfer none)(nullable): The #GstUri to modify.
2367  * @path_segments: (transfer full)(nullable)(element-type gchar*): The new
2368  *                 path list to set.
2369  *
2370  * Replace the path segments list in the URI.
2371  *
2372  * Returns: %TRUE if the path segments were set successfully.
2373  *
2374  * Since: 1.6
2375  */
2376 gboolean
2377 gst_uri_set_path_segments (GstUri * uri, GList * path_segments)
2378 {
2379   g_return_val_if_fail (uri == NULL || GST_IS_URI (uri), FALSE);
2380
2381   if (!uri) {
2382     if (path_segments)
2383       g_list_free_full (path_segments, g_free);
2384     return path_segments == NULL;
2385   }
2386
2387   g_return_val_if_fail (gst_uri_is_writable (uri), FALSE);
2388
2389   g_list_free_full (uri->path, g_free);
2390   uri->path = path_segments;
2391   return TRUE;
2392 }
2393
2394 /**
2395  * gst_uri_append_path:
2396  * @uri: (transfer none)(nullable): The #GstUri to modify.
2397  * @relative_path: Relative path to append to the end of the current path.
2398  *
2399  * Append a path onto the end of the path in the URI. The path is not
2400  * normalized, call #gst_uri_normalize() to normalize the path.
2401  *
2402  * Returns: %TRUE if the path was appended successfully.
2403  *
2404  * Since: 1.6
2405  */
2406 gboolean
2407 gst_uri_append_path (GstUri * uri, const gchar * relative_path)
2408 {
2409   GList *rel_path_list;
2410
2411   if (!uri)
2412     return relative_path == NULL;
2413   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2414   if (!relative_path)
2415     return TRUE;
2416
2417   if (uri->path) {
2418     GList *last_elem = g_list_last (uri->path);
2419     if (last_elem->data == NULL) {
2420       uri->path = g_list_delete_link (uri->path, last_elem);
2421     }
2422   }
2423   rel_path_list = _gst_uri_string_to_list (relative_path, "/", FALSE, FALSE);
2424   /* if path was absolute, make it relative by removing initial NULL element */
2425   if (rel_path_list && rel_path_list->data == NULL) {
2426     rel_path_list = g_list_delete_link (rel_path_list, rel_path_list);
2427   }
2428   uri->path = g_list_concat (uri->path, rel_path_list);
2429   return TRUE;
2430 }
2431
2432 /**
2433  * gst_uri_append_path_segment:
2434  * @uri: (transfer none)(nullable): The #GstUri to modify.
2435  * @path_segment: The path segment string to append to the URI path.
2436  *
2437  * Append a single path segment onto the end of the URI path.
2438  *
2439  * Returns: %TRUE if the path was appended successfully.
2440  *
2441  * Since: 1.6
2442  */
2443 gboolean
2444 gst_uri_append_path_segment (GstUri * uri, const gchar * path_segment)
2445 {
2446   if (!uri)
2447     return path_segment == NULL;
2448   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2449   if (!path_segment)
2450     return TRUE;
2451
2452   /* if base path ends in a directory (i.e. last element is NULL), remove it */
2453   if (uri->path && g_list_last (uri->path)->data == NULL) {
2454     uri->path = g_list_delete_link (uri->path, g_list_last (uri->path));
2455   }
2456   uri->path = g_list_append (uri->path, g_strdup (path_segment));
2457   return TRUE;
2458 }
2459
2460 /**
2461  * gst_uri_get_query_string:
2462  * @uri: (nullable): The #GstUri to get the query string from.
2463  *
2464  * Get a percent encoded URI query string from the @uri.
2465  *
2466  * Returns: (transfer full): A percent encoded query string. Use g_free() when
2467  *          no longer needed.
2468  *
2469  * Since: 1.6
2470  */
2471 gchar *
2472 gst_uri_get_query_string (const GstUri * uri)
2473 {
2474   GHashTableIter iter;
2475   gpointer key, value;
2476   const gchar *sep = "";
2477   gchar *escaped;
2478   GString *ret;
2479
2480   if (!uri)
2481     return NULL;
2482   g_return_val_if_fail (GST_IS_URI (uri), NULL);
2483   if (!uri->query)
2484     return NULL;
2485
2486   ret = g_string_new (NULL);
2487   g_hash_table_iter_init (&iter, uri->query);
2488   while (g_hash_table_iter_next (&iter, &key, &value)) {
2489     g_string_append (ret, sep);
2490     escaped = _gst_uri_escape_http_query_element (key);
2491     g_string_append (ret, escaped);
2492     g_free (escaped);
2493     if (value) {
2494       escaped = _gst_uri_escape_http_query_element (value);
2495       g_string_append_printf (ret, "=%s", escaped);
2496       g_free (escaped);
2497     }
2498     sep = "&";
2499   }
2500
2501   return g_string_free (ret, FALSE);
2502 }
2503
2504 /**
2505  * gst_uri_set_query_string:
2506  * @uri: (transfer none)(nullable): The #GstUri to modify.
2507  * @query: The new percent encoded query string to use to populate the query
2508  *        table, or use %NULL to unset the query table.
2509  *
2510  * Sets or unsets the query table in the URI.
2511  *
2512  * Returns: %TRUE if the query table was set successfully.
2513  *
2514  * Since: 1.6
2515  */
2516 gboolean
2517 gst_uri_set_query_string (GstUri * uri, const gchar * query)
2518 {
2519   if (!uri)
2520     return query == NULL;
2521
2522   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2523
2524   if (uri->query)
2525     g_hash_table_unref (uri->query);
2526   uri->query = _gst_uri_string_to_table (query, "&", "=", TRUE, TRUE);
2527
2528   return TRUE;
2529 }
2530
2531 /**
2532  * gst_uri_get_query_table:
2533  * @uri: (nullable): The #GstUri to get the query table from.
2534  *
2535  * Get the query table from the URI. Keys and values in the table are freed
2536  * with g_free when they are deleted. A value may be %NULL to indicate that
2537  * the key should appear in the query string in the URI, but does not have a
2538  * value. Free the returned #GHashTable with #g_hash_table_unref() when it is
2539  * no longer required. Modifying this hash table will modify the query in the
2540  * URI.
2541  *
2542  * Returns: (transfer full)(element-type gchar* gchar*): The query hash table
2543  *          from the URI.
2544  *
2545  * Since: 1.6
2546  */
2547 GHashTable *
2548 gst_uri_get_query_table (const GstUri * uri)
2549 {
2550   if (!uri)
2551     return NULL;
2552   g_return_val_if_fail (GST_IS_URI (uri), NULL);
2553   if (!uri->query)
2554     return NULL;
2555
2556   return g_hash_table_ref (uri->query);
2557 }
2558
2559 /**
2560  * gst_uri_set_query_table:
2561  * @uri: (transfer none)(nullable): The #GstUri to modify.
2562  * @query_table: (transfer none)(nullable)(element-type gchar* gchar*): The new
2563  *               query table to use.
2564  *
2565  * Set the query table to use in the URI. The old table is unreferenced and a
2566  * reference to the new one is used instead. A value if %NULL for @query_table
2567  * will remove the query string from the URI.
2568  *
2569  * Returns: %TRUE if the new table was sucessfully used for the query table.
2570  *
2571  * Since: 1.6
2572  */
2573 gboolean
2574 gst_uri_set_query_table (GstUri * uri, GHashTable * query_table)
2575 {
2576   GHashTable *old_table = NULL;
2577
2578   if (!uri)
2579     return query_table == NULL;
2580   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2581
2582   old_table = uri->query;
2583   if (query_table)
2584     uri->query = g_hash_table_ref (query_table);
2585   else
2586     uri->query = NULL;
2587   if (old_table)
2588     g_hash_table_unref (old_table);
2589
2590   return TRUE;
2591 }
2592
2593 /**
2594  * gst_uri_set_query_value:
2595  * @uri: (transfer none)(nullable): The #GstUri to modify.
2596  * @query_key: (transfer none): The key for the query entry.
2597  * @query_value: (transfer none)(nullable): The value for the key.
2598  *
2599  * This inserts or replaces a key in the query table. A @query_value of %NULL
2600  * indicates that the key has no associated value, but will still be present in
2601  * the query string.
2602  *
2603  * Returns: %TRUE if the query table was sucessfully updated.
2604  *
2605  * Since: 1.6
2606  */
2607 gboolean
2608 gst_uri_set_query_value (GstUri * uri, const gchar * query_key,
2609     const gchar * query_value)
2610 {
2611   if (!uri)
2612     return FALSE;
2613   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2614
2615   if (!uri->query) {
2616     uri->query = g_hash_table_new_full (g_str_hash, g_str_equal, g_free,
2617         g_free);
2618   }
2619   g_hash_table_insert (uri->query, g_strdup (query_key),
2620       g_strdup (query_value));
2621
2622   return TRUE;
2623 }
2624
2625 /**
2626  * gst_uri_remove_query_key:
2627  * @uri: (transfer none)(nullable): The #GstUri to modify.
2628  * @query_key: The key to remove.
2629  *
2630  * Remove an entry from the query table by key.
2631  *
2632  * Returns: %TRUE if the key existed in the table and was removed.
2633  *
2634  * Since: 1.6
2635  */
2636 gboolean
2637 gst_uri_remove_query_key (GstUri * uri, const gchar * query_key)
2638 {
2639   gboolean result;
2640
2641   if (!uri)
2642     return FALSE;
2643   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2644   if (!uri->query)
2645     return FALSE;
2646
2647   result = g_hash_table_remove (uri->query, query_key);
2648   /* if this was the last query entry, remove the query string completely */
2649   if (result && g_hash_table_size (uri->query) == 0) {
2650     g_hash_table_unref (uri->query);
2651     uri->query = NULL;
2652   }
2653   return result;
2654 }
2655
2656 /**
2657  * gst_uri_query_has_key:
2658  * @uri: (nullable): The #GstUri to examine.
2659  * @query_key: The key to lookup.
2660  *
2661  * Check if there is a query table entry for the @query_key key.
2662  *
2663  * Returns: %TRUE if @query_key exists in the URI query table.
2664  *
2665  * Since: 1.6
2666  */
2667 gboolean
2668 gst_uri_query_has_key (const GstUri * uri, const gchar * query_key)
2669 {
2670   if (!uri)
2671     return FALSE;
2672   g_return_val_if_fail (GST_IS_URI (uri), FALSE);
2673   if (!uri->query)
2674     return FALSE;
2675
2676   return g_hash_table_contains (uri->query, query_key);
2677 }
2678
2679 /**
2680  * gst_uri_get_query_value:
2681  * @uri: (nullable): The #GstUri to examine.
2682  * @query_key: The key to lookup.
2683  *
2684  * Get the value associated with the @query_key key. Will return %NULL if the
2685  * key has no value or if the key does not exist in the URI query table. Because
2686  * %NULL is returned for both missing keys and keys with no value, you should
2687  * use gst_uri_query_has_key() to determine if a key is present in the URI
2688  * query.
2689  *
2690  * Returns: The value for the given key, or %NULL if not found.
2691  *
2692  * Since: 1.6
2693  */
2694 const gchar *
2695 gst_uri_get_query_value (const GstUri * uri, const gchar * query_key)
2696 {
2697   if (!uri)
2698     return NULL;
2699   g_return_val_if_fail (GST_IS_URI (uri), NULL);
2700   if (!uri->query)
2701     return NULL;
2702
2703   return g_hash_table_lookup (uri->query, query_key);
2704 }
2705
2706 /**
2707  * gst_uri_get_query_keys:
2708  * @uri: (nullable): The #GstUri to examine.
2709  *
2710  * Get a list of the query keys from the URI.
2711  *
2712  * Returns: (transfer container)(element-type gchar*): A list of keys from
2713  *          the URI query. Free the list with g_list_free().
2714  *
2715  * Since: 1.6
2716  */
2717 GList *
2718 gst_uri_get_query_keys (const GstUri * uri)
2719 {
2720   if (!uri)
2721     return NULL;
2722   g_return_val_if_fail (GST_IS_URI (uri), NULL);
2723   if (!uri->query)
2724     return NULL;
2725
2726   return g_hash_table_get_keys (uri->query);
2727 }
2728
2729 /**
2730  * gst_uri_get_fragment:
2731  * @uri: (nullable): This #GstUri object.
2732  *
2733  * Get the fragment name from the URI or %NULL if it doesn't exist.
2734  * If @uri is %NULL then returns %NULL.
2735  *
2736  * Returns: The host name from the #GstUri object or %NULL.
2737  *
2738  * Since: 1.6
2739  */
2740 const gchar *
2741 gst_uri_get_fragment (const GstUri * uri)
2742 {
2743   g_return_val_if_fail (uri == NULL || GST_IS_URI (uri), NULL);
2744   return (uri ? uri->fragment : NULL);
2745 }
2746
2747 /**
2748  * gst_uri_set_fragment:
2749  * @uri: (transfer none)(nullable): The #GstUri to modify.
2750  * @fragment: (nullable): The fragment string to set.
2751  *
2752  * Sets the fragment string in the URI. Use a value of %NULL in @fragment to
2753  * unset the fragment string.
2754  *
2755  * Returns: %TRUE if the fragment was set/unset successfully.
2756  *
2757  * Since: 1.6
2758  */
2759 gboolean
2760 gst_uri_set_fragment (GstUri * uri, const gchar * fragment)
2761 {
2762   if (!uri)
2763     return fragment == NULL;
2764   g_return_val_if_fail (GST_IS_URI (uri) && gst_uri_is_writable (uri), FALSE);
2765
2766   g_free (uri->fragment);
2767   uri->fragment = g_strdup (fragment);
2768   return TRUE;
2769 }