]> git.meshlink.io Git - catta/blob - avahi-common/strlst.h
implement DBUS protocol
[catta] / avahi-common / strlst.h
1 #ifndef footxtlisthfoo
2 #define footxtlisthfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of avahi.
8  
9   avahi is free software; you can redistribute it and/or modify it
10   under the terms of the GNU Lesser General Public License as
11   published by the Free Software Foundation; either version 2.1 of the
12   License, or (at your option) any later version.
13  
14   avahi is distributed in the hope that it will be useful, but WITHOUT
15   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17   Public License for more details.
18  
19   You should have received a copy of the GNU Lesser General Public
20   License along with avahi; if not, write to the Free Software
21   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22   USA.
23 ***/
24
25 #include <glib.h>
26 #include <avahi-common/cdecl.h>
27
28 /** \file strlst.h Implementation of a data type to store lists of strings */
29
30 AVAHI_C_DECL_BEGIN
31
32 /** Linked list of strings that can contain any number of binary
33  * characters, including NUL bytes. An empty list is created by
34  * assigning a NULL to a pointer to AvahiStringList. The string list
35  * is stored in reverse order, so that appending to the string list is
36  * effectively a prepending to the linked list.  This object is used
37  * primarily for storing DNS TXT record data. */
38 typedef struct AvahiStringList {
39     struct AvahiStringList *next; /**< Pointe to the next linked list element */
40     guint size;  /**< Size of text[] */
41     guint8 text[1]; /**< Character data */
42 } AvahiStringList;
43
44 /** Create a new string list by taking a variable list of NUL
45  * terminated strings. The strings are copied using g_strdup(). The
46  * argument list must be terminated by a NULL pointer. */
47 AvahiStringList *avahi_string_list_new(const gchar *txt, ...);
48
49 /** Same as avahi_string_list_new() but pass a va_list structure */
50 AvahiStringList *avahi_string_list_new_va(va_list va);
51
52 /** Create a new string list from a string array. The strings are
53  * copied using g_strdup(). length should contain the length of the
54  * array, or -1 if the array is NULL terminated*/
55 AvahiStringList *avahi_string_list_new_from_array(const gchar **array, gint length);
56
57 /** Free a string list */
58 void avahi_string_list_free(AvahiStringList *l);
59
60 /** Append a NUL terminated string to the specified string list. The
61  * passed string is copied using g_strdup(). Returns the new list
62  * start. */
63 AvahiStringList *avahi_string_list_add(AvahiStringList *l, const gchar *text);
64
65 /** Append am arbitrary length byte string to the list. Returns the
66  * new list start. */
67 AvahiStringList *avahi_string_list_add_arbitrary(AvahiStringList *l, const guint8 *text, guint size);
68
69 /** Same as avahi_string_list_add(), but takes a variable number of
70  * NUL terminated strings. The argument list must be terminated by a
71  * NULL pointer. Returns the new list start. */
72 AvahiStringList *avahi_string_list_add_many(AvahiStringList *r, ...);
73
74 /** Same as avahi_string_list_add_many(), but use a va_list
75  * structure. Returns the new list start. */
76 AvahiStringList *avahi_string_list_add_many_va(AvahiStringList *r, va_list va);
77
78 /** Convert the string list object to a single character string,
79  * seperated by spaces and enclosed in "". g_free() the result! This
80  * function doesn't work well with string that contain NUL bytes. */
81 gchar* avahi_string_list_to_string(AvahiStringList *l);
82
83 /** Serialize the string list object in a way that is compatible with
84  * the storing of DNS TXT records. Strings longer than 255 bytes are truncated. */
85 guint avahi_string_list_serialize(AvahiStringList *l, gpointer data, guint size);
86
87 /** Inverse of avahi_string_list_serialize() */
88 AvahiStringList *avahi_string_list_parse(gconstpointer data, guint size);
89
90 /** Compare to string lists */
91 gboolean avahi_string_list_equal(const AvahiStringList *a, const AvahiStringList *b);
92
93 /** Copy a string list */
94 AvahiStringList *avahi_string_list_copy(const AvahiStringList *l);
95
96 AVAHI_C_DECL_END
97
98 #endif
99