1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-marshal-recursive.c Marshalling routines for recursive types
4 * Copyright (C) 2004, 2005 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "dbus-marshal-recursive.h"
25 #include "dbus-marshal-basic.h"
26 #include "dbus-signature.h"
27 #include "dbus-internals.h"
30 * @addtogroup DBusMarshal
34 /** turn this on to get deluged in TypeReader verbose spam */
35 #define RECURSIVE_MARSHAL_READ_TRACE 0
37 /** turn this on to get deluged in TypeWriter verbose spam */
38 #define RECURSIVE_MARSHAL_WRITE_TRACE 0
41 free_fixups (DBusList **fixups)
45 link = _dbus_list_get_first_link (fixups);
50 next = _dbus_list_get_next_link (fixups, link);
52 dbus_free (link->data);
53 _dbus_list_free_link (link);
62 apply_and_free_fixups (DBusList **fixups,
63 DBusTypeReader *reader)
67 #if RECURSIVE_MARSHAL_WRITE_TRACE
69 _dbus_verbose (" %d FIXUPS to apply\n",
70 _dbus_list_get_length (fixups));
73 link = _dbus_list_get_first_link (fixups);
78 next = _dbus_list_get_next_link (fixups, link);
86 #if RECURSIVE_MARSHAL_WRITE_TRACE
87 _dbus_verbose (" applying FIXUP to reader %p at pos %d new_len = %d old len %d\n",
88 reader, f->len_pos_in_reader, f->new_len,
89 _dbus_marshal_read_uint32 (reader->value_str,
91 reader->byte_order, NULL));
94 _dbus_marshal_set_uint32 ((DBusString*) reader->value_str,
100 dbus_free (link->data);
101 _dbus_list_free_link (link);
110 * Virtual table for a type reader.
112 struct DBusTypeReaderClass
114 const char *name; /**< name for debugging */
115 int id; /**< index in all_reader_classes */
116 dbus_bool_t types_only; /**< only iterates over types, not values */
117 void (* recurse) (DBusTypeReader *sub,
118 DBusTypeReader *parent); /**< recurse with this reader as sub */
119 dbus_bool_t (* check_finished) (const DBusTypeReader *reader); /**< check whether reader is at the end */
120 void (* next) (DBusTypeReader *reader,
121 int current_type); /**< go to the next value */
122 void (* init_from_mark) (DBusTypeReader *reader,
123 const DBusTypeMark *mark); /**< uncompress from a mark */
127 element_type_get_alignment (const DBusString *str,
130 return _dbus_type_get_alignment (_dbus_first_type_in_signature (str, pos));
134 reader_init (DBusTypeReader *reader,
136 const DBusString *type_str,
138 const DBusString *value_str,
141 reader->byte_order = byte_order;
142 reader->finished = FALSE;
143 reader->type_str = type_str;
144 reader->type_pos = type_pos;
145 reader->value_str = value_str;
146 reader->value_pos = value_pos;
150 base_reader_recurse (DBusTypeReader *sub,
151 DBusTypeReader *parent)
153 /* point subreader at the same place as parent */
163 struct_or_dict_entry_types_only_reader_recurse (DBusTypeReader *sub,
164 DBusTypeReader *parent)
166 base_reader_recurse (sub, parent);
168 _dbus_assert (_dbus_string_get_byte (sub->type_str,
169 sub->type_pos) == DBUS_STRUCT_BEGIN_CHAR ||
170 _dbus_string_get_byte (sub->type_str,
171 sub->type_pos) == DBUS_DICT_ENTRY_BEGIN_CHAR);
177 struct_or_dict_entry_reader_recurse (DBusTypeReader *sub,
178 DBusTypeReader *parent)
180 struct_or_dict_entry_types_only_reader_recurse (sub, parent);
182 /* struct and dict entry have 8 byte alignment */
183 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 8);
187 array_types_only_reader_recurse (DBusTypeReader *sub,
188 DBusTypeReader *parent)
190 base_reader_recurse (sub, parent);
192 /* point type_pos at the array element type */
195 /* Init with values likely to crash things if misused */
196 sub->u.array.start_pos = _DBUS_INT_MAX;
197 sub->array_len_offset = 7;
200 /** compute position of array length given array_len_offset, which is
201 the offset back from start_pos to end of the len */
202 #define ARRAY_READER_LEN_POS(reader) \
203 ((reader)->u.array.start_pos - ((int)(reader)->array_len_offset) - 4)
206 array_reader_get_array_len (const DBusTypeReader *reader)
208 dbus_uint32_t array_len;
211 len_pos = ARRAY_READER_LEN_POS (reader);
213 _dbus_assert (_DBUS_ALIGN_VALUE (len_pos, 4) == (unsigned) len_pos);
214 array_len = _dbus_unpack_uint32 (reader->byte_order,
215 _dbus_string_get_const_data_len (reader->value_str, len_pos, 4));
217 #if RECURSIVE_MARSHAL_READ_TRACE
218 _dbus_verbose (" reader %p len_pos %d array len %u len_offset %d\n",
219 reader, len_pos, array_len, reader->array_len_offset);
222 _dbus_assert (reader->u.array.start_pos - len_pos - 4 < 8);
228 array_reader_recurse (DBusTypeReader *sub,
229 DBusTypeReader *parent)
234 array_types_only_reader_recurse (sub, parent);
236 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 4);
238 len_pos = sub->value_pos;
240 sub->value_pos += 4; /* for the length */
242 alignment = element_type_get_alignment (sub->type_str,
245 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, alignment);
247 sub->u.array.start_pos = sub->value_pos;
248 _dbus_assert ((sub->u.array.start_pos - (len_pos + 4)) < 8); /* only 3 bits in array_len_offset */
249 sub->array_len_offset = sub->u.array.start_pos - (len_pos + 4);
251 #if RECURSIVE_MARSHAL_READ_TRACE
252 _dbus_verbose (" type reader %p array start = %d len_offset = %d array len = %d array element type = %s\n",
254 sub->u.array.start_pos,
255 sub->array_len_offset,
256 array_reader_get_array_len (sub),
257 _dbus_type_to_string (_dbus_first_type_in_signature (sub->type_str,
263 variant_reader_recurse (DBusTypeReader *sub,
264 DBusTypeReader *parent)
267 int contained_alignment;
269 base_reader_recurse (sub, parent);
271 /* Variant is 1 byte sig length (without nul), signature with nul,
272 * padding to 8-boundary, then values
275 sig_len = _dbus_string_get_byte (sub->value_str, sub->value_pos);
277 sub->type_str = sub->value_str;
278 sub->type_pos = sub->value_pos + 1;
280 sub->value_pos = sub->type_pos + sig_len + 1;
282 contained_alignment = _dbus_type_get_alignment (_dbus_first_type_in_signature (sub->type_str,
285 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, contained_alignment);
287 #if RECURSIVE_MARSHAL_READ_TRACE
288 _dbus_verbose (" type reader %p variant containing '%s'\n",
290 _dbus_string_get_const_data_len (sub->type_str,
296 array_reader_check_finished (const DBusTypeReader *reader)
300 /* return the array element type if elements remain, and
301 * TYPE_INVALID otherwise
304 end_pos = reader->u.array.start_pos + array_reader_get_array_len (reader);
306 _dbus_assert (reader->value_pos <= end_pos);
307 _dbus_assert (reader->value_pos >= reader->u.array.start_pos);
309 return reader->value_pos == end_pos;
313 skip_one_complete_type (const DBusString *type_str,
316 _dbus_type_signature_next (_dbus_string_get_const_data (type_str),
321 * Skips to the next "complete" type inside a type signature.
322 * The signature is read starting at type_pos, and the next
323 * type position is stored in the same variable.
325 * @param type_str a type signature (must be valid)
326 * @param type_pos an integer position in the type signtaure (in and out)
329 _dbus_type_signature_next (const char *type_str,
332 const unsigned char *p;
333 const unsigned char *start;
335 _dbus_assert (type_str != NULL);
336 _dbus_assert (type_pos != NULL);
339 p = start + *type_pos;
341 _dbus_assert (*p != DBUS_STRUCT_END_CHAR);
342 _dbus_assert (*p != DBUS_DICT_ENTRY_END_CHAR);
344 while (*p == DBUS_TYPE_ARRAY)
347 _dbus_assert (*p != DBUS_STRUCT_END_CHAR);
348 _dbus_assert (*p != DBUS_DICT_ENTRY_END_CHAR);
350 if (*p == DBUS_STRUCT_BEGIN_CHAR)
358 _dbus_assert (*p != DBUS_TYPE_INVALID);
362 _dbus_assert (*p != DBUS_TYPE_INVALID);
364 if (*p == DBUS_STRUCT_BEGIN_CHAR)
366 else if (*p == DBUS_STRUCT_END_CHAR)
377 else if (*p == DBUS_DICT_ENTRY_BEGIN_CHAR)
385 _dbus_assert (*p != DBUS_TYPE_INVALID);
389 _dbus_assert (*p != DBUS_TYPE_INVALID);
391 if (*p == DBUS_DICT_ENTRY_BEGIN_CHAR)
393 else if (*p == DBUS_DICT_ENTRY_END_CHAR)
409 *type_pos = (int) (p - start);
413 find_len_of_complete_type (const DBusString *type_str,
420 skip_one_complete_type (type_str, &end);
422 return end - type_pos;
426 base_reader_next (DBusTypeReader *reader,
429 switch (current_type)
431 case DBUS_TYPE_DICT_ENTRY:
432 case DBUS_TYPE_STRUCT:
433 case DBUS_TYPE_VARIANT:
434 /* Scan forward over the entire container contents */
438 if (reader->klass->types_only && current_type == DBUS_TYPE_VARIANT)
442 /* Recurse into the struct or variant */
443 _dbus_type_reader_recurse (reader, &sub);
445 /* Skip everything in this subreader */
446 while (_dbus_type_reader_next (&sub))
451 if (!reader->klass->types_only)
452 reader->value_pos = sub.value_pos;
454 /* Now we are at the end of this container; for variants, the
455 * subreader's type_pos is totally inapplicable (it's in the
456 * value string) but we know that we increment by one past the
459 if (current_type == DBUS_TYPE_VARIANT)
460 reader->type_pos += 1;
462 reader->type_pos = sub.type_pos;
466 case DBUS_TYPE_ARRAY:
468 if (!reader->klass->types_only)
469 _dbus_marshal_skip_array (reader->value_str,
470 _dbus_first_type_in_signature (reader->type_str,
471 reader->type_pos + 1),
475 skip_one_complete_type (reader->type_str, &reader->type_pos);
480 if (!reader->klass->types_only)
481 _dbus_marshal_skip_basic (reader->value_str,
482 current_type, reader->byte_order,
485 reader->type_pos += 1;
491 struct_reader_next (DBusTypeReader *reader,
496 base_reader_next (reader, current_type);
498 /* for STRUCT containers we return FALSE at the end of the struct,
499 * for INVALID we return FALSE at the end of the signature.
500 * In both cases we arrange for get_current_type() to return INVALID
501 * which is defined to happen iff we're at the end (no more next())
503 t = _dbus_string_get_byte (reader->type_str, reader->type_pos);
504 if (t == DBUS_STRUCT_END_CHAR)
506 reader->type_pos += 1;
507 reader->finished = TRUE;
512 dict_entry_reader_next (DBusTypeReader *reader,
517 base_reader_next (reader, current_type);
519 /* for STRUCT containers we return FALSE at the end of the struct,
520 * for INVALID we return FALSE at the end of the signature.
521 * In both cases we arrange for get_current_type() to return INVALID
522 * which is defined to happen iff we're at the end (no more next())
524 t = _dbus_string_get_byte (reader->type_str, reader->type_pos);
525 if (t == DBUS_DICT_ENTRY_END_CHAR)
527 reader->type_pos += 1;
528 reader->finished = TRUE;
533 array_types_only_reader_next (DBusTypeReader *reader,
536 /* We have one "element" to be iterated over
537 * in each array, which is its element type.
538 * So the finished flag indicates whether we've
539 * iterated over it yet or not.
541 reader->finished = TRUE;
545 array_reader_next (DBusTypeReader *reader,
548 /* Skip one array element */
551 end_pos = reader->u.array.start_pos + array_reader_get_array_len (reader);
553 #if RECURSIVE_MARSHAL_READ_TRACE
554 _dbus_verbose (" reader %p array next START start_pos = %d end_pos = %d value_pos = %d current_type = %s\n",
556 reader->u.array.start_pos,
557 end_pos, reader->value_pos,
558 _dbus_type_to_string (current_type));
561 _dbus_assert (reader->value_pos < end_pos);
562 _dbus_assert (reader->value_pos >= reader->u.array.start_pos);
564 switch (_dbus_first_type_in_signature (reader->type_str,
567 case DBUS_TYPE_DICT_ENTRY:
568 case DBUS_TYPE_STRUCT:
569 case DBUS_TYPE_VARIANT:
573 /* Recurse into the struct or variant */
574 _dbus_type_reader_recurse (reader, &sub);
576 /* Skip everything in this element */
577 while (_dbus_type_reader_next (&sub))
582 /* Now we are at the end of this element */
583 reader->value_pos = sub.value_pos;
587 case DBUS_TYPE_ARRAY:
589 _dbus_marshal_skip_array (reader->value_str,
590 _dbus_first_type_in_signature (reader->type_str,
591 reader->type_pos + 1),
599 _dbus_marshal_skip_basic (reader->value_str,
600 current_type, reader->byte_order,
606 #if RECURSIVE_MARSHAL_READ_TRACE
607 _dbus_verbose (" reader %p array next END start_pos = %d end_pos = %d value_pos = %d current_type = %s\n",
609 reader->u.array.start_pos,
610 end_pos, reader->value_pos,
611 _dbus_type_to_string (current_type));
614 _dbus_assert (reader->value_pos <= end_pos);
616 if (reader->value_pos == end_pos)
618 skip_one_complete_type (reader->type_str,
624 array_init_from_mark (DBusTypeReader *reader,
625 const DBusTypeMark *mark)
627 /* Fill in the array-specific fields from the mark. The general
628 * fields are already filled in.
630 reader->u.array.start_pos = mark->array_start_pos;
631 reader->array_len_offset = mark->array_len_offset;
634 static const DBusTypeReaderClass body_reader_class = {
637 NULL, /* body is always toplevel, so doesn't get recursed into */
643 static const DBusTypeReaderClass body_types_only_reader_class = {
646 NULL, /* body is always toplevel, so doesn't get recursed into */
652 static const DBusTypeReaderClass struct_reader_class = {
655 struct_or_dict_entry_reader_recurse,
661 static const DBusTypeReaderClass struct_types_only_reader_class = {
664 struct_or_dict_entry_types_only_reader_recurse,
670 static const DBusTypeReaderClass dict_entry_reader_class = {
673 struct_or_dict_entry_reader_recurse,
675 dict_entry_reader_next,
679 static const DBusTypeReaderClass dict_entry_types_only_reader_class = {
680 "dict_entry types", 5,
682 struct_or_dict_entry_types_only_reader_recurse,
684 dict_entry_reader_next,
688 static const DBusTypeReaderClass array_reader_class = {
691 array_reader_recurse,
692 array_reader_check_finished,
697 static const DBusTypeReaderClass array_types_only_reader_class = {
700 array_types_only_reader_recurse,
702 array_types_only_reader_next,
706 static const DBusTypeReaderClass variant_reader_class = {
709 variant_reader_recurse,
715 static const DBusTypeReaderClass const *
716 all_reader_classes[] = {
718 &body_types_only_reader_class,
719 &struct_reader_class,
720 &struct_types_only_reader_class,
721 &dict_entry_reader_class,
722 &dict_entry_types_only_reader_class,
724 &array_types_only_reader_class,
725 &variant_reader_class
729 * Initializes a type reader.
731 * @param reader the reader
732 * @param byte_order the byte order of the block to read
733 * @param type_str the signature of the block to read
734 * @param type_pos location of signature
735 * @param value_str the string containing values block
736 * @param value_pos start of values block
739 _dbus_type_reader_init (DBusTypeReader *reader,
741 const DBusString *type_str,
743 const DBusString *value_str,
746 reader->klass = &body_reader_class;
748 reader_init (reader, byte_order, type_str, type_pos,
749 value_str, value_pos);
751 #if RECURSIVE_MARSHAL_READ_TRACE
752 _dbus_verbose (" type reader %p init type_pos = %d value_pos = %d remaining sig '%s'\n",
753 reader, reader->type_pos, reader->value_pos,
754 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
759 * Initializes a type reader that's been compressed into a
760 * DBusTypeMark. The args have to be the same as those passed in to
761 * create the original #DBusTypeReader.
763 * @param reader the reader
764 * @param byte_order the byte order of the value block
765 * @param type_str string containing the type signature
766 * @param value_str string containing the values block
767 * @param mark the mark to decompress from
770 _dbus_type_reader_init_from_mark (DBusTypeReader *reader,
772 const DBusString *type_str,
773 const DBusString *value_str,
774 const DBusTypeMark *mark)
776 reader->klass = all_reader_classes[mark->container_type];
778 reader_init (reader, byte_order,
779 mark->type_pos_in_value_str ? value_str : type_str,
781 value_str, mark->value_pos);
783 if (reader->klass->init_from_mark)
784 (* reader->klass->init_from_mark) (reader, mark);
786 #if RECURSIVE_MARSHAL_READ_TRACE
787 _dbus_verbose (" type reader %p init from mark type_pos = %d value_pos = %d remaining sig '%s'\n",
788 reader, reader->type_pos, reader->value_pos,
789 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
794 * Like _dbus_type_reader_init() but the iteration is over the
795 * signature, not over values.
797 * @param reader the reader
798 * @param type_str the signature string
799 * @param type_pos location in the signature string
802 _dbus_type_reader_init_types_only (DBusTypeReader *reader,
803 const DBusString *type_str,
806 reader->klass = &body_types_only_reader_class;
808 reader_init (reader, DBUS_COMPILER_BYTE_ORDER /* irrelevant */,
809 type_str, type_pos, NULL, _DBUS_INT_MAX /* crashes if we screw up */);
811 #if RECURSIVE_MARSHAL_READ_TRACE
812 _dbus_verbose (" type reader %p init types only type_pos = %d remaining sig '%s'\n",
813 reader, reader->type_pos,
814 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
819 * Like _dbus_type_reader_init_from_mark() but only iterates over
820 * the signature, not the values.
822 * @param reader the reader
823 * @param type_str the signature string
824 * @param mark the mark to decompress from
827 _dbus_type_reader_init_types_only_from_mark (DBusTypeReader *reader,
828 const DBusString *type_str,
829 const DBusTypeMark *mark)
831 reader->klass = all_reader_classes[mark->container_type];
832 _dbus_assert (reader->klass->types_only);
833 _dbus_assert (!mark->type_pos_in_value_str);
835 reader_init (reader, DBUS_COMPILER_BYTE_ORDER, /* irrelevant */
836 type_str, mark->type_pos,
837 NULL, _DBUS_INT_MAX /* crashes if we screw up */);
839 if (reader->klass->init_from_mark)
840 (* reader->klass->init_from_mark) (reader, mark);
842 #if RECURSIVE_MARSHAL_READ_TRACE
843 _dbus_verbose (" type reader %p init types only from mark type_pos = %d remaining sig '%s'\n",
844 reader, reader->type_pos,
845 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
850 * Compresses a type reader into a #DBusTypeMark, useful for example
851 * if you want to cache a bunch of positions in a block of values.
853 * @param reader the reader
854 * @param mark the mark to init
857 _dbus_type_reader_save_mark (const DBusTypeReader *reader,
860 mark->type_pos_in_value_str = (reader->type_str == reader->value_str);
861 mark->container_type = reader->klass->id;
862 _dbus_assert (all_reader_classes[reader->klass->id] == reader->klass);
864 mark->type_pos = reader->type_pos;
865 mark->value_pos = reader->value_pos;
867 /* these are just junk if the reader isn't really an array of course */
868 mark->array_len_offset = reader->array_len_offset;
869 mark->array_start_pos = reader->u.array.start_pos;
873 * Gets the type of the value the reader is currently pointing to;
874 * or for a types-only reader gets the type it's currently pointing to.
875 * If the reader is at the end of a block or end of a container such
876 * as an array, returns #DBUS_TYPE_INVALID.
878 * @param reader the reader
881 _dbus_type_reader_get_current_type (const DBusTypeReader *reader)
885 if (reader->finished ||
886 (reader->klass->check_finished &&
887 (* reader->klass->check_finished) (reader)))
888 t = DBUS_TYPE_INVALID;
890 t = _dbus_first_type_in_signature (reader->type_str,
893 _dbus_assert (t != DBUS_STRUCT_END_CHAR);
894 _dbus_assert (t != DBUS_STRUCT_BEGIN_CHAR);
895 _dbus_assert (t != DBUS_DICT_ENTRY_END_CHAR);
896 _dbus_assert (t != DBUS_DICT_ENTRY_BEGIN_CHAR);
899 _dbus_verbose (" type reader %p current type_pos = %d type = %s\n",
900 reader, reader->type_pos,
901 _dbus_type_to_string (t));
908 * Gets the type of an element of the array the reader is currently
909 * pointing to. It's an error to call this if
910 * _dbus_type_reader_get_current_type() doesn't return #DBUS_TYPE_ARRAY
913 * @param reader the reader
916 _dbus_type_reader_get_element_type (const DBusTypeReader *reader)
920 _dbus_assert (_dbus_type_reader_get_current_type (reader) == DBUS_TYPE_ARRAY);
922 element_type = _dbus_first_type_in_signature (reader->type_str,
923 reader->type_pos + 1);
929 * Gets the current position in the value block
930 * @param reader the reader
933 _dbus_type_reader_get_value_pos (const DBusTypeReader *reader)
935 return reader->value_pos;
939 * Get the address of the marshaled value in the data being read. The
940 * address may not be aligned; you have to align it to the type of the
941 * value you want to read. Most of the demarshal routines do this for
944 * @param reader the reader
945 * @param value_location the address of the marshaled value
948 _dbus_type_reader_read_raw (const DBusTypeReader *reader,
949 const unsigned char **value_location)
951 _dbus_assert (!reader->klass->types_only);
953 *value_location = _dbus_string_get_const_data_len (reader->value_str,
959 * Reads a basic-typed value, as with _dbus_marshal_read_basic().
961 * @param reader the reader
962 * @param value the address of the value
965 _dbus_type_reader_read_basic (const DBusTypeReader *reader,
970 _dbus_assert (!reader->klass->types_only);
972 t = _dbus_type_reader_get_current_type (reader);
974 _dbus_marshal_read_basic (reader->value_str,
981 #if RECURSIVE_MARSHAL_READ_TRACE
982 _dbus_verbose (" type reader %p read basic type_pos = %d value_pos = %d remaining sig '%s'\n",
983 reader, reader->type_pos, reader->value_pos,
984 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
989 * Returns the number of values remaining in the current array reader.
991 * @param reader the reader to read from
992 * @returns the number of elements remaining in the array
995 _dbus_type_reader_get_array_length (const DBusTypeReader *reader)
997 _dbus_assert (!reader->klass->types_only);
998 _dbus_assert (reader->klass == &array_reader_class);
1000 return array_reader_get_array_len (reader);
1004 * Reads a block of fixed-length basic values, from the current point
1005 * in an array to the end of the array. Does not work for arrays of
1006 * string or container types.
1008 * This function returns the array in-place; it does not make a copy,
1009 * and it does not swap the bytes.
1011 * If you ask for #DBUS_TYPE_DOUBLE you will get a "const double*" back
1012 * and the "value" argument should be a "const double**" and so on.
1014 * @param reader the reader to read from
1015 * @param value place to return the array values
1016 * @param n_elements place to return number of array elements
1019 _dbus_type_reader_read_fixed_multi (const DBusTypeReader *reader,
1029 _dbus_assert (!reader->klass->types_only);
1030 _dbus_assert (reader->klass == &array_reader_class);
1032 element_type = _dbus_first_type_in_signature (reader->type_str,
1035 _dbus_assert (element_type != DBUS_TYPE_INVALID); /* why we don't use get_current_type() */
1036 _dbus_assert (dbus_type_is_fixed (element_type));
1038 alignment = _dbus_type_get_alignment (element_type);
1040 _dbus_assert (reader->value_pos >= reader->u.array.start_pos);
1042 total_len = array_reader_get_array_len (reader);
1043 end_pos = reader->u.array.start_pos + total_len;
1044 remaining_len = end_pos - reader->value_pos;
1046 #if RECURSIVE_MARSHAL_READ_TRACE
1047 _dbus_verbose ("end_pos %d total_len %d remaining_len %d value_pos %d\n",
1048 end_pos, total_len, remaining_len, reader->value_pos);
1051 _dbus_assert (remaining_len <= total_len);
1053 if (remaining_len == 0)
1054 *(const DBusBasicValue**) value = NULL;
1056 *(const DBusBasicValue**) value =
1057 (void*) _dbus_string_get_const_data_len (reader->value_str,
1061 *n_elements = remaining_len / alignment;
1062 _dbus_assert ((remaining_len % alignment) == 0);
1064 #if RECURSIVE_MARSHAL_READ_TRACE
1065 _dbus_verbose (" type reader %p read fixed array type_pos = %d value_pos = %d remaining sig '%s'\n",
1066 reader, reader->type_pos, reader->value_pos,
1067 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
1072 * Initialize a new reader pointing to the first type and
1073 * corresponding value that's a child of the current container. It's
1074 * an error to call this if the current type is a non-container.
1076 * Note that DBusTypeReader traverses values, not types. So if you
1077 * have an empty array of array of int, you can't recurse into it. You
1078 * can only recurse into each element.
1080 * @param reader the reader
1081 * @param sub a reader to init pointing to the first child
1084 _dbus_type_reader_recurse (DBusTypeReader *reader,
1085 DBusTypeReader *sub)
1089 t = _dbus_first_type_in_signature (reader->type_str, reader->type_pos);
1093 case DBUS_TYPE_STRUCT:
1094 if (reader->klass->types_only)
1095 sub->klass = &struct_types_only_reader_class;
1097 sub->klass = &struct_reader_class;
1099 case DBUS_TYPE_DICT_ENTRY:
1100 if (reader->klass->types_only)
1101 sub->klass = &dict_entry_types_only_reader_class;
1103 sub->klass = &dict_entry_reader_class;
1105 case DBUS_TYPE_ARRAY:
1106 if (reader->klass->types_only)
1107 sub->klass = &array_types_only_reader_class;
1109 sub->klass = &array_reader_class;
1111 case DBUS_TYPE_VARIANT:
1112 if (reader->klass->types_only)
1113 _dbus_assert_not_reached ("can't recurse into variant typecode");
1115 sub->klass = &variant_reader_class;
1118 _dbus_verbose ("recursing into type %s\n", _dbus_type_to_string (t));
1119 #ifndef DBUS_DISABLE_CHECKS
1120 if (t == DBUS_TYPE_INVALID)
1121 _dbus_warn ("You can't recurse into an empty array or off the end of a message body\n");
1122 #endif /* DBUS_DISABLE_CHECKS */
1124 _dbus_assert_not_reached ("don't yet handle recursing into this type");
1127 _dbus_assert (sub->klass == all_reader_classes[sub->klass->id]);
1129 (* sub->klass->recurse) (sub, reader);
1131 #if RECURSIVE_MARSHAL_READ_TRACE
1132 _dbus_verbose (" type reader %p RECURSED type_pos = %d value_pos = %d remaining sig '%s'\n",
1133 sub, sub->type_pos, sub->value_pos,
1134 _dbus_string_get_const_data_len (sub->type_str, sub->type_pos, 0));
1139 * Skip to the next value on this "level". e.g. the next field in a
1140 * struct, the next value in an array. Returns FALSE at the end of the
1141 * current container.
1143 * @param reader the reader
1144 * @returns FALSE if nothing more to read at or below this level
1147 _dbus_type_reader_next (DBusTypeReader *reader)
1151 t = _dbus_type_reader_get_current_type (reader);
1153 #if RECURSIVE_MARSHAL_READ_TRACE
1154 _dbus_verbose (" type reader %p START next() { type_pos = %d value_pos = %d remaining sig '%s' current_type = %s\n",
1155 reader, reader->type_pos, reader->value_pos,
1156 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0),
1157 _dbus_type_to_string (t));
1160 if (t == DBUS_TYPE_INVALID)
1163 (* reader->klass->next) (reader, t);
1165 #if RECURSIVE_MARSHAL_READ_TRACE
1166 _dbus_verbose (" type reader %p END next() type_pos = %d value_pos = %d remaining sig '%s' current_type = %s\n",
1167 reader, reader->type_pos, reader->value_pos,
1168 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0),
1169 _dbus_type_to_string (_dbus_type_reader_get_current_type (reader)));
1172 return _dbus_type_reader_get_current_type (reader) != DBUS_TYPE_INVALID;
1176 * Check whether there's another value on this "level". e.g. the next
1177 * field in a struct, the next value in an array. Returns FALSE at the
1178 * end of the current container.
1180 * You probably don't want to use this; it makes for an awkward for/while
1181 * loop. A nicer one is "while ((current_type = get_current_type()) != INVALID)"
1183 * @param reader the reader
1184 * @returns FALSE if nothing more to read at or below this level
1187 _dbus_type_reader_has_next (const DBusTypeReader *reader)
1189 /* Not efficient but works for now. */
1190 DBusTypeReader copy;
1193 return _dbus_type_reader_next (©);
1197 * Gets the string and range of said string containing the signature
1198 * of the current value. Essentially a more complete version of
1199 * _dbus_type_reader_get_current_type() (returns the full type
1200 * rather than only the outside of the onion).
1202 * Note though that the first byte in a struct signature is
1203 * #DBUS_STRUCT_BEGIN_CHAR while the current type will be
1204 * #DBUS_TYPE_STRUCT so it isn't true that the first byte of the
1205 * signature is always the same as the current type. Another
1206 * difference is that this function will still return a signature when
1207 * inside an empty array; say you recurse into empty array of int32,
1208 * the signature is "i" but the current type will always be
1209 * #DBUS_TYPE_INVALID since there are no elements to be currently
1212 * @param reader the reader
1213 * @param str_p place to return the string with the type in it
1214 * @param start_p place to return start of the type
1215 * @param len_p place to return the length of the type
1218 _dbus_type_reader_get_signature (const DBusTypeReader *reader,
1219 const DBusString **str_p,
1223 *str_p = reader->type_str;
1224 *start_p = reader->type_pos;
1225 *len_p = find_len_of_complete_type (reader->type_str, reader->type_pos);
1230 DBusString replacement;
1235 replacement_block_init (ReplacementBlock *block,
1236 DBusTypeReader *reader)
1238 if (!_dbus_string_init (&block->replacement))
1241 /* % 8 is the padding to have the same align properties in
1242 * our replacement string as we do at the position being replaced
1244 block->padding = reader->value_pos % 8;
1246 if (!_dbus_string_lengthen (&block->replacement, block->padding))
1252 _dbus_string_free (&block->replacement);
1257 replacement_block_replace (ReplacementBlock *block,
1258 DBusTypeReader *reader,
1259 const DBusTypeReader *realign_root)
1261 DBusTypeWriter writer;
1262 DBusTypeReader realign_reader;
1266 _dbus_assert (realign_root != NULL);
1268 orig_len = _dbus_string_get_length (&block->replacement);
1270 realign_reader = *realign_root;
1272 #if RECURSIVE_MARSHAL_WRITE_TRACE
1273 _dbus_verbose ("INITIALIZING replacement block writer %p at value_pos %d\n",
1274 &writer, _dbus_string_get_length (&block->replacement));
1276 _dbus_type_writer_init_values_only (&writer,
1277 realign_reader.byte_order,
1278 realign_reader.type_str,
1279 realign_reader.type_pos,
1280 &block->replacement,
1281 _dbus_string_get_length (&block->replacement));
1283 _dbus_assert (realign_reader.value_pos <= reader->value_pos);
1285 #if RECURSIVE_MARSHAL_WRITE_TRACE
1286 _dbus_verbose ("COPYING from reader at value_pos %d to writer %p starting after value_pos %d\n",
1287 realign_reader.value_pos, &writer, reader->value_pos);
1290 if (!_dbus_type_writer_write_reader_partial (&writer,
1294 _dbus_string_get_length (&block->replacement) - block->padding,
1298 #if RECURSIVE_MARSHAL_WRITE_TRACE
1299 _dbus_verbose ("REPLACEMENT at padding %d len %d\n", block->padding,
1300 _dbus_string_get_length (&block->replacement) - block->padding);
1301 _dbus_verbose_bytes_of_string (&block->replacement, block->padding,
1302 _dbus_string_get_length (&block->replacement) - block->padding);
1303 _dbus_verbose ("TO BE REPLACED at value_pos = %d (align pad %d) len %d realign_reader.value_pos %d\n",
1304 reader->value_pos, reader->value_pos % 8,
1305 realign_reader.value_pos - reader->value_pos,
1306 realign_reader.value_pos);
1307 _dbus_verbose_bytes_of_string (reader->value_str,
1309 realign_reader.value_pos - reader->value_pos);
1312 /* Move the replacement into position
1313 * (realign_reader should now be at the end of the block to be replaced)
1315 if (!_dbus_string_replace_len (&block->replacement, block->padding,
1316 _dbus_string_get_length (&block->replacement) - block->padding,
1317 (DBusString*) reader->value_str,
1319 realign_reader.value_pos - reader->value_pos))
1322 /* Process our fixups now that we can't have an OOM error */
1323 apply_and_free_fixups (&fixups, reader);
1328 _dbus_string_set_length (&block->replacement, orig_len);
1329 free_fixups (&fixups);
1334 replacement_block_free (ReplacementBlock *block)
1336 _dbus_string_free (&block->replacement);
1339 /* In the variable-length case, we have to fix alignment after we insert.
1340 * The strategy is as follows:
1342 * - pad a new string to have the same alignment as the
1343 * start of the current basic value
1344 * - write the new basic value
1345 * - copy from the original reader to the new string,
1346 * which will fix the alignment of types following
1348 * - this copy has to start at realign_root,
1349 * but not really write anything until it
1350 * passes the value being set
1351 * - as an optimization, we can stop copying
1352 * when the source and dest values are both
1353 * on an 8-boundary, since we know all following
1354 * padding and alignment will be identical
1355 * - copy the new string back to the original
1356 * string, replacing the relevant part of the
1358 * - now any arrays in the original string that
1359 * contained the replaced string may have the
1360 * wrong length; so we have to fix that
1363 reader_set_basic_variable_length (DBusTypeReader *reader,
1366 const DBusTypeReader *realign_root)
1369 ReplacementBlock block;
1370 DBusTypeWriter writer;
1372 _dbus_assert (realign_root != NULL);
1376 if (!replacement_block_init (&block, reader))
1379 /* Write the new basic value */
1380 #if RECURSIVE_MARSHAL_WRITE_TRACE
1381 _dbus_verbose ("INITIALIZING writer %p to write basic value at value_pos %d of replacement string\n",
1382 &writer, _dbus_string_get_length (&block.replacement));
1384 _dbus_type_writer_init_values_only (&writer,
1389 _dbus_string_get_length (&block.replacement));
1390 #if RECURSIVE_MARSHAL_WRITE_TRACE
1391 _dbus_verbose ("WRITING basic value to writer %p (replacement string)\n", &writer);
1393 if (!_dbus_type_writer_write_basic (&writer, current_type, value))
1396 if (!replacement_block_replace (&block,
1404 replacement_block_free (&block);
1409 reader_set_basic_fixed_length (DBusTypeReader *reader,
1413 _dbus_marshal_set_basic ((DBusString*) reader->value_str,
1422 * Sets a new value for the basic type value pointed to by the reader,
1423 * leaving the reader valid to continue reading. Any other readers
1424 * will be invalidated if you set a variable-length type such as a
1427 * The provided realign_root is the reader to start from when
1428 * realigning the data that follows the newly-set value. The reader
1429 * parameter must point to a value below the realign_root parameter.
1430 * If the type being set is fixed-length, then realign_root may be
1431 * #NULL. Only values reachable from realign_root will be realigned,
1432 * so if your string contains other values you will need to deal with
1433 * those somehow yourself. It is OK if realign_root is the same
1434 * reader as the reader parameter, though if you aren't setting the
1435 * root it may not be such a good idea.
1437 * @todo DBusTypeReader currently takes "const" versions of the type
1438 * and value strings, and this function modifies those strings by
1439 * casting away the const, which is of course bad if we want to get
1440 * picky. (To be truly clean you'd have an object which contained the
1441 * type and value strings and set_basic would be a method on that
1442 * object... this would also make DBusTypeReader the same thing as
1443 * DBusTypeMark. But since DBusMessage is effectively that object for
1444 * D-BUS it doesn't seem worth creating some random object.)
1446 * @todo optimize this by only rewriting until the old and new values
1447 * are at the same alignment. Frequently this should result in only
1448 * replacing the value that's immediately at hand.
1450 * @param reader reader indicating where to set a new value
1451 * @param value address of the value to set
1452 * @param realign_root realign from here
1453 * @returns #FALSE if not enough memory
1456 _dbus_type_reader_set_basic (DBusTypeReader *reader,
1458 const DBusTypeReader *realign_root)
1462 _dbus_assert (!reader->klass->types_only);
1463 _dbus_assert (reader->value_str == realign_root->value_str);
1464 _dbus_assert (reader->value_pos >= realign_root->value_pos);
1466 current_type = _dbus_type_reader_get_current_type (reader);
1468 #if RECURSIVE_MARSHAL_WRITE_TRACE
1469 _dbus_verbose (" SET BASIC type reader %p type_pos = %d value_pos = %d remaining sig '%s' realign_root = %p with value_pos %d current_type = %s\n",
1470 reader, reader->type_pos, reader->value_pos,
1471 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0),
1473 realign_root ? realign_root->value_pos : -1,
1474 _dbus_type_to_string (current_type));
1475 _dbus_verbose_bytes_of_string (realign_root->value_str, realign_root->value_pos,
1476 _dbus_string_get_length (realign_root->value_str) -
1477 realign_root->value_pos);
1480 _dbus_assert (dbus_type_is_basic (current_type));
1482 if (dbus_type_is_fixed (current_type))
1484 reader_set_basic_fixed_length (reader, current_type, value);
1489 _dbus_assert (realign_root != NULL);
1490 return reader_set_basic_variable_length (reader, current_type,
1491 value, realign_root);
1496 * Recursively deletes any value pointed to by the reader, leaving the
1497 * reader valid to continue reading. Any other readers will be
1500 * The provided realign_root is the reader to start from when
1501 * realigning the data that follows the newly-set value.
1502 * See _dbus_type_reader_set_basic() for more details on the
1503 * realign_root paramter.
1505 * @todo for now this does not delete the typecodes associated with
1506 * the value, so this function should only be used for array elements.
1508 * @param reader reader indicating where to delete a value
1509 * @param realign_root realign from here
1510 * @returns #FALSE if not enough memory
1513 _dbus_type_reader_delete (DBusTypeReader *reader,
1514 const DBusTypeReader *realign_root)
1517 ReplacementBlock block;
1519 _dbus_assert (realign_root != NULL);
1520 _dbus_assert (reader->klass == &array_reader_class);
1524 if (!replacement_block_init (&block, reader))
1527 if (!replacement_block_replace (&block,
1535 replacement_block_free (&block);
1540 * Compares two readers, which must be iterating over the same value data.
1541 * Returns #TRUE if the first parameter is further along than the second parameter.
1543 * @param lhs left-hand-side (first) parameter
1544 * @param rhs left-hand-side (first) parameter
1545 * @returns whether lhs is greater than rhs
1548 _dbus_type_reader_greater_than (const DBusTypeReader *lhs,
1549 const DBusTypeReader *rhs)
1551 _dbus_assert (lhs->value_str == rhs->value_str);
1553 return lhs->value_pos > rhs->value_pos;
1566 * Initialize a write iterator, which is used to write out values in
1567 * serialized D-BUS format.
1569 * The type_pos passed in is expected to be inside an already-valid,
1570 * though potentially empty, type signature. This means that the byte
1571 * after type_pos must be either #DBUS_TYPE_INVALID (aka nul) or some
1572 * other valid type. #DBusTypeWriter won't enforce that the signature
1573 * is already valid (you can append the nul byte at the end if you
1574 * like), but just be aware that you need the nul byte eventually and
1575 * #DBusTypeWriter isn't going to write it for you.
1577 * @param writer the writer to init
1578 * @param byte_order the byte order to marshal into
1579 * @param type_str the string to write typecodes into
1580 * @param type_pos where to insert typecodes
1581 * @param value_str the string to write values into
1582 * @param value_pos where to insert values
1586 _dbus_type_writer_init (DBusTypeWriter *writer,
1588 DBusString *type_str,
1590 DBusString *value_str,
1593 writer->byte_order = byte_order;
1594 writer->type_str = type_str;
1595 writer->type_pos = type_pos;
1596 writer->value_str = value_str;
1597 writer->value_pos = value_pos;
1598 writer->container_type = DBUS_TYPE_INVALID;
1599 writer->type_pos_is_expectation = FALSE;
1600 writer->enabled = TRUE;
1602 #if RECURSIVE_MARSHAL_WRITE_TRACE
1603 _dbus_verbose ("writer %p init remaining sig '%s'\n", writer,
1605 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
1611 * Initialize a write iterator, with the signature to be provided
1614 * @param writer the writer to init
1615 * @param byte_order the byte order to marshal into
1616 * @param value_str the string to write values into
1617 * @param value_pos where to insert values
1621 _dbus_type_writer_init_types_delayed (DBusTypeWriter *writer,
1623 DBusString *value_str,
1626 _dbus_type_writer_init (writer, byte_order,
1627 NULL, 0, value_str, value_pos);
1631 * Adds type string to the writer, if it had none.
1633 * @param writer the writer to init
1634 * @param type_str type string to add
1635 * @param type_pos type position
1639 _dbus_type_writer_add_types (DBusTypeWriter *writer,
1640 DBusString *type_str,
1643 if (writer->type_str == NULL) /* keeps us from using this as setter */
1645 writer->type_str = type_str;
1646 writer->type_pos = type_pos;
1651 * Removes type string from the writer.
1653 * @param writer the writer to remove from
1656 _dbus_type_writer_remove_types (DBusTypeWriter *writer)
1658 writer->type_str = NULL;
1659 writer->type_pos = -1;
1663 * Like _dbus_type_writer_init(), except the type string
1664 * passed in should correspond to an existing signature that
1665 * matches what you're going to write out. The writer will
1666 * check what you write vs. this existing signature.
1668 * @param writer the writer to init
1669 * @param byte_order the byte order to marshal into
1670 * @param type_str the string with signature
1671 * @param type_pos start of signature
1672 * @param value_str the string to write values into
1673 * @param value_pos where to insert values
1677 _dbus_type_writer_init_values_only (DBusTypeWriter *writer,
1679 const DBusString *type_str,
1681 DBusString *value_str,
1684 _dbus_type_writer_init (writer, byte_order,
1685 (DBusString*)type_str, type_pos,
1686 value_str, value_pos);
1688 writer->type_pos_is_expectation = TRUE;
1692 _dbus_type_writer_write_basic_no_typecode (DBusTypeWriter *writer,
1696 if (writer->enabled)
1697 return _dbus_marshal_write_basic (writer->value_str,
1702 &writer->value_pos);
1707 /* If our parent is an array, things are a little bit complicated.
1709 * The parent must have a complete element type, such as
1710 * "i" or "aai" or "(ii)" or "a(ii)". There can't be
1711 * unclosed parens, or an "a" with no following type.
1713 * To recurse, the only allowed operation is to recurse into the
1714 * first type in the element type. So for "i" you can't recurse, for
1715 * "ai" you can recurse into the array, for "(ii)" you can recurse
1718 * If you recurse into the array for "ai", then you must specify
1719 * "i" for the element type of the array you recurse into.
1721 * While inside an array at any level, we need to avoid writing to
1722 * type_str, since the type only appears once for the whole array,
1723 * it does not appear for each array element.
1725 * While inside an array type_pos points to the expected next
1726 * typecode, rather than the next place we could write a typecode.
1729 writer_recurse_init_and_check (DBusTypeWriter *writer,
1731 DBusTypeWriter *sub)
1733 _dbus_type_writer_init (sub,
1740 sub->container_type = container_type;
1742 if (writer->type_pos_is_expectation ||
1743 (sub->container_type == DBUS_TYPE_ARRAY || sub->container_type == DBUS_TYPE_VARIANT))
1744 sub->type_pos_is_expectation = TRUE;
1746 sub->type_pos_is_expectation = FALSE;
1748 sub->enabled = writer->enabled;
1750 #ifndef DBUS_DISABLE_CHECKS
1751 if (writer->type_pos_is_expectation && writer->type_str)
1755 expected = _dbus_first_type_in_signature (writer->type_str, writer->type_pos);
1757 if (expected != sub->container_type)
1759 _dbus_warn ("Writing an element of type %s, but the expected type here is %s\n",
1760 _dbus_type_to_string (sub->container_type),
1761 _dbus_type_to_string (expected));
1762 _dbus_assert_not_reached ("bad array element or variant content written");
1765 #endif /* DBUS_DISABLE_CHECKS */
1767 #if RECURSIVE_MARSHAL_WRITE_TRACE
1768 _dbus_verbose (" type writer %p recurse parent %s type_pos = %d value_pos = %d is_expectation = %d remaining sig '%s' enabled = %d\n",
1770 _dbus_type_to_string (writer->container_type),
1771 writer->type_pos, writer->value_pos, writer->type_pos_is_expectation,
1773 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
1776 _dbus_verbose (" type writer %p recurse sub %s type_pos = %d value_pos = %d is_expectation = %d enabled = %d\n",
1778 _dbus_type_to_string (sub->container_type),
1779 sub->type_pos, sub->value_pos,
1780 sub->type_pos_is_expectation,
1786 write_or_verify_typecode (DBusTypeWriter *writer,
1789 /* A subwriter inside an array or variant will have type_pos
1790 * pointing to the expected typecode; a writer not inside an array
1791 * or variant has type_pos pointing to the next place to insert a
1794 #if RECURSIVE_MARSHAL_WRITE_TRACE
1795 _dbus_verbose (" type writer %p write_or_verify start type_pos = %d remaining sig '%s' enabled = %d\n",
1796 writer, writer->type_pos,
1798 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
1803 if (writer->type_str == NULL)
1806 if (writer->type_pos_is_expectation)
1808 #ifndef DBUS_DISABLE_CHECKS
1812 expected = _dbus_string_get_byte (writer->type_str, writer->type_pos);
1814 if (expected != typecode)
1816 _dbus_warn ("Array or variant type requires that type %s be written, but %s was written\n",
1817 _dbus_type_to_string (expected), _dbus_type_to_string (typecode));
1818 _dbus_assert_not_reached ("bad type inserted somewhere inside an array or variant");
1821 #endif /* DBUS_DISABLE_CHECKS */
1823 /* if immediately inside an array we'd always be appending an element,
1824 * so the expected type doesn't change; if inside a struct or something
1825 * below an array, we need to move through said struct or something.
1827 if (writer->container_type != DBUS_TYPE_ARRAY)
1828 writer->type_pos += 1;
1832 if (!_dbus_string_insert_byte (writer->type_str,
1837 writer->type_pos += 1;
1840 #if RECURSIVE_MARSHAL_WRITE_TRACE
1841 _dbus_verbose (" type writer %p write_or_verify end type_pos = %d remaining sig '%s'\n",
1842 writer, writer->type_pos,
1843 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0));
1850 writer_recurse_struct_or_dict_entry (DBusTypeWriter *writer,
1852 const DBusString *contained_type,
1853 int contained_type_start,
1854 int contained_type_len,
1855 DBusTypeWriter *sub)
1857 /* FIXME right now contained_type is ignored; we could probably
1858 * almost trivially fix the code so if it's present we
1859 * write it out and then set type_pos_is_expectation
1862 /* Ensure that we'll be able to add alignment padding and the typecode */
1863 if (writer->enabled)
1865 if (!_dbus_string_alloc_space (sub->value_str, 8))
1869 if (!write_or_verify_typecode (sub, begin_char))
1870 _dbus_assert_not_reached ("failed to insert struct typecode after prealloc");
1872 if (writer->enabled)
1874 if (!_dbus_string_insert_bytes (sub->value_str,
1876 _DBUS_ALIGN_VALUE (sub->value_pos, 8) - sub->value_pos,
1878 _dbus_assert_not_reached ("should not have failed to insert alignment padding for struct");
1879 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 8);
1887 writer_recurse_array (DBusTypeWriter *writer,
1888 const DBusString *contained_type,
1889 int contained_type_start,
1890 int contained_type_len,
1891 DBusTypeWriter *sub,
1892 dbus_bool_t is_array_append)
1894 dbus_uint32_t value = 0;
1898 #ifndef DBUS_DISABLE_CHECKS
1899 if (writer->container_type == DBUS_TYPE_ARRAY &&
1902 if (!_dbus_string_equal_substring (contained_type,
1903 contained_type_start,
1906 writer->u.array.element_type_pos + 1))
1908 _dbus_warn ("Writing an array of '%s' but this is incompatible with the expected type of elements in the parent array\n",
1909 _dbus_string_get_const_data_len (contained_type,
1910 contained_type_start,
1911 contained_type_len));
1912 _dbus_assert_not_reached ("incompatible type for child array");
1915 #endif /* DBUS_DISABLE_CHECKS */
1917 if (writer->enabled && !is_array_append)
1919 /* 3 pad + 4 bytes for the array length, and 4 bytes possible padding
1920 * before array values
1922 if (!_dbus_string_alloc_space (sub->value_str, 3 + 4 + 4))
1926 if (writer->type_str != NULL)
1928 sub->type_pos += 1; /* move to point to the element type, since type_pos
1929 * should be the expected type for further writes
1931 sub->u.array.element_type_pos = sub->type_pos;
1934 if (!writer->type_pos_is_expectation)
1936 /* sub is a toplevel/outermost array so we need to write the type data */
1938 /* alloc space for array typecode, element signature */
1939 if (!_dbus_string_alloc_space (writer->type_str, 1 + contained_type_len))
1942 if (!_dbus_string_insert_byte (writer->type_str,
1945 _dbus_assert_not_reached ("failed to insert array typecode after prealloc");
1947 if (!_dbus_string_copy_len (contained_type,
1948 contained_type_start, contained_type_len,
1950 sub->u.array.element_type_pos))
1951 _dbus_assert_not_reached ("should not have failed to insert array element typecodes");
1954 if (writer->type_str != NULL)
1956 /* If the parent is an array, we hold type_pos pointing at the array element type;
1957 * otherwise advance it to reflect the array value we just recursed into
1959 if (writer->container_type != DBUS_TYPE_ARRAY)
1960 writer->type_pos += 1 + contained_type_len;
1962 _dbus_assert (writer->type_pos_is_expectation); /* because it's an array */
1965 if (writer->enabled)
1967 /* Write (or jump over, if is_array_append) the length */
1968 sub->u.array.len_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 4);
1970 if (is_array_append)
1972 sub->value_pos += 4;
1976 if (!_dbus_type_writer_write_basic_no_typecode (sub, DBUS_TYPE_UINT32,
1978 _dbus_assert_not_reached ("should not have failed to insert array len");
1981 _dbus_assert (sub->u.array.len_pos == sub->value_pos - 4);
1983 /* Write alignment padding for array elements
1984 * Note that we write the padding *even for empty arrays*
1985 * to avoid wonky special cases
1987 alignment = element_type_get_alignment (contained_type, contained_type_start);
1989 aligned = _DBUS_ALIGN_VALUE (sub->value_pos, alignment);
1990 if (aligned != sub->value_pos)
1992 if (!is_array_append)
1994 if (!_dbus_string_insert_bytes (sub->value_str,
1996 aligned - sub->value_pos,
1998 _dbus_assert_not_reached ("should not have failed to insert alignment padding");
2001 sub->value_pos = aligned;
2004 sub->u.array.start_pos = sub->value_pos;
2006 if (is_array_append)
2010 _dbus_assert (_DBUS_ALIGN_VALUE (sub->u.array.len_pos, 4) ==
2011 (unsigned) sub->u.array.len_pos);
2012 len = _dbus_unpack_uint32 (sub->byte_order,
2013 _dbus_string_get_const_data_len (sub->value_str,
2014 sub->u.array.len_pos,
2017 sub->value_pos += len;
2022 /* not enabled, so we won't write the len_pos; set it to -1 to so indicate */
2023 sub->u.array.len_pos = -1;
2024 sub->u.array.start_pos = sub->value_pos;
2027 _dbus_assert (sub->u.array.len_pos < sub->u.array.start_pos);
2028 _dbus_assert (is_array_append || sub->u.array.start_pos == sub->value_pos);
2030 #if RECURSIVE_MARSHAL_WRITE_TRACE
2031 _dbus_verbose (" type writer %p recurse array done remaining sig '%s' array start_pos = %d len_pos = %d value_pos = %d\n", sub,
2033 _dbus_string_get_const_data_len (sub->type_str, sub->type_pos, 0) :
2035 sub->u.array.start_pos, sub->u.array.len_pos, sub->value_pos);
2041 /* Variant value will normally have:
2042 * 1 byte signature length not including nul
2043 * signature typecodes (nul terminated)
2044 * padding to alignment of contained type
2045 * body according to signature
2047 * The signature string can only have a single type
2048 * in it but that type may be complex/recursive.
2050 * So a typical variant type with the integer 3 will have these
2052 * 0x1 'i' '\0' [1 byte padding to alignment boundary] 0x0 0x0 0x0 0x3
2054 * The main world of hurt for writing out a variant is that the type
2055 * string is the same string as the value string. Which means
2056 * inserting to the type string will move the value_pos; and it means
2057 * that inserting to the type string could break type alignment.
2060 writer_recurse_variant (DBusTypeWriter *writer,
2061 const DBusString *contained_type,
2062 int contained_type_start,
2063 int contained_type_len,
2064 DBusTypeWriter *sub)
2066 int contained_alignment;
2068 if (writer->enabled)
2070 /* Allocate space for the worst case, which is 1 byte sig
2071 * length, nul byte at end of sig, and 7 bytes padding to
2074 if (!_dbus_string_alloc_space (sub->value_str, contained_type_len + 9))
2078 /* write VARIANT typecode to the parent's type string */
2079 if (!write_or_verify_typecode (writer, DBUS_TYPE_VARIANT))
2082 /* If not enabled, mark that we have no type_str anymore ... */
2084 if (!writer->enabled)
2086 sub->type_str = NULL;
2092 /* If we're enabled then continue ... */
2094 if (!_dbus_string_insert_byte (sub->value_str,
2096 contained_type_len))
2097 _dbus_assert_not_reached ("should not have failed to insert variant type sig len");
2099 sub->value_pos += 1;
2101 /* Here we switch over to the expected type sig we're about to write */
2102 sub->type_str = sub->value_str;
2103 sub->type_pos = sub->value_pos;
2105 if (!_dbus_string_copy_len (contained_type, contained_type_start, contained_type_len,
2106 sub->value_str, sub->value_pos))
2107 _dbus_assert_not_reached ("should not have failed to insert variant type sig");
2109 sub->value_pos += contained_type_len;
2111 if (!_dbus_string_insert_byte (sub->value_str,
2114 _dbus_assert_not_reached ("should not have failed to insert variant type nul termination");
2116 sub->value_pos += 1;
2118 contained_alignment = _dbus_type_get_alignment (_dbus_first_type_in_signature (contained_type, contained_type_start));
2120 if (!_dbus_string_insert_bytes (sub->value_str,
2122 _DBUS_ALIGN_VALUE (sub->value_pos, contained_alignment) - sub->value_pos,
2124 _dbus_assert_not_reached ("should not have failed to insert alignment padding for variant body");
2125 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, contained_alignment);
2131 _dbus_type_writer_recurse_contained_len (DBusTypeWriter *writer,
2133 const DBusString *contained_type,
2134 int contained_type_start,
2135 int contained_type_len,
2136 DBusTypeWriter *sub,
2137 dbus_bool_t is_array_append)
2139 writer_recurse_init_and_check (writer, container_type, sub);
2141 switch (container_type)
2143 case DBUS_TYPE_STRUCT:
2144 return writer_recurse_struct_or_dict_entry (writer,
2145 DBUS_STRUCT_BEGIN_CHAR,
2147 contained_type_start, contained_type_len,
2150 case DBUS_TYPE_DICT_ENTRY:
2151 return writer_recurse_struct_or_dict_entry (writer,
2152 DBUS_DICT_ENTRY_BEGIN_CHAR,
2154 contained_type_start, contained_type_len,
2157 case DBUS_TYPE_ARRAY:
2158 return writer_recurse_array (writer,
2159 contained_type, contained_type_start, contained_type_len,
2160 sub, is_array_append);
2162 case DBUS_TYPE_VARIANT:
2163 return writer_recurse_variant (writer,
2164 contained_type, contained_type_start, contained_type_len,
2168 _dbus_assert_not_reached ("tried to recurse into type that doesn't support that");
2175 * Opens a new container and writes out the initial information for that container.
2177 * @param writer the writer
2178 * @param container_type the type of the container to open
2179 * @param contained_type the array element type or variant content type
2180 * @param contained_type_start position to look for the type
2181 * @param sub the new sub-writer to write container contents
2182 * @returns #FALSE if no memory
2185 _dbus_type_writer_recurse (DBusTypeWriter *writer,
2187 const DBusString *contained_type,
2188 int contained_type_start,
2189 DBusTypeWriter *sub)
2191 int contained_type_len;
2194 contained_type_len = find_len_of_complete_type (contained_type, contained_type_start);
2196 contained_type_len = 0;
2198 return _dbus_type_writer_recurse_contained_len (writer, container_type,
2200 contained_type_start,
2207 * Append to an existing array. Essentially, the writer will read an
2208 * existing length at the write location; jump over that length; and
2209 * write new fields. On unrecurse(), the existing length will be
2212 * @param writer the writer
2213 * @param contained_type element type
2214 * @param contained_type_start position of element type
2215 * @param sub the subwriter to init
2216 * @returns #FALSE if no memory
2219 _dbus_type_writer_append_array (DBusTypeWriter *writer,
2220 const DBusString *contained_type,
2221 int contained_type_start,
2222 DBusTypeWriter *sub)
2224 int contained_type_len;
2227 contained_type_len = find_len_of_complete_type (contained_type, contained_type_start);
2229 contained_type_len = 0;
2231 return _dbus_type_writer_recurse_contained_len (writer, DBUS_TYPE_ARRAY,
2233 contained_type_start,
2240 writer_get_array_len (DBusTypeWriter *writer)
2242 _dbus_assert (writer->container_type == DBUS_TYPE_ARRAY);
2243 return writer->value_pos - writer->u.array.start_pos;
2247 * Closes a container created by _dbus_type_writer_recurse()
2248 * and writes any additional information to the values block.
2250 * @param writer the writer
2251 * @param sub the sub-writer created by _dbus_type_writer_recurse()
2252 * @returns #FALSE if no memory
2255 _dbus_type_writer_unrecurse (DBusTypeWriter *writer,
2256 DBusTypeWriter *sub)
2258 /* type_pos_is_expectation never gets unset once set, or we'd get all hosed */
2259 _dbus_assert (!writer->type_pos_is_expectation ||
2260 (writer->type_pos_is_expectation && sub->type_pos_is_expectation));
2262 #if RECURSIVE_MARSHAL_WRITE_TRACE
2263 _dbus_verbose (" type writer %p unrecurse type_pos = %d value_pos = %d is_expectation = %d container_type = %s\n",
2264 writer, writer->type_pos, writer->value_pos, writer->type_pos_is_expectation,
2265 _dbus_type_to_string (writer->container_type));
2266 _dbus_verbose (" type writer %p unrecurse sub type_pos = %d value_pos = %d is_expectation = %d container_type = %s\n",
2267 sub, sub->type_pos, sub->value_pos,
2268 sub->type_pos_is_expectation,
2269 _dbus_type_to_string (sub->container_type));
2272 if (sub->container_type == DBUS_TYPE_STRUCT)
2274 if (!write_or_verify_typecode (sub, DBUS_STRUCT_END_CHAR))
2277 else if (sub->container_type == DBUS_TYPE_DICT_ENTRY)
2279 if (!write_or_verify_typecode (sub, DBUS_DICT_ENTRY_END_CHAR))
2282 else if (sub->container_type == DBUS_TYPE_ARRAY)
2284 if (sub->u.array.len_pos >= 0) /* len_pos == -1 if we weren't enabled when we passed it */
2288 /* Set the array length */
2289 len = writer_get_array_len (sub);
2290 _dbus_marshal_set_uint32 (sub->value_str,
2291 sub->u.array.len_pos,
2294 #if RECURSIVE_MARSHAL_WRITE_TRACE
2295 _dbus_verbose (" filled in sub array len to %u at len_pos %d\n",
2296 len, sub->u.array.len_pos);
2299 #if RECURSIVE_MARSHAL_WRITE_TRACE
2302 _dbus_verbose (" not filling in sub array len because we were disabled when we passed the len\n");
2307 /* Now get type_pos right for the parent writer. Here are the cases:
2309 * Cases !writer->type_pos_is_expectation:
2310 * (in these cases we want to update to the new insertion point)
2312 * - if we recursed into a STRUCT then we didn't know in advance
2313 * what the types in the struct would be; so we have to fill in
2314 * that information now.
2315 * writer->type_pos = sub->type_pos
2317 * - if we recursed into anything else, we knew the full array
2318 * type, or knew the single typecode marking VARIANT, so
2319 * writer->type_pos is already correct.
2320 * writer->type_pos should remain as-is
2322 * - note that the parent is never an ARRAY or VARIANT, if it were
2323 * then type_pos_is_expectation would be TRUE. The parent
2324 * is thus known to be a toplevel or STRUCT.
2326 * Cases where writer->type_pos_is_expectation:
2327 * (in these cases we want to update to next expected type to write)
2329 * - we recursed from STRUCT into STRUCT and we didn't increment
2330 * type_pos in the parent just to stay consistent with the
2331 * !writer->type_pos_is_expectation case (though we could
2332 * special-case this in recurse_struct instead if we wanted)
2333 * writer->type_pos = sub->type_pos
2335 * - we recursed from STRUCT into ARRAY or VARIANT and type_pos
2336 * for parent should have been incremented already
2337 * writer->type_pos should remain as-is
2339 * - we recursed from ARRAY into a sub-element, so type_pos in the
2340 * parent is the element type and should remain the element type
2341 * for the benefit of the next child element
2342 * writer->type_pos should remain as-is
2344 * - we recursed from VARIANT into its value, so type_pos in the
2345 * parent makes no difference since there's only one value
2346 * and we just finished writing it and won't use type_pos again
2347 * writer->type_pos should remain as-is
2350 * For all these, DICT_ENTRY is the same as STRUCT
2352 if (writer->type_str != NULL)
2354 if ((sub->container_type == DBUS_TYPE_STRUCT ||
2355 sub->container_type == DBUS_TYPE_DICT_ENTRY) &&
2356 (writer->container_type == DBUS_TYPE_STRUCT ||
2357 writer->container_type == DBUS_TYPE_DICT_ENTRY ||
2358 writer->container_type == DBUS_TYPE_INVALID))
2360 /* Advance the parent to the next struct field */
2361 writer->type_pos = sub->type_pos;
2365 writer->value_pos = sub->value_pos;
2367 #if RECURSIVE_MARSHAL_WRITE_TRACE
2368 _dbus_verbose (" type writer %p unrecursed type_pos = %d value_pos = %d remaining sig '%s'\n",
2369 writer, writer->type_pos, writer->value_pos,
2371 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
2379 * Writes out a basic type.
2381 * @param writer the writer
2382 * @param type the type to write
2383 * @param value the address of the value to write
2384 * @returns #FALSE if no memory
2387 _dbus_type_writer_write_basic (DBusTypeWriter *writer,
2393 /* First ensure that our type realloc will succeed */
2394 if (!writer->type_pos_is_expectation && writer->type_str != NULL)
2396 if (!_dbus_string_alloc_space (writer->type_str, 1))
2402 if (!_dbus_type_writer_write_basic_no_typecode (writer, type, value))
2405 if (!write_or_verify_typecode (writer, type))
2406 _dbus_assert_not_reached ("failed to write typecode after prealloc");
2411 #if RECURSIVE_MARSHAL_WRITE_TRACE
2412 _dbus_verbose (" type writer %p basic type_pos = %d value_pos = %d is_expectation = %d enabled = %d\n",
2413 writer, writer->type_pos, writer->value_pos, writer->type_pos_is_expectation,
2421 * Writes a block of fixed-length basic values, i.e. those that are
2422 * both dbus_type_is_fixed() and _dbus_type_is_basic(). The block
2423 * must be written inside an array.
2425 * The value parameter should be the address of said array of values,
2426 * so e.g. if it's an array of double, pass in "const double**"
2428 * @param writer the writer
2429 * @param element_type type of stuff in the array
2430 * @param value address of the array
2431 * @param n_elements number of elements in the array
2432 * @returns #FALSE if no memory
2435 _dbus_type_writer_write_fixed_multi (DBusTypeWriter *writer,
2440 _dbus_assert (writer->container_type == DBUS_TYPE_ARRAY);
2441 _dbus_assert (dbus_type_is_fixed (element_type));
2442 _dbus_assert (writer->type_pos_is_expectation);
2443 _dbus_assert (n_elements >= 0);
2445 #if RECURSIVE_MARSHAL_WRITE_TRACE
2446 _dbus_verbose (" type writer %p entering fixed multi type_pos = %d value_pos = %d n_elements %d\n",
2447 writer, writer->type_pos, writer->value_pos, n_elements);
2450 if (!write_or_verify_typecode (writer, element_type))
2451 _dbus_assert_not_reached ("OOM should not happen if only verifying typecode");
2453 if (writer->enabled)
2455 if (!_dbus_marshal_write_fixed_multi (writer->value_str,
2461 &writer->value_pos))
2465 #if RECURSIVE_MARSHAL_WRITE_TRACE
2466 _dbus_verbose (" type writer %p fixed multi written new type_pos = %d new value_pos = %d n_elements %d\n",
2467 writer, writer->type_pos, writer->value_pos, n_elements);
2474 enable_if_after (DBusTypeWriter *writer,
2475 DBusTypeReader *reader,
2476 const DBusTypeReader *start_after)
2480 if (!writer->enabled && _dbus_type_reader_greater_than (reader, start_after))
2482 _dbus_type_writer_set_enabled (writer, TRUE);
2483 #if RECURSIVE_MARSHAL_WRITE_TRACE
2484 _dbus_verbose ("ENABLING writer %p at %d because reader at value_pos %d is after reader at value_pos %d\n",
2485 writer, writer->value_pos, reader->value_pos, start_after->value_pos);
2489 _dbus_assert ((!writer->enabled && !_dbus_type_reader_greater_than (reader, start_after)) ||
2490 (writer->enabled && _dbus_type_reader_greater_than (reader, start_after)));
2495 append_fixup (DBusList **fixups,
2496 const DBusArrayLenFixup *fixup)
2498 DBusArrayLenFixup *f;
2500 f = dbus_new (DBusArrayLenFixup, 1);
2506 if (!_dbus_list_append (fixups, f))
2512 _dbus_assert (f->len_pos_in_reader == fixup->len_pos_in_reader);
2513 _dbus_assert (f->new_len == fixup->new_len);
2518 /* This loop is trivial if you ignore all the start_after nonsense,
2519 * so if you're trying to figure it out, start by ignoring that
2522 writer_write_reader_helper (DBusTypeWriter *writer,
2523 DBusTypeReader *reader,
2524 const DBusTypeReader *start_after,
2525 int start_after_new_pos,
2526 int start_after_new_len,
2528 dbus_bool_t inside_start_after)
2532 while ((current_type = _dbus_type_reader_get_current_type (reader)) != DBUS_TYPE_INVALID)
2534 if (dbus_type_is_container (current_type))
2536 DBusTypeReader subreader;
2537 DBusTypeWriter subwriter;
2538 const DBusString *sig_str;
2541 dbus_bool_t enabled_at_recurse;
2542 dbus_bool_t past_start_after;
2543 int reader_array_len_pos;
2544 int reader_array_start_pos;
2545 dbus_bool_t this_is_start_after;
2547 /* type_pos is checked since e.g. in a struct the struct
2548 * and its first field have the same value_pos.
2549 * type_str will differ in reader/start_after for variants
2550 * where type_str is inside the value_str
2552 if (!inside_start_after && start_after &&
2553 reader->value_pos == start_after->value_pos &&
2554 reader->type_str == start_after->type_str &&
2555 reader->type_pos == start_after->type_pos)
2556 this_is_start_after = TRUE;
2558 this_is_start_after = FALSE;
2560 _dbus_type_reader_recurse (reader, &subreader);
2562 if (current_type == DBUS_TYPE_ARRAY)
2564 reader_array_len_pos = ARRAY_READER_LEN_POS (&subreader);
2565 reader_array_start_pos = subreader.u.array.start_pos;
2570 reader_array_len_pos = -1;
2571 reader_array_start_pos = -1;
2574 _dbus_type_reader_get_signature (&subreader, &sig_str,
2575 &sig_start, &sig_len);
2577 #if RECURSIVE_MARSHAL_WRITE_TRACE
2578 _dbus_verbose ("about to recurse into %s reader at %d subreader at %d writer at %d start_after reader at %d write target len %d inside_start_after = %d this_is_start_after = %d\n",
2579 _dbus_type_to_string (current_type),
2581 subreader.value_pos,
2583 start_after ? start_after->value_pos : -1,
2584 _dbus_string_get_length (writer->value_str),
2585 inside_start_after, this_is_start_after);
2588 if (!inside_start_after && !this_is_start_after)
2589 enable_if_after (writer, &subreader, start_after);
2590 enabled_at_recurse = writer->enabled;
2591 if (!_dbus_type_writer_recurse_contained_len (writer, current_type,
2592 sig_str, sig_start, sig_len,
2596 #if RECURSIVE_MARSHAL_WRITE_TRACE
2597 _dbus_verbose ("recursed into subwriter at %d write target len %d\n",
2598 subwriter.value_pos,
2599 _dbus_string_get_length (subwriter.value_str));
2602 if (!writer_write_reader_helper (&subwriter, &subreader, start_after,
2603 start_after_new_pos, start_after_new_len,
2605 inside_start_after ||
2606 this_is_start_after))
2609 #if RECURSIVE_MARSHAL_WRITE_TRACE
2610 _dbus_verbose ("about to unrecurse from %s subreader at %d writer at %d subwriter at %d write target len %d\n",
2611 _dbus_type_to_string (current_type),
2612 subreader.value_pos,
2614 subwriter.value_pos,
2615 _dbus_string_get_length (writer->value_str));
2618 if (!inside_start_after && !this_is_start_after)
2619 enable_if_after (writer, &subreader, start_after);
2620 past_start_after = writer->enabled;
2621 if (!_dbus_type_writer_unrecurse (writer, &subwriter))
2624 /* If we weren't enabled when we recursed, we didn't
2625 * write an array len; if we passed start_after
2626 * somewhere inside the array, then we need to generate
2629 if (start_after != NULL &&
2630 !enabled_at_recurse && past_start_after &&
2631 current_type == DBUS_TYPE_ARRAY &&
2634 DBusArrayLenFixup fixup;
2635 int bytes_written_after_start_after;
2636 int bytes_before_start_after;
2639 /* this subwriter access is moderately unkosher since we
2640 * already unrecursed, but it works as long as unrecurse
2641 * doesn't break us on purpose
2643 bytes_written_after_start_after = writer_get_array_len (&subwriter);
2645 bytes_before_start_after =
2646 start_after->value_pos - reader_array_start_pos;
2648 fixup.len_pos_in_reader = reader_array_len_pos;
2650 bytes_before_start_after +
2651 start_after_new_len +
2652 bytes_written_after_start_after;
2654 _dbus_assert (_DBUS_ALIGN_VALUE (fixup.len_pos_in_reader, 4) ==
2655 (unsigned) fixup.len_pos_in_reader);
2657 old_len = _dbus_unpack_uint32 (reader->byte_order,
2658 _dbus_string_get_const_data_len (reader->value_str,
2659 fixup.len_pos_in_reader, 4));
2661 if (old_len != fixup.new_len && !append_fixup (fixups, &fixup))
2664 #if RECURSIVE_MARSHAL_WRITE_TRACE
2665 _dbus_verbose ("Generated fixup len_pos_in_reader = %d new_len = %d reader_array_start_pos = %d start_after->value_pos = %d bytes_before_start_after = %d start_after_new_len = %d bytes_written_after_start_after = %d\n",
2666 fixup.len_pos_in_reader,
2668 reader_array_start_pos,
2669 start_after->value_pos,
2670 bytes_before_start_after,
2671 start_after_new_len,
2672 bytes_written_after_start_after);
2680 _dbus_assert (dbus_type_is_basic (current_type));
2682 #if RECURSIVE_MARSHAL_WRITE_TRACE
2683 _dbus_verbose ("Reading basic value %s at %d\n",
2684 _dbus_type_to_string (current_type),
2688 _dbus_type_reader_read_basic (reader, &val);
2690 #if RECURSIVE_MARSHAL_WRITE_TRACE
2691 _dbus_verbose ("Writing basic value %s at %d write target len %d inside_start_after = %d\n",
2692 _dbus_type_to_string (current_type),
2694 _dbus_string_get_length (writer->value_str),
2695 inside_start_after);
2697 if (!inside_start_after)
2698 enable_if_after (writer, reader, start_after);
2699 if (!_dbus_type_writer_write_basic (writer, current_type, &val))
2701 #if RECURSIVE_MARSHAL_WRITE_TRACE
2702 _dbus_verbose ("Wrote basic value %s, new value_pos %d write target len %d\n",
2703 _dbus_type_to_string (current_type),
2705 _dbus_string_get_length (writer->value_str));
2709 _dbus_type_reader_next (reader);
2716 apply_and_free_fixups (fixups, NULL); /* NULL for reader to apply to */
2722 * Iterate through all values in the given reader, writing a copy of
2723 * each value to the writer. The reader will be moved forward to its
2726 * If a reader start_after is provided, it should be a reader for the
2727 * same data as the reader to be written. Only values occurring after
2728 * the value pointed to by start_after will be written to the writer.
2730 * If start_after is provided, then the copy of the reader will be
2731 * partial. This means that array lengths will not have been copied.
2732 * The assumption is that you wrote a new version of the value at
2733 * start_after to the writer. You have to pass in the start position
2734 * and length of the new value. (If you are deleting the value
2735 * at start_after, pass in 0 for the length.)
2737 * If the fixups parameter is non-#NULL, then any array length that
2738 * was read but not written due to start_after will be provided
2739 * as a #DBusArrayLenFixup. The fixup contains the position of the
2740 * array length in the source data, and the correct array length
2741 * assuming you combine the source data before start_after with
2742 * the written data at start_after and beyond.
2744 * @param writer the writer to copy to
2745 * @param reader the reader to copy from
2746 * @param start_after #NULL or a reader showing where to start
2747 * @param start_after_new_pos the position of start_after equivalent in the target data
2748 * @param start_after_new_len the length of start_after equivalent in the target data
2749 * @param fixups list to append #DBusArrayLenFixup if the write was partial
2750 * @returns #FALSE if no memory
2753 _dbus_type_writer_write_reader_partial (DBusTypeWriter *writer,
2754 DBusTypeReader *reader,
2755 const DBusTypeReader *start_after,
2756 int start_after_new_pos,
2757 int start_after_new_len,
2760 DBusTypeWriter orig;
2767 orig_type_len = _dbus_string_get_length (writer->type_str);
2768 orig_value_len = _dbus_string_get_length (writer->value_str);
2769 orig_enabled = writer->enabled;
2772 _dbus_type_writer_set_enabled (writer, FALSE);
2774 if (!writer_write_reader_helper (writer, reader, start_after,
2775 start_after_new_pos,
2776 start_after_new_len,
2780 _dbus_type_writer_set_enabled (writer, orig_enabled);
2784 if (!writer->type_pos_is_expectation)
2786 new_bytes = _dbus_string_get_length (writer->type_str) - orig_type_len;
2787 _dbus_string_delete (writer->type_str, orig.type_pos, new_bytes);
2789 new_bytes = _dbus_string_get_length (writer->value_str) - orig_value_len;
2790 _dbus_string_delete (writer->value_str, orig.value_pos, new_bytes);
2798 * Iterate through all values in the given reader, writing a copy of
2799 * each value to the writer. The reader will be moved forward to its
2802 * @param writer the writer to copy to
2803 * @param reader the reader to copy from
2804 * @returns #FALSE if no memory
2807 _dbus_type_writer_write_reader (DBusTypeWriter *writer,
2808 DBusTypeReader *reader)
2810 return _dbus_type_writer_write_reader_partial (writer, reader, NULL, 0, 0, NULL);
2814 * If disabled, a writer can still be iterated forward and recursed/unrecursed
2815 * but won't write any values. Types will still be written unless the
2816 * writer is a "values only" writer, because the writer needs access to
2817 * a valid signature to be able to iterate.
2819 * @param writer the type writer
2820 * @param enabled #TRUE if values should be written
2823 _dbus_type_writer_set_enabled (DBusTypeWriter *writer,
2824 dbus_bool_t enabled)
2826 writer->enabled = enabled != FALSE;
2829 /** @} */ /* end of DBusMarshal group */
2831 /* tests in dbus-marshal-recursive-util.c */