GVariant: add g_variant_default_value()
[platform/upstream/glib.git] / glib / gvariant.c
1 /*
2  * Copyright © 2007, 2008 Ryan Lortie
3  * Copyright © 2010 Codethink Limited
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 licence, 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 Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: Ryan Lortie <desrt@desrt.ca>
21  */
22
23 /* Prologue {{{1 */
24
25 #include "config.h"
26
27 #include <glib/gvariant-serialiser.h>
28 #include "gvariant-internal.h"
29 #include <glib/gvariant-core.h>
30 #include <glib/gtestutils.h>
31 #include <glib/gstrfuncs.h>
32 #include <glib/ghash.h>
33 #include <glib/gmem.h>
34
35 #include <string.h>
36
37 #include "galias.h"
38
39 /**
40  * SECTION: gvariant
41  * @title: GVariant
42  * @short_description: strongly typed value datatype
43  * @see_also: GVariantType
44  *
45  * #GVariant is a variant datatype; it stores a value along with
46  * information about the type of that value.  The range of possible
47  * values is determined by the type.  The type system used by #GVariant
48  * is #GVariantType.
49  *
50  * #GVariant instances always have a type and a value (which are given
51  * at construction time).  The type and value of a #GVariant instance
52  * can never change other than by the #GVariant itself being
53  * destroyed.  A #GVariant can not contain a pointer.
54  *
55  * #GVariant is reference counted using g_variant_ref() and
56  * g_variant_unref().  #GVariant also has floating reference counts --
57  * see g_variant_ref_sink().
58  *
59  * #GVariant is completely threadsafe.  A #GVariant instance can be
60  * concurrently accessed in any way from any number of threads without
61  * problems.
62  *
63  * #GVariant is heavily optimised for dealing with data in serialised
64  * form.  It works particularly well with data located in memory-mapped
65  * files.  It can perform nearly all deserialisation operations in a
66  * small constant time, usually touching only a single memory page.
67  * Serialised #GVariant data can also be sent over the network.
68  *
69  * #GVariant is largely compatible with DBus.  Almost all types of
70  * #GVariant instances can be sent over DBus.  See #GVariantType for
71  * exceptions.
72  *
73  * For convenience to C programmers, #GVariant features powerful
74  * varargs-based value construction and destruction.  This feature is
75  * designed to be embedded in other libraries.
76  *
77  * There is a Python-inspired text language for describing #GVariant
78  * values.  #GVariant includes a printer for this language and a parser
79  * with type inferencing.
80  *
81  * <refsect2>
82  *  <title>Memory Use</title>
83  *  <para>
84  *   #GVariant tries to be quite efficient with respect to memory use.
85  *   This section gives a rough idea of how much memory is used by the
86  *   current implementation.  The information here is subject to change
87  *   in the future.
88  *  </para>
89  *  <para>
90  *   The memory allocated by #GVariant can be grouped into 4 broad
91  *   purposes: memory for serialised data, memory for the type
92  *   information cache, buffer management memory and memory for the
93  *   #GVariant structure itself.
94  *  </para>
95  *  <refsect3>
96  *   <title>Serialised Data Memory</title>
97  *   <para>
98  *    This is the memory that is used for storing GVariant data in
99  *    serialised form.  This is what would be sent over the network or
100  *    what would end up on disk.
101  *   </para>
102  *   <para>
103  *    The amount of memory required to store a boolean is 1 byte.  16,
104  *    32 and 64 bit integers and double precision floating point numbers
105  *    use their "natural" size.  Strings (including object path and
106  *    signature strings) are stored with a nul terminator, and as such
107  *    use the length of the string plus 1 byte.
108  *   </para>
109  *   <para>
110  *    Maybe types use no space at all to represent the null value and
111  *    use the same amount of space (sometimes plus one byte) as the
112  *    equivalent non-maybe-typed value to represent the non-null case.
113  *   </para>
114  *   <para>
115  *    Arrays use the amount of space required to store each of their
116  *    members, concatenated.  Additionally, if the items stored in an
117  *    array are not of a fixed-size (ie: strings, other arrays, etc)
118  *    then an additional framing offset is stored for each item.  The
119  *    size of this offset is either 1, 2 or 4 bytes depending on the
120  *    overall size of the container.  Additionally, extra padding bytes
121  *    are added as required for alignment of child values.
122  *   </para>
123  *   <para>
124  *    Tuples (including dictionary entries) use the amount of space
125  *    required to store each of their members, concatenated, plus one
126  *    framing offset (as per arrays) for each non-fixed-sized item in
127  *    the tuple, except for the last one.  Additionally, extra padding
128  *    bytes are added as required for alignment of child values.
129  *   </para>
130  *   <para>
131  *    Variants use the same amount of space as the item inside of the
132  *    variant, plus 1 byte, plus the length of the type string for the
133  *    item inside the variant.
134  *   </para>
135  *   <para>
136  *    As an example, consider a dictionary mapping strings to variants.
137  *    In the case that the dictionary is empty, 0 bytes are required for
138  *    the serialisation.
139  *   </para>
140  *   <para>
141  *    If we add an item "width" that maps to the int32 value of 500 then
142  *    we will use 4 byte to store the int32 (so 6 for the variant
143  *    containing it) and 6 bytes for the string.  The variant must be
144  *    aligned to 8 after the 6 bytes of the string, so that's 2 extra
145  *    bytes.  6 (string) + 2 (padding) + 6 (variant) is 14 bytes used
146  *    for the dictionary entry.  An additional 1 byte is added to the
147  *    array as a framing offset making a total of 15 bytes.
148  *   </para>
149  *   <para>
150  *    If we add another entry, "title" that maps to a nullable string
151  *    that happens to have a value of null, then we use 0 bytes for the
152  *    null value (and 3 bytes for the variant to contain it along with
153  *    its type string) plus 6 bytes for the string.  Again, we need 2
154  *    padding bytes.  That makes a total of 6 + 2 + 3 = 11 bytes.
155  *   </para>
156  *   <para>
157  *    We now require extra padding between the two items in the array.
158  *    After the 14 bytes of the first item, that's 2 bytes required.  We
159  *    now require 2 framing offsets for an extra two bytes.  14 + 2 + 11
160  *    + 2 = 29 bytes to encode the entire two-item dictionary.
161  *   </para>
162  *  </refsect3>
163  *  <refsect3>
164  *   <title>Type Information Cache</title>
165  *   <para>
166  *    For each GVariant type that currently exists in the program a type
167  *    information structure is kept in the type information cache.  The
168  *    type information structure is required for rapid deserialisation.
169  *   </para>
170  *   <para>
171  *    Continuing with the above example, if a #GVariant exists with the
172  *    type "a{sv}" then a type information struct will exist for
173  *    "a{sv}", "{sv}", "s", and "v".  Multiple uses of the same type
174  *    will share the same type information.  Additionally, all
175  *    single-digit types are stored in read-only static memory and do
176  *    not contribute to the writable memory footprint of a program using
177  *    #GVariant.
178  *   </para>
179  *   <para>
180  *    Aside from the type information structures stored in read-only
181  *    memory, there are two forms of type information.  One is used for
182  *    container types where there is a single element type: arrays and
183  *    maybe types.  The other is used for container types where there
184  *    are multiple element types: tuples and dictionary entries.
185  *   </para>
186  *   <para>
187  *    Array type info structures are 6 * sizeof (void *), plus the
188  *    memory required to store the type string itself.  This means that
189  *    on 32bit systems, the cache entry for "a{sv}" would require 30
190  *    bytes of memory (plus malloc overhead).
191  *   </para>
192  *   <para>
193  *    Tuple type info structures are 6 * sizeof (void *), plus 4 *
194  *    sizeof (void *) for each item in the tuple, plus the memory
195  *    required to store the type string itself.  A 2-item tuple, for
196  *    example, would have a type information structure that consumed
197  *    writable memory in the size of 14 * sizeof (void *) (plus type
198  *    string)  This means that on 32bit systems, the cache entry for
199  *    "{sv}" would require 61 bytes of memory (plus malloc overhead).
200  *   </para>
201  *   <para>
202  *    This means that in total, for our "a{sv}" example, 91 bytes of
203  *    type information would be allocated.
204  *   </para>
205  *   <para>
206  *    The type information cache, additionally, uses a #GHashTable to
207  *    store and lookup the cached items and stores a pointer to this
208  *    hash table in static storage.  The hash table is freed when there
209  *    are zero items in the type cache.
210  *   </para>
211  *   <para>
212  *    Although these sizes may seem large it is important to remember
213  *    that a program will probably only have a very small number of
214  *    different types of values in it and that only one type information
215  *    structure is required for many different values of the same type.
216  *   </para>
217  *  </refsect3>
218  *  <refsect3>
219  *   <title>Buffer Management Memory</title>
220  *   <para>
221  *    #GVariant uses an internal buffer management structure to deal
222  *    with the various different possible sources of serialised data
223  *    that it uses.  The buffer is responsible for ensuring that the
224  *    correct call is made when the data is no longer in use by
225  *    #GVariant.  This may involve a g_free() or a g_slice_free() or
226  *    even g_mapped_file_unref().
227  *   </para>
228  *   <para>
229  *    One buffer management structure is used for each chunk of
230  *    serialised data.  The size of the buffer management structure is 4
231  *    * (void *).  On 32bit systems, that's 16 bytes.
232  *   </para>
233  *  </refsect3>
234  *  <refsect3>
235  *   <title>GVariant structure</title>
236  *   <para>
237  *    The size of a #GVariant structure is 6 * (void *).  On 32 bit
238  *    systems, that's 24 bytes.
239  *   </para>
240  *   <para>
241  *    #GVariant structures only exist if they are explicitly created
242  *    with API calls.  For example, if a #GVariant is constructed out of
243  *    serialised data for the example given above (with the dictionary)
244  *    then although there are 9 individual values that comprise the
245  *    entire dictionary (two keys, two values, two variants containing
246  *    the values, two dictionary entries, plus the dictionary itself),
247  *    only 1 #GVariant instance exists -- the one refering to the
248  *    dictionary.
249  *   </para>
250  *   <para>
251  *    If calls are made to start accessing the other values then
252  *    #GVariant instances will exist for those values only for as long
253  *    as they are in use (ie: until you call g_variant_unref()).  The
254  *    type information is shared.  The serialised data and the buffer
255  *    management structure for that serialised data is shared by the
256  *    child.
257  *   </para>
258  *  </refsect3>
259  *  <refsect3>
260  *   <title>Summary</title>
261  *   <para>
262  *    To put the entire example together, for our dictionary mapping
263  *    strings to variants (with two entries, as given above), we are
264  *    using 91 bytes of memory for type information, 29 byes of memory
265  *    for the serialised data, 16 bytes for buffer management and 24
266  *    bytes for the #GVariant instance, or a total of 160 bytes, plus
267  *    malloc overhead.  If we were to use g_variant_get_child_value() to
268  *    access the two dictionary entries, we would use an additional 48
269  *    bytes.  If we were to have other dictionaries of the same type, we
270  *    would use more memory for the serialised data and buffer
271  *    management for those dictionaries, but the type information would
272  *    be shared.
273  *   </para>
274  *  </refsect3>
275  * </refsect2>
276  */
277
278 /* definition of GVariant structure is in gvariant-core.c */
279
280 /* this is a g_return_val_if_fail() for making
281  * sure a (GVariant *) has the required type.
282  */
283 #define TYPE_CHECK(value, TYPE, val) \
284   if G_UNLIKELY (!g_variant_is_of_type (value, TYPE)) {           \
285     g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC,            \
286                               "g_variant_is_of_type (" #value     \
287                               ", " #TYPE ")");                    \
288     return val;                                                   \
289   }
290
291 /* Numeric Type Constructor/Getters {{{1 */
292 /* < private >
293  * g_variant_new_from_trusted:
294  * @type: the #GVariantType
295  * @data: the data to use
296  * @size: the size of @data
297  * @returns: a new floating #GVariant
298  *
299  * Constructs a new trusted #GVariant instance from the provided data.
300  * This is used to implement g_variant_new_* for all the basic types.
301  */
302 static GVariant *
303 g_variant_new_from_trusted (const GVariantType *type,
304                             gconstpointer       data,
305                             gsize               size)
306 {
307   GVariant *value;
308   GBuffer *buffer;
309
310   buffer = g_buffer_new_from_data (data, size);
311   value = g_variant_new_from_buffer (type, buffer, TRUE);
312   g_buffer_unref (buffer);
313
314   return value;
315 }
316
317 /**
318  * g_variant_new_boolean:
319  * @boolean: a #gboolean value
320  * @returns: a new boolean #GVariant instance
321  *
322  * Creates a new boolean #GVariant instance -- either %TRUE or %FALSE.
323  *
324  * Since: 2.24
325  **/
326 GVariant *
327 g_variant_new_boolean (gboolean value)
328 {
329   guchar v = value;
330
331   return g_variant_new_from_trusted (G_VARIANT_TYPE_BOOLEAN, &v, 1);
332 }
333
334 /**
335  * g_variant_get_boolean:
336  * @value: a boolean #GVariant instance
337  * @returns: %TRUE or %FALSE
338  *
339  * Returns the boolean value of @value.
340  *
341  * It is an error to call this function with a @value of any type
342  * other than %G_VARIANT_TYPE_BOOLEAN.
343  *
344  * Since: 2.24
345  **/
346 gboolean
347 g_variant_get_boolean (GVariant *value)
348 {
349   const guchar *data;
350
351   TYPE_CHECK (value, G_VARIANT_TYPE_BOOLEAN, FALSE);
352
353   data = g_variant_get_data (value);
354
355   return data != NULL ? *data != 0 : FALSE;
356 }
357
358 /* the constructors and accessors for byte, int{16,32,64}, handles and
359  * doubles all look pretty much exactly the same, so we reduce
360  * copy/pasting here.
361  */
362 #define NUMERIC_TYPE(TYPE, type, ctype) \
363   GVariant *g_variant_new_##type (ctype value) {                \
364     return g_variant_new_from_trusted (G_VARIANT_TYPE_##TYPE,   \
365                                        &value, sizeof value);   \
366   }                                                             \
367   ctype g_variant_get_##type (GVariant *value) {                \
368     const ctype *data;                                          \
369     TYPE_CHECK (value, G_VARIANT_TYPE_ ## TYPE, 0);             \
370     data = g_variant_get_data (value);                          \
371     return data != NULL ? *data : 0;                            \
372   }
373
374
375 /**
376  * g_variant_new_byte:
377  * @byte: a #guint8 value
378  * @returns: a new byte #GVariant instance
379  *
380  * Creates a new byte #GVariant instance.
381  *
382  * Since: 2.24
383  **/
384 /**
385  * g_variant_get_byte:
386  * @value: a byte #GVariant instance
387  * @returns: a #guchar
388  *
389  * Returns the byte value of @value.
390  *
391  * It is an error to call this function with a @value of any type
392  * other than %G_VARIANT_TYPE_BYTE.
393  *
394  * Since: 2.24
395  **/
396 NUMERIC_TYPE (BYTE, byte, guchar)
397
398 /**
399  * g_variant_new_int16:
400  * @int16: a #gint16 value
401  * @returns: a new int16 #GVariant instance
402  *
403  * Creates a new int16 #GVariant instance.
404  *
405  * Since: 2.24
406  **/
407 /**
408  * g_variant_get_int16:
409  * @value: a int16 #GVariant instance
410  * @returns: a #gint16
411  *
412  * Returns the 16-bit signed integer value of @value.
413  *
414  * It is an error to call this function with a @value of any type
415  * other than %G_VARIANT_TYPE_INT16.
416  *
417  * Since: 2.24
418  **/
419 NUMERIC_TYPE (INT16, int16, gint16)
420
421 /**
422  * g_variant_new_uint16:
423  * @uint16: a #guint16 value
424  * @returns: a new uint16 #GVariant instance
425  *
426  * Creates a new uint16 #GVariant instance.
427  *
428  * Since: 2.24
429  **/
430 /**
431  * g_variant_get_uint16:
432  * @value: a uint16 #GVariant instance
433  * @returns: a #guint16
434  *
435  * Returns the 16-bit unsigned integer value of @value.
436  *
437  * It is an error to call this function with a @value of any type
438  * other than %G_VARIANT_TYPE_UINT16.
439  *
440  * Since: 2.24
441  **/
442 NUMERIC_TYPE (UINT16, uint16, guint16)
443
444 /**
445  * g_variant_new_int32:
446  * @int32: a #gint32 value
447  * @returns: a new int32 #GVariant instance
448  *
449  * Creates a new int32 #GVariant instance.
450  *
451  * Since: 2.24
452  **/
453 /**
454  * g_variant_get_int32:
455  * @value: a int32 #GVariant instance
456  * @returns: a #gint32
457  *
458  * Returns the 32-bit signed integer value of @value.
459  *
460  * It is an error to call this function with a @value of any type
461  * other than %G_VARIANT_TYPE_INT32.
462  *
463  * Since: 2.24
464  **/
465 NUMERIC_TYPE (INT32, int32, gint32)
466
467 /**
468  * g_variant_new_uint32:
469  * @uint32: a #guint32 value
470  * @returns: a new uint32 #GVariant instance
471  *
472  * Creates a new uint32 #GVariant instance.
473  *
474  * Since: 2.24
475  **/
476 /**
477  * g_variant_get_uint32:
478  * @value: a uint32 #GVariant instance
479  * @returns: a #guint32
480  *
481  * Returns the 32-bit unsigned integer value of @value.
482  *
483  * It is an error to call this function with a @value of any type
484  * other than %G_VARIANT_TYPE_UINT32.
485  *
486  * Since: 2.24
487  **/
488 NUMERIC_TYPE (UINT32, uint32, guint32)
489
490 /**
491  * g_variant_new_int64:
492  * @int64: a #gint64 value
493  * @returns: a new int64 #GVariant instance
494  *
495  * Creates a new int64 #GVariant instance.
496  *
497  * Since: 2.24
498  **/
499 /**
500  * g_variant_get_int64:
501  * @value: a int64 #GVariant instance
502  * @returns: a #gint64
503  *
504  * Returns the 64-bit signed integer value of @value.
505  *
506  * It is an error to call this function with a @value of any type
507  * other than %G_VARIANT_TYPE_INT64.
508  *
509  * Since: 2.24
510  **/
511 NUMERIC_TYPE (INT64, int64, gint64)
512
513 /**
514  * g_variant_new_uint64:
515  * @uint64: a #guint64 value
516  * @returns: a new uint64 #GVariant instance
517  *
518  * Creates a new uint64 #GVariant instance.
519  *
520  * Since: 2.24
521  **/
522 /**
523  * g_variant_get_uint64:
524  * @value: a uint64 #GVariant instance
525  * @returns: a #guint64
526  *
527  * Returns the 64-bit unsigned integer value of @value.
528  *
529  * It is an error to call this function with a @value of any type
530  * other than %G_VARIANT_TYPE_UINT64.
531  *
532  * Since: 2.24
533  **/
534 NUMERIC_TYPE (UINT64, uint64, guint64)
535
536 /**
537  * g_variant_new_handle:
538  * @handle: a #gint32 value
539  * @returns: a new handle #GVariant instance
540  *
541  * Creates a new handle #GVariant instance.
542  *
543  * By convention, handles are indexes into an array of file descriptors
544  * that are sent alongside a DBus message.  If you're not interacting
545  * with DBus, you probably don't need them.
546  *
547  * Since: 2.24
548  **/
549 /**
550  * g_variant_get_handle:
551  * @value: a handle #GVariant instance
552  * @returns: a #gint32
553  *
554  * Returns the 32-bit signed integer value of @value.
555  *
556  * It is an error to call this function with a @value of any type other
557  * than %G_VARIANT_TYPE_HANDLE.
558  *
559  * By convention, handles are indexes into an array of file descriptors
560  * that are sent alongside a DBus message.  If you're not interacting
561  * with DBus, you probably don't need them.
562  *
563  * Since: 2.24
564  **/
565 NUMERIC_TYPE (HANDLE, handle, gint32)
566
567 /**
568  * g_variant_new_double:
569  * @floating: a #gdouble floating point value
570  * @returns: a new double #GVariant instance
571  *
572  * Creates a new double #GVariant instance.
573  *
574  * Since: 2.24
575  **/
576 /**
577  * g_variant_get_double:
578  * @value: a double #GVariant instance
579  * @returns: a #gdouble
580  *
581  * Returns the double precision floating point value of @value.
582  *
583  * It is an error to call this function with a @value of any type
584  * other than %G_VARIANT_TYPE_DOUBLE.
585  *
586  * Since: 2.24
587  **/
588 NUMERIC_TYPE (DOUBLE, double, gdouble)
589
590 /* Container type Constructor / Deconstructors {{{1 */
591 /**
592  * g_variant_new_maybe:
593  * @child_type: the #GVariantType of the child
594  * @child: the child value, or %NULL
595  * @returns: a new #GVariant maybe instance
596  *
597  * Depending on if @value is %NULL, either wraps @value inside of a
598  * maybe container or creates a Nothing instance for the given @type.
599  *
600  * At least one of @type and @value must be non-%NULL.  If @type is
601  * non-%NULL then it must be a definite type.  If they are both
602  * non-%NULL then @type must be the type of @value.
603  *
604  * Since: 2.24
605  **/
606 GVariant *
607 g_variant_new_maybe (const GVariantType *child_type,
608                      GVariant           *child)
609 {
610   GVariantType *maybe_type;
611   GVariant *value;
612
613   g_return_val_if_fail (child_type == NULL || g_variant_type_is_definite
614                         (child_type), 0);
615   g_return_val_if_fail (child_type != NULL || child != NULL, NULL);
616   g_return_val_if_fail (child_type == NULL || child == NULL ||
617                         g_variant_is_of_type (child, child_type),
618                         NULL);
619
620   if (child_type == NULL)
621     child_type = g_variant_get_type (child);
622
623   maybe_type = g_variant_type_new_maybe (child_type);
624
625   if (child != NULL)
626     {
627       GVariant **children;
628       gboolean trusted;
629
630       children = g_new (GVariant *, 1);
631       children[0] = g_variant_ref_sink (child);
632       trusted = g_variant_is_trusted (children[0]);
633
634       value = g_variant_new_from_children (maybe_type, children, 1, trusted);
635     }
636   else
637     value = g_variant_new_from_children (maybe_type, NULL, 0, TRUE);
638
639   g_variant_type_free (maybe_type);
640
641   return value;
642 }
643
644 /**
645  * g_variant_get_maybe:
646  * @value: a maybe-typed value
647  * @returns: the contents of @value, or %NULL
648  *
649  * Given a maybe-typed #GVariant instance, extract its value.  If the
650  * value is Nothing, then this function returns %NULL.
651  *
652  * Since: 2.24
653  **/
654 GVariant *
655 g_variant_get_maybe (GVariant *value)
656 {
657   TYPE_CHECK (value, G_VARIANT_TYPE_MAYBE, NULL);
658
659   if (g_variant_n_children (value))
660     return g_variant_get_child_value (value, 0);
661
662   return NULL;
663 }
664
665 /**
666  * g_variant_new_variant:
667  * @value: a #GVariance instance
668  * @returns: a new variant #GVariant instance
669  *
670  * Boxes @value.  The result is a #GVariant instance representing a
671  * variant containing the original value.
672  *
673  * Since: 2.24
674  **/
675 GVariant *
676 g_variant_new_variant (GVariant *value)
677 {
678   g_return_val_if_fail (value != NULL, NULL);
679
680   g_variant_ref_sink (value);
681
682   return g_variant_new_from_children (G_VARIANT_TYPE_VARIANT,
683                                       g_memdup (&value, sizeof value),
684                                       1, g_variant_is_trusted (value));
685 }
686
687 /**
688  * g_variant_get_variant:
689  * @value: a variant #GVariance instance
690  * @returns: the item contained in the variant
691  *
692  * Unboxes @value.  The result is the #GVariant instance that was
693  * contained in @value.
694  *
695  * Since: 2.24
696  **/
697 GVariant *
698 g_variant_get_variant (GVariant *value)
699 {
700   TYPE_CHECK (value, G_VARIANT_TYPE_VARIANT, NULL);
701
702   return g_variant_get_child_value (value, 0);
703 }
704
705 /**
706  * g_variant_new_array:
707  * @child_type: the element type of the new array
708  * @children: an array of #GVariant pointers, the children
709  * @n_children: the length of @children
710  * @returns: a new #GVariant array
711  *
712  * Creates a new #GVariant array from @children.
713  *
714  * @child_type must be non-%NULL if @n_children is zero.  Otherwise, the
715  * child type is determined by inspecting the first element of the
716  * @children array.  If @child_type is non-%NULL then it must be a
717  * definite type.
718  *
719  * The items of the array are taken from the @children array.  No entry
720  * in the @children array may be %NULL.
721  *
722  * All items in the array must have the same type, which must be the
723  * same as @child_type, if given.
724  *
725  * Since: 2.24
726  **/
727 GVariant *
728 g_variant_new_array (const GVariantType *child_type,
729                      GVariant * const   *children,
730                      gsize               n_children)
731 {
732   GVariantType *array_type;
733   GVariant **my_children;
734   gboolean trusted;
735   GVariant *value;
736   gsize i;
737
738   g_return_val_if_fail (n_children > 0 || child_type != NULL, NULL);
739   g_return_val_if_fail (n_children == 0 || children != NULL, NULL);
740   g_return_val_if_fail (child_type == NULL ||
741                         g_variant_type_is_definite (child_type), NULL);
742
743   my_children = g_new (GVariant *, n_children);
744   trusted = TRUE;
745
746   if (child_type == NULL)
747     child_type = g_variant_get_type (children[0]);
748   array_type = g_variant_type_new_array (child_type);
749
750   for (i = 0; i < n_children; i++)
751     {
752       TYPE_CHECK (children[i], child_type, NULL);
753       my_children[i] = g_variant_ref_sink (children[i]);
754       trusted &= g_variant_is_trusted (children[i]);
755     }
756
757   value = g_variant_new_from_children (array_type, my_children,
758                                        n_children, trusted);
759   g_variant_type_free (array_type);
760
761   return value;
762 }
763
764 /*< private >
765  * g_variant_make_tuple_type:
766  * @children: an array of GVariant *
767  * @n_children: the length of @children
768  *
769  * Return the type of a tuple containing @children as its items.
770  **/
771 static GVariantType *
772 g_variant_make_tuple_type (GVariant * const *children,
773                            gsize             n_children)
774 {
775   const GVariantType **types;
776   GVariantType *type;
777   gsize i;
778
779   types = g_new (const GVariantType *, n_children);
780
781   for (i = 0; i < n_children; i++)
782     types[i] = g_variant_get_type (children[i]);
783
784   type = g_variant_type_new_tuple (types, n_children);
785   g_free (types);
786
787   return type;
788 }
789
790 /**
791  * g_variant_new_tuple:
792  * @children: the items to make the tuple out of
793  * @n_children: the length of @children
794  * @returns: a new #GVariant tuple
795  *
796  * Creates a new tuple #GVariant out of the items in @children.  The
797  * type is determined from the types of @children.  No entry in the
798  * @children array may be %NULL.
799  *
800  * If @n_children is 0 then the unit tuple is constructed.
801  *
802  * Since: 2.24
803  **/
804 GVariant *
805 g_variant_new_tuple (GVariant * const *children,
806                      gsize             n_children)
807 {
808   GVariantType *tuple_type;
809   GVariant **my_children;
810   gboolean trusted;
811   GVariant *value;
812   gsize i;
813
814   g_return_val_if_fail (n_children == 0 || children != NULL, NULL);
815
816   my_children = g_new (GVariant *, n_children);
817   trusted = TRUE;
818
819   for (i = 0; i < n_children; i++)
820     {
821       my_children[i] = g_variant_ref_sink (children[i]);
822       trusted &= g_variant_is_trusted (children[i]);
823     }
824
825   tuple_type = g_variant_make_tuple_type (children, n_children);
826   value = g_variant_new_from_children (tuple_type, my_children,
827                                        n_children, trusted);
828   g_variant_type_free (tuple_type);
829
830   return value;
831 }
832
833 /*< private >
834  * g_variant_make_dict_entry_type:
835  * @key: a #GVariant, the key
836  * @val: a #GVariant, the value
837  *
838  * Return the type of a dictionary entry containing @key and @val as its
839  * children.
840  **/
841 static GVariantType *
842 g_variant_make_dict_entry_type (GVariant *key,
843                                 GVariant *val)
844 {
845   return g_variant_type_new_dict_entry (g_variant_get_type (key),
846                                         g_variant_get_type (val));
847 }
848
849 /**
850  * g_variant_new_dict_entry:
851  * @key: a basic #GVariant, the key
852  * @value: a #GVariant, the value
853  * @returns: a new dictionary entry #GVariant
854  *
855  * Creates a new dictionary entry #GVariant.  @key and @value must be
856  * non-%NULL.
857  *
858  * @key must be a value of a basic type (ie: not a container).
859  *
860  * Since: 2.24
861  **/
862 GVariant *
863 g_variant_new_dict_entry (GVariant *key,
864                           GVariant *value)
865 {
866   GVariantType *dict_type;
867   GVariant **children;
868   gboolean trusted;
869
870   g_return_val_if_fail (key != NULL && value != NULL, NULL);
871   g_return_val_if_fail (!g_variant_is_container (key), NULL);
872
873   children = g_new (GVariant *, 2);
874   children[0] = g_variant_ref_sink (key);
875   children[1] = g_variant_ref_sink (value);
876   trusted = g_variant_is_trusted (key) && g_variant_is_trusted (value);
877
878   dict_type = g_variant_make_dict_entry_type (key, value);
879   value = g_variant_new_from_children (dict_type, children, 2, trusted);
880   g_variant_type_free (dict_type);
881
882   return value;
883 }
884
885 /**
886  * g_variant_get_fixed_array:
887  * @value: a #GVariant array with fixed-sized elements
888  * @n_elements: a pointer to the location to store the number of items
889  * @element_size: the size of each element
890  * @returns: a pointer to the fixed array
891  *
892  * Provides access to the serialised data for an array of fixed-sized
893  * items.
894  *
895  * @value must be an array with fixed-sized elements.  Numeric types are
896  * fixed-size as are tuples containing only other fixed-sized types.
897  *
898  * @element_size must be the size of a single element in the array.  For
899  * example, if calling this function for an array of 32 bit integers,
900  * you might say <code>sizeof (gint32)</code>.  This value isn't used
901  * except for the purpose of a double-check that the form of the
902  * seralised data matches the caller's expectation.
903  *
904  * @n_elements, which must be non-%NULL is set equal to the number of
905  * items in the array.
906  *
907  * Since: 2.24
908  **/
909 gconstpointer
910 g_variant_get_fixed_array (GVariant *value,
911                            gsize    *n_elements,
912                            gsize     element_size)
913 {
914   GVariantTypeInfo *array_info;
915   gsize array_element_size;
916   gconstpointer data;
917   gsize size;
918
919   TYPE_CHECK (value, G_VARIANT_TYPE_ARRAY, NULL);
920
921   g_return_val_if_fail (n_elements != NULL, NULL);
922   g_return_val_if_fail (element_size > 0, NULL);
923
924   array_info = g_variant_get_type_info (value);
925   g_variant_type_info_query_element (array_info, NULL, &array_element_size);
926
927   g_return_val_if_fail (array_element_size, NULL);
928
929   if G_UNLIKELY (array_element_size != element_size)
930     {
931       if (array_element_size)
932         g_critical ("g_variant_get_fixed_array: assertion "
933                     "`g_variant_array_has_fixed_size (value, element_size)' "
934                     "failed: array size %"G_GSIZE_FORMAT" does not match "
935                     "given element_size %"G_GSIZE_FORMAT".",
936                     array_element_size, element_size);
937       else
938         g_critical ("g_variant_get_fixed_array: assertion "
939                     "`g_variant_array_has_fixed_size (value, element_size)' "
940                     "failed: array does not have fixed size.");
941     }
942
943   data = g_variant_get_data (value);
944   size = g_variant_get_size (value);
945
946   if (size % element_size)
947     *n_elements = 0;
948   else
949     *n_elements = size / element_size;
950
951   if (*n_elements)
952     return data;
953
954   return NULL;
955 }
956
957 /* String type constructor/getters/validation {{{1 */
958 /**
959  * g_variant_new_string:
960  * @string: a normal utf8 nul-terminated string
961  * @returns: a new string #GVariant instance
962  *
963  * Creates a string #GVariant with the contents of @string.
964  *
965  * @string must be valid utf8.
966  *
967  * Since: 2.24
968  **/
969 GVariant *
970 g_variant_new_string (const gchar *string)
971 {
972   g_return_val_if_fail (string != NULL, NULL);
973
974   return g_variant_new_from_trusted (G_VARIANT_TYPE_STRING,
975                                      string, strlen (string) + 1);
976 }
977
978 /**
979  * g_variant_new_object_path:
980  * @object_path: a normal C nul-terminated string
981  * @returns: a new object path #GVariant instance
982  *
983  * Creates a DBus object path #GVariant with the contents of @string.
984  * @string must be a valid DBus object path.  Use
985  * g_variant_is_object_path() if you're not sure.
986  *
987  * Since: 2.24
988  **/
989 GVariant *
990 g_variant_new_object_path (const gchar *object_path)
991 {
992   g_return_val_if_fail (g_variant_is_object_path (object_path), NULL);
993
994   return g_variant_new_from_trusted (G_VARIANT_TYPE_OBJECT_PATH,
995                                      object_path, strlen (object_path) + 1);
996 }
997
998 /**
999  * g_variant_is_object_path:
1000  * @string: a normal C nul-terminated string
1001  * @returns: %TRUE if @string is a DBus object path
1002  *
1003  * Determines if a given string is a valid DBus object path.  You
1004  * should ensure that a string is a valid DBus object path before
1005  * passing it to g_variant_new_object_path().
1006  *
1007  * A valid object path starts with '/' followed by zero or more
1008  * sequences of characters separated by '/' characters.  Each sequence
1009  * must contain only the characters "[A-Z][a-z][0-9]_".  No sequence
1010  * (including the one following the final '/' character) may be empty.
1011  *
1012  * Since: 2.24
1013  **/
1014 gboolean
1015 g_variant_is_object_path (const gchar *string)
1016 {
1017   g_return_val_if_fail (string != NULL, FALSE);
1018
1019   return g_variant_serialiser_is_object_path (string, strlen (string) + 1);
1020 }
1021
1022 /**
1023  * g_variant_new_signature:
1024  * @signature: a normal C nul-terminated string
1025  * @returns: a new signature #GVariant instance
1026  *
1027  * Creates a DBus type signature #GVariant with the contents of
1028  * @string.  @string must be a valid DBus type signature.  Use
1029  * g_variant_is_signature() if you're not sure.
1030  *
1031  * Since: 2.24
1032  **/
1033 GVariant *
1034 g_variant_new_signature (const gchar *signature)
1035 {
1036   g_return_val_if_fail (g_variant_is_signature (signature), NULL);
1037
1038   return g_variant_new_from_trusted (G_VARIANT_TYPE_SIGNATURE,
1039                                      signature, strlen (signature) + 1);
1040 }
1041
1042 /**
1043  * g_variant_is_signature:
1044  * @string: a normal C nul-terminated string
1045  * @returns: %TRUE if @string is a DBus type signature
1046  *
1047  * Determines if a given string is a valid DBus type signature.  You
1048  * should ensure that a string is a valid DBus object path before
1049  * passing it to g_variant_new_signature().
1050  *
1051  * DBus type signatures consist of zero or more definite #GVariantType
1052  * strings in sequence.
1053  *
1054  * Since: 2.24
1055  **/
1056 gboolean
1057 g_variant_is_signature (const gchar *string)
1058 {
1059   g_return_val_if_fail (string != NULL, FALSE);
1060
1061   return g_variant_serialiser_is_signature (string, strlen (string) + 1);
1062 }
1063
1064 /**
1065  * g_variant_get_string:
1066  * @value: a string #GVariant instance
1067  * @length: a pointer to a #gsize, to store the length
1068  * @returns: the constant string, utf8 encoded
1069  *
1070  * Returns the string value of a #GVariant instance with a string
1071  * type.  This includes the types %G_VARIANT_TYPE_STRING,
1072  * %G_VARIANT_TYPE_OBJECT_PATH and %G_VARIANT_TYPE_SIGNATURE.
1073  *
1074  * The string will always be utf8 encoded.
1075  *
1076  * If @length is non-%NULL then the length of the string (in bytes) is
1077  * returned there.  For trusted values, this information is already
1078  * known.  For untrusted values, a strlen() will be performed.
1079  *
1080  * It is an error to call this function with a @value of any type
1081  * other than those three.
1082  *
1083  * The return value remains valid as long as @value exists.
1084  *
1085  * Since: 2.24
1086  **/
1087 const gchar *
1088 g_variant_get_string (GVariant *value,
1089                       gsize    *length)
1090 {
1091   gconstpointer data;
1092   gsize size;
1093
1094   g_return_val_if_fail (value != NULL, NULL);
1095   g_return_val_if_fail (
1096     g_variant_is_of_type (value, G_VARIANT_TYPE_STRING) ||
1097     g_variant_is_of_type (value, G_VARIANT_TYPE_OBJECT_PATH) ||
1098     g_variant_is_of_type (value, G_VARIANT_TYPE_SIGNATURE), NULL);
1099
1100   data = g_variant_get_data (value);
1101   size = g_variant_get_size (value);
1102
1103   if (!g_variant_is_trusted (value))
1104     {
1105       switch (g_variant_classify (value))
1106         {
1107         case G_VARIANT_CLASS_STRING:
1108           if (g_variant_serialiser_is_string (data, size))
1109             break;
1110
1111           data = "";
1112           size = 1;
1113           break;
1114
1115         case G_VARIANT_CLASS_OBJECT_PATH:
1116           if (g_variant_serialiser_is_object_path (data, size))
1117             break;
1118
1119           data = "/";
1120           size = 2;
1121           break;
1122
1123         case G_VARIANT_CLASS_SIGNATURE:
1124           if (g_variant_serialiser_is_signature (data, size))
1125             break;
1126
1127           data = "";
1128           size = 1;
1129           break;
1130
1131         default:
1132           g_assert_not_reached ();
1133         }
1134     }
1135
1136   if (length)
1137     *length = size - 1;
1138
1139   return data;
1140 }
1141
1142 /**
1143  * g_variant_dup_string:
1144  * @value: a string #GVariant instance
1145  * @length: a pointer to a #gsize, to store the length
1146  * @returns: a newly allocated string, utf8 encoded
1147  *
1148  * Similar to g_variant_get_string() except that instead of returning
1149  * a constant string, the string is duplicated.
1150  *
1151  * The string will always be utf8 encoded.
1152  *
1153  * The return value must be freed using g_free().
1154  *
1155  * Since: 2.24
1156  **/
1157 gchar *
1158 g_variant_dup_string (GVariant *value,
1159                       gsize    *length)
1160 {
1161   return g_strdup (g_variant_get_string (value, length));
1162 }
1163
1164 /**
1165  * g_variant_new_byte_array:
1166  * @array: a pointer to an array of bytes
1167  * @length: the length of @array, or -1
1168  * @returns: a new floating #GVariant instance
1169  *
1170  * Constructs an array of bytes #GVariant from the given array of bytes.
1171  *
1172  * If @length is -1 then @array is taken to be a normal C string (in the
1173  * sense that it is terminated by a nul character).  The nul character
1174  * is included in the array.  If length is not -1 then it gives the
1175  * length of @array which may then contain nul chracters with no special
1176  * meaning.
1177  *
1178  * Since: 2.26
1179  **/
1180 GVariant *
1181 g_variant_new_byte_array (gconstpointer array,
1182                           gssize        length)
1183 {
1184   if (length == -1)
1185     {
1186       const gchar *bytes = array;
1187
1188       length = 0;
1189       while (bytes[length++]);
1190     }
1191
1192   return g_variant_new_from_trusted (G_VARIANT_TYPE ("ay"),
1193                                      array, length);
1194 }
1195
1196 /**
1197  * g_variant_get_byte_array:
1198  * @value: an array of bytes #GVariant
1199  * @length: the length of the result, or %NULL
1200  * @returns: a pointer to the byte data, or %NULL
1201  *
1202  * Gets the contents of an array of bytes #GVariant.
1203  *
1204  * If @length is non-%NULL then it points to a location at which to
1205  * store the length of the array and nul bytes contained within the
1206  * array have no special meaning.
1207  *
1208  * If @length is %NULL then the caller has no way to determine what the
1209  * length of the returned data might be.  In this case, the function
1210  * ensures that the last byte of the array is a nul byte and, if it is
1211  * not, returns %NULL instead.  In this way, the caller is assured that
1212  * any non-%NULL pointer that is returned will be nul-terminated.
1213  *
1214  * The return value remains valid as long as @value exists.
1215  *
1216  * Since: 2.26
1217  **/
1218 gconstpointer
1219 g_variant_get_byte_array (GVariant *value,
1220                           gsize    *length)
1221 {
1222   gconstpointer data;
1223   gsize size;
1224
1225   TYPE_CHECK (value, G_VARIANT_TYPE ("ay"), NULL);
1226
1227   data = g_variant_get_data (value);
1228   size = g_variant_get_size (value);
1229
1230   if (length == NULL)
1231     {
1232       const gchar *bytes = data;
1233
1234       if (bytes[size - 1] != '\0')
1235         return NULL;
1236     }
1237   else
1238     *length = size;
1239
1240   return data;
1241 }
1242
1243 /**
1244  * g_variant_new_strv:
1245  * @strv: an array of strings
1246  * @length: the length of @strv, or -1
1247  * @returns: (array length=length): a new floating #GVariant instance
1248  *
1249  * Constructs an array of strings #GVariant from the given array of
1250  * strings.
1251  *
1252  * If @length is not -1 then it gives the maximum length of @strv.  In
1253  * any case, a %NULL pointer in @strv is taken as a terminator.
1254  *
1255  * Since: 2.24
1256  **/
1257 GVariant *
1258 g_variant_new_strv (const gchar * const *strv,
1259                     gssize               length)
1260 {
1261   GVariant **strings;
1262   gsize i;
1263
1264   g_return_val_if_fail (length == 0 || strv != NULL, NULL);
1265
1266   if (length < 0)
1267     length = g_strv_length ((gchar **) strv);
1268
1269   strings = g_new (GVariant *, length);
1270   for (i = 0; i < length; i++)
1271     strings[i] = g_variant_ref_sink (g_variant_new_string (strv[i]));
1272
1273   return g_variant_new_from_children (G_VARIANT_TYPE ("as"),
1274                                       strings, length, TRUE);
1275 }
1276
1277 /**
1278  * g_variant_get_strv:
1279  * @value: an array of strings #GVariant
1280  * @length: (allow-none): the length of the result, or %NULL
1281  * @returns: (array length=length): an array of constant strings
1282  *
1283  * Gets the contents of an array of strings #GVariant.  This call
1284  * makes a shallow copy; the return result should be released with
1285  * g_free(), but the individual strings must not be modified.
1286  *
1287  * If @length is non-%NULL then the number of elements in the result
1288  * is stored there.  In any case, the resulting array will be
1289  * %NULL-terminated.
1290  *
1291  * For an empty array, @length will be set to 0 and a pointer to a
1292  * %NULL pointer will be returned.
1293  *
1294  * Since: 2.24
1295  **/
1296 const gchar **
1297 g_variant_get_strv (GVariant *value,
1298                     gsize    *length)
1299 {
1300   const gchar **strv;
1301   gsize n;
1302   gsize i;
1303
1304   g_return_val_if_fail (g_variant_is_of_type (value, G_VARIANT_TYPE ("as")) ||
1305                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ao")) ||
1306                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ag")),
1307                         NULL);
1308
1309   g_variant_get_data (value);
1310   n = g_variant_n_children (value);
1311   strv = g_new (const gchar *, n + 1);
1312
1313   for (i = 0; i < n; i++)
1314     {
1315       GVariant *string;
1316
1317       string = g_variant_get_child_value (value, i);
1318       strv[i] = g_variant_get_string (string, NULL);
1319       g_variant_unref (string);
1320     }
1321   strv[i] = NULL;
1322
1323   if (length)
1324     *length = n;
1325
1326   return strv;
1327 }
1328
1329 /**
1330  * g_variant_dup_strv:
1331  * @value: an array of strings #GVariant
1332  * @length: (allow-none): the length of the result, or %NULL
1333  * @returns: (array length=length): an array of constant strings
1334  *
1335  * Gets the contents of an array of strings #GVariant.  This call
1336  * makes a deep copy; the return result should be released with
1337  * g_strfreev().
1338  *
1339  * If @length is non-%NULL then the number of elements in the result
1340  * is stored there.  In any case, the resulting array will be
1341  * %NULL-terminated.
1342  *
1343  * For an empty array, @length will be set to 0 and a pointer to a
1344  * %NULL pointer will be returned.
1345  *
1346  * Since: 2.24
1347  **/
1348 gchar **
1349 g_variant_dup_strv (GVariant *value,
1350                     gsize    *length)
1351 {
1352   gchar **strv;
1353   gsize n;
1354   gsize i;
1355
1356   g_return_val_if_fail (g_variant_is_of_type (value, G_VARIANT_TYPE ("as")) ||
1357                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ao")) ||
1358                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ag")),
1359                         NULL);
1360
1361   n = g_variant_n_children (value);
1362   strv = g_new (gchar *, n + 1);
1363
1364   for (i = 0; i < n; i++)
1365     {
1366       GVariant *string;
1367
1368       string = g_variant_get_child_value (value, i);
1369       strv[i] = g_variant_dup_string (string, NULL);
1370       g_variant_unref (string);
1371     }
1372   strv[i] = NULL;
1373
1374   if (length)
1375     *length = n;
1376
1377   return strv;
1378 }
1379
1380 /* Type checking, querying, default value {{{1 */
1381 /**
1382  * g_variant_get_type:
1383  * @value: a #GVariant
1384  * @returns: a #GVariantType
1385  *
1386  * Determines the type of @value.
1387  *
1388  * The return value is valid for the lifetime of @value and must not
1389  * be freed.
1390  *
1391  * Since: 2.24
1392  **/
1393 const GVariantType *
1394 g_variant_get_type (GVariant *value)
1395 {
1396   GVariantTypeInfo *type_info;
1397
1398   g_return_val_if_fail (value != NULL, NULL);
1399
1400   type_info = g_variant_get_type_info (value);
1401
1402   return (GVariantType *) g_variant_type_info_get_type_string (type_info);
1403 }
1404
1405 /**
1406  * g_variant_get_type_string:
1407  * @value: a #GVariant
1408  * @returns: the type string for the type of @value
1409  *
1410  * Returns the type string of @value.  Unlike the result of calling
1411  * g_variant_type_peek_string(), this string is nul-terminated.  This
1412  * string belongs to #GVariant and must not be freed.
1413  *
1414  * Since: 2.24
1415  **/
1416 const gchar *
1417 g_variant_get_type_string (GVariant *value)
1418 {
1419   GVariantTypeInfo *type_info;
1420
1421   g_return_val_if_fail (value != NULL, NULL);
1422
1423   type_info = g_variant_get_type_info (value);
1424
1425   return g_variant_type_info_get_type_string (type_info);
1426 }
1427
1428 /**
1429  * g_variant_is_of_type:
1430  * @value: a #GVariant instance
1431  * @type: a #GVariantType
1432  * @returns: %TRUE if the type of @value matches @type
1433  *
1434  * Checks if a value has a type matching the provided type.
1435  *
1436  * Since: 2.24
1437  **/
1438 gboolean
1439 g_variant_is_of_type (GVariant           *value,
1440                       const GVariantType *type)
1441 {
1442   return g_variant_type_is_subtype_of (g_variant_get_type (value), type);
1443 }
1444
1445 /**
1446  * g_variant_is_container:
1447  * @value: a #GVariant instance
1448  * @returns: %TRUE if @value is a container
1449  *
1450  * Checks if @value is a container.
1451  */
1452 gboolean
1453 g_variant_is_container (GVariant *value)
1454 {
1455   return g_variant_type_is_container (g_variant_get_type (value));
1456 }
1457
1458 /**
1459  * g_variant_classify:
1460  * @value: a #GVariant
1461  * @returns: the #GVariantClass of @value
1462  *
1463  * Classifies @value according to its top-level type.
1464  *
1465  * Since: 2.24
1466  **/
1467 /**
1468  * GVariantClass:
1469  * @G_VARIANT_CLASS_BOOLEAN: The #GVariant is a boolean.
1470  * @G_VARIANT_CLASS_BYTE: The #GVariant is a byte.
1471  * @G_VARIANT_CLASS_INT16: The #GVariant is a signed 16 bit integer.
1472  * @G_VARIANT_CLASS_UINT16: The #GVariant is an unsigned 16 bit integer.
1473  * @G_VARIANT_CLASS_INT32: The #GVariant is a signed 32 bit integer.
1474  * @G_VARIANT_CLASS_UINT32: The #GVariant is an unsigned 32 bit integer.
1475  * @G_VARIANT_CLASS_INT64: The #GVariant is a signed 64 bit integer.
1476  * @G_VARIANT_CLASS_UINT64: The #GVariant is an unsigned 64 bit integer.
1477  * @G_VARIANT_CLASS_HANDLE: The #GVariant is a file handle index.
1478  * @G_VARIANT_CLASS_DOUBLE: The #GVariant is a double precision floating 
1479  *                          point value.
1480  * @G_VARIANT_CLASS_STRING: The #GVariant is a normal string.
1481  * @G_VARIANT_CLASS_OBJECT_PATH: The #GVariant is a DBus object path 
1482  *                               string.
1483  * @G_VARIANT_CLASS_SIGNATURE: The #GVariant is a DBus signature string.
1484  * @G_VARIANT_CLASS_VARIANT: The #GVariant is a variant.
1485  * @G_VARIANT_CLASS_MAYBE: The #GVariant is a maybe-typed value.
1486  * @G_VARIANT_CLASS_ARRAY: The #GVariant is an array.
1487  * @G_VARIANT_CLASS_TUPLE: The #GVariant is a tuple.
1488  * @G_VARIANT_CLASS_DICT_ENTRY: The #GVariant is a dictionary entry.
1489  *
1490  * The range of possible top-level types of #GVariant instances.
1491  *
1492  * Since: 2.24
1493  **/
1494 GVariantClass
1495 g_variant_classify (GVariant *value)
1496 {
1497   g_return_val_if_fail (value != NULL, 0);
1498
1499   return *g_variant_get_type_string (value);
1500 }
1501
1502 /**
1503  * g_variant_default_value:
1504  * @type: a definite #GVariantType
1505  * @returns: a reference to a #GVariant of the requested type
1506  *
1507  * Returns the "default value" for @type.  The default boolean instance
1508  * is false, the default value for any numeric type is (positive) zero,
1509  * the default array is empty and the default maybe instance is Nothing.
1510  * The default value for a tuple type is the tuple containing the
1511  * default value for each child.  This is roughly equivalent to the
1512  * values produced by the serialiser when it detects invalid data.
1513  *
1514  * Since: 2.26
1515  **/
1516 GVariant *
1517 g_variant_default_value (const GVariantType *type)
1518 {
1519   GVariant *broken, *fixed;
1520
1521   g_return_val_if_fail (g_variant_type_is_definite (type), NULL);
1522
1523   /* let the serialiser figure it out */
1524   broken = g_variant_new_from_data (type, NULL, 0, FALSE, NULL, NULL);
1525   fixed = g_variant_get_normal_form (broken);
1526   g_variant_unref (broken);
1527
1528   return fixed;
1529 }
1530
1531 /* Pretty printer {{{1 */
1532 /**
1533  * g_variant_print_string:
1534  * @value: a #GVariant
1535  * @string: a #GString, or %NULL
1536  * @type_annotate: %TRUE if type information should be included in
1537  *                 the output
1538  * @returns: a #GString containing the string
1539  *
1540  * Behaves as g_variant_print(), but operates on a #GString.
1541  *
1542  * If @string is non-%NULL then it is appended to and returned.  Else,
1543  * a new empty #GString is allocated and it is returned.
1544  *
1545  * Since: 2.24
1546  **/
1547 GString *
1548 g_variant_print_string (GVariant *value,
1549                         GString  *string,
1550                         gboolean  type_annotate)
1551 {
1552   if G_UNLIKELY (string == NULL)
1553     string = g_string_new (NULL);
1554
1555   switch (g_variant_classify (value))
1556     {
1557     case G_VARIANT_CLASS_MAYBE:
1558       if (type_annotate)
1559         g_string_append_printf (string, "@%s ",
1560                                 g_variant_get_type_string (value));
1561
1562       if (g_variant_n_children (value))
1563         {
1564           gchar *printed_child;
1565           GVariant *element;
1566
1567           /* Nested maybes:
1568            *
1569            * Consider the case of the type "mmi".  In this case we could
1570            * write "just just 4", but "4" alone is totally unambiguous,
1571            * so we try to drop "just" where possible.
1572            *
1573            * We have to be careful not to always drop "just", though,
1574            * since "nothing" needs to be distinguishable from "just
1575            * nothing".  The case where we need to ensure we keep the
1576            * "just" is actually exactly the case where we have a nested
1577            * Nothing.
1578            *
1579            * Instead of searching for that nested Nothing, we just print
1580            * the contained value into a separate string and see if we
1581            * end up with "nothing" at the end of it.  If so, we need to
1582            * add "just" at our level.
1583            */
1584           element = g_variant_get_child_value (value, 0);
1585           printed_child = g_variant_print (element, FALSE);
1586           g_variant_unref (element);
1587
1588           if (g_str_has_suffix (printed_child, "nothing"))
1589             g_string_append (string, "just ");
1590           g_string_append (string, printed_child);
1591           g_free (printed_child);
1592         }
1593       else
1594         g_string_append (string, "nothing");
1595
1596       break;
1597
1598     case G_VARIANT_CLASS_ARRAY:
1599       /* it's an array so the first character of the type string is 'a'
1600        *
1601        * if the first two characters are 'a{' then it's an array of
1602        * dictionary entries (ie: a dictionary) so we print that
1603        * differently.
1604        */
1605       if (g_variant_get_type_string (value)[1] == '{')
1606         /* dictionary */
1607         {
1608           const gchar *comma = "";
1609           gsize n, i;
1610
1611           if ((n = g_variant_n_children (value)) == 0)
1612             {
1613               if (type_annotate)
1614                 g_string_append_printf (string, "@%s ",
1615                                         g_variant_get_type_string (value));
1616               g_string_append (string, "{}");
1617               break;
1618             }
1619
1620           g_string_append_c (string, '{');
1621           for (i = 0; i < n; i++)
1622             {
1623               GVariant *entry, *key, *val;
1624
1625               g_string_append (string, comma);
1626               comma = ", ";
1627
1628               entry = g_variant_get_child_value (value, i);
1629               key = g_variant_get_child_value (entry, 0);
1630               val = g_variant_get_child_value (entry, 1);
1631               g_variant_unref (entry);
1632
1633               g_variant_print_string (key, string, type_annotate);
1634               g_variant_unref (key);
1635               g_string_append (string, ": ");
1636               g_variant_print_string (val, string, type_annotate);
1637               g_variant_unref (val);
1638               type_annotate = FALSE;
1639             }
1640           g_string_append_c (string, '}');
1641         }
1642       else
1643         /* normal (non-dictionary) array */
1644         {
1645           const gchar *comma = "";
1646           gsize n, i;
1647
1648           if ((n = g_variant_n_children (value)) == 0)
1649             {
1650               if (type_annotate)
1651                 g_string_append_printf (string, "@%s ",
1652                                         g_variant_get_type_string (value));
1653               g_string_append (string, "[]");
1654               break;
1655             }
1656
1657           g_string_append_c (string, '[');
1658           for (i = 0; i < n; i++)
1659             {
1660               GVariant *element;
1661
1662               g_string_append (string, comma);
1663               comma = ", ";
1664
1665               element = g_variant_get_child_value (value, i);
1666
1667               g_variant_print_string (element, string, type_annotate);
1668               g_variant_unref (element);
1669               type_annotate = FALSE;
1670             }
1671           g_string_append_c (string, ']');
1672         }
1673
1674       break;
1675
1676     case G_VARIANT_CLASS_TUPLE:
1677       {
1678         gsize n, i;
1679
1680         n = g_variant_n_children (value);
1681
1682         g_string_append_c (string, '(');
1683         for (i = 0; i < n; i++)
1684           {
1685             GVariant *element;
1686
1687             element = g_variant_get_child_value (value, i);
1688             g_variant_print_string (element, string, type_annotate);
1689             g_string_append (string, ", ");
1690             g_variant_unref (element);
1691           }
1692
1693         /* for >1 item:  remove final ", "
1694          * for 1 item:   remove final " ", but leave the ","
1695          * for 0 items:  there is only "(", so remove nothing
1696          */
1697         g_string_truncate (string, string->len - (n > 0) - (n > 1));
1698         g_string_append_c (string, ')');
1699       }
1700       break;
1701
1702     case G_VARIANT_CLASS_DICT_ENTRY:
1703       {
1704         GVariant *element;
1705
1706         g_string_append_c (string, '{');
1707
1708         element = g_variant_get_child_value (value, 0);
1709         g_variant_print_string (element, string, type_annotate);
1710         g_variant_unref (element);
1711
1712         g_string_append (string, ", ");
1713
1714         element = g_variant_get_child_value (value, 1);
1715         g_variant_print_string (element, string, type_annotate);
1716         g_variant_unref (element);
1717
1718         g_string_append_c (string, '}');
1719       }
1720       break;
1721
1722     case G_VARIANT_CLASS_VARIANT:
1723       {
1724         GVariant *child = g_variant_get_variant (value);
1725
1726         /* Always annotate types in nested variants, because they are
1727          * (by nature) of variable type.
1728          */
1729         g_string_append_c (string, '<');
1730         g_variant_print_string (child, string, TRUE);
1731         g_string_append_c (string, '>');
1732
1733         g_variant_unref (child);
1734       }
1735       break;
1736
1737     case G_VARIANT_CLASS_BOOLEAN:
1738       if (g_variant_get_boolean (value))
1739         g_string_append (string, "true");
1740       else
1741         g_string_append (string, "false");
1742       break;
1743
1744     case G_VARIANT_CLASS_STRING:
1745       {
1746         const gchar *str = g_variant_get_string (value, NULL);
1747         gunichar quote = strchr (str, '\'') ? '"' : '\'';
1748
1749         g_string_append_c (string, quote);
1750
1751         while (*str)
1752           {
1753             gunichar c = g_utf8_get_char (str);
1754
1755             if (c == quote || c == '\\')
1756               g_string_append_c (string, '\\');
1757
1758             if (g_unichar_isprint (c))
1759               g_string_append_unichar (string, c);
1760
1761             else
1762               {
1763                 g_string_append_c (string, '\\');
1764                 if (c < 0x10000)
1765                   switch (c)
1766                     {
1767                     case '\a':
1768                       g_string_append_c (string, 'a');
1769                       break;
1770
1771                     case '\b':
1772                       g_string_append_c (string, 'b');
1773                       break;
1774
1775                     case '\f':
1776                       g_string_append_c (string, 'f');
1777                       break;
1778
1779                     case '\n':
1780                       g_string_append_c (string, 'n');
1781                       break;
1782
1783                     case '\r':
1784                       g_string_append_c (string, 'r');
1785                       break;
1786
1787                     case '\t':
1788                       g_string_append_c (string, 't');
1789                       break;
1790
1791                     case '\v':
1792                       g_string_append_c (string, 'v');
1793                       break;
1794
1795                     default:
1796                       g_string_append_printf (string, "u%04x", c);
1797                       break;
1798                     }
1799                  else
1800                    g_string_append_printf (string, "U%08x", c);
1801               }
1802
1803             str = g_utf8_next_char (str);
1804           }
1805
1806         g_string_append_c (string, quote);
1807       }
1808       break;
1809
1810     case G_VARIANT_CLASS_BYTE:
1811       if (type_annotate)
1812         g_string_append (string, "byte ");
1813       g_string_append_printf (string, "0x%02x",
1814                               g_variant_get_byte (value));
1815       break;
1816
1817     case G_VARIANT_CLASS_INT16:
1818       if (type_annotate)
1819         g_string_append (string, "int16 ");
1820       g_string_append_printf (string, "%"G_GINT16_FORMAT,
1821                               g_variant_get_int16 (value));
1822       break;
1823
1824     case G_VARIANT_CLASS_UINT16:
1825       if (type_annotate)
1826         g_string_append (string, "uint16 ");
1827       g_string_append_printf (string, "%"G_GUINT16_FORMAT,
1828                               g_variant_get_uint16 (value));
1829       break;
1830
1831     case G_VARIANT_CLASS_INT32:
1832       /* Never annotate this type because it is the default for numbers
1833        * (and this is a *pretty* printer)
1834        */
1835       g_string_append_printf (string, "%"G_GINT32_FORMAT,
1836                               g_variant_get_int32 (value));
1837       break;
1838
1839     case G_VARIANT_CLASS_HANDLE:
1840       if (type_annotate)
1841         g_string_append (string, "handle ");
1842       g_string_append_printf (string, "%"G_GINT32_FORMAT,
1843                               g_variant_get_handle (value));
1844       break;
1845
1846     case G_VARIANT_CLASS_UINT32:
1847       if (type_annotate)
1848         g_string_append (string, "uint32 ");
1849       g_string_append_printf (string, "%"G_GUINT32_FORMAT,
1850                               g_variant_get_uint32 (value));
1851       break;
1852
1853     case G_VARIANT_CLASS_INT64:
1854       if (type_annotate)
1855         g_string_append (string, "int64 ");
1856       g_string_append_printf (string, "%"G_GINT64_FORMAT,
1857                               g_variant_get_int64 (value));
1858       break;
1859
1860     case G_VARIANT_CLASS_UINT64:
1861       if (type_annotate)
1862         g_string_append (string, "uint64 ");
1863       g_string_append_printf (string, "%"G_GUINT64_FORMAT,
1864                               g_variant_get_uint64 (value));
1865       break;
1866
1867     case G_VARIANT_CLASS_DOUBLE:
1868       {
1869         gchar buffer[100];
1870         gint i;
1871
1872         g_ascii_dtostr (buffer, sizeof buffer, g_variant_get_double (value));
1873
1874         for (i = 0; buffer[i]; i++)
1875           if (buffer[i] == '.' || buffer[i] == 'e' ||
1876               buffer[i] == 'n' || buffer[i] == 'N')
1877             break;
1878
1879         /* if there is no '.' or 'e' in the float then add one */
1880         if (buffer[i] == '\0')
1881           {
1882             buffer[i++] = '.';
1883             buffer[i++] = '0';
1884             buffer[i++] = '\0';
1885           }
1886
1887         g_string_append (string, buffer);
1888       }
1889       break;
1890
1891     case G_VARIANT_CLASS_OBJECT_PATH:
1892       if (type_annotate)
1893         g_string_append (string, "objectpath ");
1894       g_string_append_printf (string, "\'%s\'",
1895                               g_variant_get_string (value, NULL));
1896       break;
1897
1898     case G_VARIANT_CLASS_SIGNATURE:
1899       if (type_annotate)
1900         g_string_append (string, "signature ");
1901       g_string_append_printf (string, "\'%s\'",
1902                               g_variant_get_string (value, NULL));
1903       break;
1904
1905     default:
1906       g_assert_not_reached ();
1907   }
1908
1909   return string;
1910 }
1911
1912 /**
1913  * g_variant_print:
1914  * @value: a #GVariant
1915  * @type_annotate: %TRUE if type information should be included in
1916  *                 the output
1917  * @returns: a newly-allocated string holding the result.
1918  *
1919  * Pretty-prints @value in the format understood by g_variant_parse().
1920  *
1921  * If @type_annotate is %TRUE, then type information is included in
1922  * the output.
1923  */
1924 gchar *
1925 g_variant_print (GVariant *value,
1926                  gboolean  type_annotate)
1927 {
1928   return g_string_free (g_variant_print_string (value, NULL, type_annotate),
1929                         FALSE);
1930 };
1931
1932 /* Hash, Equal, Compare {{{1 */
1933 /**
1934  * g_variant_hash:
1935  * @value: a basic #GVariant value as a #gconstpointer
1936  * @returns: a hash value corresponding to @value
1937  *
1938  * Generates a hash value for a #GVariant instance.
1939  *
1940  * The output of this function is guaranteed to be the same for a given
1941  * value only per-process.  It may change between different processor
1942  * architectures or even different versions of GLib.  Do not use this
1943  * function as a basis for building protocols or file formats.
1944  *
1945  * The type of @value is #gconstpointer only to allow use of this
1946  * function with #GHashTable.  @value must be a #GVariant.
1947  *
1948  * Since: 2.24
1949  **/
1950 guint
1951 g_variant_hash (gconstpointer value_)
1952 {
1953   GVariant *value = (GVariant *) value_;
1954
1955   switch (g_variant_classify (value))
1956     {
1957     case G_VARIANT_CLASS_STRING:
1958     case G_VARIANT_CLASS_OBJECT_PATH:
1959     case G_VARIANT_CLASS_SIGNATURE:
1960       return g_str_hash (g_variant_get_string (value, NULL));
1961
1962     case G_VARIANT_CLASS_BOOLEAN:
1963       /* this is a very odd thing to hash... */
1964       return g_variant_get_boolean (value);
1965
1966     case G_VARIANT_CLASS_BYTE:
1967       return g_variant_get_byte (value);
1968
1969     case G_VARIANT_CLASS_INT16:
1970     case G_VARIANT_CLASS_UINT16:
1971       {
1972         const guint16 *ptr;
1973
1974         ptr = g_variant_get_data (value);
1975
1976         if (ptr)
1977           return *ptr;
1978         else
1979           return 0;
1980       }
1981
1982     case G_VARIANT_CLASS_INT32:
1983     case G_VARIANT_CLASS_UINT32:
1984     case G_VARIANT_CLASS_HANDLE:
1985       {
1986         const guint *ptr;
1987
1988         ptr = g_variant_get_data (value);
1989
1990         if (ptr)
1991           return *ptr;
1992         else
1993           return 0;
1994       }
1995
1996     case G_VARIANT_CLASS_INT64:
1997     case G_VARIANT_CLASS_UINT64:
1998     case G_VARIANT_CLASS_DOUBLE:
1999       /* need a separate case for these guys because otherwise
2000        * performance could be quite bad on big endian systems
2001        */
2002       {
2003         const guint *ptr;
2004
2005         ptr = g_variant_get_data (value);
2006
2007         if (ptr)
2008           return ptr[0] + ptr[1];
2009         else
2010           return 0;
2011       }
2012
2013     default:
2014       g_return_val_if_fail (!g_variant_is_container (value), 0);
2015       g_assert_not_reached ();
2016     }
2017 }
2018
2019 /**
2020  * g_variant_equal:
2021  * @one: a #GVariant instance
2022  * @two: a #GVariant instance
2023  * @returns: %TRUE if @one and @two are equal
2024  *
2025  * Checks if @one and @two have the same type and value.
2026  *
2027  * The types of @one and @two are #gconstpointer only to allow use of
2028  * this function with #GHashTable.  They must each be a #GVariant.
2029  *
2030  * Since: 2.24
2031  **/
2032 gboolean
2033 g_variant_equal (gconstpointer one,
2034                  gconstpointer two)
2035 {
2036   gboolean equal;
2037
2038   g_return_val_if_fail (one != NULL && two != NULL, FALSE);
2039
2040   if (g_variant_get_type_info ((GVariant *) one) !=
2041       g_variant_get_type_info ((GVariant *) two))
2042     return FALSE;
2043
2044   /* if both values are trusted to be in their canonical serialised form
2045    * then a simple memcmp() of their serialised data will answer the
2046    * question.
2047    *
2048    * if not, then this might generate a false negative (since it is
2049    * possible for two different byte sequences to represent the same
2050    * value).  for now we solve this by pretty-printing both values and
2051    * comparing the result.
2052    */
2053   if (g_variant_is_trusted ((GVariant *) one) &&
2054       g_variant_is_trusted ((GVariant *) two))
2055     {
2056       gconstpointer data_one, data_two;
2057       gsize size_one, size_two;
2058
2059       size_one = g_variant_get_size ((GVariant *) one);
2060       size_two = g_variant_get_size ((GVariant *) two);
2061
2062       if (size_one != size_two)
2063         return FALSE;
2064
2065       data_one = g_variant_get_data ((GVariant *) one);
2066       data_two = g_variant_get_data ((GVariant *) two);
2067
2068       equal = memcmp (data_one, data_two, size_one) == 0;
2069     }
2070   else
2071     {
2072       gchar *strone, *strtwo;
2073
2074       strone = g_variant_print ((GVariant *) one, FALSE);
2075       strtwo = g_variant_print ((GVariant *) two, FALSE);
2076       equal = strcmp (strone, strtwo) == 0;
2077       g_free (strone);
2078       g_free (strtwo);
2079     }
2080
2081   return equal;
2082 }
2083
2084 /**
2085  * g_variant_compare:
2086  * @one: a basic-typed #GVariant instance
2087  * @two: a #GVariant instance of the same type
2088  * @returns: negative value if a &lt; b;
2089  *           zero if a = b;
2090  *           positive value if a &gt; b.
2091  *
2092  * Compares @one and @two.
2093  *
2094  * The types of @one and @two are #gconstpointer only to allow use of
2095  * this function with #GTree, #GPtrArray, etc.  They must each be a
2096  * #GVariant.
2097  *
2098  * Comparison is only defined for basic types (ie: booleans, numbers,
2099  * strings).  For booleans, %FALSE is less than %TRUE.  Numbers are
2100  * ordered in the usual way.  Strings are in ASCII lexographical order.
2101  *
2102  * It is a programmer error to attempt to compare container values or
2103  * two values that have types that are not exactly equal.  For example,
2104  * you can not compare a 32-bit signed integer with a 32-bit unsigned
2105  * integer.  Also note that this function is not particularly
2106  * well-behaved when it comes to comparison of doubles; in particular,
2107  * the handling of incomparable values (ie: NaN) is undefined.
2108  *
2109  * If you only require an equality comparison, g_variant_equal() is more
2110  * general.
2111  *
2112  * Since: 2.26
2113  **/
2114 gint
2115 g_variant_compare (gconstpointer one,
2116                    gconstpointer two)
2117 {
2118   GVariant *a = (GVariant *) one;
2119   GVariant *b = (GVariant *) two;
2120
2121   g_return_val_if_fail (g_variant_classify (a) == g_variant_classify (b), 0);
2122
2123   switch (g_variant_classify (a))
2124     {
2125     case G_VARIANT_CLASS_BYTE:
2126       return ((gint) g_variant_get_byte (a)) -
2127              ((gint) g_variant_get_byte (b));
2128
2129     case G_VARIANT_CLASS_INT16:
2130       return ((gint) g_variant_get_int16 (a)) -
2131              ((gint) g_variant_get_int16 (b));
2132
2133     case G_VARIANT_CLASS_UINT16:
2134       return ((gint) g_variant_get_uint16 (a)) -
2135              ((gint) g_variant_get_uint16 (b));
2136
2137     case G_VARIANT_CLASS_INT32:
2138       {
2139         gint32 a_val = g_variant_get_int32 (a);
2140         gint32 b_val = g_variant_get_int32 (b);
2141
2142         return (a_val == b_val) ? 0 : (a_val > b_val) ? 1 : -1;
2143       }
2144
2145     case G_VARIANT_CLASS_UINT32:
2146       {
2147         guint32 a_val = g_variant_get_uint32 (a);
2148         guint32 b_val = g_variant_get_uint32 (b);
2149
2150         return (a_val == b_val) ? 0 : (a_val > b_val) ? 1 : -1;
2151       }
2152
2153     case G_VARIANT_CLASS_INT64:
2154       {
2155         gint64 a_val = g_variant_get_int64 (a);
2156         gint64 b_val = g_variant_get_int64 (b);
2157
2158         return (a_val == b_val) ? 0 : (a_val > b_val) ? 1 : -1;
2159       }
2160
2161     case G_VARIANT_CLASS_UINT64:
2162       {
2163         guint64 a_val = g_variant_get_int32 (a);
2164         guint64 b_val = g_variant_get_int32 (b);
2165
2166         return (a_val == b_val) ? 0 : (a_val > b_val) ? 1 : -1;
2167       }
2168
2169     case G_VARIANT_CLASS_DOUBLE:
2170       {
2171         gdouble a_val = g_variant_get_double (a);
2172         gdouble b_val = g_variant_get_double (b);
2173
2174         return (a_val == b_val) ? 0 : (a_val > b_val) ? 1 : -1;
2175       }
2176
2177     case G_VARIANT_CLASS_STRING:
2178     case G_VARIANT_CLASS_OBJECT_PATH:
2179     case G_VARIANT_CLASS_SIGNATURE:
2180       return strcmp (g_variant_get_string (a, NULL),
2181                      g_variant_get_string (b, NULL));
2182
2183     default:
2184       g_return_val_if_fail (!g_variant_is_container (a), 0);
2185       g_assert_not_reached ();
2186     }
2187 }
2188
2189 /* GVariantIter {{{1 */
2190 /**
2191  * GVariantIter:
2192  *
2193  * #GVariantIter is an opaque data structure and can only be accessed
2194  * using the following functions.
2195  **/
2196 struct stack_iter
2197 {
2198   GVariant *value;
2199   gssize n, i;
2200
2201   const gchar *loop_format;
2202
2203   gsize padding[3];
2204   gsize magic;
2205 };
2206
2207 G_STATIC_ASSERT (sizeof (struct stack_iter) <= sizeof (GVariantIter));
2208
2209 struct heap_iter
2210 {
2211   struct stack_iter iter;
2212
2213   GVariant *value_ref;
2214   gsize magic;
2215 };
2216
2217 #define GVSI(i)                 ((struct stack_iter *) (i))
2218 #define GVHI(i)                 ((struct heap_iter *) (i))
2219 #define GVSI_MAGIC              ((gsize) 3579507750u)
2220 #define GVHI_MAGIC              ((gsize) 1450270775u)
2221 #define is_valid_iter(i)        (i != NULL && \
2222                                  GVSI(i)->magic == GVSI_MAGIC)
2223 #define is_valid_heap_iter(i)   (GVHI(i)->magic == GVHI_MAGIC && \
2224                                  is_valid_iter(i))
2225
2226 /**
2227  * g_variant_iter_new:
2228  * @value: a container #GVariant
2229  * @returns: a new heap-allocated #GVariantIter
2230  *
2231  * Creates a heap-allocated #GVariantIter for iterating over the items
2232  * in @value.
2233  *
2234  * Use g_variant_iter_free() to free the return value when you no longer
2235  * need it.
2236  *
2237  * A reference is taken to @value and will be released only when
2238  * g_variant_iter_free() is called.
2239  *
2240  * Since: 2.24
2241  **/
2242 GVariantIter *
2243 g_variant_iter_new (GVariant *value)
2244 {
2245   GVariantIter *iter;
2246
2247   iter = (GVariantIter *) g_slice_new (struct heap_iter);
2248   GVHI(iter)->value_ref = g_variant_ref (value);
2249   GVHI(iter)->magic = GVHI_MAGIC;
2250
2251   g_variant_iter_init (iter, value);
2252
2253   return iter;
2254 }
2255
2256 /**
2257  * g_variant_iter_init:
2258  * @iter: a pointer to a #GVariantIter
2259  * @value: a container #GVariant
2260  * @returns: the number of items in @value
2261  *
2262  * Initialises (without allocating) a #GVariantIter.  @iter may be
2263  * completely uninitialised prior to this call; its old value is
2264  * ignored.
2265  *
2266  * The iterator remains valid for as long as @value exists, and need not
2267  * be freed in any way.
2268  *
2269  * Since: 2.24
2270  **/
2271 gsize
2272 g_variant_iter_init (GVariantIter *iter,
2273                      GVariant     *value)
2274 {
2275   GVSI(iter)->magic = GVSI_MAGIC;
2276   GVSI(iter)->value = value;
2277   GVSI(iter)->n = g_variant_n_children (value);
2278   GVSI(iter)->i = -1;
2279   GVSI(iter)->loop_format = NULL;
2280
2281   return GVSI(iter)->n;
2282 }
2283
2284 /**
2285  * g_variant_iter_copy:
2286  * @iter: a #GVariantIter
2287  * @returns: a new heap-allocated #GVariantIter
2288  *
2289  * Creates a new heap-allocated #GVariantIter to iterate over the
2290  * container that was being iterated over by @iter.  Iteration begins on
2291  * the new iterator from the current position of the old iterator but
2292  * the two copies are independent past that point.
2293  *
2294  * Use g_variant_iter_free() to free the return value when you no longer
2295  * need it.
2296  *
2297  * A reference is taken to the container that @iter is iterating over
2298  * and will be releated only when g_variant_iter_free() is called.
2299  *
2300  * Since: 2.24
2301  **/
2302 GVariantIter *
2303 g_variant_iter_copy (GVariantIter *iter)
2304 {
2305   GVariantIter *copy;
2306
2307   g_return_val_if_fail (is_valid_iter (iter), 0);
2308
2309   copy = g_variant_iter_new (GVSI(iter)->value);
2310   GVSI(copy)->i = GVSI(iter)->i;
2311
2312   return copy;
2313 }
2314
2315 /**
2316  * g_variant_iter_n_children:
2317  * @iter: a #GVariantIter
2318  * @returns: the number of children in the container
2319  *
2320  * Queries the number of child items in the container that we are
2321  * iterating over.  This is the total number of items -- not the number
2322  * of items remaining.
2323  *
2324  * This function might be useful for preallocation of arrays.
2325  *
2326  * Since: 2.24
2327  **/
2328 gsize
2329 g_variant_iter_n_children (GVariantIter *iter)
2330 {
2331   g_return_val_if_fail (is_valid_iter (iter), 0);
2332
2333   return GVSI(iter)->n;
2334 }
2335
2336 /**
2337  * g_variant_iter_free:
2338  * @iter: a heap-allocated #GVariantIter
2339  *
2340  * Frees a heap-allocated #GVariantIter.  Only call this function on
2341  * iterators that were returned by g_variant_iter_new() or
2342  * g_variant_iter_copy().
2343  *
2344  * Since: 2.24
2345  **/
2346 void
2347 g_variant_iter_free (GVariantIter *iter)
2348 {
2349   g_return_if_fail (is_valid_heap_iter (iter));
2350
2351   g_variant_unref (GVHI(iter)->value_ref);
2352   GVHI(iter)->magic = 0;
2353
2354   g_slice_free (struct heap_iter, GVHI(iter));
2355 }
2356
2357 /**
2358  * g_variant_iter_next_value:
2359  * @iter: a #GVariantIter
2360  * @returns: a #GVariant, or %NULL
2361  *
2362  * Gets the next item in the container.  If no more items remain then
2363  * %NULL is returned.
2364  *
2365  * Use g_variant_unref() to drop your reference on the return value when
2366  * you no longer need it.
2367  *
2368  * <example>
2369  *  <title>Iterating with g_variant_iter_next_value()</title>
2370  *  <programlisting>
2371  *   /<!-- -->* recursively iterate a container *<!-- -->/
2372  *   void
2373  *   iterate_container_recursive (GVariant *container)
2374  *   {
2375  *     GVariantIter iter;
2376  *     GVariant *child;
2377  *
2378  *     g_variant_iter_init (&iter, dictionary);
2379  *     while ((child = g_variant_iter_next_value (&iter)))
2380  *       {
2381  *         g_print ("type '%s'\n", g_variant_get_type_string (child));
2382  *
2383  *         if (g_variant_is_container (child))
2384  *           iterate_container_recursive (child);
2385  *
2386  *         g_variant_unref (child);
2387  *       }
2388  *   }
2389  * </programlisting>
2390  * </example>
2391  *
2392  * Since: 2.24
2393  **/
2394 GVariant *
2395 g_variant_iter_next_value (GVariantIter *iter)
2396 {
2397   g_return_val_if_fail (is_valid_iter (iter), FALSE);
2398
2399   if G_UNLIKELY (GVSI(iter)->i >= GVSI(iter)->n)
2400     {
2401       g_critical ("g_variant_iter_next_value: must not be called again "
2402                   "after NULL has already been returned.");
2403       return NULL;
2404     }
2405
2406   GVSI(iter)->i++;
2407
2408   if (GVSI(iter)->i < GVSI(iter)->n)
2409     return g_variant_get_child_value (GVSI(iter)->value, GVSI(iter)->i);
2410
2411   return NULL;
2412 }
2413
2414 /* GVariantBuilder {{{1 */
2415 /**
2416  * GVariantBuilder:
2417  *
2418  * A utility type for constructing container-type #GVariant instances.
2419  *
2420  * This is an opaque structure and may only be accessed using the
2421  * following functions.
2422  *
2423  * #GVariantBuilder is not threadsafe in any way.  Do not attempt to
2424  * access it from more than one thread.
2425  **/
2426
2427 struct stack_builder
2428 {
2429   GVariantBuilder *parent;
2430   GVariantType *type;
2431
2432   /* type constraint explicitly specified by 'type'.
2433    * for tuple types, this moves along as we add more items.
2434    */
2435   const GVariantType *expected_type;
2436
2437   /* type constraint implied by previous array item.
2438    */
2439   const GVariantType *prev_item_type;
2440
2441   /* constraints on the number of children.  max = -1 for unlimited. */
2442   gsize min_items;
2443   gsize max_items;
2444
2445   /* dynamically-growing pointer array */
2446   GVariant **children;
2447   gsize allocated_children;
2448   gsize offset;
2449
2450   /* set to '1' if all items in the container will have the same type
2451    * (ie: maybe, array, variant) '0' if not (ie: tuple, dict entry)
2452    */
2453   guint uniform_item_types : 1;
2454
2455   /* set to '1' initially and changed to '0' if an untrusted value is
2456    * added
2457    */
2458   guint trusted : 1;
2459
2460   gsize magic;
2461 };
2462
2463 G_STATIC_ASSERT (sizeof (struct stack_builder) <= sizeof (GVariantBuilder));
2464
2465 struct heap_builder
2466 {
2467   GVariantBuilder builder;
2468   gsize magic;
2469
2470   gint ref_count;
2471 };
2472
2473 #define GVSB(b)                  ((struct stack_builder *) (b))
2474 #define GVHB(b)                  ((struct heap_builder *) (b))
2475 #define GVSB_MAGIC               ((gsize) 1033660112u)
2476 #define GVHB_MAGIC               ((gsize) 3087242682u)
2477 #define is_valid_builder(b)      (b != NULL && \
2478                                   GVSB(b)->magic == GVSB_MAGIC)
2479 #define is_valid_heap_builder(b) (GVHB(b)->magic == GVHB_MAGIC)
2480
2481 /**
2482  * g_variant_builder_new:
2483  * @type: a container type
2484  * @returns: a #GVariantBuilder
2485  *
2486  * Allocates and initialises a new #GVariantBuilder.
2487  *
2488  * You should call g_variant_builder_unref() on the return value when it
2489  * is no longer needed.  The memory will not be automatically freed by
2490  * any other call.
2491  *
2492  * In most cases it is easier to place a #GVariantBuilder directly on
2493  * the stack of the calling function and initialise it with
2494  * g_variant_builder_init().
2495  *
2496  * Since: 2.24
2497  **/
2498 GVariantBuilder *
2499 g_variant_builder_new (const GVariantType *type)
2500 {
2501   GVariantBuilder *builder;
2502
2503   builder = (GVariantBuilder *) g_slice_new (struct heap_builder);
2504   g_variant_builder_init (builder, type);
2505   GVHB(builder)->magic = GVHB_MAGIC;
2506   GVHB(builder)->ref_count = 1;
2507
2508   return builder;
2509 }
2510
2511 /**
2512  * g_variant_builder_unref:
2513  * @builder: a #GVariantBuilder allocated by g_variant_builder_new()
2514  *
2515  * Decreases the reference count on @builder.
2516  *
2517  * In the event that there are no more references, releases all memory
2518  * associated with the #GVariantBuilder.
2519  *
2520  * Don't call this on stack-allocated #GVariantBuilder instances or bad
2521  * things will happen.
2522  *
2523  * Since: 2.24
2524  **/
2525 void
2526 g_variant_builder_unref (GVariantBuilder *builder)
2527 {
2528   g_return_if_fail (is_valid_heap_builder (builder));
2529
2530   if (--GVHB(builder)->ref_count)
2531     return;
2532
2533   g_variant_builder_clear (builder);
2534   GVHB(builder)->magic = 0;
2535
2536   g_slice_free (struct heap_builder, GVHB(builder));
2537 }
2538
2539 /**
2540  * g_variant_builder_ref:
2541  * @builder: a #GVariantBuilder allocated by g_variant_builder_new()
2542  * @returns: a new reference to @builder
2543  *
2544  * Increases the reference count on @builder.
2545  *
2546  * Don't call this on stack-allocated #GVariantBuilder instances or bad
2547  * things will happen.
2548  *
2549  * Since: 2.24
2550  **/
2551 GVariantBuilder *
2552 g_variant_builder_ref (GVariantBuilder *builder)
2553 {
2554   g_return_val_if_fail (is_valid_heap_builder (builder), NULL);
2555
2556   GVHB(builder)->ref_count++;
2557
2558   return builder;
2559 }
2560
2561 /**
2562  * g_variant_builder_clear:
2563  * @builder: a #GVariantBuilder
2564  *
2565  * Releases all memory associated with a #GVariantBuilder without
2566  * freeing the #GVariantBuilder structure itself.
2567  *
2568  * It typically only makes sense to do this on a stack-allocated
2569  * #GVariantBuilder if you want to abort building the value part-way
2570  * through.  This function need not be called if you call
2571  * g_variant_builder_end() and it also doesn't need to be called on
2572  * builders allocated with g_variant_builder_new (see
2573  * g_variant_builder_free() for that).
2574  *
2575  * This function leaves the #GVariantBuilder structure set to all-zeros.
2576  * It is valid to call this function on either an initialised
2577  * #GVariantBuilder or one that is set to all-zeros but it is not valid
2578  * to call this function on uninitialised memory.
2579  *
2580  * Since: 2.24
2581  **/
2582 void
2583 g_variant_builder_clear (GVariantBuilder *builder)
2584 {
2585   gsize i;
2586
2587   if (GVSB(builder)->magic == 0)
2588     /* all-zeros case */
2589     return;
2590
2591   g_return_if_fail (is_valid_builder (builder));
2592
2593   g_variant_type_free (GVSB(builder)->type);
2594
2595   for (i = 0; i < GVSB(builder)->offset; i++)
2596     g_variant_unref (GVSB(builder)->children[i]);
2597
2598   g_free (GVSB(builder)->children);
2599
2600   if (GVSB(builder)->parent)
2601     {
2602       g_variant_builder_clear (GVSB(builder)->parent);
2603       g_slice_free (GVariantBuilder, GVSB(builder)->parent);
2604     }
2605
2606   memset (builder, 0, sizeof (GVariantBuilder));
2607 }
2608
2609 /**
2610  * g_variant_builder_init:
2611  * @builder: a #GVariantBuilder
2612  * @type: a container type
2613  *
2614  * Initialises a #GVariantBuilder structure.
2615  *
2616  * @type must be non-%NULL.  It specifies the type of container to
2617  * construct.  It can be an indefinite type such as
2618  * %G_VARIANT_TYPE_ARRAY or a definite type such as "as" or "(ii)".
2619  * Maybe, array, tuple, dictionary entry and variant-typed values may be
2620  * constructed.
2621  *
2622  * After the builder is initialised, values are added using
2623  * g_variant_builder_add_value() or g_variant_builder_add().
2624  *
2625  * After all the child values are added, g_variant_builder_end() frees
2626  * the memory associated with the builder and returns the #GVariant that
2627  * was created.
2628  *
2629  * This function completely ignores the previous contents of @builder.
2630  * On one hand this means that it is valid to pass in completely
2631  * uninitialised memory.  On the other hand, this means that if you are
2632  * initialising over top of an existing #GVariantBuilder you need to
2633  * first call g_variant_builder_clear() in order to avoid leaking
2634  * memory.
2635  *
2636  * You must not call g_variant_builder_ref() or
2637  * g_variant_builder_unref() on a #GVariantBuilder that was initialised
2638  * with this function.  If you ever pass a reference to a
2639  * #GVariantBuilder outside of the control of your own code then you
2640  * should assume that the person receiving that reference may try to use
2641  * reference counting; you should use g_variant_builder_new() instead of
2642  * this function.
2643  *
2644  * Since: 2.24
2645  **/
2646 void
2647 g_variant_builder_init (GVariantBuilder    *builder,
2648                         const GVariantType *type)
2649 {
2650   g_return_if_fail (type != NULL);
2651   g_return_if_fail (g_variant_type_is_container (type));
2652
2653   memset (builder, 0, sizeof (GVariantBuilder));
2654
2655   GVSB(builder)->type = g_variant_type_copy (type);
2656   GVSB(builder)->magic = GVSB_MAGIC;
2657   GVSB(builder)->trusted = TRUE;
2658
2659   switch (*(const gchar *) type)
2660     {
2661     case G_VARIANT_CLASS_VARIANT:
2662       GVSB(builder)->uniform_item_types = TRUE;
2663       GVSB(builder)->allocated_children = 1;
2664       GVSB(builder)->expected_type = NULL;
2665       GVSB(builder)->min_items = 1;
2666       GVSB(builder)->max_items = 1;
2667       break;
2668
2669     case G_VARIANT_CLASS_ARRAY:
2670       GVSB(builder)->uniform_item_types = TRUE;
2671       GVSB(builder)->allocated_children = 8;
2672       GVSB(builder)->expected_type =
2673         g_variant_type_element (GVSB(builder)->type);
2674       GVSB(builder)->min_items = 0;
2675       GVSB(builder)->max_items = -1;
2676       break;
2677
2678     case G_VARIANT_CLASS_MAYBE:
2679       GVSB(builder)->uniform_item_types = TRUE;
2680       GVSB(builder)->allocated_children = 1;
2681       GVSB(builder)->expected_type =
2682         g_variant_type_element (GVSB(builder)->type);
2683       GVSB(builder)->min_items = 0;
2684       GVSB(builder)->max_items = 1;
2685       break;
2686
2687     case G_VARIANT_CLASS_DICT_ENTRY:
2688       GVSB(builder)->uniform_item_types = FALSE;
2689       GVSB(builder)->allocated_children = 2;
2690       GVSB(builder)->expected_type =
2691         g_variant_type_key (GVSB(builder)->type);
2692       GVSB(builder)->min_items = 2;
2693       GVSB(builder)->max_items = 2;
2694       break;
2695
2696     case 'r': /* G_VARIANT_TYPE_TUPLE was given */
2697       GVSB(builder)->uniform_item_types = FALSE;
2698       GVSB(builder)->allocated_children = 8;
2699       GVSB(builder)->expected_type = NULL;
2700       GVSB(builder)->min_items = 0;
2701       GVSB(builder)->max_items = -1;
2702       break;
2703
2704     case G_VARIANT_CLASS_TUPLE: /* a definite tuple type was given */
2705       GVSB(builder)->allocated_children = g_variant_type_n_items (type);
2706       GVSB(builder)->expected_type =
2707         g_variant_type_first (GVSB(builder)->type);
2708       GVSB(builder)->min_items = GVSB(builder)->allocated_children;
2709       GVSB(builder)->max_items = GVSB(builder)->allocated_children;
2710       GVSB(builder)->uniform_item_types = FALSE;
2711       break;
2712
2713     default:
2714       g_assert_not_reached ();
2715    }
2716
2717   GVSB(builder)->children = g_new (GVariant *,
2718                                    GVSB(builder)->allocated_children);
2719 }
2720
2721 static void
2722 g_variant_builder_make_room (struct stack_builder *builder)
2723 {
2724   if (builder->offset == builder->allocated_children)
2725     {
2726       builder->allocated_children *= 2;
2727       builder->children = g_renew (GVariant *, builder->children,
2728                                    builder->allocated_children);
2729     }
2730 }
2731
2732 /**
2733  * g_variant_builder_add_value:
2734  * @builder: a #GVariantBuilder
2735  * @value: a #GVariant
2736  *
2737  * Adds @value to @builder.
2738  *
2739  * It is an error to call this function in any way that would create an
2740  * inconsistent value to be constructed.  Some examples of this are
2741  * putting different types of items into an array, putting the wrong
2742  * types or number of items in a tuple, putting more than one value into
2743  * a variant, etc.
2744  *
2745  * Since: 2.24
2746  **/
2747 void
2748 g_variant_builder_add_value (GVariantBuilder *builder,
2749                              GVariant        *value)
2750 {
2751   g_return_if_fail (is_valid_builder (builder));
2752   g_return_if_fail (GVSB(builder)->offset < GVSB(builder)->max_items);
2753   g_return_if_fail (!GVSB(builder)->expected_type ||
2754                     g_variant_is_of_type (value,
2755                                           GVSB(builder)->expected_type));
2756   g_return_if_fail (!GVSB(builder)->prev_item_type ||
2757                     g_variant_is_of_type (value,
2758                                           GVSB(builder)->prev_item_type));
2759
2760   GVSB(builder)->trusted &= g_variant_is_trusted (value);
2761
2762   if (!GVSB(builder)->uniform_item_types)
2763     {
2764       /* advance our expected type pointers */
2765       if (GVSB(builder)->expected_type)
2766         GVSB(builder)->expected_type =
2767           g_variant_type_next (GVSB(builder)->expected_type);
2768
2769       if (GVSB(builder)->prev_item_type)
2770         GVSB(builder)->prev_item_type =
2771           g_variant_type_next (GVSB(builder)->prev_item_type);
2772     }
2773   else
2774     GVSB(builder)->prev_item_type = g_variant_get_type (value);
2775
2776   g_variant_builder_make_room (GVSB(builder));
2777
2778   GVSB(builder)->children[GVSB(builder)->offset++] =
2779     g_variant_ref_sink (value);
2780 }
2781
2782 /**
2783  * g_variant_builder_open:
2784  * @builder: a #GVariantBuilder
2785  * @type: a #GVariantType
2786  *
2787  * Opens a subcontainer inside the given @builder.  When done adding
2788  * items to the subcontainer, g_variant_builder_close() must be called.
2789  *
2790  * It is an error to call this function in any way that would cause an
2791  * inconsistent value to be constructed (ie: adding too many values or
2792  * a value of an incorrect type).
2793  *
2794  * Since: 2.24
2795  **/
2796 void
2797 g_variant_builder_open (GVariantBuilder    *builder,
2798                         const GVariantType *type)
2799 {
2800   GVariantBuilder *parent;
2801
2802   g_return_if_fail (is_valid_builder (builder));
2803   g_return_if_fail (GVSB(builder)->offset < GVSB(builder)->max_items);
2804   g_return_if_fail (!GVSB(builder)->expected_type ||
2805                     g_variant_type_is_subtype_of (type,
2806                                                   GVSB(builder)->expected_type));
2807   g_return_if_fail (!GVSB(builder)->prev_item_type ||
2808                     g_variant_type_is_subtype_of (GVSB(builder)->prev_item_type,
2809                                                   type));
2810
2811   parent = g_slice_dup (GVariantBuilder, builder);
2812   g_variant_builder_init (builder, type);
2813   GVSB(builder)->parent = parent;
2814
2815   /* push the prev_item_type down into the subcontainer */
2816   if (GVSB(parent)->prev_item_type)
2817     {
2818       if (!GVSB(builder)->uniform_item_types)
2819         /* tuples and dict entries */
2820         GVSB(builder)->prev_item_type =
2821           g_variant_type_first (GVSB(parent)->prev_item_type);
2822
2823       else if (!g_variant_type_is_variant (GVSB(builder)->type))
2824         /* maybes and arrays */
2825         GVSB(builder)->prev_item_type =
2826           g_variant_type_element (GVSB(parent)->prev_item_type);
2827     }
2828 }
2829
2830 /**
2831  * g_variant_builder_close:
2832  * @builder: a #GVariantBuilder
2833  *
2834  * Closes the subcontainer inside the given @builder that was opened by
2835  * the most recent call to g_variant_builder_open().
2836  *
2837  * It is an error to call this function in any way that would create an
2838  * inconsistent value to be constructed (ie: too few values added to the
2839  * subcontainer).
2840  *
2841  * Since: 2.24
2842  **/
2843 void
2844 g_variant_builder_close (GVariantBuilder *builder)
2845 {
2846   GVariantBuilder *parent;
2847
2848   g_return_if_fail (is_valid_builder (builder));
2849   g_return_if_fail (GVSB(builder)->parent != NULL);
2850
2851   parent = GVSB(builder)->parent;
2852   GVSB(builder)->parent = NULL;
2853
2854   g_variant_builder_add_value (parent, g_variant_builder_end (builder));
2855   *builder = *parent;
2856
2857   g_slice_free (GVariantBuilder, parent);
2858 }
2859
2860 /*< private >
2861  * g_variant_make_maybe_type:
2862  * @element: a #GVariant
2863  *
2864  * Return the type of a maybe containing @element.
2865  */
2866 static GVariantType *
2867 g_variant_make_maybe_type (GVariant *element)
2868 {
2869   return g_variant_type_new_maybe (g_variant_get_type (element));
2870 }
2871
2872 /*< private >
2873  * g_variant_make_array_type:
2874  * @element: a #GVariant
2875  *
2876  * Return the type of an array containing @element.
2877  */
2878 static GVariantType *
2879 g_variant_make_array_type (GVariant *element)
2880 {
2881   return g_variant_type_new_array (g_variant_get_type (element));
2882 }
2883
2884 /**
2885  * g_variant_builder_end:
2886  * @builder: a #GVariantBuilder
2887  * @returns: a new, floating, #GVariant
2888  *
2889  * Ends the builder process and returns the constructed value.
2890  *
2891  * It is not permissible to use @builder in any way after this call
2892  * except for reference counting operations (in the case of a
2893  * heap-allocated #GVariantBuilder) or by reinitialising it with
2894  * g_variant_builder_init() (in the case of stack-allocated).
2895  *
2896  * It is an error to call this function in any way that would create an
2897  * inconsistent value to be constructed (ie: insufficient number of
2898  * items added to a container with a specific number of children
2899  * required).  It is also an error to call this function if the builder
2900  * was created with an indefinite array or maybe type and no children
2901  * have been added; in this case it is impossible to infer the type of
2902  * the empty array.
2903  *
2904  * Since: 2.24
2905  **/
2906 GVariant *
2907 g_variant_builder_end (GVariantBuilder *builder)
2908 {
2909   GVariantType *my_type;
2910   GVariant *value;
2911
2912   g_return_val_if_fail (is_valid_builder (builder), NULL);
2913   g_return_val_if_fail (GVSB(builder)->offset >= GVSB(builder)->min_items,
2914                         NULL);
2915   g_return_val_if_fail (!GVSB(builder)->uniform_item_types ||
2916                         GVSB(builder)->prev_item_type != NULL ||
2917                         g_variant_type_is_definite (GVSB(builder)->type),
2918                         NULL);
2919
2920   if (g_variant_type_is_definite (GVSB(builder)->type))
2921     my_type = g_variant_type_copy (GVSB(builder)->type);
2922
2923   else if (g_variant_type_is_maybe (GVSB(builder)->type))
2924     my_type = g_variant_make_maybe_type (GVSB(builder)->children[0]);
2925
2926   else if (g_variant_type_is_array (GVSB(builder)->type))
2927     my_type = g_variant_make_array_type (GVSB(builder)->children[0]);
2928
2929   else if (g_variant_type_is_tuple (GVSB(builder)->type))
2930     my_type = g_variant_make_tuple_type (GVSB(builder)->children,
2931                                          GVSB(builder)->offset);
2932
2933   else if (g_variant_type_is_dict_entry (GVSB(builder)->type))
2934     my_type = g_variant_make_dict_entry_type (GVSB(builder)->children[0],
2935                                               GVSB(builder)->children[1]);
2936   else
2937     g_assert_not_reached ();
2938
2939   value = g_variant_new_from_children (my_type,
2940                                        g_renew (GVariant *,
2941                                                 GVSB(builder)->children,
2942                                                 GVSB(builder)->offset),
2943                                        GVSB(builder)->offset,
2944                                        GVSB(builder)->trusted);
2945   GVSB(builder)->children = NULL;
2946   GVSB(builder)->offset = 0;
2947
2948   g_variant_builder_clear (builder);
2949   g_variant_type_free (my_type);
2950
2951   return value;
2952 }
2953
2954 /* Format strings {{{1 */
2955 /*< private >
2956  * g_variant_format_string_scan:
2957  * @string: a string that may be prefixed with a format string
2958  * @limit: a pointer to the end of @string, or %NULL
2959  * @endptr: location to store the end pointer, or %NULL
2960  * @returns: %TRUE if there was a valid format string
2961  *
2962  * Checks the string pointed to by @string for starting with a properly
2963  * formed #GVariant varargs format string.  If no valid format string is
2964  * found then %FALSE is returned.
2965  *
2966  * If @string does start with a valid format string then %TRUE is
2967  * returned.  If @endptr is non-%NULL then it is updated to point to the
2968  * first character after the format string.
2969  *
2970  * If @limit is non-%NULL then @limit (and any charater after it) will
2971  * not be accessed and the effect is otherwise equivalent to if the
2972  * character at @limit were nul.
2973  *
2974  * See the section on <link linkend='gvariant-format-strings'>GVariant
2975  * Format Strings</link>.
2976  *
2977  * Since: 2.24
2978  */
2979 gboolean
2980 g_variant_format_string_scan (const gchar  *string,
2981                               const gchar  *limit,
2982                               const gchar **endptr)
2983 {
2984 #define next_char() (string == limit ? '\0' : *string++)
2985 #define peek_char() (string == limit ? '\0' : *string)
2986   char c;
2987
2988   switch (next_char())
2989     {
2990     case 'b': case 'y': case 'n': case 'q': case 'i': case 'u':
2991     case 'x': case 't': case 'h': case 'd': case 's': case 'o':
2992     case 'g': case 'v': case '*': case '?': case 'r':
2993       break;
2994
2995     case 'm':
2996       return g_variant_format_string_scan (string, limit, endptr);
2997
2998     case 'a':
2999     case '@':
3000       return g_variant_type_string_scan (string, limit, endptr);
3001
3002     case '(':
3003       while (peek_char() != ')')
3004         if (!g_variant_format_string_scan (string, limit, &string))
3005           return FALSE;
3006
3007       next_char(); /* consume ')' */
3008       break;
3009
3010     case '{':
3011       c = next_char();
3012
3013       if (c == '&')
3014         {
3015           c = next_char ();
3016
3017           if (c != 's' && c != 'o' && c != 'g')
3018             return FALSE;
3019         }
3020       else
3021         {
3022           if (c == '@')
3023             c = next_char ();
3024
3025           /* ISO/IEC 9899:1999 (C99) §7.21.5.2:
3026            *    The terminating null character is considered to be
3027            *    part of the string.
3028            */
3029           if (c != '\0' && strchr ("bynqiuxthdsog?", c) == NULL)
3030             return FALSE;
3031         }
3032
3033       if (!g_variant_format_string_scan (string, limit, &string))
3034         return FALSE;
3035
3036       if (next_char() != '}')
3037         return FALSE;
3038
3039       break;
3040
3041     case '^': /* '^as' or '^a&s' only */
3042       if (next_char() != 'a')
3043         return FALSE;
3044
3045       if (peek_char() == '&')
3046         next_char ();
3047
3048       c = next_char ();
3049
3050       if (c != 's' && c != 'o' && c != 'g')
3051         return FALSE;
3052
3053       break;
3054
3055     case '&':
3056       c = next_char();
3057
3058       if (c != 's' && c != 'o' && c != 'g')
3059         return FALSE;
3060
3061       break;
3062
3063     default:
3064       return FALSE;
3065     }
3066
3067   if (endptr != NULL)
3068     *endptr = string;
3069
3070 #undef next_char
3071 #undef peek_char
3072
3073   return TRUE;
3074 }
3075
3076 /*< private >
3077  * g_variant_format_string_scan_type:
3078  * @string: a string that may be prefixed with a format string
3079  * @limit: a pointer to the end of @string
3080  * @endptr: location to store the end pointer, or %NULL
3081  * @returns: a #GVariantType if there was a valid format string
3082  *
3083  * If @string starts with a valid format string then this function will
3084  * return the type that the format string corresponds to.  Otherwise
3085  * this function returns %NULL.
3086  *
3087  * Use g_variant_type_free() to free the return value when you no longer
3088  * need it.
3089  *
3090  * This function is otherwise exactly like
3091  * g_variant_format_string_scan().
3092  *
3093  * Since: 2.24
3094  */
3095 GVariantType *
3096 g_variant_format_string_scan_type (const gchar  *string,
3097                                    const gchar  *limit,
3098                                    const gchar **endptr)
3099 {
3100   const gchar *my_end;
3101   gchar *dest;
3102   gchar *new;
3103
3104   if (endptr == NULL)
3105     endptr = &my_end;
3106
3107   if (!g_variant_format_string_scan (string, limit, endptr))
3108     return NULL;
3109
3110   dest = new = g_malloc (*endptr - string + 1);
3111   while (string != *endptr)
3112     {
3113       if (*string != '@' && *string != '&' && *string != '^')
3114         *dest++ = *string;
3115       string++;
3116     }
3117   *dest = '\0';
3118
3119   return (GVariantType *) G_VARIANT_TYPE (new);
3120 }
3121
3122 static gboolean
3123 valid_format_string (const gchar *format_string,
3124                      gboolean     single,
3125                      GVariant    *value)
3126 {
3127   const gchar *endptr;
3128   GVariantType *type;
3129
3130   type = g_variant_format_string_scan_type (format_string, NULL, &endptr);
3131
3132   if G_UNLIKELY (type == NULL || (single && *endptr != '\0'))
3133     {
3134       if (single)
3135         g_critical ("`%s' is not a valid GVariant format string",
3136                     format_string);
3137       else
3138         g_critical ("`%s' does not have a valid GVariant format "
3139                     "string as a prefix", format_string);
3140
3141       if (type != NULL)
3142         g_variant_type_free (type);
3143
3144       return FALSE;
3145     }
3146
3147   if G_UNLIKELY (value && !g_variant_is_of_type (value, type))
3148     {
3149       gchar *fragment;
3150       gchar *typestr;
3151
3152       fragment = g_strndup (format_string, endptr - format_string);
3153       typestr = g_variant_type_dup_string (type);
3154
3155       g_critical ("the GVariant format string `%s' has a type of "
3156                   "`%s' but the given value has a type of `%s'",
3157                   fragment, typestr, g_variant_get_type_string (value));
3158
3159       g_variant_type_free (type);
3160
3161       return FALSE;
3162     }
3163
3164   g_variant_type_free (type);
3165
3166   return TRUE;
3167 }
3168
3169 /* Variable Arguments {{{1 */
3170 /* We consider 2 main classes of format strings:
3171  *
3172  *   - recursive format strings
3173  *      these are ones that result in recursion and the collection of
3174  *      possibly more than one argument.  Maybe types, tuples,
3175  *      dictionary entries.
3176  *
3177  *   - leaf format string
3178  *      these result in the collection of a single argument.
3179  *
3180  * Leaf format strings are further subdivided into two categories:
3181  *
3182  *   - single non-null pointer ("nnp")
3183  *      these either collect or return a single non-null pointer.
3184  *
3185  *   - other
3186  *      these collect or return something else (bool, number, etc).
3187  *
3188  * Based on the above, the varargs handling code is split into 4 main parts:
3189  *
3190  *   - nnp handling code
3191  *   - leaf handling code (which may invoke nnp code)
3192  *   - generic handling code (may be recursive, may invoke leaf code)
3193  *   - user-facing API (which invokes the generic code)
3194  *
3195  * Each section implements some of the following functions:
3196  *
3197  *   - skip:
3198  *      collect the arguments for the format string as if
3199  *      g_variant_new() had been called, but do nothing with them.  used
3200  *      for skipping over arguments when constructing a Nothing maybe
3201  *      type.
3202  *
3203  *   - new:
3204  *      create a GVariant *
3205  *
3206  *   - get:
3207  *      unpack a GVariant *
3208  *
3209  *   - free (nnp only):
3210  *      free a previously allocated item
3211  */
3212
3213 static gboolean
3214 g_variant_format_string_is_leaf (const gchar *str)
3215 {
3216   return str[0] != 'm' && str[0] != '(' && str[0] != '{';
3217 }
3218
3219 static gboolean
3220 g_variant_format_string_is_nnp (const gchar *str)
3221 {
3222   return str[0] == 'a' || str[0] == 's' || str[0] == 'o' || str[0] == 'g' ||
3223          str[0] == '^' || str[0] == '@' || str[0] == '*' || str[0] == '?' ||
3224          str[0] == 'r' || str[0] == 'v' || str[0] == '&';
3225 }
3226
3227 /* Single non-null pointer ("nnp") {{{2 */
3228 static void
3229 g_variant_valist_free_nnp (const gchar *str,
3230                            gpointer     ptr)
3231 {
3232   switch (*str)
3233     {
3234     case 'a':
3235       g_variant_iter_free (ptr);
3236       break;
3237
3238     case '^':
3239       if (str[2] != '&')        /* '^as' */
3240         g_strfreev (ptr);
3241       else                      /* '^a&s' */
3242         g_free (ptr);
3243       break;
3244
3245     case 's':
3246     case 'o':
3247     case 'g':
3248       g_free (ptr);
3249       break;
3250
3251     case '@':
3252     case '*':
3253     case '?':
3254     case 'v':
3255       g_variant_unref (ptr);
3256       break;
3257
3258     case '&':
3259       break;
3260
3261     default:
3262       g_assert_not_reached ();
3263     }
3264 }
3265
3266 static GVariant *
3267 g_variant_valist_new_nnp (const gchar **str,
3268                           gpointer      ptr)
3269 {
3270   if (**str == '&')
3271     (*str)++;
3272
3273   switch (*(*str)++)
3274     {
3275     case 'a':
3276       {
3277         const GVariantType *type;
3278         GVariant *value;
3279
3280         value = g_variant_builder_end (ptr);
3281         type = g_variant_get_type (value);
3282
3283         if G_UNLIKELY (!g_variant_type_is_array (type))
3284           g_error ("g_variant_new: expected array GVariantBuilder but "
3285                    "the built value has type `%s'",
3286                    g_variant_get_type_string (value));
3287
3288         type = g_variant_type_element (type);
3289
3290         if G_UNLIKELY (!g_variant_type_is_subtype_of (type, (GVariantType *) *str))
3291           g_error ("g_variant_new: expected GVariantBuilder array element "
3292                    "type `%s' but the built value has element type `%s'",
3293                    g_variant_type_dup_string ((GVariantType *) *str),
3294                    g_variant_get_type_string (value) + 1);
3295
3296         g_variant_type_string_scan (*str, NULL, str);
3297
3298         return value;
3299       }
3300
3301     case 's':
3302       return g_variant_new_string (ptr);
3303
3304     case 'o':
3305       return g_variant_new_object_path (ptr);
3306
3307     case 'g':
3308       return g_variant_new_signature (ptr);
3309
3310     case '^':
3311       {
3312         const GVariantType *type;
3313         GVariantType *array_type;
3314         GVariant **children;
3315         gchar **strv = ptr;
3316         GVariant *value;
3317         guint length, i;
3318
3319         if ((*str)[1] == '&')    /* '^a&s' */
3320           (*str) += 2;
3321         else                     /* '^as' */
3322           (*str)++;
3323
3324         type = (GVariantType *) (*str)++;
3325         array_type = g_variant_type_new_array (type);
3326         length = g_strv_length (strv);
3327         children = g_new (GVariant *, length);
3328         for (i = 0; i < length; i++)
3329           children[i] = g_variant_ref_sink (
3330             g_variant_new_from_trusted (type, strv[i], strlen (strv[i]) + 1));
3331
3332         value = g_variant_new_from_children (array_type, children,
3333                                              length, TRUE);
3334         g_variant_type_free (array_type);
3335
3336         return value;
3337       }
3338
3339     case '@':
3340       if G_UNLIKELY (!g_variant_is_of_type (ptr, (GVariantType *) *str))
3341         g_error ("g_variant_new: expected GVariant of type `%s' but "
3342                  "received value has type `%s'",
3343                  g_variant_type_dup_string ((GVariantType *) *str),
3344                  g_variant_get_type_string (ptr));
3345
3346       g_variant_type_string_scan (*str, NULL, str);
3347
3348       return ptr;
3349
3350     case '*':
3351       return ptr;
3352
3353     case '?':
3354       if G_UNLIKELY (!g_variant_type_is_basic (g_variant_get_type (ptr)))
3355         g_error ("g_variant_new: format string `?' expects basic-typed "
3356                  "GVariant, but received value has type `%s'",
3357                  g_variant_get_type_string (ptr));
3358
3359       return ptr;
3360
3361     case 'r':
3362       if G_UNLIKELY (!g_variant_type_is_tuple (g_variant_get_type (ptr)))
3363         g_error ("g_variant_new: format string `r` expects tuple-typed "
3364                  "GVariant, but received value has type `%s'",
3365                  g_variant_get_type_string (ptr));
3366
3367       return ptr;
3368
3369     case 'v':
3370       return g_variant_new_variant (ptr);
3371
3372     default:
3373       g_assert_not_reached ();
3374     }
3375 }
3376
3377 static gpointer
3378 g_variant_valist_get_nnp (const gchar **str,
3379                           GVariant     *value)
3380 {
3381   switch (*(*str)++)
3382     {
3383     case 'a':
3384       g_variant_type_string_scan (*str, NULL, str);
3385       return g_variant_iter_new (value);
3386
3387     case '&':
3388       (*str)++;
3389       return (gchar *) g_variant_get_string (value, NULL);
3390
3391     case 's':
3392     case 'o':
3393     case 'g':
3394       return g_variant_dup_string (value, NULL);
3395
3396     case '^':
3397       if ((*str)[1] == '&')    /* '^a&s' */
3398         {
3399           (*str) += 3;
3400           return g_variant_get_strv (value, NULL);
3401         }
3402       else                    /* '^as' */
3403         {
3404           (*str) += 2;
3405           return g_variant_dup_strv (value, NULL);
3406         }
3407
3408     case '@':
3409       g_variant_type_string_scan (*str, NULL, str);
3410       /* fall through */
3411
3412     case '*':
3413     case '?':
3414     case 'r':
3415       return g_variant_ref (value);
3416
3417     case 'v':
3418       return g_variant_get_variant (value);
3419
3420     default:
3421       g_assert_not_reached ();
3422     }
3423 }
3424
3425 /* Leaves {{{2 */
3426 static void
3427 g_variant_valist_skip_leaf (const gchar **str,
3428                             va_list      *app)
3429 {
3430   if (g_variant_format_string_is_nnp (*str))
3431     {
3432       g_variant_format_string_scan (*str, NULL, str);
3433       va_arg (*app, gpointer);
3434       return;
3435     }
3436
3437   switch (*(*str)++)
3438     {
3439     case 'b':
3440     case 'y':
3441     case 'n':
3442     case 'q':
3443     case 'i':
3444     case 'u':
3445     case 'h':
3446       va_arg (*app, int);
3447       return;
3448
3449     case 'x':
3450     case 't':
3451       va_arg (*app, guint64);
3452       return;
3453
3454     case 'd':
3455       va_arg (*app, gdouble);
3456       return;
3457
3458     default:
3459       g_assert_not_reached ();
3460     }
3461 }
3462
3463 static GVariant *
3464 g_variant_valist_new_leaf (const gchar **str,
3465                            va_list      *app)
3466 {
3467   if (g_variant_format_string_is_nnp (*str))
3468     return g_variant_valist_new_nnp (str, va_arg (*app, gpointer));
3469
3470   switch (*(*str)++)
3471     {
3472     case 'b':
3473       return g_variant_new_boolean (va_arg (*app, gboolean));
3474
3475     case 'y':
3476       return g_variant_new_byte (va_arg (*app, guint));
3477
3478     case 'n':
3479       return g_variant_new_int16 (va_arg (*app, gint));
3480
3481     case 'q':
3482       return g_variant_new_uint16 (va_arg (*app, guint));
3483
3484     case 'i':
3485       return g_variant_new_int32 (va_arg (*app, gint));
3486
3487     case 'u':
3488       return g_variant_new_uint32 (va_arg (*app, guint));
3489
3490     case 'x':
3491       return g_variant_new_int64 (va_arg (*app, gint64));
3492
3493     case 't':
3494       return g_variant_new_uint64 (va_arg (*app, guint64));
3495
3496     case 'h':
3497       return g_variant_new_handle (va_arg (*app, gint));
3498
3499     case 'd':
3500       return g_variant_new_double (va_arg (*app, gdouble));
3501
3502     default:
3503       g_assert_not_reached ();
3504     }
3505 }
3506
3507 /* The code below assumes this */
3508 G_STATIC_ASSERT (sizeof (gboolean) == sizeof (guint32));
3509 G_STATIC_ASSERT (sizeof (gdouble) == sizeof (guint64));
3510
3511 static void
3512 g_variant_valist_get_leaf (const gchar **str,
3513                            GVariant     *value,
3514                            gboolean      free,
3515                            va_list      *app)
3516 {
3517   gpointer ptr = va_arg (*app, gpointer);
3518
3519   if (ptr == NULL)
3520     {
3521       g_variant_format_string_scan (*str, NULL, str);
3522       return;
3523     }
3524
3525   if (g_variant_format_string_is_nnp (*str))
3526     {
3527       gpointer *nnp = (gpointer *) ptr;
3528
3529       if (free && *nnp != NULL)
3530         g_variant_valist_free_nnp (*str, *nnp);
3531
3532       *nnp = NULL;
3533
3534       if (value != NULL)
3535         *nnp = g_variant_valist_get_nnp (str, value);
3536       else
3537         g_variant_format_string_scan (*str, NULL, str);
3538
3539       return;
3540     }
3541
3542   if (value != NULL)
3543     {
3544       switch (*(*str)++)
3545         {
3546         case 'b':
3547           *(gboolean *) ptr = g_variant_get_boolean (value);
3548           return;
3549
3550         case 'y':
3551           *(guchar *) ptr = g_variant_get_byte (value);
3552           return;
3553
3554         case 'n':
3555           *(gint16 *) ptr = g_variant_get_int16 (value);
3556           return;
3557
3558         case 'q':
3559           *(guint16 *) ptr = g_variant_get_uint16 (value);
3560           return;
3561
3562         case 'i':
3563           *(gint32 *) ptr = g_variant_get_int32 (value);
3564           return;
3565
3566         case 'u':
3567           *(guint32 *) ptr = g_variant_get_uint32 (value);
3568           return;
3569
3570         case 'x':
3571           *(gint64 *) ptr = g_variant_get_int64 (value);
3572           return;
3573
3574         case 't':
3575           *(guint64 *) ptr = g_variant_get_uint64 (value);
3576           return;
3577
3578         case 'h':
3579           *(gint32 *) ptr = g_variant_get_handle (value);
3580           return;
3581
3582         case 'd':
3583           *(gdouble *) ptr = g_variant_get_double (value);
3584           return;
3585         }
3586     }
3587   else
3588     {
3589       switch (*(*str)++)
3590         {
3591         case 'y':
3592           *(guchar *) ptr = 0;
3593           return;
3594
3595         case 'n':
3596         case 'q':
3597           *(guint16 *) ptr = 0;
3598           return;
3599
3600         case 'i':
3601         case 'u':
3602         case 'h':
3603         case 'b':
3604           *(guint32 *) ptr = 0;
3605           return;
3606
3607         case 'x':
3608         case 't':
3609         case 'd':
3610           *(guint64 *) ptr = 0;
3611           return;
3612         }
3613     }
3614
3615   g_assert_not_reached ();
3616 }
3617
3618 /* Generic (recursive) {{{2 */
3619 static void
3620 g_variant_valist_skip (const gchar **str,
3621                        va_list      *app)
3622 {
3623   if (g_variant_format_string_is_leaf (*str))
3624     g_variant_valist_skip_leaf (str, app);
3625
3626   else if (**str == 'm') /* maybe */
3627     {
3628       (*str)++;
3629
3630       if (!g_variant_format_string_is_nnp (*str))
3631         va_arg (*app, gboolean);
3632
3633       g_variant_valist_skip (str, app);
3634     }
3635   else /* tuple, dictionary entry */
3636     {
3637       g_assert (**str == '(' || **str == '{');
3638       (*str)++;
3639       while (**str != ')' && **str != '}')
3640         g_variant_valist_skip (str, app);
3641       (*str)++;
3642     }
3643 }
3644
3645 static GVariant *
3646 g_variant_valist_new (const gchar **str,
3647                       va_list      *app)
3648 {
3649   if (g_variant_format_string_is_leaf (*str))
3650     return g_variant_valist_new_leaf (str, app);
3651
3652   if (**str == 'm') /* maybe */
3653     {
3654       GVariantType *type = NULL;
3655       GVariant *value = NULL;
3656
3657       (*str)++;
3658
3659       if (g_variant_format_string_is_nnp (*str))
3660         {
3661           gpointer nnp = va_arg (*app, gpointer);
3662
3663           if (nnp != NULL)
3664             value = g_variant_valist_new_nnp (str, nnp);
3665           else
3666             type = g_variant_format_string_scan_type (*str, NULL, str);
3667         }
3668       else
3669         {
3670           gboolean just = va_arg (*app, gboolean);
3671
3672           if (just)
3673             value = g_variant_valist_new (str, app);
3674           else
3675             {
3676               type = g_variant_format_string_scan_type (*str, NULL, NULL);
3677               g_variant_valist_skip (str, app);
3678             }
3679         }
3680
3681       value = g_variant_new_maybe (type, value);
3682
3683       if (type != NULL)
3684         g_variant_type_free (type);
3685
3686       return value;
3687     }
3688   else /* tuple, dictionary entry */
3689     {
3690       GVariantBuilder b;
3691
3692       if (**str == '(')
3693         g_variant_builder_init (&b, G_VARIANT_TYPE_TUPLE);
3694       else
3695         {
3696           g_assert (**str == '{');
3697           g_variant_builder_init (&b, G_VARIANT_TYPE_DICT_ENTRY);
3698         }
3699
3700       (*str)++; /* '(' */
3701       while (**str != ')' && **str != '}')
3702         g_variant_builder_add_value (&b, g_variant_valist_new (str, app));
3703       (*str)++; /* ')' */
3704
3705       return g_variant_builder_end (&b);
3706     }
3707 }
3708
3709 static void
3710 g_variant_valist_get (const gchar **str,
3711                       GVariant     *value,
3712                       gboolean      free,
3713                       va_list      *app)
3714 {
3715   if (g_variant_format_string_is_leaf (*str))
3716     g_variant_valist_get_leaf (str, value, free, app);
3717
3718   else if (**str == 'm')
3719     {
3720       (*str)++;
3721
3722       if (value != NULL)
3723         value = g_variant_get_maybe (value);
3724
3725       if (!g_variant_format_string_is_nnp (*str))
3726         {
3727           gboolean *ptr = va_arg (*app, gboolean *);
3728
3729           if (ptr != NULL)
3730             *ptr = value != NULL;
3731         }
3732
3733       g_variant_valist_get (str, value, free, app);
3734
3735       if (value != NULL)
3736         g_variant_unref (value);
3737     }
3738
3739   else /* tuple, dictionary entry */
3740     {
3741       gint index = 0;
3742
3743       g_assert (**str == '(' || **str == '{');
3744
3745       (*str)++;
3746       while (**str != ')' && **str != '}')
3747         {
3748           if (value != NULL)
3749             {
3750               GVariant *child = g_variant_get_child_value (value, index++);
3751               g_variant_valist_get (str, child, free, app);
3752               g_variant_unref (child);
3753             }
3754           else
3755             g_variant_valist_get (str, NULL, free, app);
3756         }
3757       (*str)++;
3758     }
3759 }
3760
3761 /* User-facing API {{{2 */
3762 /**
3763  * g_variant_new:
3764  * @format_string: a #GVariant format string
3765  * @...: arguments, as per @format_string
3766  * @returns: a new floating #GVariant instance
3767  *
3768  * Creates a new #GVariant instance.
3769  *
3770  * Think of this function as an analogue to g_strdup_printf().
3771  *
3772  * The type of the created instance and the arguments that are
3773  * expected by this function are determined by @format_string.  See the
3774  * section on <link linkend='gvariant-format-strings'>GVariant Format
3775  * Strings</link>.  Please note that the syntax of the format string is
3776  * very likely to be extended in the future.
3777  *
3778  * The first character of the format string must not be '*' '?' '@' or
3779  * 'r'; in essence, a new #GVariant must always be constructed by this
3780  * function (and not merely passed through it unmodified).
3781  *
3782  * Since: 2.24
3783  **/
3784 GVariant *
3785 g_variant_new (const gchar *format_string,
3786                ...)
3787 {
3788   GVariant *value;
3789   va_list ap;
3790
3791   g_return_val_if_fail (valid_format_string (format_string, TRUE, NULL) &&
3792                         format_string[0] != '?' && format_string[0] != '@' &&
3793                         format_string[0] != '*' && format_string[0] != 'r',
3794                         NULL);
3795
3796   va_start (ap, format_string);
3797   value = g_variant_new_va (format_string, NULL, &ap);
3798   va_end (ap);
3799
3800   return value;
3801 }
3802
3803 /**
3804  * g_variant_new_va:
3805  * @format_string: a string that is prefixed with a format string
3806  * @endptr: location to store the end pointer, or %NULL
3807  * @app: a pointer to a #va_list
3808  * @returns: a new, usually floating, #GVariant
3809  *
3810  * This function is intended to be used by libraries based on
3811  * #GVariant that want to provide g_variant_new()-like functionality
3812  * to their users.
3813  *
3814  * The API is more general than g_variant_new() to allow a wider range
3815  * of possible uses.
3816  *
3817  * @format_string must still point to a valid format string, but it only
3818  * needs to be nul-terminated if @endptr is %NULL.  If @endptr is
3819  * non-%NULL then it is updated to point to the first character past the
3820  * end of the format string.
3821  *
3822  * @app is a pointer to a #va_list.  The arguments, according to
3823  * @format_string, are collected from this #va_list and the list is left
3824  * pointing to the argument following the last.
3825  *
3826  * These two generalisations allow mixing of multiple calls to
3827  * g_variant_new_va() and g_variant_get_va() within a single actual
3828  * varargs call by the user.
3829  *
3830  * The return value will be floating if it was a newly created GVariant
3831  * instance (for example, if the format string was "(ii)").  In the case
3832  * that the format_string was '*', '?', 'r', or a format starting with
3833  * '@' then the collected #GVariant pointer will be returned unmodified,
3834  * without adding any additional references.
3835  *
3836  * In order to behave correctly in all cases it is necessary for the
3837  * calling function to g_variant_ref_sink() the return result before
3838  * returning control to the user that originally provided the pointer.
3839  * At this point, the caller will have their own full reference to the
3840  * result.  This can also be done by adding the result to a container,
3841  * or by passing it to another g_variant_new() call.
3842  *
3843  * Since: 2.24
3844  **/
3845 GVariant *
3846 g_variant_new_va (const gchar  *format_string,
3847                   const gchar **endptr,
3848                   va_list      *app)
3849 {
3850   GVariant *value;
3851
3852   g_return_val_if_fail (valid_format_string (format_string, !endptr, NULL),
3853                         NULL);
3854   g_return_val_if_fail (app != NULL, NULL);
3855
3856   value = g_variant_valist_new (&format_string, app);
3857
3858   if (endptr != NULL)
3859     *endptr = format_string;
3860
3861   return value;
3862 }
3863
3864 /**
3865  * g_variant_get:
3866  * @value: a #GVariant instance
3867  * @format_string: a #GVariant format string
3868  * @...: arguments, as per @format_string
3869  *
3870  * Deconstructs a #GVariant instance.
3871  *
3872  * Think of this function as an analogue to scanf().
3873  *
3874  * The arguments that are expected by this function are entirely
3875  * determined by @format_string.  @format_string also restricts the
3876  * permissible types of @value.  It is an error to give a value with
3877  * an incompatible type.  See the section on <link
3878  * linkend='gvariant-format-strings'>GVariant Format Strings</link>.
3879  * Please note that the syntax of the format string is very likely to be
3880  * extended in the future.
3881  *
3882  * Since: 2.24
3883  **/
3884 void
3885 g_variant_get (GVariant    *value,
3886                const gchar *format_string,
3887                ...)
3888 {
3889   va_list ap;
3890
3891   g_return_if_fail (valid_format_string (format_string, TRUE, value));
3892
3893   /* if any direct-pointer-access formats are in use, flatten first */
3894   if (strchr (format_string, '&'))
3895     g_variant_get_data (value);
3896
3897   va_start (ap, format_string);
3898   g_variant_get_va (value, format_string, NULL, &ap);
3899   va_end (ap);
3900 }
3901
3902 /**
3903  * g_variant_get_va:
3904  * @value: a #GVariant
3905  * @format_string: a string that is prefixed with a format string
3906  * @endptr: location to store the end pointer, or %NULL
3907  * @app: a pointer to a #va_list
3908  *
3909  * This function is intended to be used by libraries based on #GVariant
3910  * that want to provide g_variant_get()-like functionality to their
3911  * users.
3912  *
3913  * The API is more general than g_variant_get() to allow a wider range
3914  * of possible uses.
3915  *
3916  * @format_string must still point to a valid format string, but it only
3917  * need to be nul-terminated if @endptr is %NULL.  If @endptr is
3918  * non-%NULL then it is updated to point to the first character past the
3919  * end of the format string.
3920  *
3921  * @app is a pointer to a #va_list.  The arguments, according to
3922  * @format_string, are collected from this #va_list and the list is left
3923  * pointing to the argument following the last.
3924  *
3925  * These two generalisations allow mixing of multiple calls to
3926  * g_variant_new_va() and g_variant_get_va() within a single actual
3927  * varargs call by the user.
3928  *
3929  * Since: 2.24
3930  **/
3931 void
3932 g_variant_get_va (GVariant     *value,
3933                   const gchar  *format_string,
3934                   const gchar **endptr,
3935                   va_list      *app)
3936 {
3937   g_return_if_fail (valid_format_string (format_string, !endptr, value));
3938   g_return_if_fail (value != NULL);
3939   g_return_if_fail (app != NULL);
3940
3941   /* if any direct-pointer-access formats are in use, flatten first */
3942   if (strchr (format_string, '&'))
3943     g_variant_get_data (value);
3944
3945   g_variant_valist_get (&format_string, value, FALSE, app);
3946
3947   if (endptr != NULL)
3948     *endptr = format_string;
3949 }
3950
3951 /* Varargs-enabled Utility Functions {{{1 */
3952
3953 /**
3954  * g_variant_builder_add:
3955  * @builder: a #GVariantBuilder
3956  * @format_string: a #GVariant varargs format string
3957  * @...: arguments, as per @format_string
3958  *
3959  * Adds to a #GVariantBuilder.
3960  *
3961  * This call is a convenience wrapper that is exactly equivalent to
3962  * calling g_variant_new() followed by g_variant_builder_add_value().
3963  *
3964  * This function might be used as follows:
3965  *
3966  * <programlisting>
3967  * GVariant *
3968  * make_pointless_dictionary (void)
3969  * {
3970  *   GVariantBuilder *builder;
3971  *   int i;
3972  *
3973  *   builder = g_variant_builder_new (G_VARIANT_TYPE_ARRAY);
3974  *   for (i = 0; i < 16; i++)
3975  *     {
3976  *       gchar buf[3];
3977  *
3978  *       sprintf (buf, "%d", i);
3979  *       g_variant_builder_add (builder, "{is}", i, buf);
3980  *     }
3981  *
3982  *   return g_variant_builder_end (builder);
3983  * }
3984  * </programlisting>
3985  *
3986  * Since: 2.24
3987  **/
3988 void
3989 g_variant_builder_add (GVariantBuilder *builder,
3990                        const gchar     *format_string,
3991                        ...)
3992 {
3993   GVariant *variant;
3994   va_list ap;
3995
3996   va_start (ap, format_string);
3997   variant = g_variant_new_va (format_string, NULL, &ap);
3998   va_end (ap);
3999
4000   g_variant_builder_add_value (builder, variant);
4001 }
4002
4003 /**
4004  * g_variant_get_child:
4005  * @value: a container #GVariant
4006  * @index_: the index of the child to deconstruct
4007  * @format_string: a #GVariant format string
4008  * @...: arguments, as per @format_string
4009  *
4010  * Reads a child item out of a container #GVariant instance and
4011  * deconstructs it according to @format_string.  This call is
4012  * essentially a combination of g_variant_get_child_value() and
4013  * g_variant_get().
4014  *
4015  * Since: 2.24
4016  **/
4017 void
4018 g_variant_get_child (GVariant    *value,
4019                      gsize        index_,
4020                      const gchar *format_string,
4021                      ...)
4022 {
4023   GVariant *child;
4024   va_list ap;
4025
4026   child = g_variant_get_child_value (value, index_);
4027   g_return_if_fail (valid_format_string (format_string, TRUE, child));
4028
4029   va_start (ap, format_string);
4030   g_variant_get_va (child, format_string, NULL, &ap);
4031   va_end (ap);
4032
4033   g_variant_unref (child);
4034 }
4035
4036 /**
4037  * g_variant_iter_next:
4038  * @iter: a #GVariantIter
4039  * @format_string: a GVariant format string
4040  * @...: the arguments to unpack the value into
4041  * @returns: %TRUE if a value was unpacked, or %FALSE if there as no
4042  *           value
4043  *
4044  * Gets the next item in the container and unpacks it into the variable
4045  * argument list according to @format_string, returning %TRUE.
4046  *
4047  * If no more items remain then %FALSE is returned.
4048  *
4049  * All of the pointers given on the variable arguments list of this
4050  * function are assumed to point at uninitialised memory.  It is the
4051  * responsibility of the caller to free all of the values returned by
4052  * the unpacking process.
4053  *
4054  * See the section on <link linkend='gvariant-format-strings'>GVariant
4055  * Format Strings</link>.
4056  *
4057  * <example>
4058  *  <title>Memory management with g_variant_iter_next()</title>
4059  *  <programlisting>
4060  *   /<!-- -->* Iterates a dictionary of type 'a{sv}' *<!-- -->/
4061  *   void
4062  *   iterate_dictionary (GVariant *dictionary)
4063  *   {
4064  *     GVariantIter iter;
4065  *     GVariant *value;
4066  *     gchar *key;
4067  *
4068  *     g_variant_iter_init (&iter, dictionary);
4069  *     while (g_variant_iter_next (&iter, "{sv}", &key, &value))
4070  *       {
4071  *         g_print ("Item '%s' has type '%s'\n", key,
4072  *                  g_variant_get_type_string (value));
4073  *
4074  *         /<!-- -->* must free data for ourselves *<!-- -->/
4075  *         g_variant_unref (value);
4076  *         g_free (key);
4077  *       }
4078  *   }
4079  *  </programlisting>
4080  * </example>
4081  *
4082  * For a solution that is likely to be more convenient to C programmers
4083  * when dealing with loops, see g_variant_iter_loop().
4084  *
4085  * Since: 2.24
4086  **/
4087 gboolean
4088 g_variant_iter_next (GVariantIter *iter,
4089                      const gchar  *format_string,
4090                      ...)
4091 {
4092   GVariant *value;
4093
4094   value = g_variant_iter_next_value (iter);
4095
4096   g_return_val_if_fail (valid_format_string (format_string, TRUE, value),
4097                         FALSE);
4098
4099   if (value != NULL)
4100     {
4101       va_list ap;
4102
4103       va_start (ap, format_string);
4104       g_variant_valist_get (&format_string, value, FALSE, &ap);
4105       va_end (ap);
4106
4107       g_variant_unref (value);
4108     }
4109
4110   return value != NULL;
4111 }
4112
4113 /**
4114  * g_variant_iter_loop:
4115  * @iter: a #GVariantIter
4116  * @format_string: a GVariant format string
4117  * @...: the arguments to unpack the value into
4118  * @returns: %TRUE if a value was unpacked, or %FALSE if there as no
4119  *           value
4120  *
4121  * Gets the next item in the container and unpacks it into the variable
4122  * argument list according to @format_string, returning %TRUE.
4123  *
4124  * If no more items remain then %FALSE is returned.
4125  *
4126  * On the first call to this function, the pointers appearing on the
4127  * variable argument list are assumed to point at uninitialised memory.
4128  * On the second and later calls, it is assumed that the same pointers
4129  * will be given and that they will point to the memory as set by the
4130  * previous call to this function.  This allows the previous values to
4131  * be freed, as appropriate.
4132  *
4133  * This function is intended to be used with a while loop as
4134  * demonstrated in the following example.  This function can only be
4135  * used when iterating over an array.  It is only valid to call this
4136  * function with a string constant for the format string and the same
4137  * string constant must be used each time.  Mixing calls to this
4138  * function and g_variant_iter_next() or g_variant_iter_next_value() on
4139  * the same iterator is not recommended.
4140  *
4141  * See the section on <link linkend='gvariant-format-strings'>GVariant
4142  * Format Strings</link>.
4143  *
4144  * <example>
4145  *  <title>Memory management with g_variant_iter_loop()</title>
4146  *  <programlisting>
4147  *   /<!-- -->* Iterates a dictionary of type 'a{sv}' *<!-- -->/
4148  *   void
4149  *   iterate_dictionary (GVariant *dictionary)
4150  *   {
4151  *     GVariantIter iter;
4152  *     GVariant *value;
4153  *     gchar *key;
4154  *
4155  *     g_variant_iter_init (&iter, dictionary);
4156  *     while (g_variant_iter_loop (&iter, "{sv}", &key, &value))
4157  *       {
4158  *         g_print ("Item '%s' has type '%s'\n", key,
4159  *                  g_variant_get_type_string (value));
4160  *
4161  *         /<!-- -->* no need to free 'key' and 'value' here *<!-- -->/
4162  *       }
4163  *   }
4164  *  </programlisting>
4165  * </example>
4166  *
4167  * If you want a slightly less magical alternative that requires more
4168  * typing, see g_variant_iter_next().
4169  *
4170  * Since: 2.24
4171  **/
4172 gboolean
4173 g_variant_iter_loop (GVariantIter *iter,
4174                      const gchar  *format_string,
4175                      ...)
4176 {
4177   gboolean first_time = GVSI(iter)->loop_format == NULL;
4178   GVariant *value;
4179   va_list ap;
4180
4181   g_return_val_if_fail (first_time ||
4182                         format_string == GVSI(iter)->loop_format,
4183                         FALSE);
4184
4185   if (first_time)
4186     {
4187       TYPE_CHECK (GVSI(iter)->value, G_VARIANT_TYPE_ARRAY, FALSE);
4188       GVSI(iter)->loop_format = format_string;
4189
4190       if (strchr (format_string, '&'))
4191         g_variant_get_data (GVSI(iter)->value);
4192     }
4193
4194   value = g_variant_iter_next_value (iter);
4195
4196   g_return_val_if_fail (!first_time ||
4197                         valid_format_string (format_string, TRUE, value),
4198                         FALSE);
4199
4200   va_start (ap, format_string);
4201   g_variant_valist_get (&format_string, value, !first_time, &ap);
4202   va_end (ap);
4203
4204   if (value != NULL)
4205     g_variant_unref (value);
4206
4207   return value != NULL;
4208 }
4209
4210 /* Serialised data {{{1 */
4211 static GVariant *
4212 g_variant_deep_copy (GVariant *value)
4213 {
4214   switch (g_variant_classify (value))
4215     {
4216     case G_VARIANT_CLASS_MAYBE:
4217     case G_VARIANT_CLASS_ARRAY:
4218     case G_VARIANT_CLASS_TUPLE:
4219     case G_VARIANT_CLASS_DICT_ENTRY:
4220     case G_VARIANT_CLASS_VARIANT:
4221       {
4222         GVariantBuilder builder;
4223         GVariantIter iter;
4224         GVariant *child;
4225
4226         g_variant_builder_init (&builder, g_variant_get_type (value));
4227         g_variant_iter_init (&iter, value);
4228
4229         while ((child = g_variant_iter_next_value (&iter)))
4230           {
4231             g_variant_builder_add_value (&builder, g_variant_deep_copy (child));
4232             g_variant_unref (child);
4233           }
4234
4235         return g_variant_builder_end (&builder);
4236       }
4237
4238     case G_VARIANT_CLASS_BOOLEAN:
4239       return g_variant_new_boolean (g_variant_get_boolean (value));
4240
4241     case G_VARIANT_CLASS_BYTE:
4242       return g_variant_new_byte (g_variant_get_byte (value));
4243
4244     case G_VARIANT_CLASS_INT16:
4245       return g_variant_new_int16 (g_variant_get_int16 (value));
4246
4247     case G_VARIANT_CLASS_UINT16:
4248       return g_variant_new_uint16 (g_variant_get_uint16 (value));
4249
4250     case G_VARIANT_CLASS_INT32:
4251       return g_variant_new_int32 (g_variant_get_int32 (value));
4252
4253     case G_VARIANT_CLASS_UINT32:
4254       return g_variant_new_uint32 (g_variant_get_uint32 (value));
4255
4256     case G_VARIANT_CLASS_INT64:
4257       return g_variant_new_int64 (g_variant_get_int64 (value));
4258
4259     case G_VARIANT_CLASS_UINT64:
4260       return g_variant_new_uint64 (g_variant_get_uint64 (value));
4261
4262     case G_VARIANT_CLASS_HANDLE:
4263       return g_variant_new_handle (g_variant_get_handle (value));
4264
4265     case G_VARIANT_CLASS_DOUBLE:
4266       return g_variant_new_double (g_variant_get_double (value));
4267
4268     case G_VARIANT_CLASS_STRING:
4269       return g_variant_new_string (g_variant_get_string (value, NULL));
4270
4271     case G_VARIANT_CLASS_OBJECT_PATH:
4272       return g_variant_new_object_path (g_variant_get_string (value, NULL));
4273
4274     case G_VARIANT_CLASS_SIGNATURE:
4275       return g_variant_new_signature (g_variant_get_string (value, NULL));
4276     }
4277
4278   g_assert_not_reached ();
4279 }
4280
4281 /**
4282  * g_variant_get_normal_form:
4283  * @value: a #GVariant
4284  * @returns: a trusted #GVariant
4285  *
4286  * Gets a #GVariant instance that has the same value as @value and is
4287  * trusted to be in normal form.
4288  *
4289  * If @value is already trusted to be in normal form then a new
4290  * reference to @value is returned.
4291  *
4292  * If @value is not already trusted, then it is scanned to check if it
4293  * is in normal form.  If it is found to be in normal form then it is
4294  * marked as trusted and a new reference to it is returned.
4295  *
4296  * If @value is found not to be in normal form then a new trusted
4297  * #GVariant is created with the same value as @value.
4298  *
4299  * It makes sense to call this function if you've received #GVariant
4300  * data from untrusted sources and you want to ensure your serialised
4301  * output is definitely in normal form.
4302  *
4303  * Since: 2.24
4304  **/
4305 GVariant *
4306 g_variant_get_normal_form (GVariant *value)
4307 {
4308   GVariant *trusted;
4309
4310   if (g_variant_is_normal_form (value))
4311     return g_variant_ref (value);
4312
4313   trusted = g_variant_deep_copy (value);
4314   g_assert (g_variant_is_trusted (trusted));
4315
4316   return g_variant_ref_sink (trusted);
4317 }
4318
4319 /**
4320  * g_variant_byteswap:
4321  * @value: a #GVariant
4322  * @returns: the byteswapped form of @value
4323  *
4324  * Performs a byteswapping operation on the contents of @value.  The
4325  * result is that all multi-byte numeric data contained in @value is
4326  * byteswapped.  That includes 16, 32, and 64bit signed and unsigned
4327  * integers as well as file handles and double precision floating point
4328  * values.
4329  *
4330  * This function is an identity mapping on any value that does not
4331  * contain multi-byte numeric data.  That include strings, booleans,
4332  * bytes and containers containing only these things (recursively).
4333  *
4334  * The returned value is always in normal form and is marked as trusted.
4335  *
4336  * Since: 2.24
4337  **/
4338 GVariant *
4339 g_variant_byteswap (GVariant *value)
4340 {
4341   GVariantSerialised serialised;
4342   GVariant *trusted;
4343   GBuffer *buffer;
4344   GVariant *new;
4345
4346   trusted = g_variant_get_normal_form (value);
4347   serialised.type_info = g_variant_get_type_info (trusted);
4348   serialised.size = g_variant_get_size (trusted);
4349   serialised.data = g_malloc (serialised.size);
4350   g_variant_store (trusted, serialised.data);
4351   g_variant_unref (trusted);
4352
4353   g_variant_serialised_byteswap (serialised);
4354
4355   buffer = g_buffer_new_take_data (serialised.data, serialised.size);
4356   new = g_variant_new_from_buffer (g_variant_get_type (value), buffer, TRUE);
4357   g_buffer_unref (buffer);
4358
4359   return g_variant_ref_sink (new);
4360 }
4361
4362 /**
4363  * g_variant_new_from_data:
4364  * @type: a definite #GVariantType
4365  * @data: the serialised data
4366  * @size: the size of @data
4367  * @trusted: %TRUE if @data is definitely in normal form
4368  * @notify: function to call when @data is no longer needed
4369  * @user_data: data for @notify
4370  * @returns: a new floating #GVariant of type @type
4371  *
4372  * Creates a new #GVariant instance from serialised data.
4373  *
4374  * @type is the type of #GVariant instance that will be constructed.
4375  * The interpretation of @data depends on knowing the type.
4376  *
4377  * @data is not modified by this function and must remain valid with an
4378  * unchanging value until such a time as @notify is called with
4379  * @user_data.  If the contents of @data change before that time then
4380  * the result is undefined.
4381  *
4382  * If @data is trusted to be serialised data in normal form then
4383  * @trusted should be %TRUE.  This applies to serialised data created
4384  * within this process or read from a trusted location on the disk (such
4385  * as a file installed in /usr/lib alongside your application).  You
4386  * should set trusted to %FALSE if @data is read from the network, a
4387  * file in the user's home directory, etc.
4388  *
4389  * @notify will be called with @user_data when @data is no longer
4390  * needed.  The exact time of this call is unspecified and might even be
4391  * before this function returns.
4392  *
4393  * Since: 2.24
4394  **/
4395 GVariant *
4396 g_variant_new_from_data (const GVariantType *type,
4397                          gconstpointer       data,
4398                          gsize               size,
4399                          gboolean            trusted,
4400                          GDestroyNotify      notify,
4401                          gpointer            user_data)
4402 {
4403   GVariant *value;
4404   GBuffer *buffer;
4405
4406   g_return_val_if_fail (g_variant_type_is_definite (type), NULL);
4407   g_return_val_if_fail (data != NULL || size == 0, NULL);
4408
4409   if (notify)
4410     buffer = g_buffer_new_from_pointer (data, size, notify, user_data);
4411   else
4412     buffer = g_buffer_new_from_static_data (data, size);
4413
4414   value = g_variant_new_from_buffer (type, buffer, trusted);
4415   g_buffer_unref (buffer);
4416
4417   return value;
4418 }
4419
4420 /* Epilogue {{{1 */
4421 #define __G_VARIANT_C__
4422 #include "galiasdef.c"
4423
4424 /* vim:set foldmethod=marker: */