gurifuncs.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2006-2007 Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * Author: Alexander Larsson <alexl@redhat.com>
  19. */
  20. #ifndef __G_URI_FUNCS_H__
  21. #define __G_URI_FUNCS_H__
  22. #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
  23. #error "Only <glib.h> can be included directly."
  24. #endif
  25. #include <glib/gtypes.h>
  26. G_BEGIN_DECLS
  27. /**
  28. * G_URI_RESERVED_CHARS_GENERIC_DELIMITERS:
  29. *
  30. * Generic delimiters characters as defined in RFC 3986. Includes ":/?#[]@".
  31. **/
  32. #define G_URI_RESERVED_CHARS_GENERIC_DELIMITERS ":/?#[]@"
  33. /**
  34. * G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS:
  35. *
  36. * Subcomponent delimiter characters as defined in RFC 3986. Includes "!$&'()*+,;=".
  37. **/
  38. #define G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS "!$&'()*+,;="
  39. /**
  40. * G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT:
  41. *
  42. * Allowed characters in path elements. Includes "!$&'()*+,;=:@".
  43. **/
  44. #define G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS ":@"
  45. /**
  46. * G_URI_RESERVED_CHARS_ALLOWED_IN_PATH:
  47. *
  48. * Allowed characters in a path. Includes "!$&'()*+,;=:@/".
  49. **/
  50. #define G_URI_RESERVED_CHARS_ALLOWED_IN_PATH G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT "/"
  51. /**
  52. * G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO:
  53. *
  54. * Allowed characters in userinfo as defined in RFC 3986. Includes "!$&'()*+,;=:".
  55. **/
  56. #define G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS ":"
  57. GLIB_AVAILABLE_IN_ALL
  58. char * g_uri_unescape_string (const char *escaped_string,
  59. const char *illegal_characters);
  60. GLIB_AVAILABLE_IN_ALL
  61. char * g_uri_unescape_segment (const char *escaped_string,
  62. const char *escaped_string_end,
  63. const char *illegal_characters);
  64. GLIB_AVAILABLE_IN_ALL
  65. char * g_uri_parse_scheme (const char *uri);
  66. GLIB_AVAILABLE_IN_ALL
  67. char * g_uri_escape_string (const char *unescaped,
  68. const char *reserved_chars_allowed,
  69. gboolean allow_utf8);
  70. G_END_DECLS
  71. #endif /* __G_URI_FUNCS_H__ */