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