Merge branch 'doc-types' into 'master'
[glib.git] / glib / gvarianttype.h
blob6bb5e07b5d9062bde1775a2b18285709501296fe
1 /*
2 * Copyright © 2007, 2008 Ryan Lortie
3 * Copyright © 2009, 2010 Codethink Limited
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.1 of the License, or (at your option) any later version.
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.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Ryan Lortie <desrt@desrt.ca>
21 #ifndef __G_VARIANT_TYPE_H__
22 #define __G_VARIANT_TYPE_H__
24 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
25 #error "Only <glib.h> can be included directly."
26 #endif
28 #include <glib/gtypes.h>
30 G_BEGIN_DECLS
32 /**
33 * GVariantType:
35 * A type in the GVariant type system.
37 * Two types may not be compared by value; use g_variant_type_equal() or
38 * g_variant_type_is_subtype_of(). May be copied using
39 * g_variant_type_copy() and freed using g_variant_type_free().
40 **/
41 typedef struct _GVariantType GVariantType;
43 /**
44 * G_VARIANT_TYPE_BOOLEAN:
46 * The type of a value that can be either %TRUE or %FALSE.
47 **/
48 #define G_VARIANT_TYPE_BOOLEAN ((const GVariantType *) "b")
50 /**
51 * G_VARIANT_TYPE_BYTE:
53 * The type of an integer value that can range from 0 to 255.
54 **/
55 #define G_VARIANT_TYPE_BYTE ((const GVariantType *) "y")
57 /**
58 * G_VARIANT_TYPE_INT16:
60 * The type of an integer value that can range from -32768 to 32767.
61 **/
62 #define G_VARIANT_TYPE_INT16 ((const GVariantType *) "n")
64 /**
65 * G_VARIANT_TYPE_UINT16:
67 * The type of an integer value that can range from 0 to 65535.
68 * There were about this many people living in Toronto in the 1870s.
69 **/
70 #define G_VARIANT_TYPE_UINT16 ((const GVariantType *) "q")
72 /**
73 * G_VARIANT_TYPE_INT32:
75 * The type of an integer value that can range from -2147483648 to
76 * 2147483647.
77 **/
78 #define G_VARIANT_TYPE_INT32 ((const GVariantType *) "i")
80 /**
81 * G_VARIANT_TYPE_UINT32:
83 * The type of an integer value that can range from 0 to 4294967295.
84 * That's one number for everyone who was around in the late 1970s.
85 **/
86 #define G_VARIANT_TYPE_UINT32 ((const GVariantType *) "u")
88 /**
89 * G_VARIANT_TYPE_INT64:
91 * The type of an integer value that can range from
92 * -9223372036854775808 to 9223372036854775807.
93 **/
94 #define G_VARIANT_TYPE_INT64 ((const GVariantType *) "x")
96 /**
97 * G_VARIANT_TYPE_UINT64:
99 * The type of an integer value that can range from 0
100 * to 18446744073709551615 (inclusive). That's a really big number,
101 * but a Rubik's cube can have a bit more than twice as many possible
102 * positions.
104 #define G_VARIANT_TYPE_UINT64 ((const GVariantType *) "t")
107 * G_VARIANT_TYPE_DOUBLE:
109 * The type of a double precision IEEE754 floating point number.
110 * These guys go up to about 1.80e308 (plus and minus) but miss out on
111 * some numbers in between. In any case, that's far greater than the
112 * estimated number of fundamental particles in the observable
113 * universe.
115 #define G_VARIANT_TYPE_DOUBLE ((const GVariantType *) "d")
118 * G_VARIANT_TYPE_STRING:
120 * The type of a string. "" is a string. %NULL is not a string.
122 #define G_VARIANT_TYPE_STRING ((const GVariantType *) "s")
125 * G_VARIANT_TYPE_OBJECT_PATH:
127 * The type of a D-Bus object reference. These are strings of a
128 * specific format used to identify objects at a given destination on
129 * the bus.
131 * If you are not interacting with D-Bus, then there is no reason to make
132 * use of this type. If you are, then the D-Bus specification contains a
133 * precise description of valid object paths.
135 #define G_VARIANT_TYPE_OBJECT_PATH ((const GVariantType *) "o")
138 * G_VARIANT_TYPE_SIGNATURE:
140 * The type of a D-Bus type signature. These are strings of a specific
141 * format used as type signatures for D-Bus methods and messages.
143 * If you are not interacting with D-Bus, then there is no reason to make
144 * use of this type. If you are, then the D-Bus specification contains a
145 * precise description of valid signature strings.
147 #define G_VARIANT_TYPE_SIGNATURE ((const GVariantType *) "g")
150 * G_VARIANT_TYPE_VARIANT:
152 * The type of a box that contains any other value (including another
153 * variant).
155 #define G_VARIANT_TYPE_VARIANT ((const GVariantType *) "v")
158 * G_VARIANT_TYPE_HANDLE:
160 * The type of a 32bit signed integer value, that by convention, is used
161 * as an index into an array of file descriptors that are sent alongside
162 * a D-Bus message.
164 * If you are not interacting with D-Bus, then there is no reason to make
165 * use of this type.
167 #define G_VARIANT_TYPE_HANDLE ((const GVariantType *) "h")
170 * G_VARIANT_TYPE_UNIT:
172 * The empty tuple type. Has only one instance. Known also as "triv"
173 * or "void".
175 #define G_VARIANT_TYPE_UNIT ((const GVariantType *) "()")
178 * G_VARIANT_TYPE_ANY:
180 * An indefinite type that is a supertype of every type (including
181 * itself).
183 #define G_VARIANT_TYPE_ANY ((const GVariantType *) "*")
186 * G_VARIANT_TYPE_BASIC:
188 * An indefinite type that is a supertype of every basic (ie:
189 * non-container) type.
191 #define G_VARIANT_TYPE_BASIC ((const GVariantType *) "?")
194 * G_VARIANT_TYPE_MAYBE:
196 * An indefinite type that is a supertype of every maybe type.
198 #define G_VARIANT_TYPE_MAYBE ((const GVariantType *) "m*")
201 * G_VARIANT_TYPE_ARRAY:
203 * An indefinite type that is a supertype of every array type.
205 #define G_VARIANT_TYPE_ARRAY ((const GVariantType *) "a*")
208 * G_VARIANT_TYPE_TUPLE:
210 * An indefinite type that is a supertype of every tuple type,
211 * regardless of the number of items in the tuple.
213 #define G_VARIANT_TYPE_TUPLE ((const GVariantType *) "r")
216 * G_VARIANT_TYPE_DICT_ENTRY:
218 * An indefinite type that is a supertype of every dictionary entry
219 * type.
221 #define G_VARIANT_TYPE_DICT_ENTRY ((const GVariantType *) "{?*}")
224 * G_VARIANT_TYPE_DICTIONARY:
226 * An indefinite type that is a supertype of every dictionary type --
227 * that is, any array type that has an element type equal to any
228 * dictionary entry type.
230 #define G_VARIANT_TYPE_DICTIONARY ((const GVariantType *) "a{?*}")
233 * G_VARIANT_TYPE_STRING_ARRAY:
235 * The type of an array of strings.
237 #define G_VARIANT_TYPE_STRING_ARRAY ((const GVariantType *) "as")
240 * G_VARIANT_TYPE_OBJECT_PATH_ARRAY:
242 * The type of an array of object paths.
244 #define G_VARIANT_TYPE_OBJECT_PATH_ARRAY ((const GVariantType *) "ao")
247 * G_VARIANT_TYPE_BYTESTRING:
249 * The type of an array of bytes. This type is commonly used to pass
250 * around strings that may not be valid utf8. In that case, the
251 * convention is that the nul terminator character should be included as
252 * the last character in the array.
254 #define G_VARIANT_TYPE_BYTESTRING ((const GVariantType *) "ay")
257 * G_VARIANT_TYPE_BYTESTRING_ARRAY:
259 * The type of an array of byte strings (an array of arrays of bytes).
261 #define G_VARIANT_TYPE_BYTESTRING_ARRAY ((const GVariantType *) "aay")
264 * G_VARIANT_TYPE_VARDICT:
266 * The type of a dictionary mapping strings to variants (the ubiquitous
267 * "a{sv}" type).
269 * Since: 2.30
271 #define G_VARIANT_TYPE_VARDICT ((const GVariantType *) "a{sv}")
275 * G_VARIANT_TYPE:
276 * @type_string: a well-formed #GVariantType type string
278 * Converts a string to a const #GVariantType. Depending on the
279 * current debugging level, this function may perform a runtime check
280 * to ensure that @string is a valid GVariant type string.
282 * It is always a programmer error to use this macro with an invalid
283 * type string. If in doubt, use g_variant_type_string_is_valid() to
284 * check if the string is valid.
286 * Since 2.24
288 #ifndef G_DISABLE_CHECKS
289 # define G_VARIANT_TYPE(type_string) (g_variant_type_checked_ ((type_string)))
290 #else
291 # define G_VARIANT_TYPE(type_string) ((const GVariantType *) (type_string))
292 #endif
294 /* type string checking */
295 GLIB_AVAILABLE_IN_ALL
296 gboolean g_variant_type_string_is_valid (const gchar *type_string);
297 GLIB_AVAILABLE_IN_ALL
298 gboolean g_variant_type_string_scan (const gchar *string,
299 const gchar *limit,
300 const gchar **endptr);
302 /* create/destroy */
303 GLIB_AVAILABLE_IN_ALL
304 void g_variant_type_free (GVariantType *type);
305 GLIB_AVAILABLE_IN_ALL
306 GVariantType * g_variant_type_copy (const GVariantType *type);
307 GLIB_AVAILABLE_IN_ALL
308 GVariantType * g_variant_type_new (const gchar *type_string);
310 /* getters */
311 GLIB_AVAILABLE_IN_ALL
312 gsize g_variant_type_get_string_length (const GVariantType *type);
313 GLIB_AVAILABLE_IN_ALL
314 const gchar * g_variant_type_peek_string (const GVariantType *type);
315 GLIB_AVAILABLE_IN_ALL
316 gchar * g_variant_type_dup_string (const GVariantType *type);
318 /* classification */
319 GLIB_AVAILABLE_IN_ALL
320 gboolean g_variant_type_is_definite (const GVariantType *type);
321 GLIB_AVAILABLE_IN_ALL
322 gboolean g_variant_type_is_container (const GVariantType *type);
323 GLIB_AVAILABLE_IN_ALL
324 gboolean g_variant_type_is_basic (const GVariantType *type);
325 GLIB_AVAILABLE_IN_ALL
326 gboolean g_variant_type_is_maybe (const GVariantType *type);
327 GLIB_AVAILABLE_IN_ALL
328 gboolean g_variant_type_is_array (const GVariantType *type);
329 GLIB_AVAILABLE_IN_ALL
330 gboolean g_variant_type_is_tuple (const GVariantType *type);
331 GLIB_AVAILABLE_IN_ALL
332 gboolean g_variant_type_is_dict_entry (const GVariantType *type);
333 GLIB_AVAILABLE_IN_ALL
334 gboolean g_variant_type_is_variant (const GVariantType *type);
336 /* for hash tables */
337 GLIB_AVAILABLE_IN_ALL
338 guint g_variant_type_hash (gconstpointer type);
339 GLIB_AVAILABLE_IN_ALL
340 gboolean g_variant_type_equal (gconstpointer type1,
341 gconstpointer type2);
343 /* subtypes */
344 GLIB_AVAILABLE_IN_ALL
345 gboolean g_variant_type_is_subtype_of (const GVariantType *type,
346 const GVariantType *supertype);
348 /* type iterator interface */
349 GLIB_AVAILABLE_IN_ALL
350 const GVariantType * g_variant_type_element (const GVariantType *type);
351 GLIB_AVAILABLE_IN_ALL
352 const GVariantType * g_variant_type_first (const GVariantType *type);
353 GLIB_AVAILABLE_IN_ALL
354 const GVariantType * g_variant_type_next (const GVariantType *type);
355 GLIB_AVAILABLE_IN_ALL
356 gsize g_variant_type_n_items (const GVariantType *type);
357 GLIB_AVAILABLE_IN_ALL
358 const GVariantType * g_variant_type_key (const GVariantType *type);
359 GLIB_AVAILABLE_IN_ALL
360 const GVariantType * g_variant_type_value (const GVariantType *type);
362 /* constructors */
363 GLIB_AVAILABLE_IN_ALL
364 GVariantType * g_variant_type_new_array (const GVariantType *element);
365 GLIB_AVAILABLE_IN_ALL
366 GVariantType * g_variant_type_new_maybe (const GVariantType *element);
367 GLIB_AVAILABLE_IN_ALL
368 GVariantType * g_variant_type_new_tuple (const GVariantType * const *items,
369 gint length);
370 GLIB_AVAILABLE_IN_ALL
371 GVariantType * g_variant_type_new_dict_entry (const GVariantType *key,
372 const GVariantType *value);
374 /*< private >*/
375 GLIB_AVAILABLE_IN_ALL
376 const GVariantType * g_variant_type_checked_ (const gchar *);
378 G_END_DECLS
380 #endif /* __G_VARIANT_TYPE_H__ */