strlst.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. #ifndef footxtlisthfoo
  2. #define footxtlisthfoo
  3. /***
  4. This file is part of avahi.
  5. avahi is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU Lesser General Public License as
  7. published by the Free Software Foundation; either version 2.1 of the
  8. License, or (at your option) any later version.
  9. avahi is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
  12. Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with avahi; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  16. USA.
  17. ***/
  18. /** \file strlst.h Implementation of a data type to store lists of strings */
  19. #include <sys/types.h>
  20. #include <inttypes.h>
  21. #include <stdarg.h>
  22. #include <avahi-common/cdecl.h>
  23. #include <avahi-common/gccmacro.h>
  24. AVAHI_C_DECL_BEGIN
  25. /** Linked list of strings that can contain any number of binary
  26. * characters, including NUL bytes. An empty list is created by
  27. * assigning a NULL to a pointer to AvahiStringList. The string list
  28. * is stored in reverse order, so that appending to the string list is
  29. * effectively a prepending to the linked list. This object is used
  30. * primarily for storing DNS TXT record data. */
  31. typedef struct AvahiStringList {
  32. struct AvahiStringList *next; /**< Pointer to the next linked list element */
  33. size_t size; /**< Size of text[] */
  34. uint8_t text[1]; /**< Character data */
  35. } AvahiStringList;
  36. /** @{ \name Construction and destruction */
  37. /** Create a new string list by taking a variable list of NUL
  38. * terminated strings. The strings are copied using g_strdup(). The
  39. * argument list must be terminated by a NULL pointer. */
  40. AvahiStringList *avahi_string_list_new(const char *txt, ...) AVAHI_GCC_SENTINEL;
  41. /** \cond fulldocs */
  42. /** Same as avahi_string_list_new() but pass a va_list structure */
  43. AvahiStringList *avahi_string_list_new_va(va_list va);
  44. /** \endcond */
  45. /** Create a new string list from a string array. The strings are
  46. * copied using g_strdup(). length should contain the length of the
  47. * array, or -1 if the array is NULL terminated*/
  48. AvahiStringList *avahi_string_list_new_from_array(const char **array, int length);
  49. /** Free a string list */
  50. void avahi_string_list_free(AvahiStringList *l);
  51. /** @} */
  52. /** @{ \name Adding strings */
  53. /** Append a NUL terminated string to the specified string list. The
  54. * passed string is copied using g_strdup(). Returns the new list
  55. * start. */
  56. AvahiStringList *avahi_string_list_add(AvahiStringList *l, const char *text);
  57. /** Append a new NUL terminated formatted string to the specified string list */
  58. AvahiStringList *avahi_string_list_add_printf(AvahiStringList *l, const char *format, ...) AVAHI_GCC_PRINTF_ATTR23;
  59. /** \cond fulldocs */
  60. /** Append a new NUL terminated formatted string to the specified string list */
  61. AvahiStringList *avahi_string_list_add_vprintf(AvahiStringList *l, const char *format, va_list va);
  62. /** \endcond */
  63. /** Append an arbitrary length byte string to the list. Returns the
  64. * new list start. */
  65. AvahiStringList *avahi_string_list_add_arbitrary(AvahiStringList *l, const uint8_t *text, size_t size);
  66. /** Append a new entry to the string list. The string is not filled
  67. with data. The caller should fill in string data afterwards by writing
  68. it to l->text, where l is the pointer returned by this function. This
  69. function exists solely to optimize a few operations where otherwise
  70. superfluous string copying would be necessary. */
  71. AvahiStringList*avahi_string_list_add_anonymous(AvahiStringList *l, size_t size);
  72. /** Same as avahi_string_list_add(), but takes a variable number of
  73. * NUL terminated strings. The argument list must be terminated by a
  74. * NULL pointer. Returns the new list start. */
  75. AvahiStringList *avahi_string_list_add_many(AvahiStringList *r, ...) AVAHI_GCC_SENTINEL;
  76. /** \cond fulldocs */
  77. /** Same as avahi_string_list_add_many(), but use a va_list
  78. * structure. Returns the new list start. */
  79. AvahiStringList *avahi_string_list_add_many_va(AvahiStringList *r, va_list va);
  80. /** \endcond */
  81. /** @} */
  82. /** @{ \name String list operations */
  83. /** Convert the string list object to a single character string,
  84. * seperated by spaces and enclosed in "". avahi_free() the result! This
  85. * function doesn't work well with strings that contain NUL bytes. */
  86. char* avahi_string_list_to_string(AvahiStringList *l);
  87. /** \cond fulldocs */
  88. /** Serialize the string list object in a way that is compatible with
  89. * the storing of DNS TXT records. Strings longer than 255 bytes are truncated. */
  90. size_t avahi_string_list_serialize(AvahiStringList *l, void * data, size_t size);
  91. /** Inverse of avahi_string_list_serialize() */
  92. int avahi_string_list_parse(const void *data, size_t size, AvahiStringList **ret);
  93. /** \endcond */
  94. /** Compare to string lists */
  95. int avahi_string_list_equal(const AvahiStringList *a, const AvahiStringList *b);
  96. /** Copy a string list */
  97. AvahiStringList *avahi_string_list_copy(const AvahiStringList *l);
  98. /** Reverse the string list. */
  99. AvahiStringList* avahi_string_list_reverse(AvahiStringList *l);
  100. /** Return the number of elements in the string list */
  101. unsigned avahi_string_list_length(const AvahiStringList *l);
  102. /** @} */
  103. /** @{ \name Accessing items */
  104. /** Returns the next item in the string list */
  105. AvahiStringList *avahi_string_list_get_next(AvahiStringList *l);
  106. /** Returns the text for the current item */
  107. uint8_t *avahi_string_list_get_text(AvahiStringList *l);
  108. /** Returns the size of the current text */
  109. size_t avahi_string_list_get_size(AvahiStringList *l);
  110. /** @} */
  111. /** @{ \name DNS-SD TXT pair handling */
  112. /** Find the string list entry for the given DNS-SD TXT key */
  113. AvahiStringList *avahi_string_list_find(AvahiStringList *l, const char *key);
  114. /** Return the DNS-SD TXT key and value for the specified string list
  115. * item. If size is not NULL it will be filled with the length of
  116. * value. (for strings containing NUL bytes). If the entry doesn't
  117. * contain a value *value will be set to NULL. You need to
  118. * avahi_free() the strings returned in *key and *value. */
  119. int avahi_string_list_get_pair(AvahiStringList *l, char **key, char **value, size_t *size);
  120. /** Add a new DNS-SD TXT key value pair to the string list. value may
  121. * be NULL in case you want to specify a key without a value */
  122. AvahiStringList *avahi_string_list_add_pair(AvahiStringList *l, const char *key, const char *value);
  123. /** Same as avahi_string_list_add_pair() but allow strings containing NUL bytes in *value. */
  124. AvahiStringList *avahi_string_list_add_pair_arbitrary(AvahiStringList *l, const char *key, const uint8_t *value, size_t size);
  125. /** @} */
  126. /** \cond fulldocs */
  127. /** Try to find a magic service cookie in the specified DNS-SD string
  128. * list. Or return AVAHI_SERVICE_COOKIE_INVALID if none is found. */
  129. uint32_t avahi_string_list_get_service_cookie(AvahiStringList *l);
  130. /** \endcond */
  131. AVAHI_C_DECL_END
  132. #endif