Make the GVariant code compile with a non-gcc compiler
[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 C nul-terminated string
961  * @returns: a new string #GVariant instance
962  *
963  * Creates a string #GVariant with the contents of @string.
964  *
965  * Since: 2.24
966  **/
967 GVariant *
968 g_variant_new_string (const gchar *string)
969 {
970   g_return_val_if_fail (string != NULL, NULL);
971
972   return g_variant_new_from_trusted (G_VARIANT_TYPE_STRING,
973                                      string, strlen (string) + 1);
974 }
975
976 /**
977  * g_variant_new_object_path:
978  * @object_path: a normal C nul-terminated string
979  * @returns: a new object path #GVariant instance
980  *
981  * Creates a DBus object path #GVariant with the contents of @string.
982  * @string must be a valid DBus object path.  Use
983  * g_variant_is_object_path() if you're not sure.
984  *
985  * Since: 2.24
986  **/
987 GVariant *
988 g_variant_new_object_path (const gchar *object_path)
989 {
990   g_return_val_if_fail (g_variant_is_object_path (object_path), NULL);
991
992   return g_variant_new_from_trusted (G_VARIANT_TYPE_OBJECT_PATH,
993                                      object_path, strlen (object_path) + 1);
994 }
995
996 /**
997  * g_variant_is_object_path:
998  * @string: a normal C nul-terminated string
999  * @returns: %TRUE if @string is a DBus object path
1000  *
1001  * Determines if a given string is a valid DBus object path.  You
1002  * should ensure that a string is a valid DBus object path before
1003  * passing it to g_variant_new_object_path().
1004  *
1005  * A valid object path starts with '/' followed by zero or more
1006  * sequences of characters separated by '/' characters.  Each sequence
1007  * must contain only the characters "[A-Z][a-z][0-9]_".  No sequence
1008  * (including the one following the final '/' character) may be empty.
1009  *
1010  * Since: 2.24
1011  **/
1012 gboolean
1013 g_variant_is_object_path (const gchar *string)
1014 {
1015   g_return_val_if_fail (string != NULL, FALSE);
1016
1017   return g_variant_serialiser_is_object_path (string, strlen (string) + 1);
1018 }
1019
1020 /**
1021  * g_variant_new_signature:
1022  * @signature: a normal C nul-terminated string
1023  * @returns: a new signature #GVariant instance
1024  *
1025  * Creates a DBus type signature #GVariant with the contents of
1026  * @string.  @string must be a valid DBus type signature.  Use
1027  * g_variant_is_signature() if you're not sure.
1028  *
1029  * Since: 2.24
1030  **/
1031 GVariant *
1032 g_variant_new_signature (const gchar *signature)
1033 {
1034   g_return_val_if_fail (g_variant_is_signature (signature), NULL);
1035
1036   return g_variant_new_from_trusted (G_VARIANT_TYPE_SIGNATURE,
1037                                      signature, strlen (signature) + 1);
1038 }
1039
1040 /**
1041  * g_variant_is_signature:
1042  * @string: a normal C nul-terminated string
1043  * @returns: %TRUE if @string is a DBus type signature
1044  *
1045  * Determines if a given string is a valid DBus type signature.  You
1046  * should ensure that a string is a valid DBus object path before
1047  * passing it to g_variant_new_signature().
1048  *
1049  * DBus type signatures consist of zero or more definite #GVariantType
1050  * strings in sequence.
1051  *
1052  * Since: 2.24
1053  **/
1054 gboolean
1055 g_variant_is_signature (const gchar *string)
1056 {
1057   g_return_val_if_fail (string != NULL, FALSE);
1058
1059   return g_variant_serialiser_is_signature (string, strlen (string) + 1);
1060 }
1061
1062 /**
1063  * g_variant_get_string:
1064  * @value: a string #GVariant instance
1065  * @length: a pointer to a #gsize, to store the length
1066  * @returns: the constant string
1067  *
1068  * Returns the string value of a #GVariant instance with a string
1069  * type.  This includes the types %G_VARIANT_TYPE_STRING,
1070  * %G_VARIANT_TYPE_OBJECT_PATH and %G_VARIANT_TYPE_SIGNATURE.
1071  *
1072  * If @length is non-%NULL then the length of the string (in bytes) is
1073  * returned there.  For trusted values, this information is already
1074  * known.  For untrusted values, a strlen() will be performed.
1075  *
1076  * It is an error to call this function with a @value of any type
1077  * other than those three.
1078  *
1079  * The return value remains valid as long as @value exists.
1080  *
1081  * Since: 2.24
1082  **/
1083 const gchar *
1084 g_variant_get_string (GVariant *value,
1085                       gsize    *length)
1086 {
1087   gconstpointer data;
1088   gsize size;
1089
1090   g_return_val_if_fail (value != NULL, NULL);
1091   g_return_val_if_fail (
1092     g_variant_is_of_type (value, G_VARIANT_TYPE_STRING) ||
1093     g_variant_is_of_type (value, G_VARIANT_TYPE_OBJECT_PATH) ||
1094     g_variant_is_of_type (value, G_VARIANT_TYPE_SIGNATURE), NULL);
1095
1096   data = g_variant_get_data (value);
1097   size = g_variant_get_size (value);
1098
1099   if (!g_variant_is_trusted (value))
1100     {
1101       switch (g_variant_classify (value))
1102         {
1103         case G_VARIANT_CLASS_STRING:
1104           if (g_variant_serialiser_is_string (data, size))
1105             break;
1106
1107           data = "";
1108           size = 1;
1109           break;
1110
1111         case G_VARIANT_CLASS_OBJECT_PATH:
1112           if (g_variant_serialiser_is_object_path (data, size))
1113             break;
1114
1115           data = "/";
1116           size = 2;
1117           break;
1118
1119         case G_VARIANT_CLASS_SIGNATURE:
1120           if (g_variant_serialiser_is_signature (data, size))
1121             break;
1122
1123           data = "";
1124           size = 1;
1125           break;
1126
1127         default:
1128           g_assert_not_reached ();
1129         }
1130     }
1131
1132   if (length)
1133     *length = size - 1;
1134
1135   return data;
1136 }
1137
1138 /**
1139  * g_variant_dup_string:
1140  * @value: a string #GVariant instance
1141  * @length: a pointer to a #gsize, to store the length
1142  * @returns: a newly allocated string
1143  *
1144  * Similar to g_variant_get_string() except that instead of returning
1145  * a constant string, the string is duplicated.
1146  *
1147  * The return value must be freed using g_free().
1148  *
1149  * Since: 2.24
1150  **/
1151 gchar *
1152 g_variant_dup_string (GVariant *value,
1153                       gsize    *length)
1154 {
1155   return g_strdup (g_variant_get_string (value, length));
1156 }
1157
1158 /**
1159  * g_variant_new_strv:
1160  * @strv: an array of strings
1161  * @length: the length of @strv, or -1
1162  * @returns: a new floating #GVariant instance
1163  *
1164  * Constructs an array of strings #GVariant from the given array of
1165  * strings.
1166  *
1167  * If @length is not -1 then it gives the maximum length of @strv.  In
1168  * any case, a %NULL pointer in @strv is taken as a terminator.
1169  *
1170  * Since: 2.24
1171  **/
1172 GVariant *
1173 g_variant_new_strv (const gchar * const *strv,
1174                     gssize               length)
1175 {
1176   GVariant **strings;
1177   gsize i;
1178
1179   g_return_val_if_fail (length == 0 || strv != NULL, NULL);
1180
1181   if (length < 0)
1182     length = g_strv_length ((gchar **) strv);
1183
1184   strings = g_new (GVariant *, length);
1185   for (i = 0; i < length; i++)
1186     strings[i] = g_variant_ref_sink (g_variant_new_string (strv[i]));
1187
1188   return g_variant_new_from_children (G_VARIANT_TYPE ("as"),
1189                                       strings, length, TRUE);
1190 }
1191
1192 /**
1193  * g_variant_get_strv:
1194  * @value: an array of strings #GVariant
1195  * @length: the length of the result, or %NULL
1196  * @returns: an array of constant strings
1197  *
1198  * Gets the contents of an array of strings #GVariant.  This call
1199  * makes a shallow copy; the return result should be released with
1200  * g_free(), but the individual strings must not be modified.
1201  *
1202  * If @length is non-%NULL then the number of elements in the result
1203  * is stored there.  In any case, the resulting array will be
1204  * %NULL-terminated.
1205  *
1206  * For an empty array, @length will be set to 0 and a pointer to a
1207  * %NULL pointer will be returned.
1208  *
1209  * Since: 2.24
1210  **/
1211 const gchar **
1212 g_variant_get_strv (GVariant *value,
1213                     gsize    *length)
1214 {
1215   const gchar **strv;
1216   gsize n;
1217   gsize i;
1218
1219   g_return_val_if_fail (g_variant_is_of_type (value, G_VARIANT_TYPE ("as")) ||
1220                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ao")) ||
1221                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ag")),
1222                         NULL);
1223
1224   g_variant_get_data (value);
1225   n = g_variant_n_children (value);
1226   strv = g_new (const gchar *, n + 1);
1227
1228   for (i = 0; i < n; i++)
1229     {
1230       GVariant *string;
1231
1232       string = g_variant_get_child_value (value, i);
1233       strv[i] = g_variant_get_string (string, NULL);
1234       g_variant_unref (string);
1235     }
1236   strv[i] = NULL;
1237
1238   if (length)
1239     *length = n;
1240
1241   return strv;
1242 }
1243
1244 /**
1245  * g_variant_dup_strv:
1246  * @value: an array of strings #GVariant
1247  * @length: the length of the result, or %NULL
1248  * @returns: an array of constant strings
1249  *
1250  * Gets the contents of an array of strings #GVariant.  This call
1251  * makes a deep copy; the return result should be released with
1252  * g_strfreev().
1253  *
1254  * If @length is non-%NULL then the number of elements in the result
1255  * is stored there.  In any case, the resulting array will be
1256  * %NULL-terminated.
1257  *
1258  * For an empty array, @length will be set to 0 and a pointer to a
1259  * %NULL pointer will be returned.
1260  *
1261  * Since: 2.24
1262  **/
1263 gchar **
1264 g_variant_dup_strv (GVariant *value,
1265                     gsize    *length)
1266 {
1267   gchar **strv;
1268   gsize n;
1269   gsize i;
1270
1271   g_return_val_if_fail (g_variant_is_of_type (value, G_VARIANT_TYPE ("as")) ||
1272                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ao")) ||
1273                         g_variant_is_of_type (value, G_VARIANT_TYPE ("ag")),
1274                         NULL);
1275
1276   n = g_variant_n_children (value);
1277   strv = g_new (gchar *, n + 1);
1278
1279   for (i = 0; i < n; i++)
1280     {
1281       GVariant *string;
1282
1283       string = g_variant_get_child_value (value, i);
1284       strv[i] = g_variant_dup_string (string, NULL);
1285       g_variant_unref (string);
1286     }
1287   strv[i] = NULL;
1288
1289   if (length)
1290     *length = n;
1291
1292   return strv;
1293 }
1294
1295 /* Type checking and querying {{{1 */
1296 /**
1297  * g_variant_get_type:
1298  * @value: a #GVariant
1299  * @returns: a #GVariantType
1300  *
1301  * Determines the type of @value.
1302  *
1303  * The return value is valid for the lifetime of @value and must not
1304  * be freed.
1305  *
1306  * Since: 2.24
1307  **/
1308 const GVariantType *
1309 g_variant_get_type (GVariant *value)
1310 {
1311   GVariantTypeInfo *type_info;
1312
1313   g_return_val_if_fail (value != NULL, NULL);
1314
1315   type_info = g_variant_get_type_info (value);
1316
1317   return (GVariantType *) g_variant_type_info_get_type_string (type_info);
1318 }
1319
1320 /**
1321  * g_variant_get_type_string:
1322  * @value: a #GVariant
1323  * @returns: the type string for the type of @value
1324  *
1325  * Returns the type string of @value.  Unlike the result of calling
1326  * g_variant_type_peek_string(), this string is nul-terminated.  This
1327  * string belongs to #GVariant and must not be freed.
1328  *
1329  * Since: 2.24
1330  **/
1331 const gchar *
1332 g_variant_get_type_string (GVariant *value)
1333 {
1334   GVariantTypeInfo *type_info;
1335
1336   g_return_val_if_fail (value != NULL, NULL);
1337
1338   type_info = g_variant_get_type_info (value);
1339
1340   return g_variant_type_info_get_type_string (type_info);
1341 }
1342
1343 /**
1344  * g_variant_is_of_type:
1345  * @value: a #GVariant instance
1346  * @type: a #GVariantType
1347  * @returns: %TRUE if the type of @value matches @type
1348  *
1349  * Checks if a value has a type matching the provided type.
1350  *
1351  * Since: 2.24
1352  **/
1353 gboolean
1354 g_variant_is_of_type (GVariant           *value,
1355                       const GVariantType *type)
1356 {
1357   return g_variant_type_is_subtype_of (g_variant_get_type (value), type);
1358 }
1359
1360 /**
1361  * g_variant_is_container:
1362  * @value: a #GVariant instance
1363  * @returns: %TRUE if @value is a container
1364  *
1365  * Checks if @value is a container.
1366  */
1367 gboolean
1368 g_variant_is_container (GVariant *value)
1369 {
1370   return g_variant_type_is_container (g_variant_get_type (value));
1371 }
1372
1373
1374 /**
1375  * g_variant_classify:
1376  * @value: a #GVariant
1377  * @returns: the #GVariantClass of @value
1378  *
1379  * Classifies @value according to its top-level type.
1380  *
1381  * Since: 2.24
1382  **/
1383 /**
1384  * GVariantClass:
1385  * @G_VARIANT_CLASS_BOOLEAN: The #GVariant is a boolean.
1386  * @G_VARIANT_CLASS_BYTE: The #GVariant is a byte.
1387  * @G_VARIANT_CLASS_INT16: The #GVariant is a signed 16 bit integer.
1388  * @G_VARIANT_CLASS_UINT16: The #GVariant is an unsigned 16 bit integer.
1389  * @G_VARIANT_CLASS_INT32: The #GVariant is a signed 32 bit integer.
1390  * @G_VARIANT_CLASS_UINT32: The #GVariant is an unsigned 32 bit integer.
1391  * @G_VARIANT_CLASS_INT64: The #GVariant is a signed 64 bit integer.
1392  * @G_VARIANT_CLASS_UINT64: The #GVariant is an unsigned 64 bit integer.
1393  * @G_VARIANT_CLASS_HANDLE: The #GVariant is a file handle index.
1394  * @G_VARIANT_CLASS_DOUBLE: The #GVariant is a double precision floating 
1395  *                          point value.
1396  * @G_VARIANT_CLASS_STRING: The #GVariant is a normal string.
1397  * @G_VARIANT_CLASS_OBJECT_PATH: The #GVariant is a DBus object path 
1398  *                               string.
1399  * @G_VARIANT_CLASS_SIGNATURE: The #GVariant is a DBus signature string.
1400  * @G_VARIANT_CLASS_VARIANT: The #GVariant is a variant.
1401  * @G_VARIANT_CLASS_MAYBE: The #GVariant is a maybe-typed value.
1402  * @G_VARIANT_CLASS_ARRAY: The #GVariant is an array.
1403  * @G_VARIANT_CLASS_TUPLE: The #GVariant is a tuple.
1404  * @G_VARIANT_CLASS_DICT_ENTRY: The #GVariant is a dictionary entry.
1405  *
1406  * The range of possible top-level types of #GVariant instances.
1407  *
1408  * Since: 2.24
1409  **/
1410 GVariantClass
1411 g_variant_classify (GVariant *value)
1412 {
1413   g_return_val_if_fail (value != NULL, 0);
1414
1415   return *g_variant_get_type_string (value);
1416 }
1417
1418 /* Pretty printer {{{1 */
1419 /**
1420  * g_variant_print_string:
1421  * @value: a #GVariant
1422  * @string: a #GString, or %NULL
1423  * @type_annotate: %TRUE if type information should be included in
1424  *                 the output
1425  * @returns: a #GString containing the string
1426  *
1427  * Behaves as g_variant_print(), but operates on a #GString.
1428  *
1429  * If @string is non-%NULL then it is appended to and returned.  Else,
1430  * a new empty #GString is allocated and it is returned.
1431  *
1432  * Since: 2.24
1433  **/
1434 GString *
1435 g_variant_print_string (GVariant *value,
1436                         GString  *string,
1437                         gboolean  type_annotate)
1438 {
1439   if G_UNLIKELY (string == NULL)
1440     string = g_string_new (NULL);
1441
1442   switch (g_variant_classify (value))
1443     {
1444     case G_VARIANT_CLASS_MAYBE:
1445       if (type_annotate)
1446         g_string_append_printf (string, "@%s ",
1447                                 g_variant_get_type_string (value));
1448
1449       if (g_variant_n_children (value))
1450         {
1451           gchar *printed_child;
1452           GVariant *element;
1453
1454           /* Nested maybes:
1455            *
1456            * Consider the case of the type "mmi".  In this case we could
1457            * write "Just Just 4", but "4" alone is totally unambiguous,
1458            * so we try to drop "Just" where possible.
1459            *
1460            * We have to be careful not to always drop "Just", though,
1461            * since "Nothing" needs to be distinguishable from "Just
1462            * Nothing".  The case where we need to ensure we keep the
1463            * "Just" is actually exactly the case where we have a nested
1464            * Nothing.
1465            *
1466            * Instead of searching for that nested Nothing, we just print
1467            * the contained value into a separate string and see if we
1468            * end up with "Nothing" at the end of it.  If so, we need to
1469            * add "Just" at our level.
1470            */
1471           element = g_variant_get_child_value (value, 0);
1472           printed_child = g_variant_print (element, FALSE);
1473           g_variant_unref (element);
1474
1475           if (g_str_has_suffix (printed_child, "Nothing"))
1476             g_string_append (string, "Just ");
1477           g_string_append (string, printed_child);
1478           g_free (printed_child);
1479         }
1480       else
1481         g_string_append (string, "Nothing");
1482
1483       break;
1484
1485     case G_VARIANT_CLASS_ARRAY:
1486       /* it's an array so the first character of the type string is 'a'
1487        *
1488        * if the first two characters are 'a{' then it's an array of
1489        * dictionary entries (ie: a dictionary) so we print that
1490        * differently.
1491        */
1492       if (g_variant_get_type_string (value)[1] == '{')
1493         /* dictionary */
1494         {
1495           const gchar *comma = "";
1496           gsize n, i;
1497
1498           if ((n = g_variant_n_children (value)) == 0)
1499             {
1500               if (type_annotate)
1501                 g_string_append_printf (string, "@%s ",
1502                                         g_variant_get_type_string (value));
1503               g_string_append (string, "{}");
1504               break;
1505             }
1506
1507           g_string_append_c (string, '{');
1508           for (i = 0; i < n; i++)
1509             {
1510               GVariant *entry, *key, *val;
1511
1512               g_string_append (string, comma);
1513               comma = ", ";
1514
1515               entry = g_variant_get_child_value (value, i);
1516               key = g_variant_get_child_value (entry, 0);
1517               val = g_variant_get_child_value (entry, 1);
1518               g_variant_unref (entry);
1519
1520               g_variant_print_string (key, string, type_annotate);
1521               g_variant_unref (key);
1522               g_string_append (string, ": ");
1523               g_variant_print_string (val, string, type_annotate);
1524               g_variant_unref (val);
1525               type_annotate = FALSE;
1526             }
1527           g_string_append_c (string, '}');
1528         }
1529       else
1530         /* normal (non-dictionary) array */
1531         {
1532           const gchar *comma = "";
1533           gsize n, i;
1534
1535           if ((n = g_variant_n_children (value)) == 0)
1536             {
1537               if (type_annotate)
1538                 g_string_append_printf (string, "@%s ",
1539                                         g_variant_get_type_string (value));
1540               g_string_append (string, "[]");
1541               break;
1542             }
1543
1544           g_string_append_c (string, '[');
1545           for (i = 0; i < n; i++)
1546             {
1547               GVariant *element;
1548
1549               g_string_append (string, comma);
1550               comma = ", ";
1551
1552               element = g_variant_get_child_value (value, i);
1553
1554               g_variant_print_string (element, string, type_annotate);
1555               g_variant_unref (element);
1556               type_annotate = FALSE;
1557             }
1558           g_string_append_c (string, ']');
1559         }
1560
1561       break;
1562
1563     case G_VARIANT_CLASS_TUPLE:
1564       {
1565         gsize n, i;
1566
1567         n = g_variant_n_children (value);
1568
1569         g_string_append_c (string, '(');
1570         for (i = 0; i < n; i++)
1571           {
1572             GVariant *element;
1573
1574             element = g_variant_get_child_value (value, i);
1575             g_variant_print_string (element, string, type_annotate);
1576             g_string_append (string, ", ");
1577             g_variant_unref (element);
1578           }
1579
1580         /* for >1 item:  remove final ", "
1581          * for 1 item:   remove final " ", but leave the ","
1582          * for 0 items:  there is only "(", so remove nothing
1583          */
1584         g_string_truncate (string, string->len - (n > 0) - (n > 1));
1585         g_string_append_c (string, ')');
1586       }
1587       break;
1588
1589     case G_VARIANT_CLASS_DICT_ENTRY:
1590       {
1591         GVariant *element;
1592
1593         g_string_append_c (string, '{');
1594
1595         element = g_variant_get_child_value (value, 0);
1596         g_variant_print_string (element, string, type_annotate);
1597         g_variant_unref (element);
1598
1599         g_string_append (string, ", ");
1600
1601         element = g_variant_get_child_value (value, 1);
1602         g_variant_print_string (element, string, type_annotate);
1603         g_variant_unref (element);
1604
1605         g_string_append_c (string, '}');
1606       }
1607       break;
1608
1609     case G_VARIANT_CLASS_VARIANT:
1610       {
1611         GVariant *child = g_variant_get_variant (value);
1612
1613         /* Always annotate types in nested variants, because they are
1614          * (by nature) of variable type.
1615          */
1616         g_string_append_c (string, '<');
1617         g_variant_print_string (child, string, TRUE);
1618         g_string_append_c (string, '>');
1619
1620         g_variant_unref (child);
1621       }
1622       break;
1623
1624     case G_VARIANT_CLASS_BOOLEAN:
1625       if (g_variant_get_boolean (value))
1626         g_string_append (string, "true");
1627       else
1628         g_string_append (string, "false");
1629       break;
1630
1631     case G_VARIANT_CLASS_STRING:
1632       {
1633         const gchar *str = g_variant_get_string (value, NULL);
1634         gchar *escaped = g_strescape (str, NULL);
1635
1636         g_string_append_printf (string, "\'%s\'", escaped);
1637
1638         g_free (escaped);
1639       }
1640       break;
1641
1642     case G_VARIANT_CLASS_BYTE:
1643       if (type_annotate)
1644         g_string_append (string, "byte ");
1645       g_string_append_printf (string, "0x%02x",
1646                               g_variant_get_byte (value));
1647       break;
1648
1649     case G_VARIANT_CLASS_INT16:
1650       if (type_annotate)
1651         g_string_append (string, "int16 ");
1652       g_string_append_printf (string, "%"G_GINT16_FORMAT,
1653                               g_variant_get_int16 (value));
1654       break;
1655
1656     case G_VARIANT_CLASS_UINT16:
1657       if (type_annotate)
1658         g_string_append (string, "uint16 ");
1659       g_string_append_printf (string, "%"G_GUINT16_FORMAT,
1660                               g_variant_get_uint16 (value));
1661       break;
1662
1663     case G_VARIANT_CLASS_INT32:
1664       /* Never annotate this type because it is the default for numbers
1665        * (and this is a *pretty* printer)
1666        */
1667       g_string_append_printf (string, "%"G_GINT32_FORMAT,
1668                               g_variant_get_int32 (value));
1669       break;
1670
1671     case G_VARIANT_CLASS_HANDLE:
1672       if (type_annotate)
1673         g_string_append (string, "handle ");
1674       g_string_append_printf (string, "%"G_GINT32_FORMAT,
1675                               g_variant_get_handle (value));
1676       break;
1677
1678     case G_VARIANT_CLASS_UINT32:
1679       if (type_annotate)
1680         g_string_append (string, "uint32 ");
1681       g_string_append_printf (string, "%"G_GUINT32_FORMAT,
1682                               g_variant_get_uint32 (value));
1683       break;
1684
1685     case G_VARIANT_CLASS_INT64:
1686       if (type_annotate)
1687         g_string_append (string, "int64 ");
1688       g_string_append_printf (string, "%"G_GINT64_FORMAT,
1689                               g_variant_get_int64 (value));
1690       break;
1691
1692     case G_VARIANT_CLASS_UINT64:
1693       if (type_annotate)
1694         g_string_append (string, "uint64 ");
1695       g_string_append_printf (string, "%"G_GUINT64_FORMAT,
1696                               g_variant_get_uint64 (value));
1697       break;
1698
1699     case G_VARIANT_CLASS_DOUBLE:
1700       {
1701         gchar buffer[100];
1702         gint i;
1703
1704         g_ascii_dtostr (buffer, sizeof buffer, g_variant_get_double (value));
1705
1706         for (i = 0; buffer[i]; i++)
1707           if (buffer[i] == '.' || buffer[i] == 'e' ||
1708               buffer[i] == 'n' || buffer[i] == 'N')
1709             break;
1710
1711         /* if there is no '.' or 'e' in the float then add one */
1712         if (buffer[i] == '\0')
1713           {
1714             buffer[i++] = '.';
1715             buffer[i++] = '0';
1716             buffer[i++] = '\0';
1717           }
1718
1719         g_string_append (string, buffer);
1720       }
1721       break;
1722
1723     case G_VARIANT_CLASS_OBJECT_PATH:
1724       if (type_annotate)
1725         g_string_append (string, "objectpath ");
1726       g_string_append_printf (string, "\'%s\'",
1727                               g_variant_get_string (value, NULL));
1728       break;
1729
1730     case G_VARIANT_CLASS_SIGNATURE:
1731       if (type_annotate)
1732         g_string_append (string, "signature ");
1733       g_string_append_printf (string, "\'%s\'",
1734                               g_variant_get_string (value, NULL));
1735       break;
1736
1737     default:
1738       g_assert_not_reached ();
1739   }
1740
1741   return string;
1742 }
1743
1744 /**
1745  * g_variant_print:
1746  * @value: a #GVariant
1747  * @type_annotate: %TRUE if type information should be included in
1748  *                 the output
1749  * @returns: a newly-allocated string holding the result.
1750  *
1751  * Pretty-prints @value in the format understood by g_variant_parse().
1752  *
1753  * If @type_annotate is %TRUE, then type information is included in
1754  * the output.
1755  */
1756 gchar *
1757 g_variant_print (GVariant *value,
1758                  gboolean  type_annotate)
1759 {
1760   return g_string_free (g_variant_print_string (value, NULL, type_annotate),
1761                         FALSE);
1762 };
1763
1764 /* Hash, Equal {{{1 */
1765 /**
1766  * g_variant_hash:
1767  * @value: a basic #GVariant value as a #gconstpointer
1768  * @returns: a hash value corresponding to @value
1769  *
1770  * Generates a hash value for a #GVariant instance.
1771  *
1772  * The output of this function is guaranteed to be the same for a given
1773  * value only per-process.  It may change between different processor
1774  * architectures or even different versions of GLib.  Do not use this
1775  * function as a basis for building protocols or file formats.
1776  *
1777  * The type of @value is #gconstpointer only to allow use of this
1778  * function with #GHashTable.  @value must be a #GVariant.
1779  *
1780  * Since: 2.24
1781  **/
1782 guint
1783 g_variant_hash (gconstpointer value_)
1784 {
1785   GVariant *value = (GVariant *) value_;
1786
1787   switch (g_variant_classify (value))
1788     {
1789     case G_VARIANT_CLASS_STRING:
1790     case G_VARIANT_CLASS_OBJECT_PATH:
1791     case G_VARIANT_CLASS_SIGNATURE:
1792       return g_str_hash (g_variant_get_string (value, NULL));
1793
1794     case G_VARIANT_CLASS_BOOLEAN:
1795       /* this is a very odd thing to hash... */
1796       return g_variant_get_boolean (value);
1797
1798     case G_VARIANT_CLASS_BYTE:
1799       return g_variant_get_byte (value);
1800
1801     case G_VARIANT_CLASS_INT16:
1802     case G_VARIANT_CLASS_UINT16:
1803       {
1804         const guint16 *ptr;
1805
1806         ptr = g_variant_get_data (value);
1807
1808         if (ptr)
1809           return *ptr;
1810         else
1811           return 0;
1812       }
1813
1814     case G_VARIANT_CLASS_INT32:
1815     case G_VARIANT_CLASS_UINT32:
1816     case G_VARIANT_CLASS_HANDLE:
1817       {
1818         const guint *ptr;
1819
1820         ptr = g_variant_get_data (value);
1821
1822         if (ptr)
1823           return *ptr;
1824         else
1825           return 0;
1826       }
1827
1828     case G_VARIANT_CLASS_INT64:
1829     case G_VARIANT_CLASS_UINT64:
1830     case G_VARIANT_CLASS_DOUBLE:
1831       /* need a separate case for these guys because otherwise
1832        * performance could be quite bad on big endian systems
1833        */
1834       {
1835         const guint *ptr;
1836
1837         ptr = g_variant_get_data (value);
1838
1839         if (ptr)
1840           return ptr[0] + ptr[1];
1841         else
1842           return 0;
1843       }
1844
1845     default:
1846       g_return_val_if_fail (!g_variant_is_container (value), 0);
1847       g_assert_not_reached ();
1848     }
1849 }
1850
1851 /**
1852  * g_variant_equal:
1853  * @one: a #GVariant instance
1854  * @two: a #GVariant instance
1855  * @returns: %TRUE if @one and @two are equal
1856  *
1857  * Checks if @one and @two have the same type and value.
1858  *
1859  * The types of @one and @two are #gconstpointer only to allow use of
1860  * this function with #GHashTable.  They must each be a #GVariant.
1861  *
1862  * Since: 2.24
1863  **/
1864 gboolean
1865 g_variant_equal (gconstpointer one,
1866                  gconstpointer two)
1867 {
1868   gboolean equal;
1869
1870   g_return_val_if_fail (one != NULL && two != NULL, FALSE);
1871
1872   if (g_variant_get_type_info ((GVariant *) one) !=
1873       g_variant_get_type_info ((GVariant *) two))
1874     return FALSE;
1875
1876   /* if both values are trusted to be in their canonical serialised form
1877    * then a simple memcmp() of their serialised data will answer the
1878    * question.
1879    *
1880    * if not, then this might generate a false negative (since it is
1881    * possible for two different byte sequences to represent the same
1882    * value).  for now we solve this by pretty-printing both values and
1883    * comparing the result.
1884    */
1885   if (g_variant_is_trusted ((GVariant *) one) &&
1886       g_variant_is_trusted ((GVariant *) two))
1887     {
1888       gconstpointer data_one, data_two;
1889       gsize size_one, size_two;
1890
1891       size_one = g_variant_get_size ((GVariant *) one);
1892       size_two = g_variant_get_size ((GVariant *) two);
1893
1894       if (size_one != size_two)
1895         return FALSE;
1896
1897       data_one = g_variant_get_data ((GVariant *) one);
1898       data_two = g_variant_get_data ((GVariant *) two);
1899
1900       equal = memcmp (data_one, data_two, size_one) == 0;
1901     }
1902   else
1903     {
1904       gchar *strone, *strtwo;
1905
1906       strone = g_variant_print ((GVariant *) one, FALSE);
1907       strtwo = g_variant_print ((GVariant *) two, FALSE);
1908       equal = strcmp (strone, strtwo) == 0;
1909       g_free (strone);
1910       g_free (strtwo);
1911     }
1912
1913   return equal;
1914 }
1915
1916 /* GVariantIter {{{1 */
1917 /**
1918  * GVariantIter:
1919  *
1920  * #GVariantIter is an opaque data structure and can only be accessed
1921  * using the following functions.
1922  **/
1923 struct stack_iter
1924 {
1925   GVariant *value;
1926   gssize n, i;
1927
1928   const gchar *loop_format;
1929
1930   gsize padding[3];
1931   gsize magic;
1932 };
1933
1934 G_STATIC_ASSERT (sizeof (struct stack_iter) <= sizeof (GVariantIter));
1935
1936 struct heap_iter
1937 {
1938   struct stack_iter iter;
1939
1940   GVariant *value_ref;
1941   gsize magic;
1942 };
1943
1944 #define GVSI(i)                 ((struct stack_iter *) (i))
1945 #define GVHI(i)                 ((struct heap_iter *) (i))
1946 #define GVSI_MAGIC              ((gsize) 3579507750u)
1947 #define GVHI_MAGIC              ((gsize) 1450270775u)
1948 #define is_valid_iter(i)        (i != NULL && \
1949                                  GVSI(i)->magic == GVSI_MAGIC)
1950 #define is_valid_heap_iter(i)   (GVHI(i)->magic == GVHI_MAGIC && \
1951                                  is_valid_iter(i))
1952
1953 /**
1954  * g_variant_iter_new:
1955  * @value: a container #GVariant
1956  * @returns: a new heap-allocated #GVariantIter
1957  *
1958  * Creates a heap-allocated #GVariantIter for iterating over the items
1959  * in @value.
1960  *
1961  * Use g_variant_iter_free() to free the return value when you no longer
1962  * need it.
1963  *
1964  * A reference is taken to @value and will be released only when
1965  * g_variant_iter_free() is called.
1966  *
1967  * Since: 2.24
1968  **/
1969 GVariantIter *
1970 g_variant_iter_new (GVariant *value)
1971 {
1972   GVariantIter *iter;
1973
1974   iter = (GVariantIter *) g_slice_new (struct heap_iter);
1975   GVHI(iter)->value_ref = g_variant_ref (value);
1976   GVHI(iter)->magic = GVHI_MAGIC;
1977
1978   g_variant_iter_init (iter, value);
1979
1980   return iter;
1981 }
1982
1983 /**
1984  * g_variant_iter_init:
1985  * @iter: a pointer to a #GVariantIter
1986  * @value: a container #GVariant
1987  * @returns: the number of items in @value
1988  *
1989  * Initialises (without allocating) a #GVariantIter.  @iter may be
1990  * completely uninitialised prior to this call; its old value is
1991  * ignored.
1992  *
1993  * The iterator remains valid for as long as @value exists, and need not
1994  * be freed in any way.
1995  *
1996  * Since: 2.24
1997  **/
1998 gsize
1999 g_variant_iter_init (GVariantIter *iter,
2000                      GVariant     *value)
2001 {
2002   GVSI(iter)->magic = GVSI_MAGIC;
2003   GVSI(iter)->value = value;
2004   GVSI(iter)->n = g_variant_n_children (value);
2005   GVSI(iter)->i = -1;
2006   GVSI(iter)->loop_format = NULL;
2007
2008   return GVSI(iter)->n;
2009 }
2010
2011 /**
2012  * g_variant_iter_copy:
2013  * @iter: a #GVariantIter
2014  * @returns: a new heap-allocated #GVariantIter
2015  *
2016  * Creates a new heap-allocated #GVariantIter to iterate over the
2017  * container that was being iterated over by @iter.  Iteration begins on
2018  * the new iterator from the current position of the old iterator but
2019  * the two copies are independent past that point.
2020  *
2021  * Use g_variant_iter_free() to free the return value when you no longer
2022  * need it.
2023  *
2024  * A reference is taken to the container that @iter is iterating over
2025  * and will be releated only when g_variant_iter_free() is called.
2026  *
2027  * Since: 2.24
2028  **/
2029 GVariantIter *
2030 g_variant_iter_copy (GVariantIter *iter)
2031 {
2032   GVariantIter *copy;
2033
2034   g_return_val_if_fail (is_valid_iter (iter), 0);
2035
2036   copy = g_variant_iter_new (GVSI(iter)->value);
2037   GVSI(copy)->i = GVSI(iter)->i;
2038
2039   return copy;
2040 }
2041
2042 /**
2043  * g_variant_iter_n_children:
2044  * @iter: a #GVariantIter
2045  * @returns: the number of children in the container
2046  *
2047  * Queries the number of child items in the container that we are
2048  * iterating over.  This is the total number of items -- not the number
2049  * of items remaining.
2050  *
2051  * This function might be useful for preallocation of arrays.
2052  *
2053  * Since: 2.24
2054  **/
2055 gsize
2056 g_variant_iter_n_children (GVariantIter *iter)
2057 {
2058   g_return_val_if_fail (is_valid_iter (iter), 0);
2059
2060   return GVSI(iter)->n;
2061 }
2062
2063 /**
2064  * g_variant_iter_free:
2065  * @iter: a heap-allocated #GVariantIter
2066  *
2067  * Frees a heap-allocated #GVariantIter.  Only call this function on
2068  * iterators that were returned by g_variant_iter_new() or
2069  * g_variant_iter_copy().
2070  *
2071  * Since: 2.24
2072  **/
2073 void
2074 g_variant_iter_free (GVariantIter *iter)
2075 {
2076   g_return_if_fail (is_valid_heap_iter (iter));
2077
2078   g_variant_unref (GVHI(iter)->value_ref);
2079   GVHI(iter)->magic = 0;
2080
2081   g_slice_free (struct heap_iter, GVHI(iter));
2082 }
2083
2084 /**
2085  * g_variant_iter_next_value:
2086  * @iter: a #GVariantIter
2087  * @returns: a #GVariant, or %NULL
2088  *
2089  * Gets the next item in the container.  If no more items remain then
2090  * %NULL is returned.
2091  *
2092  * Use g_variant_unref() to drop your reference on the return value when
2093  * you no longer need it.
2094  *
2095  * <example>
2096  *  <title>Iterating with g_variant_iter_next_value()</title>
2097  *  <programlisting>
2098  *   /<!-- -->* recursively iterate a container *<!-- -->/
2099  *   void
2100  *   iterate_container_recursive (GVariant *container)
2101  *   {
2102  *     GVariantIter iter;
2103  *     GVariant *child;
2104  *
2105  *     g_variant_iter_init (&iter, dictionary);
2106  *     while ((child = g_variant_iter_next_value (&iter)))
2107  *       {
2108  *         g_print ("type '%s'\n", g_variant_get_type_string (child));
2109  *
2110  *         if (g_variant_is_container (child))
2111  *           iterate_container_recursive (child);
2112  *
2113  *         g_variant_unref (child);
2114  *       }
2115  *   }
2116  * </programlisting>
2117  * </example>
2118  *
2119  * Since: 2.24
2120  **/
2121 GVariant *
2122 g_variant_iter_next_value (GVariantIter *iter)
2123 {
2124   g_return_val_if_fail (is_valid_iter (iter), FALSE);
2125
2126   if G_UNLIKELY (GVSI(iter)->i >= GVSI(iter)->n)
2127     {
2128       g_critical ("g_variant_iter_next_value: must not be called again "
2129                   "after NULL has already been returned.");
2130       return NULL;
2131     }
2132
2133   GVSI(iter)->i++;
2134
2135   if (GVSI(iter)->i < GVSI(iter)->n)
2136     return g_variant_get_child_value (GVSI(iter)->value, GVSI(iter)->i);
2137
2138   return NULL;
2139 }
2140
2141 /* GVariantBuilder {{{1 */
2142 /**
2143  * GVariantBuilder:
2144  *
2145  * A utility type for constructing container-type #GVariant instances.
2146  *
2147  * This is an opaque structure and may only be accessed using the
2148  * following functions.
2149  *
2150  * #GVariantBuilder is not threadsafe in any way.  Do not attempt to
2151  * access it from more than one thread.
2152  **/
2153
2154 struct stack_builder
2155 {
2156   GVariantBuilder *parent;
2157   GVariantType *type;
2158
2159   /* type constraint explicitly specified by 'type'.
2160    * for tuple types, this moves along as we add more items.
2161    */
2162   const GVariantType *expected_type;
2163
2164   /* type constraint implied by previous array item.
2165    */
2166   const GVariantType *prev_item_type;
2167
2168   /* constraints on the number of children.  max = -1 for unlimited. */
2169   gsize min_items;
2170   gsize max_items;
2171
2172   /* dynamically-growing pointer array */
2173   GVariant **children;
2174   gsize allocated_children;
2175   gsize offset;
2176
2177   /* set to '1' if all items in the container will have the same type
2178    * (ie: maybe, array, variant) '0' if not (ie: tuple, dict entry)
2179    */
2180   guint uniform_item_types : 1;
2181
2182   /* set to '1' initially and changed to '0' if an untrusted value is
2183    * added
2184    */
2185   guint trusted : 1;
2186
2187   gsize magic;
2188 };
2189
2190 G_STATIC_ASSERT (sizeof (struct stack_builder) <= sizeof (GVariantBuilder));
2191
2192 struct heap_builder
2193 {
2194   GVariantBuilder builder;
2195   gsize magic;
2196
2197   gint ref_count;
2198 };
2199
2200 #define GVSB(b)                  ((struct stack_builder *) (b))
2201 #define GVHB(b)                  ((struct heap_builder *) (b))
2202 #define GVSB_MAGIC               ((gsize) 1033660112u)
2203 #define GVHB_MAGIC               ((gsize) 3087242682u)
2204 #define is_valid_builder(b)      (b != NULL && \
2205                                   GVSB(b)->magic == GVSB_MAGIC)
2206 #define is_valid_heap_builder(b) (GVHB(b)->magic == GVHB_MAGIC)
2207
2208 /**
2209  * g_variant_builder_new:
2210  * @type: a container type
2211  * @returns: a #GVariantBuilder
2212  *
2213  * Allocates and initialises a new #GVariantBuilder.
2214  *
2215  * You should call g_variant_builder_unref() on the return value when it
2216  * is no longer needed.  The memory will not be automatically freed by
2217  * any other call.
2218  *
2219  * In most cases it is easier to place a #GVariantBuilder directly on
2220  * the stack of the calling function and initialise it with
2221  * g_variant_builder_init().
2222  *
2223  * Since: 2.24
2224  **/
2225 GVariantBuilder *
2226 g_variant_builder_new (const GVariantType *type)
2227 {
2228   GVariantBuilder *builder;
2229
2230   builder = (GVariantBuilder *) g_slice_new (struct heap_builder);
2231   g_variant_builder_init (builder, type);
2232   GVHB(builder)->magic = GVHB_MAGIC;
2233   GVHB(builder)->ref_count = 1;
2234
2235   return builder;
2236 }
2237
2238 /**
2239  * g_variant_builder_unref:
2240  * @builder: a #GVariantBuilder allocated by g_variant_builder_new()
2241  *
2242  * Decreases the reference count on @builder.
2243  *
2244  * In the event that there are no more references, releases all memory
2245  * associated with the #GVariantBuilder.
2246  *
2247  * Don't call this on stack-allocated #GVariantBuilder instances or bad
2248  * things will happen.
2249  *
2250  * Since: 2.24
2251  **/
2252 void
2253 g_variant_builder_unref (GVariantBuilder *builder)
2254 {
2255   g_return_if_fail (is_valid_heap_builder (builder));
2256
2257   if (--GVHB(builder)->ref_count)
2258     return;
2259
2260   g_variant_builder_clear (builder);
2261   GVHB(builder)->magic = 0;
2262
2263   g_slice_free (struct heap_builder, GVHB(builder));
2264 }
2265
2266 /**
2267  * g_variant_builder_ref:
2268  * @builder: a #GVariantBuilder allocated by g_variant_builder_new()
2269  * @returns: a new reference to @builder
2270  *
2271  * Increases the reference count on @builder.
2272  *
2273  * Don't call this on stack-allocated #GVariantBuilder instances or bad
2274  * things will happen.
2275  *
2276  * Since: 2.24
2277  **/
2278 GVariantBuilder *
2279 g_variant_builder_ref (GVariantBuilder *builder)
2280 {
2281   g_return_val_if_fail (is_valid_heap_builder (builder), NULL);
2282
2283   GVHB(builder)->ref_count++;
2284
2285   return builder;
2286 }
2287
2288 /**
2289  * g_variant_builder_clear:
2290  * @builder: a #GVariantBuilder
2291  *
2292  * Releases all memory associated with a #GVariantBuilder without
2293  * freeing the #GVariantBuilder structure itself.
2294  *
2295  * It typically only makes sense to do this on a stack-allocated
2296  * #GVariantBuilder if you want to abort building the value part-way
2297  * through.  This function need not be called if you call
2298  * g_variant_builder_end() and it also doesn't need to be called on
2299  * builders allocated with g_variant_builder_new (see
2300  * g_variant_builder_free() for that).
2301  *
2302  * This function leaves the #GVariantBuilder structure set to all-zeros.
2303  * It is valid to call this function on either an initialised
2304  * #GVariantBuilder or one that is set to all-zeros but it is not valid
2305  * to call this function on uninitialised memory.
2306  *
2307  * Since: 2.24
2308  **/
2309 void
2310 g_variant_builder_clear (GVariantBuilder *builder)
2311 {
2312   gsize i;
2313
2314   if (GVSB(builder)->magic == 0)
2315     /* all-zeros case */
2316     return;
2317
2318   g_return_if_fail (is_valid_builder (builder));
2319
2320   g_variant_type_free (GVSB(builder)->type);
2321
2322   for (i = 0; i < GVSB(builder)->offset; i++)
2323     g_variant_unref (GVSB(builder)->children[i]);
2324
2325   g_free (GVSB(builder)->children);
2326
2327   if (GVSB(builder)->parent)
2328     {
2329       g_variant_builder_clear (GVSB(builder)->parent);
2330       g_slice_free (GVariantBuilder, GVSB(builder)->parent);
2331     }
2332
2333   memset (builder, 0, sizeof (GVariantBuilder));
2334 }
2335
2336 /**
2337  * g_variant_builder_init:
2338  * @builder: a #GVariantBuilder
2339  * @type: a container type
2340  *
2341  * Initialises a #GVariantBuilder structure.
2342  *
2343  * @type must be non-%NULL.  It specifies the type of container to
2344  * construct.  It can be an indefinite type such as
2345  * %G_VARIANT_TYPE_ARRAY or a definite type such as "as" or "(ii)".
2346  * Maybe, array, tuple, dictionary entry and variant-typed values may be
2347  * constructed.
2348  *
2349  * After the builder is initialised, values are added using
2350  * g_variant_builder_add_value() or g_variant_builder_add().
2351  *
2352  * After all the child values are added, g_variant_builder_end() frees
2353  * the memory associated with the builder and returns the #GVariant that
2354  * was created.
2355  *
2356  * This function completely ignores the previous contents of @builder.
2357  * On one hand this means that it is valid to pass in completely
2358  * uninitialised memory.  On the other hand, this means that if you are
2359  * initialising over top of an existing #GVariantBuilder you need to
2360  * first call g_variant_builder_clear() in order to avoid leaking
2361  * memory.
2362  *
2363  * You must not call g_variant_builder_ref() or
2364  * g_variant_builder_unref() on a #GVariantBuilder that was initialised
2365  * with this function.  If you ever pass a reference to a
2366  * #GVariantBuilder outside of the control of your own code then you
2367  * should assume that the person receiving that reference may try to use
2368  * reference counting; you should use g_variant_builder_new() instead of
2369  * this function.
2370  *
2371  * Since: 2.24
2372  **/
2373 void
2374 g_variant_builder_init (GVariantBuilder    *builder,
2375                         const GVariantType *type)
2376 {
2377   g_return_if_fail (type != NULL);
2378   g_return_if_fail (g_variant_type_is_container (type));
2379
2380   memset (builder, 0, sizeof (GVariantBuilder));
2381
2382   GVSB(builder)->type = g_variant_type_copy (type);
2383   GVSB(builder)->magic = GVSB_MAGIC;
2384   GVSB(builder)->trusted = TRUE;
2385
2386   switch (*(const gchar *) type)
2387     {
2388     case G_VARIANT_CLASS_VARIANT:
2389       GVSB(builder)->uniform_item_types = TRUE;
2390       GVSB(builder)->allocated_children = 1;
2391       GVSB(builder)->expected_type = NULL;
2392       GVSB(builder)->min_items = 1;
2393       GVSB(builder)->max_items = 1;
2394       break;
2395
2396     case G_VARIANT_CLASS_ARRAY:
2397       GVSB(builder)->uniform_item_types = TRUE;
2398       GVSB(builder)->allocated_children = 8;
2399       GVSB(builder)->expected_type =
2400         g_variant_type_element (GVSB(builder)->type);
2401       GVSB(builder)->min_items = 0;
2402       GVSB(builder)->max_items = -1;
2403       break;
2404
2405     case G_VARIANT_CLASS_MAYBE:
2406       GVSB(builder)->uniform_item_types = TRUE;
2407       GVSB(builder)->allocated_children = 1;
2408       GVSB(builder)->expected_type =
2409         g_variant_type_element (GVSB(builder)->type);
2410       GVSB(builder)->min_items = 0;
2411       GVSB(builder)->max_items = 1;
2412       break;
2413
2414     case G_VARIANT_CLASS_DICT_ENTRY:
2415       GVSB(builder)->uniform_item_types = FALSE;
2416       GVSB(builder)->allocated_children = 2;
2417       GVSB(builder)->expected_type =
2418         g_variant_type_key (GVSB(builder)->type);
2419       GVSB(builder)->min_items = 2;
2420       GVSB(builder)->max_items = 2;
2421       break;
2422
2423     case 'r': /* G_VARIANT_TYPE_TUPLE was given */
2424       GVSB(builder)->uniform_item_types = FALSE;
2425       GVSB(builder)->allocated_children = 8;
2426       GVSB(builder)->expected_type = NULL;
2427       GVSB(builder)->min_items = 0;
2428       GVSB(builder)->max_items = -1;
2429       break;
2430
2431     case G_VARIANT_CLASS_TUPLE: /* a definite tuple type was given */
2432       GVSB(builder)->allocated_children = g_variant_type_n_items (type);
2433       GVSB(builder)->expected_type =
2434         g_variant_type_first (GVSB(builder)->type);
2435       GVSB(builder)->min_items = GVSB(builder)->allocated_children;
2436       GVSB(builder)->max_items = GVSB(builder)->allocated_children;
2437       GVSB(builder)->uniform_item_types = FALSE;
2438       break;
2439
2440     default:
2441       g_assert_not_reached ();
2442    }
2443
2444   GVSB(builder)->children = g_new (GVariant *,
2445                                    GVSB(builder)->allocated_children);
2446 }
2447
2448 static void
2449 g_variant_builder_make_room (struct stack_builder *builder)
2450 {
2451   if (builder->offset == builder->allocated_children)
2452     {
2453       builder->allocated_children *= 2;
2454       builder->children = g_renew (GVariant *, builder->children,
2455                                    builder->allocated_children);
2456     }
2457 }
2458
2459 /**
2460  * g_variant_builder_add_value:
2461  * @builder: a #GVariantBuilder
2462  * @value: a #GVariant
2463  *
2464  * Adds @value to @builder.
2465  *
2466  * It is an error to call this function in any way that would create an
2467  * inconsistent value to be constructed.  Some examples of this are
2468  * putting different types of items into an array, putting the wrong
2469  * types or number of items in a tuple, putting more than one value into
2470  * a variant, etc.
2471  *
2472  * Since: 2.24
2473  **/
2474 void
2475 g_variant_builder_add_value (GVariantBuilder *builder,
2476                              GVariant        *value)
2477 {
2478   g_return_if_fail (is_valid_builder (builder));
2479   g_return_if_fail (GVSB(builder)->offset < GVSB(builder)->max_items);
2480   g_return_if_fail (!GVSB(builder)->expected_type ||
2481                     g_variant_is_of_type (value,
2482                                           GVSB(builder)->expected_type));
2483   g_return_if_fail (!GVSB(builder)->prev_item_type ||
2484                     g_variant_is_of_type (value,
2485                                           GVSB(builder)->prev_item_type));
2486
2487   GVSB(builder)->trusted &= g_variant_is_trusted (value);
2488
2489   if (!GVSB(builder)->uniform_item_types)
2490     {
2491       /* advance our expected type pointers */
2492       if (GVSB(builder)->expected_type)
2493         GVSB(builder)->expected_type =
2494           g_variant_type_next (GVSB(builder)->expected_type);
2495
2496       if (GVSB(builder)->prev_item_type)
2497         GVSB(builder)->prev_item_type =
2498           g_variant_type_next (GVSB(builder)->prev_item_type);
2499     }
2500   else
2501     GVSB(builder)->prev_item_type = g_variant_get_type (value);
2502
2503   g_variant_builder_make_room (GVSB(builder));
2504
2505   GVSB(builder)->children[GVSB(builder)->offset++] =
2506     g_variant_ref_sink (value);
2507 }
2508
2509 /**
2510  * g_variant_builder_open:
2511  * @builder: a #GVariantBuilder
2512  * @type: a #GVariantType
2513  *
2514  * Opens a subcontainer inside the given @builder.  When done adding
2515  * items to the subcontainer, g_variant_builder_close() must be called.
2516  *
2517  * It is an error to call this function in any way that would cause an
2518  * inconsistent value to be constructed (ie: adding too many values or
2519  * a value of an incorrect type).
2520  *
2521  * Since: 2.24
2522  **/
2523 void
2524 g_variant_builder_open (GVariantBuilder    *builder,
2525                         const GVariantType *type)
2526 {
2527   GVariantBuilder *parent;
2528
2529   g_return_if_fail (is_valid_builder (builder));
2530   g_return_if_fail (GVSB(builder)->offset < GVSB(builder)->max_items);
2531   g_return_if_fail (!GVSB(builder)->expected_type ||
2532                     g_variant_type_is_subtype_of (type,
2533                                                   GVSB(builder)->expected_type));
2534   g_return_if_fail (!GVSB(builder)->prev_item_type ||
2535                     g_variant_type_is_subtype_of (GVSB(builder)->prev_item_type,
2536                                                   type));
2537
2538   parent = g_slice_dup (GVariantBuilder, builder);
2539   g_variant_builder_init (builder, type);
2540   GVSB(builder)->parent = parent;
2541
2542   /* push the prev_item_type down into the subcontainer */
2543   if (GVSB(parent)->prev_item_type)
2544     {
2545       if (!GVSB(builder)->uniform_item_types)
2546         /* tuples and dict entries */
2547         GVSB(builder)->prev_item_type =
2548           g_variant_type_first (GVSB(parent)->prev_item_type);
2549
2550       else if (!g_variant_type_is_variant (GVSB(builder)->type))
2551         /* maybes and arrays */
2552         GVSB(builder)->prev_item_type =
2553           g_variant_type_element (GVSB(parent)->prev_item_type);
2554     }
2555 }
2556
2557 /**
2558  * g_variant_builder_close:
2559  * @builder: a #GVariantBuilder
2560  *
2561  * Closes the subcontainer inside the given @builder that was opened by
2562  * the most recent call to g_variant_builder_open().
2563  *
2564  * It is an error to call this function in any way that would create an
2565  * inconsistent value to be constructed (ie: too few values added to the
2566  * subcontainer).
2567  *
2568  * Since: 2.24
2569  **/
2570 void
2571 g_variant_builder_close (GVariantBuilder *builder)
2572 {
2573   GVariantBuilder *parent;
2574
2575   g_return_if_fail (is_valid_builder (builder));
2576   g_return_if_fail (GVSB(builder)->parent != NULL);
2577
2578   parent = GVSB(builder)->parent;
2579   GVSB(builder)->parent = NULL;
2580
2581   g_variant_builder_add_value (parent, g_variant_builder_end (builder));
2582   *builder = *parent;
2583
2584   g_slice_free (GVariantBuilder, parent);
2585 }
2586
2587 /*< private >
2588  * g_variant_make_maybe_type:
2589  * @element: a #GVariant
2590  *
2591  * Return the type of a maybe containing @element.
2592  */
2593 static GVariantType *
2594 g_variant_make_maybe_type (GVariant *element)
2595 {
2596   return g_variant_type_new_maybe (g_variant_get_type (element));
2597 }
2598
2599 /*< private >
2600  * g_variant_make_array_type:
2601  * @element: a #GVariant
2602  *
2603  * Return the type of an array containing @element.
2604  */
2605 static GVariantType *
2606 g_variant_make_array_type (GVariant *element)
2607 {
2608   return g_variant_type_new_array (g_variant_get_type (element));
2609 }
2610
2611 /**
2612  * g_variant_builder_end:
2613  * @builder: a #GVariantBuilder
2614  * @returns: a new, floating, #GVariant
2615  *
2616  * Ends the builder process and returns the constructed value.
2617  *
2618  * This call automatically reduces the reference count on @builder by
2619  * one, unless it has previously had g_variant_builder_no_autofree()
2620  * called on it.  Unless you've taken other actions, this is usually
2621  * sufficient to free @builder.
2622  *
2623  * Even if additional references are held, it is not permissible to use
2624  * @builder in any way after this call except for further reference
2625  * counting operations.
2626  *
2627  * It is an error to call this function in any way that would create an
2628  * inconsistent value to be constructed (ie: insufficient number of
2629  * items added to a container with a specific number of children
2630  * required).  It is also an error to call this function if the builder
2631  * was created with an indefinite array or maybe type and no children
2632  * have been added; in this case it is impossible to infer the type of
2633  * the empty array.
2634  *
2635  * Since: 2.24
2636  **/
2637 GVariant *
2638 g_variant_builder_end (GVariantBuilder *builder)
2639 {
2640   GVariantType *my_type;
2641   GVariant *value;
2642
2643   g_return_val_if_fail (is_valid_builder (builder), NULL);
2644   g_return_val_if_fail (GVSB(builder)->offset >= GVSB(builder)->min_items,
2645                         NULL);
2646   g_return_val_if_fail (!GVSB(builder)->uniform_item_types ||
2647                         GVSB(builder)->prev_item_type != NULL ||
2648                         g_variant_type_is_definite (GVSB(builder)->type),
2649                         NULL);
2650
2651   if (g_variant_type_is_definite (GVSB(builder)->type))
2652     my_type = g_variant_type_copy (GVSB(builder)->type);
2653
2654   else if (g_variant_type_is_maybe (GVSB(builder)->type))
2655     my_type = g_variant_make_maybe_type (GVSB(builder)->children[0]);
2656
2657   else if (g_variant_type_is_array (GVSB(builder)->type))
2658     my_type = g_variant_make_array_type (GVSB(builder)->children[0]);
2659
2660   else if (g_variant_type_is_tuple (GVSB(builder)->type))
2661     my_type = g_variant_make_tuple_type (GVSB(builder)->children,
2662                                          GVSB(builder)->offset);
2663
2664   else if (g_variant_type_is_dict_entry (GVSB(builder)->type))
2665     my_type = g_variant_make_dict_entry_type (GVSB(builder)->children[0],
2666                                               GVSB(builder)->children[1]);
2667   else
2668     g_assert_not_reached ();
2669
2670   value = g_variant_new_from_children (my_type,
2671                                        g_renew (GVariant *,
2672                                                 GVSB(builder)->children,
2673                                                 GVSB(builder)->offset),
2674                                        GVSB(builder)->offset,
2675                                        GVSB(builder)->trusted);
2676   GVSB(builder)->children = NULL;
2677   GVSB(builder)->offset = 0;
2678
2679   g_variant_builder_clear (builder);
2680   g_variant_type_free (my_type);
2681
2682   return value;
2683 }
2684
2685 /* Format strings {{{1 */
2686 /*< private >
2687  * g_variant_format_string_scan:
2688  * @string: a string that may be prefixed with a format string
2689  * @limit: a pointer to the end of @string, or %NULL
2690  * @endptr: location to store the end pointer, or %NULL
2691  * @returns: %TRUE if there was a valid format string
2692  *
2693  * Checks the string pointed to by @string for starting with a properly
2694  * formed #GVariant varargs format string.  If no valid format string is
2695  * found then %FALSE is returned.
2696  *
2697  * If @string does start with a valid format string then %TRUE is
2698  * returned.  If @endptr is non-%NULL then it is updated to point to the
2699  * first character after the format string.
2700  *
2701  * If @limit is non-%NULL then @limit (and any charater after it) will
2702  * not be accessed and the effect is otherwise equivalent to if the
2703  * character at @limit were nul.
2704  *
2705  * See the section on <link linkend='gvariant-format-strings'>GVariant
2706  * Format Strings</link>.
2707  *
2708  * Since: 2.24
2709  */
2710 gboolean
2711 g_variant_format_string_scan (const gchar  *string,
2712                               const gchar  *limit,
2713                               const gchar **endptr)
2714 {
2715 #define next_char() (string == limit ? '\0' : *string++)
2716 #define peek_char() (string == limit ? '\0' : *string)
2717   char c;
2718
2719   switch (next_char())
2720     {
2721     case 'b': case 'y': case 'n': case 'q': case 'i': case 'u':
2722     case 'x': case 't': case 'h': case 'd': case 's': case 'o':
2723     case 'g': case 'v': case '*': case '?': case 'r':
2724       break;
2725
2726     case 'm':
2727       return g_variant_format_string_scan (string, limit, endptr);
2728
2729     case 'a':
2730     case '@':
2731       return g_variant_type_string_scan (string, limit, endptr);
2732
2733     case '(':
2734       while (peek_char() != ')')
2735         if (!g_variant_format_string_scan (string, limit, &string))
2736           return FALSE;
2737
2738       next_char(); /* consume ')' */
2739       break;
2740
2741     case '{':
2742       c = next_char();
2743
2744       if (c == '@')
2745         c = next_char ();
2746
2747       /* ISO/IEC 9899:1999 (C99) §7.21.5.2:
2748        *    The terminating null character is considered to be
2749        *    part of the string.
2750        */
2751       if (c != '\0' && strchr ("bynqiuxthdsog?", c) == NULL)
2752         return FALSE;
2753
2754       if (!g_variant_format_string_scan (string, limit, &string))
2755         return FALSE;
2756
2757       if (next_char() != '}')
2758         return FALSE;
2759
2760       break;
2761
2762     case '^': /* '^as' or '^a&s' only */
2763       if (next_char() != 'a')
2764         return FALSE;
2765
2766       if (peek_char() == '&')
2767         next_char ();
2768
2769       c = next_char ();
2770
2771       if (c != 's' && c != 'o' && c != 'g')
2772         return FALSE;
2773
2774       break;
2775
2776     case '&':
2777       c = next_char();
2778
2779       if (c != 's' && c != 'o' && c != 'g')
2780         return FALSE;
2781
2782       break;
2783
2784     default:
2785       return FALSE;
2786     }
2787
2788   if (endptr != NULL)
2789     *endptr = string;
2790
2791 #undef next_char
2792 #undef peek_char
2793
2794   return TRUE;
2795 }
2796
2797 /*< private >
2798  * g_variant_format_string_scan_type:
2799  * @string: a string that may be prefixed with a format string
2800  * @limit: a pointer to the end of @string
2801  * @endptr: location to store the end pointer, or %NULL
2802  * @returns: a #GVariantType if there was a valid format string
2803  *
2804  * If @string starts with a valid format string then this function will
2805  * return the type that the format string corresponds to.  Otherwise
2806  * this function returns %NULL.
2807  *
2808  * Use g_variant_type_free() to free the return value when you no longer
2809  * need it.
2810  *
2811  * This function is otherwise exactly like
2812  * g_variant_format_string_scan().
2813  *
2814  * Since: 2.24
2815  */
2816 GVariantType *
2817 g_variant_format_string_scan_type (const gchar  *string,
2818                                    const gchar  *limit,
2819                                    const gchar **endptr)
2820 {
2821   const gchar *my_end;
2822   gchar *dest;
2823   gchar *new;
2824
2825   if (endptr == NULL)
2826     endptr = &my_end;
2827
2828   if (!g_variant_format_string_scan (string, limit, endptr))
2829     return NULL;
2830
2831   dest = new = g_malloc (*endptr - string + 1);
2832   while (string != *endptr)
2833     {
2834       if (*string != '@' && *string != '&' && *string != '^')
2835         *dest++ = *string;
2836       string++;
2837     }
2838   *dest = '\0';
2839
2840   return (GVariantType *) G_VARIANT_TYPE (new);
2841 }
2842
2843 static gboolean
2844 valid_format_string (const gchar *format_string,
2845                      gboolean     single,
2846                      GVariant    *value)
2847 {
2848   const gchar *endptr;
2849   GVariantType *type;
2850
2851   type = g_variant_format_string_scan_type (format_string, NULL, &endptr);
2852
2853   if G_UNLIKELY (type == NULL || (single && *endptr != '\0'))
2854     {
2855       if (single)
2856         g_critical ("`%s' is not a valid GVariant format string",
2857                     format_string);
2858       else
2859         g_critical ("`%s' does not have a valid GVariant format "
2860                     "string as a prefix", format_string);
2861
2862       if (type != NULL)
2863         g_variant_type_free (type);
2864
2865       return FALSE;
2866     }
2867
2868   if G_UNLIKELY (value && !g_variant_is_of_type (value, type))
2869     {
2870       gchar *fragment;
2871       gchar *typestr;
2872
2873       fragment = g_strndup (format_string, endptr - format_string);
2874       typestr = g_variant_type_dup_string (type);
2875
2876       g_critical ("the GVariant format string `%s' has a type of "
2877                   "`%s' but the given value has a type of `%s'",
2878                   fragment, typestr, g_variant_get_type_string (value));
2879
2880       g_variant_type_free (type);
2881
2882       return FALSE;
2883     }
2884
2885   g_variant_type_free (type);
2886
2887   return TRUE;
2888 }
2889
2890 /* Variable Arguments {{{1 */
2891 /* We consider 2 main classes of format strings:
2892  *
2893  *   - recursive format strings
2894  *      these are ones that result in recursion and the collection of
2895  *      possibly more than one argument.  Maybe types, tuples,
2896  *      dictionary entries.
2897  *
2898  *   - leaf format string
2899  *      these result in the collection of a single argument.
2900  *
2901  * Leaf format strings are further subdivided into two categories:
2902  *
2903  *   - single non-null pointer ("nnp")
2904  *      these either collect or return a single non-null pointer.
2905  *
2906  *   - other
2907  *      these collect or return something else (bool, number, etc).
2908  *
2909  * Based on the above, the varargs handling code is split into 4 main parts:
2910  *
2911  *   - nnp handling code
2912  *   - leaf handling code (which may invoke nnp code)
2913  *   - generic handling code (may be recursive, may invoke leaf code)
2914  *   - user-facing API (which invokes the generic code)
2915  *
2916  * Each section implements some of the following functions:
2917  *
2918  *   - skip:
2919  *      collect the arguments for the format string as if
2920  *      g_variant_new() had been called, but do nothing with them.  used
2921  *      for skipping over arguments when constructing a Nothing maybe
2922  *      type.
2923  *
2924  *   - new:
2925  *      create a GVariant *
2926  *
2927  *   - get:
2928  *      unpack a GVariant *
2929  *
2930  *   - free (nnp only):
2931  *      free a previously allocated item
2932  */
2933
2934 static gboolean
2935 g_variant_format_string_is_leaf (const gchar *str)
2936 {
2937   return str[0] != 'm' && str[0] != '(' && str[0] != '{';
2938 }
2939
2940 static gboolean
2941 g_variant_format_string_is_nnp (const gchar *str)
2942 {
2943   return str[0] == 'a' || str[0] == 's' || str[0] == 'o' || str[0] == 'g' ||
2944          str[0] == '^' || str[0] == '@' || str[0] == '*' || str[0] == '?' ||
2945          str[0] == 'r' || str[0] == 'v' || str[0] == '&';
2946 }
2947
2948 /* Single non-null pointer ("nnp") {{{2 */
2949 static void
2950 g_variant_valist_free_nnp (const gchar *str,
2951                            gpointer     ptr)
2952 {
2953   switch (*str)
2954     {
2955     case 'a':
2956       g_variant_iter_free (ptr);
2957       break;
2958
2959     case '^':
2960       if (str[2] != '&')        /* '^as' */
2961         g_strfreev (ptr);
2962       else                      /* '^a&s' */
2963         g_free (ptr);
2964       break;
2965
2966     case 's':
2967     case 'o':
2968     case 'g':
2969       g_free (ptr);
2970       break;
2971
2972     case '@':
2973     case '*':
2974     case '?':
2975     case 'v':
2976       g_variant_unref (ptr);
2977       break;
2978
2979     case '&':
2980       break;
2981
2982     default:
2983       g_assert_not_reached ();
2984     }
2985 }
2986
2987 static GVariant *
2988 g_variant_valist_new_nnp (const gchar **str,
2989                           gpointer      ptr)
2990 {
2991   if (**str == '&')
2992     (*str)++;
2993
2994   switch (*(*str)++)
2995     {
2996     case 'a':
2997       {
2998         const GVariantType *type;
2999         GVariant *value;
3000
3001         value = g_variant_builder_end (ptr);
3002         type = g_variant_get_type (value);
3003
3004         if G_UNLIKELY (!g_variant_type_is_array (type))
3005           g_error ("g_variant_new: expected array GVariantBuilder but "
3006                    "the built value has type `%s'",
3007                    g_variant_get_type_string (value));
3008
3009         type = g_variant_type_element (type);
3010
3011         if G_UNLIKELY (!g_variant_type_is_subtype_of (type, (GVariantType *) *str))
3012           g_error ("g_variant_new: expected GVariantBuilder array element "
3013                    "type `%s' but the built value has element type `%s'",
3014                    g_variant_type_dup_string ((GVariantType *) *str),
3015                    g_variant_get_type_string (value) + 1);
3016
3017         g_variant_type_string_scan (*str, NULL, str);
3018
3019         return value;
3020       }
3021
3022     case 's':
3023       return g_variant_new_string (ptr);
3024
3025     case 'o':
3026       return g_variant_new_object_path (ptr);
3027
3028     case 'g':
3029       return g_variant_new_signature (ptr);
3030
3031     case '^':
3032       {
3033         const GVariantType *type;
3034         GVariantType *array_type;
3035         GVariant **children;
3036         gchar **strv = ptr;
3037         GVariant *value;
3038         guint length, i;
3039
3040         if ((*str)[1] == '&')    /* '^a&s' */
3041           (*str) += 2;
3042         else                     /* '^as' */
3043           (*str)++;
3044
3045         type = (GVariantType *) (*str)++;
3046         array_type = g_variant_type_new_array (type);
3047         length = g_strv_length (strv);
3048         children = g_new (GVariant *, length);
3049         for (i = 0; i < length; i++)
3050           children[i] = g_variant_ref_sink (
3051             g_variant_new_from_trusted (type, strv[i], strlen (strv[i]) + 1));
3052
3053         value = g_variant_new_from_children (array_type, children,
3054                                              length, TRUE);
3055         g_variant_type_free (array_type);
3056
3057         return value;
3058       }
3059
3060     case '@':
3061       if G_UNLIKELY (!g_variant_is_of_type (ptr, (GVariantType *) *str))
3062         g_error ("g_variant_new: expected GVariant of type `%s' but "
3063                  "received value has type `%s'",
3064                  g_variant_type_dup_string ((GVariantType *) *str),
3065                  g_variant_get_type_string (ptr));
3066
3067       g_variant_type_string_scan (*str, NULL, str);
3068
3069       return ptr;
3070
3071     case '*':
3072       return ptr;
3073
3074     case '?':
3075       if G_UNLIKELY (!g_variant_type_is_basic (g_variant_get_type (ptr)))
3076         g_error ("g_variant_new: format string `?' expects basic-typed "
3077                  "GVariant, but received value has type `%s'",
3078                  g_variant_get_type_string (ptr));
3079
3080       return ptr;
3081
3082     case 'r':
3083       if G_UNLIKELY (!g_variant_type_is_tuple (g_variant_get_type (ptr)))
3084         g_error ("g_variant_new: format string `r` expects tuple-typed "
3085                  "GVariant, but received value has type `%s'",
3086                  g_variant_get_type_string (ptr));
3087
3088       return ptr;
3089
3090     case 'v':
3091       return g_variant_new_variant (ptr);
3092
3093     default:
3094       g_assert_not_reached ();
3095     }
3096 }
3097
3098 static gpointer
3099 g_variant_valist_get_nnp (const gchar **str,
3100                           GVariant     *value)
3101 {
3102   switch (*(*str)++)
3103     {
3104     case 'a':
3105       g_variant_type_string_scan (*str, NULL, str);
3106       return g_variant_iter_new (value);
3107
3108     case '&':
3109       (*str)++;
3110       return (gchar *) g_variant_get_string (value, NULL);
3111
3112     case 's':
3113     case 'o':
3114     case 'g':
3115       return g_variant_dup_string (value, NULL);
3116
3117     case '^':
3118       if ((*str)[1] == '&')    /* '^a&s' */
3119         {
3120           (*str) += 3;
3121           return g_variant_get_strv (value, NULL);
3122         }
3123       else                    /* '^as' */
3124         {
3125           (*str) += 2;
3126           return g_variant_dup_strv (value, NULL);
3127         }
3128
3129     case '@':
3130       g_variant_type_string_scan (*str, NULL, str);
3131       /* fall through */
3132
3133     case '*':
3134     case '?':
3135     case 'r':
3136       return g_variant_ref (value);
3137
3138     case 'v':
3139       return g_variant_get_variant (value);
3140
3141     default:
3142       g_assert_not_reached ();
3143     }
3144 }
3145
3146 /* Leaves {{{2 */
3147 static void
3148 g_variant_valist_skip_leaf (const gchar **str,
3149                             va_list      *app)
3150 {
3151   if (g_variant_format_string_is_nnp (*str))
3152     {
3153       g_variant_format_string_scan (*str, NULL, str);
3154       va_arg (*app, gpointer);
3155       return;
3156     }
3157
3158   switch (*(*str)++)
3159     {
3160     case 'b':
3161     case 'y':
3162     case 'n':
3163     case 'q':
3164     case 'i':
3165     case 'u':
3166     case 'h':
3167       va_arg (*app, int);
3168       return;
3169
3170     case 'x':
3171     case 't':
3172       va_arg (*app, guint64);
3173       return;
3174
3175     case 'd':
3176       va_arg (*app, gdouble);
3177       return;
3178
3179     default:
3180       g_assert_not_reached ();
3181     }
3182 }
3183
3184 static GVariant *
3185 g_variant_valist_new_leaf (const gchar **str,
3186                            va_list      *app)
3187 {
3188   if (g_variant_format_string_is_nnp (*str))
3189     return g_variant_valist_new_nnp (str, va_arg (*app, gpointer));
3190
3191   switch (*(*str)++)
3192     {
3193     case 'b':
3194       return g_variant_new_boolean (va_arg (*app, gboolean));
3195
3196     case 'y':
3197       return g_variant_new_byte (va_arg (*app, guint));
3198
3199     case 'n':
3200       return g_variant_new_int16 (va_arg (*app, gint));
3201
3202     case 'q':
3203       return g_variant_new_uint16 (va_arg (*app, guint));
3204
3205     case 'i':
3206       return g_variant_new_int32 (va_arg (*app, gint));
3207
3208     case 'u':
3209       return g_variant_new_uint32 (va_arg (*app, guint));
3210
3211     case 'x':
3212       return g_variant_new_int64 (va_arg (*app, gint64));
3213
3214     case 't':
3215       return g_variant_new_uint64 (va_arg (*app, guint64));
3216
3217     case 'h':
3218       return g_variant_new_handle (va_arg (*app, gint));
3219
3220     case 'd':
3221       return g_variant_new_double (va_arg (*app, gdouble));
3222
3223     default:
3224       g_assert_not_reached ();
3225     }
3226 }
3227
3228 /* The code below assumes this */
3229 G_STATIC_ASSERT (sizeof (gboolean) == sizeof (guint32));
3230 G_STATIC_ASSERT (sizeof (gdouble) == sizeof (guint64));
3231
3232 static void
3233 g_variant_valist_get_leaf (const gchar **str,
3234                            GVariant     *value,
3235                            gboolean      free,
3236                            va_list      *app)
3237 {
3238   gpointer ptr = va_arg (*app, gpointer);
3239
3240   if (ptr == NULL)
3241     {
3242       g_variant_format_string_scan (*str, NULL, str);
3243       return;
3244     }
3245
3246   if (g_variant_format_string_is_nnp (*str))
3247     {
3248       gpointer *nnp = (gpointer *) ptr;
3249
3250       if (free && *nnp != NULL)
3251         g_variant_valist_free_nnp (*str, *nnp);
3252
3253       *nnp = NULL;
3254
3255       if (value != NULL)
3256         *nnp = g_variant_valist_get_nnp (str, value);
3257       else
3258         g_variant_format_string_scan (*str, NULL, str);
3259
3260       return;
3261     }
3262
3263   if (value != NULL)
3264     {
3265       switch (*(*str)++)
3266         {
3267         case 'b':
3268           *(gboolean *) ptr = g_variant_get_boolean (value);
3269           return;
3270
3271         case 'y':
3272           *(guchar *) ptr = g_variant_get_byte (value);
3273           return;
3274
3275         case 'n':
3276           *(gint16 *) ptr = g_variant_get_int16 (value);
3277           return;
3278
3279         case 'q':
3280           *(guint16 *) ptr = g_variant_get_uint16 (value);
3281           return;
3282
3283         case 'i':
3284           *(gint32 *) ptr = g_variant_get_int32 (value);
3285           return;
3286
3287         case 'u':
3288           *(guint32 *) ptr = g_variant_get_uint32 (value);
3289           return;
3290
3291         case 'x':
3292           *(gint64 *) ptr = g_variant_get_int64 (value);
3293           return;
3294
3295         case 't':
3296           *(guint64 *) ptr = g_variant_get_uint64 (value);
3297           return;
3298
3299         case 'h':
3300           *(gint32 *) ptr = g_variant_get_handle (value);
3301           return;
3302
3303         case 'd':
3304           *(gdouble *) ptr = g_variant_get_double (value);
3305           return;
3306         }
3307     }
3308   else
3309     {
3310       switch (*(*str)++)
3311         {
3312         case 'y':
3313           *(guchar *) ptr = 0;
3314           return;
3315
3316         case 'n':
3317         case 'q':
3318           *(guint16 *) ptr = 0;
3319           return;
3320
3321         case 'i':
3322         case 'u':
3323         case 'h':
3324         case 'b':
3325           *(guint32 *) ptr = 0;
3326           return;
3327
3328         case 'x':
3329         case 't':
3330         case 'd':
3331           *(guint64 *) ptr = 0;
3332           return;
3333         }
3334     }
3335
3336   g_assert_not_reached ();
3337 }
3338
3339 /* Generic (recursive) {{{2 */
3340 static void
3341 g_variant_valist_skip (const gchar **str,
3342                        va_list      *app)
3343 {
3344   if (g_variant_format_string_is_leaf (*str))
3345     g_variant_valist_skip_leaf (str, app);
3346
3347   else if (**str == 'm') /* maybe */
3348     {
3349       (*str)++;
3350
3351       if (!g_variant_format_string_is_nnp (*str))
3352         va_arg (*app, gboolean);
3353
3354       g_variant_valist_skip (str, app);
3355     }
3356   else /* tuple, dictionary entry */
3357     {
3358       g_assert (**str == '(' || **str == '{');
3359       (*str)++;
3360       while (**str != ')' && **str != '}')
3361         g_variant_valist_skip (str, app);
3362       (*str)++;
3363     }
3364 }
3365
3366 static GVariant *
3367 g_variant_valist_new (const gchar **str,
3368                       va_list      *app)
3369 {
3370   if (g_variant_format_string_is_leaf (*str))
3371     return g_variant_valist_new_leaf (str, app);
3372
3373   if (**str == 'm') /* maybe */
3374     {
3375       GVariantType *type = NULL;
3376       GVariant *value = NULL;
3377
3378       (*str)++;
3379
3380       if (g_variant_format_string_is_nnp (*str))
3381         {
3382           gpointer nnp = va_arg (*app, gpointer);
3383
3384           if (nnp != NULL)
3385             value = g_variant_valist_new_nnp (str, nnp);
3386           else
3387             type = g_variant_format_string_scan_type (*str, NULL, str);
3388         }
3389       else
3390         {
3391           gboolean just = va_arg (*app, gboolean);
3392
3393           if (just)
3394             value = g_variant_valist_new (str, app);
3395           else
3396             {
3397               type = g_variant_format_string_scan_type (*str, NULL, NULL);
3398               g_variant_valist_skip (str, app);
3399             }
3400         }
3401
3402       value = g_variant_new_maybe (type, value);
3403
3404       if (type != NULL)
3405         g_variant_type_free (type);
3406
3407       return value;
3408     }
3409   else /* tuple, dictionary entry */
3410     {
3411       GVariantBuilder b;
3412
3413       if (**str == '(')
3414         g_variant_builder_init (&b, G_VARIANT_TYPE_TUPLE);
3415       else
3416         {
3417           g_assert (**str == '{');
3418           g_variant_builder_init (&b, G_VARIANT_TYPE_DICT_ENTRY);
3419         }
3420
3421       (*str)++; /* '(' */
3422       while (**str != ')' && **str != '}')
3423         g_variant_builder_add_value (&b, g_variant_valist_new (str, app));
3424       (*str)++; /* ')' */
3425
3426       return g_variant_builder_end (&b);
3427     }
3428 }
3429
3430 static void
3431 g_variant_valist_get (const gchar **str,
3432                       GVariant     *value,
3433                       gboolean      free,
3434                       va_list      *app)
3435 {
3436   if (g_variant_format_string_is_leaf (*str))
3437     g_variant_valist_get_leaf (str, value, free, app);
3438
3439   else if (**str == 'm')
3440     {
3441       (*str)++;
3442
3443       if (value != NULL)
3444         value = g_variant_get_maybe (value);
3445
3446       if (!g_variant_format_string_is_nnp (*str))
3447         {
3448           gboolean *ptr = va_arg (*app, gboolean *);
3449
3450           if (ptr != NULL)
3451             *ptr = value != NULL;
3452         }
3453
3454       g_variant_valist_get (str, value, free, app);
3455
3456       if (value != NULL)
3457         g_variant_unref (value);
3458     }
3459
3460   else /* tuple, dictionary entry */
3461     {
3462       GVariantIter iter;
3463
3464       g_assert (**str == '(' || **str == '{');
3465       g_variant_iter_init (&iter, value);
3466
3467       (*str)++;
3468       while (**str != ')' && **str != '}')
3469         {
3470           value = g_variant_iter_next_value (&iter);
3471           g_variant_valist_get (str, value, free, app);
3472           g_variant_unref (value);
3473         }
3474       (*str)++;
3475     }
3476 }
3477
3478 /* User-facing API {{{2 */
3479 /**
3480  * g_variant_new:
3481  * @format_string: a #GVariant format string
3482  * @...: arguments, as per @format_string
3483  * @returns: a new floating #GVariant instance
3484  *
3485  * Creates a new #GVariant instance.
3486  *
3487  * Think of this function as an analogue to g_strdup_printf().
3488  *
3489  * The type of the created instance and the arguments that are
3490  * expected by this function are determined by @format_string.  See the
3491  * section on <link linkend='gvariant-format-strings'>GVariant Format
3492  * Strings</link>.  Please note that the syntax of the format string is
3493  * very likely to be extended in the future.
3494  *
3495  * The first character of the format string must not be '*' '?' '@' or
3496  * 'r'; in essence, a new #GVariant must always be constructed by this
3497  * function (and not merely passed through it unmodified).
3498  *
3499  * Since: 2.24
3500  **/
3501 GVariant *
3502 g_variant_new (const gchar *format_string,
3503                ...)
3504 {
3505   GVariant *value;
3506   va_list ap;
3507
3508   g_return_val_if_fail (valid_format_string (format_string, TRUE, NULL) &&
3509                         format_string[0] != '?' && format_string[0] != '@' &&
3510                         format_string[0] != '*' && format_string[0] != 'r',
3511                         NULL);
3512
3513   va_start (ap, format_string);
3514   value = g_variant_new_va (format_string, NULL, &ap);
3515   va_end (ap);
3516
3517   return value;
3518 }
3519
3520 /**
3521  * g_variant_new_va:
3522  * @format_string: a string that is prefixed with a format string
3523  * @endptr: location to store the end pointer, or %NULL
3524  * @app: a pointer to a #va_list
3525  * @returns: a new, usually floating, #GVariant
3526  *
3527  * This function is intended to be used by libraries based on
3528  * #GVariant that want to provide g_variant_new()-like functionality
3529  * to their users.
3530  *
3531  * The API is more general than g_variant_new() to allow a wider range
3532  * of possible uses.
3533  *
3534  * @format_string must still point to a valid format string, but it only
3535  * needs to be nul-terminated if @endptr is %NULL.  If @endptr is
3536  * non-%NULL then it is updated to point to the first character past the
3537  * end of the format string.
3538  *
3539  * @app is a pointer to a #va_list.  The arguments, according to
3540  * @format_string, are collected from this #va_list and the list is left
3541  * pointing to the argument following the last.
3542  *
3543  * These two generalisations allow mixing of multiple calls to
3544  * g_variant_new_va() and g_variant_get_va() within a single actual
3545  * varargs call by the user.
3546  *
3547  * The return value will be floating if it was a newly created GVariant
3548  * instance (for example, if the format string was "(ii)").  In the case
3549  * that the format_string was '*', '?', 'r', or a format starting with
3550  * '@' then the collected #GVariant pointer will be returned unmodified,
3551  * without adding any additional references.
3552  *
3553  * In order to behave correctly in all cases it is necessary for the
3554  * calling function to g_variant_ref_sink() the return result before
3555  * returning control to the user that originally provided the pointer.
3556  * At this point, the caller will have their own full reference to the
3557  * result.  This can also be done by adding the result to a container,
3558  * or by passing it to another g_variant_new() call.
3559  *
3560  * Since: 2.24
3561  **/
3562 GVariant *
3563 g_variant_new_va (const gchar  *format_string,
3564                   const gchar **endptr,
3565                   va_list      *app)
3566 {
3567   GVariant *value;
3568
3569   g_return_val_if_fail (valid_format_string (format_string, !endptr, NULL),
3570                         NULL);
3571   g_return_val_if_fail (app != NULL, NULL);
3572
3573   value = g_variant_valist_new (&format_string, app);
3574
3575   if (endptr != NULL)
3576     *endptr = format_string;
3577
3578   return value;
3579 }
3580
3581 /**
3582  * g_variant_get:
3583  * @value: a #GVariant instance
3584  * @format_string: a #GVariant format string
3585  * @...: arguments, as per @format_string
3586  *
3587  * Deconstructs a #GVariant instance.
3588  *
3589  * Think of this function as an analogue to scanf().
3590  *
3591  * The arguments that are expected by this function are entirely
3592  * determined by @format_string.  @format_string also restricts the
3593  * permissible types of @value.  It is an error to give a value with
3594  * an incompatible type.  See the section on <link
3595  * linkend='gvariant-format-strings'>GVariant Format Strings</link>.
3596  * Please note that the syntax of the format string is very likely to be
3597  * extended in the future.
3598  *
3599  * Since: 2.24
3600  **/
3601 void
3602 g_variant_get (GVariant    *value,
3603                const gchar *format_string,
3604                ...)
3605 {
3606   va_list ap;
3607
3608   g_return_if_fail (valid_format_string (format_string, TRUE, value));
3609
3610   /* if any direct-pointer-access formats are in use, flatten first */
3611   if (strchr (format_string, '&'))
3612     g_variant_get_data (value);
3613
3614   va_start (ap, format_string);
3615   g_variant_get_va (value, format_string, NULL, &ap);
3616   va_end (ap);
3617 }
3618
3619 /**
3620  * g_variant_get_va:
3621  * @value: a #GVariant
3622  * @format_string: a string that is prefixed with a format string
3623  * @endptr: location to store the end pointer, or %NULL
3624  * @app: a pointer to a #va_list
3625  *
3626  * This function is intended to be used by libraries based on #GVariant
3627  * that want to provide g_variant_get()-like functionality to their
3628  * users.
3629  *
3630  * The API is more general than g_variant_get() to allow a wider range
3631  * of possible uses.
3632  *
3633  * @format_string must still point to a valid format string, but it only
3634  * need to be nul-terminated if @endptr is %NULL.  If @endptr is
3635  * non-%NULL then it is updated to point to the first character past the
3636  * end of the format string.
3637  *
3638  * @app is a pointer to a #va_list.  The arguments, according to
3639  * @format_string, are collected from this #va_list and the list is left
3640  * pointing to the argument following the last.
3641  *
3642  * These two generalisations allow mixing of multiple calls to
3643  * g_variant_new_va() and g_variant_get_va() within a single actual
3644  * varargs call by the user.
3645  *
3646  * Since: 2.24
3647  **/
3648 void
3649 g_variant_get_va (GVariant     *value,
3650                   const gchar  *format_string,
3651                   const gchar **endptr,
3652                   va_list      *app)
3653 {
3654   g_return_if_fail (valid_format_string (format_string, !endptr, value));
3655   g_return_if_fail (value != NULL);
3656   g_return_if_fail (app != NULL);
3657
3658   /* if any direct-pointer-access formats are in use, flatten first */
3659   if (strchr (format_string, '&'))
3660     g_variant_get_data (value);
3661
3662   g_variant_valist_get (&format_string, value, FALSE, app);
3663
3664   if (endptr != NULL)
3665     *endptr = format_string;
3666 }
3667
3668 /* Varargs-enabled Utility Functions {{{1 */
3669
3670 /**
3671  * g_variant_builder_add:
3672  * @builder: a #GVariantBuilder
3673  * @format_string: a #GVariant varargs format string
3674  * @...: arguments, as per @format_string
3675  *
3676  * Adds to a #GVariantBuilder.
3677  *
3678  * This call is a convenience wrapper that is exactly equivalent to
3679  * calling g_variant_new() followed by g_variant_builder_add_value().
3680  *
3681  * This function might be used as follows:
3682  *
3683  * <programlisting>
3684  * GVariant *
3685  * make_pointless_dictionary (void)
3686  * {
3687  *   GVariantBuilder *builder;
3688  *   int i;
3689  *
3690  *   builder = g_variant_builder_new (G_VARIANT_TYPE_CLASS_ARRAY,
3691  *                                    NULL);
3692  *   for (i = 0; i < 16; i++)
3693  *     {
3694  *       gchar buf[3];
3695  *
3696  *       sprintf (buf, "%d", i);
3697  *       g_variant_builder_add (builder, "{is}", i, buf);
3698  *     }
3699  *
3700  *   return g_variant_builder_end (builder);
3701  * }
3702  * </programlisting>
3703  *
3704  * Since: 2.24
3705  **/
3706 void
3707 g_variant_builder_add (GVariantBuilder *builder,
3708                        const gchar     *format_string,
3709                        ...)
3710 {
3711   GVariant *variant;
3712   va_list ap;
3713
3714   va_start (ap, format_string);
3715   variant = g_variant_new_va (format_string, NULL, &ap);
3716   va_end (ap);
3717
3718   g_variant_builder_add_value (builder, variant);
3719 }
3720
3721 /**
3722  * g_variant_get_child:
3723  * @value: a container #GVariant
3724  * @index_: the index of the child to deconstruct
3725  * @format_string: a #GVariant format string
3726  * @...: arguments, as per @format_string
3727  *
3728  * Reads a child item out of a container #GVariant instance and
3729  * deconstructs it according to @format_string.  This call is
3730  * essentially a combination of g_variant_get_child_value() and
3731  * g_variant_get().
3732  *
3733  * Since: 2.24
3734  **/
3735 void
3736 g_variant_get_child (GVariant    *value,
3737                      gsize        index_,
3738                      const gchar *format_string,
3739                      ...)
3740 {
3741   GVariant *child;
3742   va_list ap;
3743
3744   child = g_variant_get_child_value (value, index_);
3745   g_return_if_fail (valid_format_string (format_string, TRUE, child));
3746
3747   va_start (ap, format_string);
3748   g_variant_get_va (child, format_string, NULL, &ap);
3749   va_end (ap);
3750
3751   g_variant_unref (child);
3752 }
3753
3754 /**
3755  * g_variant_iter_next:
3756  * @iter: a #GVariantIter
3757  * @format_string: a GVariant format string
3758  * @...: the arguments to unpack the value into
3759  * @returns: %TRUE if a value was unpacked, or %FALSE if there as no
3760  *           value
3761  *
3762  * Gets the next item in the container and unpacks it into the variable
3763  * argument list according to @format_string, returning %TRUE.
3764  *
3765  * If no more items remain then %FALSE is returned.
3766  *
3767  * All of the pointers given on the variable arguments list of this
3768  * function are assumed to point at uninitialised memory.  It is the
3769  * responsibility of the caller to free all of the values returned by
3770  * the unpacking process.
3771  *
3772  * <example>
3773  *  <title>Memory management with g_variant_iter_next()</title>
3774  *  <programlisting>
3775  *   /<!-- -->* Iterates a dictionary of type 'a{sv}' *<!-- -->/
3776  *   void
3777  *   iterate_dictionary (GVariant *dictionary)
3778  *   {
3779  *     GVariantIter iter;
3780  *     GVariant *value;
3781  *     gchar *key;
3782  *
3783  *     g_variant_iter_init (&iter, dictionary);
3784  *     while (g_variant_iter_next (&iter, "{sv}", &key, &value))
3785  *       {
3786  *         g_print ("Item '%s' has type '%s'\n", key,
3787  *                  g_variant_get_type_string (value));
3788  *
3789  *         /<!-- -->* must free data for ourselves *<!-- -->/
3790  *         g_variant_unref (value);
3791  *         g_free (key);
3792  *       }
3793  *   }
3794  *  </programlisting>
3795  * </example>
3796  *
3797  * For a solution that is likely to be more convenient to C programmers
3798  * when dealing with loops, see g_variant_iter_loop().
3799  *
3800  * Since: 2.24
3801  **/
3802 gboolean
3803 g_variant_iter_next (GVariantIter *iter,
3804                      const gchar  *format_string,
3805                      ...)
3806 {
3807   GVariant *value;
3808
3809   value = g_variant_iter_next_value (iter);
3810
3811   g_return_val_if_fail (valid_format_string (format_string, TRUE, value),
3812                         FALSE);
3813
3814   if (value != NULL)
3815     {
3816       va_list ap;
3817
3818       va_start (ap, format_string);
3819       g_variant_valist_get (&format_string, value, FALSE, &ap);
3820       va_end (ap);
3821
3822       g_variant_unref (value);
3823     }
3824
3825   return value != NULL;
3826 }
3827
3828 /**
3829  * g_variant_iter_loop:
3830  * @iter: a #GVariantIter
3831  * @format_string: a GVariant format string
3832  * @...: the arguments to unpack the value into
3833  * @returns: %TRUE if a value was unpacked, or %FALSE if there as no
3834  *           value
3835  *
3836  * Gets the next item in the container and unpacks it into the variable
3837  * argument list according to @format_string, returning %TRUE.
3838  *
3839  * If no more items remain then %FALSE is returned.
3840  *
3841  * On the first call to this function, the pointers appearing on the
3842  * variable argument list are assumed to point at uninitialised memory.
3843  * On the second and later calls, it is assumed that the same pointers
3844  * will be given and that they will point to the memory as set by the
3845  * previous call to this function.  This allows the previous values to
3846  * be freed, as appropriate.
3847  *
3848  * This function is intended to be used with a while loop as
3849  * demonstrated in the following example.  This function can only be
3850  * used when iterating over an array.  It is only valid to call this
3851  * function with a string constant for the format string and the same
3852  * string constant must be used each time.  Mixing calls to this
3853  * function and g_variant_iter_next() or g_variant_iter_next_value() on
3854  * the same iterator is not recommended.
3855  *
3856  * <example>
3857  *  <title>Memory management with g_variant_iter_loop()</title>
3858  *  <programlisting>
3859  *   /<!-- -->* Iterates a dictionary of type 'a{sv}' *<!-- -->/
3860  *   void
3861  *   iterate_dictionary (GVariant *dictionary)
3862  *   {
3863  *     GVariantIter iter;
3864  *     GVariant *value;
3865  *     gchar *key;
3866  *
3867  *     g_variant_iter_init (&iter, dictionary);
3868  *     while (g_variant_iter_loop (&iter, "{sv}", &key, &value))
3869  *       {
3870  *         g_print ("Item '%s' has type '%s'\n", key,
3871  *                  g_variant_get_type_string (value));
3872  *
3873  *         /<!-- -->* no need to free 'key' and 'value' here *<!-- -->/
3874  *       }
3875  *   }
3876  *  </programlisting>
3877  * </example>
3878  *
3879  * If you want a slightly less magical alternative that requires more
3880  * typing, see g_variant_iter_next().
3881  *
3882  * Since: 2.24
3883  **/
3884 gboolean
3885 g_variant_iter_loop (GVariantIter *iter,
3886                      const gchar  *format_string,
3887                      ...)
3888 {
3889   gboolean first_time = GVSI(iter)->loop_format == NULL;
3890   GVariant *value;
3891   va_list ap;
3892
3893   g_return_val_if_fail (first_time ||
3894                         format_string == GVSI(iter)->loop_format,
3895                         FALSE);
3896
3897   if (first_time)
3898     {
3899       TYPE_CHECK (GVSI(iter)->value, G_VARIANT_TYPE_ARRAY, FALSE);
3900       GVSI(iter)->loop_format = format_string;
3901
3902       if (strchr (format_string, '&'))
3903         g_variant_get_data (GVSI(iter)->value);
3904     }
3905
3906   value = g_variant_iter_next_value (iter);
3907
3908   g_return_val_if_fail (!first_time ||
3909                         valid_format_string (format_string, TRUE, value),
3910                         FALSE);
3911
3912   va_start (ap, format_string);
3913   g_variant_valist_get (&format_string, value, !first_time, &ap);
3914   va_end (ap);
3915
3916   if (value != NULL)
3917     g_variant_unref (value);
3918
3919   return value != NULL;
3920 }
3921
3922 /* Serialised data {{{1 */
3923 static GVariant *
3924 g_variant_deep_copy (GVariant *value)
3925 {
3926   switch (g_variant_classify (value))
3927     {
3928     case G_VARIANT_CLASS_MAYBE:
3929     case G_VARIANT_CLASS_ARRAY:
3930     case G_VARIANT_CLASS_TUPLE:
3931     case G_VARIANT_CLASS_DICT_ENTRY:
3932     case G_VARIANT_CLASS_VARIANT:
3933       {
3934         GVariantBuilder builder;
3935         GVariantIter iter;
3936         GVariant *child;
3937
3938         g_variant_builder_init (&builder, g_variant_get_type (value));
3939         g_variant_iter_init (&iter, value);
3940
3941         while ((child = g_variant_iter_next_value (&iter)))
3942           {
3943             g_variant_builder_add_value (&builder, g_variant_deep_copy (child));
3944             g_variant_unref (child);
3945           }
3946
3947         return g_variant_builder_end (&builder);
3948       }
3949
3950     case G_VARIANT_CLASS_BOOLEAN:
3951       return g_variant_new_boolean (g_variant_get_boolean (value));
3952
3953     case G_VARIANT_CLASS_BYTE:
3954       return g_variant_new_byte (g_variant_get_byte (value));
3955
3956     case G_VARIANT_CLASS_INT16:
3957       return g_variant_new_int16 (g_variant_get_int16 (value));
3958
3959     case G_VARIANT_CLASS_UINT16:
3960       return g_variant_new_uint16 (g_variant_get_uint16 (value));
3961
3962     case G_VARIANT_CLASS_INT32:
3963       return g_variant_new_int32 (g_variant_get_int32 (value));
3964
3965     case G_VARIANT_CLASS_UINT32:
3966       return g_variant_new_uint32 (g_variant_get_uint32 (value));
3967
3968     case G_VARIANT_CLASS_INT64:
3969       return g_variant_new_int64 (g_variant_get_int64 (value));
3970
3971     case G_VARIANT_CLASS_UINT64:
3972       return g_variant_new_uint64 (g_variant_get_uint64 (value));
3973
3974     case G_VARIANT_CLASS_HANDLE:
3975       return g_variant_new_handle (g_variant_get_handle (value));
3976
3977     case G_VARIANT_CLASS_DOUBLE:
3978       return g_variant_new_double (g_variant_get_double (value));
3979
3980     case G_VARIANT_CLASS_STRING:
3981       return g_variant_new_string (g_variant_get_string (value, NULL));
3982
3983     case G_VARIANT_CLASS_OBJECT_PATH:
3984       return g_variant_new_object_path (g_variant_get_string (value, NULL));
3985
3986     case G_VARIANT_CLASS_SIGNATURE:
3987       return g_variant_new_signature (g_variant_get_string (value, NULL));
3988     }
3989
3990   g_assert_not_reached ();
3991 }
3992
3993 /**
3994  * g_variant_get_normal_form:
3995  * @value: a #GVariant
3996  * @returns: a trusted #GVariant
3997  *
3998  * Gets a #GVariant instance that has the same value as @value and is
3999  * trusted to be in normal form.
4000  *
4001  * If @value is already trusted to be in normal form then a new
4002  * reference to @value is returned.
4003  *
4004  * If @value is not already trusted, then it is scanned to check if it
4005  * is in normal form.  If it is found to be in normal form then it is
4006  * marked as trusted and a new reference to it is returned.
4007  *
4008  * If @value is found not to be in normal form then a new trusted
4009  * #GVariant is created with the same value as @value.
4010  *
4011  * It makes sense to call this function if you've received #GVariant
4012  * data from untrusted sources and you want to ensure your serialised
4013  * output is definitely in normal form.
4014  *
4015  * Since: 2.24
4016  **/
4017 GVariant *
4018 g_variant_get_normal_form (GVariant *value)
4019 {
4020   GVariant *trusted;
4021
4022   if (g_variant_is_normal_form (value))
4023     return g_variant_ref (value);
4024
4025   trusted = g_variant_deep_copy (value);
4026   g_assert (g_variant_is_trusted (trusted));
4027
4028   return g_variant_ref_sink (trusted);
4029 }
4030
4031 /**
4032  * g_variant_byteswap:
4033  * @value: a #GVariant
4034  * @returns: the byteswapped form of @value
4035  *
4036  * Performs a byteswapping operation on the contents of @value.  The
4037  * result is that all multi-byte numeric data contained in @value is
4038  * byteswapped.  That includes 16, 32, and 64bit signed and unsigned
4039  * integers as well as file handles and double precision floating point
4040  * values.
4041  *
4042  * This function is an identity mapping on any value that does not
4043  * contain multi-byte numeric data.  That include strings, booleans,
4044  * bytes and containers containing only these things (recursively).
4045  *
4046  * The returned value is always in normal form and is marked as trusted.
4047  *
4048  * Since: 2.24
4049  **/
4050 GVariant *
4051 g_variant_byteswap (GVariant *value)
4052 {
4053   GVariantSerialised serialised;
4054   GVariant *trusted;
4055   GBuffer *buffer;
4056   GVariant *new;
4057
4058   trusted = g_variant_get_normal_form (value);
4059   serialised.type_info = g_variant_get_type_info (trusted);
4060   serialised.size = g_variant_get_size (trusted);
4061   serialised.data = g_malloc (serialised.size);
4062   g_variant_store (trusted, serialised.data);
4063   g_variant_unref (trusted);
4064
4065   g_variant_serialised_byteswap (serialised);
4066
4067   buffer = g_buffer_new_take_data (serialised.data, serialised.size);
4068   new = g_variant_new_from_buffer (g_variant_get_type (value), buffer, TRUE);
4069   g_buffer_unref (buffer);
4070
4071   return g_variant_ref_sink (new);
4072 }
4073
4074 /**
4075  * g_variant_new_from_data:
4076  * @type: a #GVariantType
4077  * @data: the serialised data
4078  * @size: the size of @data
4079  * @trusted: %TRUE if @data is definitely in normal form
4080  * @notify: function to call when @data is no longer needed
4081  * @user_data: data for @notify
4082  * @returns: a new floating #GVariant of type @type
4083  *
4084  * Creates a new #GVariant instance from serialised data.
4085  *
4086  * @type is the type of #GVariant instance that will be constructed.
4087  * The interpretation of @data depends on knowing the type.
4088  *
4089  * @data is not modified by this function and must remain valid with an
4090  * unchanging value until such a time as @notify is called with
4091  * @user_data.  If the contents of @data change before that time then
4092  * the result is undefined.
4093  *
4094  * If @data is trusted to be serialised data in normal form then
4095  * @trusted should be %TRUE.  This applies to serialised data created
4096  * within this process or read from a trusted location on the disk (such
4097  * as a file installed in /usr/lib alongside your application).  You
4098  * should set trusted to %FALSE if @data is read from the network, a
4099  * file in the user's home directory, etc.
4100  *
4101  * @notify will be called with @user_data when @data is no longer
4102  * needed.  The exact time of this call is unspecified and might even be
4103  * before this function returns.
4104  *
4105  * Since: 2.24
4106  **/
4107 GVariant *
4108 g_variant_new_from_data (const GVariantType *type,
4109                          gconstpointer       data,
4110                          gsize               size,
4111                          gboolean            trusted,
4112                          GDestroyNotify      notify,
4113                          gpointer            user_data)
4114 {
4115   GVariant *value;
4116   GBuffer *buffer;
4117
4118   if (notify)
4119     buffer = g_buffer_new_from_pointer (data, size, notify, user_data);
4120   else
4121     buffer = g_buffer_new_from_static_data (data, size);
4122
4123   value = g_variant_new_from_buffer (type, buffer, trusted);
4124   g_buffer_unref (buffer);
4125
4126   return value;
4127 }
4128
4129 /* Epilogue {{{1 */
4130 #define __G_VARIANT_C__
4131 #include "galiasdef.c"
4132
4133 /* vim:set foldmethod=marker: */