1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "dbus-marshal-recursive.h"
26 #include "dbus-marshal-basic.h"
27 #include "dbus-signature.h"
28 #include "dbus-internals.h"
31 * @addtogroup DBusMarshal
35 /** turn this on to get deluged in TypeReader verbose spam */
36 #define RECURSIVE_MARSHAL_READ_TRACE 0
38 /** turn this on to get deluged in TypeWriter verbose spam */
39 #define RECURSIVE_MARSHAL_WRITE_TRACE 0
42 free_fixups (DBusList **fixups)
46 link = _dbus_list_get_first_link (fixups);
51 next = _dbus_list_get_next_link (fixups, link);
53 dbus_free (link->data);
54 _dbus_list_free_link (link);
63 apply_and_free_fixups (DBusList **fixups,
64 DBusTypeReader *reader)
68 #if RECURSIVE_MARSHAL_WRITE_TRACE
70 _dbus_verbose (" %d FIXUPS to apply\n",
71 _dbus_list_get_length (fixups));
74 link = _dbus_list_get_first_link (fixups);
79 next = _dbus_list_get_next_link (fixups, link);
87 #if RECURSIVE_MARSHAL_WRITE_TRACE
88 _dbus_verbose (" applying FIXUP to reader %p at pos %d new_len = %d old len %d\n",
89 reader, f->len_pos_in_reader, f->new_len,
90 _dbus_marshal_read_uint32 (reader->value_str,
92 reader->byte_order, NULL));
95 _dbus_marshal_set_uint32 ((DBusString*) reader->value_str,
101 dbus_free (link->data);
102 _dbus_list_free_link (link);
111 * Virtual table for a type reader.
113 struct DBusTypeReaderClass
115 const char *name; /**< name for debugging */
116 int id; /**< index in all_reader_classes */
117 dbus_bool_t types_only; /**< only iterates over types, not values */
118 void (* recurse) (DBusTypeReader *sub,
119 DBusTypeReader *parent); /**< recurse with this reader as sub */
120 dbus_bool_t (* check_finished) (const DBusTypeReader *reader); /**< check whether reader is at the end */
121 void (* next) (DBusTypeReader *reader,
122 int current_type); /**< go to the next value */
126 element_type_get_alignment (const DBusString *str,
129 return _dbus_type_get_alignment (_dbus_first_type_in_signature (str, pos));
133 reader_init (DBusTypeReader *reader,
135 const DBusString *type_str,
137 const DBusString *value_str,
140 reader->byte_order = byte_order;
141 reader->finished = FALSE;
142 reader->type_str = type_str;
143 reader->type_pos = type_pos;
144 reader->value_str = value_str;
145 reader->value_pos = value_pos;
149 base_reader_recurse (DBusTypeReader *sub,
150 DBusTypeReader *parent)
152 /* point subreader at the same place as parent */
162 struct_or_dict_entry_types_only_reader_recurse (DBusTypeReader *sub,
163 DBusTypeReader *parent)
165 base_reader_recurse (sub, parent);
167 _dbus_assert (_dbus_string_get_byte (sub->type_str,
168 sub->type_pos) == DBUS_STRUCT_BEGIN_CHAR ||
169 _dbus_string_get_byte (sub->type_str,
170 sub->type_pos) == DBUS_DICT_ENTRY_BEGIN_CHAR);
176 struct_or_dict_entry_reader_recurse (DBusTypeReader *sub,
177 DBusTypeReader *parent)
179 struct_or_dict_entry_types_only_reader_recurse (sub, parent);
181 /* struct and dict entry have 8 byte alignment */
182 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 8);
186 array_types_only_reader_recurse (DBusTypeReader *sub,
187 DBusTypeReader *parent)
189 base_reader_recurse (sub, parent);
191 /* point type_pos at the array element type */
194 /* Init with values likely to crash things if misused */
195 sub->u.array.start_pos = _DBUS_INT_MAX;
196 sub->array_len_offset = 7;
199 /** compute position of array length given array_len_offset, which is
200 the offset back from start_pos to end of the len */
201 #define ARRAY_READER_LEN_POS(reader) \
202 ((reader)->u.array.start_pos - ((int)(reader)->array_len_offset) - 4)
205 array_reader_get_array_len (const DBusTypeReader *reader)
207 dbus_uint32_t array_len;
210 len_pos = ARRAY_READER_LEN_POS (reader);
212 _dbus_assert (_DBUS_ALIGN_VALUE (len_pos, 4) == (unsigned) len_pos);
213 array_len = _dbus_unpack_uint32 (reader->byte_order,
214 _dbus_string_get_const_data_len (reader->value_str, len_pos, 4));
216 #if RECURSIVE_MARSHAL_READ_TRACE
217 _dbus_verbose (" reader %p len_pos %d array len %u len_offset %d\n",
218 reader, len_pos, array_len, reader->array_len_offset);
221 _dbus_assert (reader->u.array.start_pos - len_pos - 4 < 8);
227 array_reader_recurse (DBusTypeReader *sub,
228 DBusTypeReader *parent)
233 array_types_only_reader_recurse (sub, parent);
235 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 4);
237 len_pos = sub->value_pos;
239 sub->value_pos += 4; /* for the length */
241 alignment = element_type_get_alignment (sub->type_str,
244 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, alignment);
246 sub->u.array.start_pos = sub->value_pos;
247 _dbus_assert ((sub->u.array.start_pos - (len_pos + 4)) < 8); /* only 3 bits in array_len_offset */
248 sub->array_len_offset = sub->u.array.start_pos - (len_pos + 4);
250 #if RECURSIVE_MARSHAL_READ_TRACE
251 _dbus_verbose (" type reader %p array start = %d len_offset = %d array len = %d array element type = %s\n",
253 sub->u.array.start_pos,
254 sub->array_len_offset,
255 array_reader_get_array_len (sub),
256 _dbus_type_to_string (_dbus_first_type_in_signature (sub->type_str,
262 variant_reader_recurse (DBusTypeReader *sub,
263 DBusTypeReader *parent)
266 int contained_alignment;
268 base_reader_recurse (sub, parent);
270 /* Variant is 1 byte sig length (without nul), signature with nul,
271 * padding to 8-boundary, then values
274 sig_len = _dbus_string_get_byte (sub->value_str, sub->value_pos);
276 sub->type_str = sub->value_str;
277 sub->type_pos = sub->value_pos + 1;
279 sub->value_pos = sub->type_pos + sig_len + 1;
281 contained_alignment = _dbus_type_get_alignment (_dbus_first_type_in_signature (sub->type_str,
284 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, contained_alignment);
286 #if RECURSIVE_MARSHAL_READ_TRACE
287 _dbus_verbose (" type reader %p variant containing '%s'\n",
289 _dbus_string_get_const_data_len (sub->type_str,
295 array_reader_check_finished (const DBusTypeReader *reader)
299 /* return the array element type if elements remain, and
300 * TYPE_INVALID otherwise
303 end_pos = reader->u.array.start_pos + array_reader_get_array_len (reader);
305 _dbus_assert (reader->value_pos <= end_pos);
306 _dbus_assert (reader->value_pos >= reader->u.array.start_pos);
308 return reader->value_pos == end_pos;
312 skip_one_complete_type (const DBusString *type_str,
315 _dbus_type_signature_next (_dbus_string_get_const_data (type_str),
320 * Skips to the next "complete" type inside a type signature.
321 * The signature is read starting at type_pos, and the next
322 * type position is stored in the same variable.
324 * @param type_str a type signature (must be valid)
325 * @param type_pos an integer position in the type signature (in and out)
328 _dbus_type_signature_next (const char *type_str,
331 const unsigned char *p;
332 const unsigned char *start;
334 _dbus_assert (type_str != NULL);
335 _dbus_assert (type_pos != NULL);
338 p = start + *type_pos;
340 _dbus_assert (*p != DBUS_STRUCT_END_CHAR);
341 _dbus_assert (*p != DBUS_DICT_ENTRY_END_CHAR);
343 while (*p == DBUS_TYPE_ARRAY)
346 _dbus_assert (*p != DBUS_STRUCT_END_CHAR);
347 _dbus_assert (*p != DBUS_DICT_ENTRY_END_CHAR);
349 if (*p == DBUS_STRUCT_BEGIN_CHAR)
357 _dbus_assert (*p != DBUS_TYPE_INVALID);
361 _dbus_assert (*p != DBUS_TYPE_INVALID);
363 if (*p == DBUS_STRUCT_BEGIN_CHAR)
365 else if (*p == DBUS_STRUCT_END_CHAR)
376 else if (*p == DBUS_DICT_ENTRY_BEGIN_CHAR)
384 _dbus_assert (*p != DBUS_TYPE_INVALID);
388 _dbus_assert (*p != DBUS_TYPE_INVALID);
390 if (*p == DBUS_DICT_ENTRY_BEGIN_CHAR)
392 else if (*p == DBUS_DICT_ENTRY_END_CHAR)
408 *type_pos = (int) (p - start);
412 find_len_of_complete_type (const DBusString *type_str,
419 skip_one_complete_type (type_str, &end);
421 return end - type_pos;
425 base_reader_next (DBusTypeReader *reader,
428 switch (current_type)
430 case DBUS_TYPE_DICT_ENTRY:
431 case DBUS_TYPE_STRUCT:
432 case DBUS_TYPE_VARIANT:
433 /* Scan forward over the entire container contents */
437 if (reader->klass->types_only && current_type == DBUS_TYPE_VARIANT)
441 /* Recurse into the struct or variant */
442 _dbus_type_reader_recurse (reader, &sub);
444 /* Skip everything in this subreader */
445 while (_dbus_type_reader_next (&sub))
450 if (!reader->klass->types_only)
451 reader->value_pos = sub.value_pos;
453 /* Now we are at the end of this container; for variants, the
454 * subreader's type_pos is totally inapplicable (it's in the
455 * value string) but we know that we increment by one past the
458 if (current_type == DBUS_TYPE_VARIANT)
459 reader->type_pos += 1;
461 reader->type_pos = sub.type_pos;
465 case DBUS_TYPE_ARRAY:
467 if (!reader->klass->types_only)
468 _dbus_marshal_skip_array (reader->value_str,
469 _dbus_first_type_in_signature (reader->type_str,
470 reader->type_pos + 1),
474 skip_one_complete_type (reader->type_str, &reader->type_pos);
479 if (!reader->klass->types_only)
480 _dbus_marshal_skip_basic (reader->value_str,
481 current_type, reader->byte_order,
484 reader->type_pos += 1;
490 struct_reader_next (DBusTypeReader *reader,
495 base_reader_next (reader, current_type);
497 /* for STRUCT containers we return FALSE at the end of the struct,
498 * for INVALID we return FALSE at the end of the signature.
499 * In both cases we arrange for get_current_type() to return INVALID
500 * which is defined to happen iff we're at the end (no more next())
502 t = _dbus_string_get_byte (reader->type_str, reader->type_pos);
503 if (t == DBUS_STRUCT_END_CHAR)
505 reader->type_pos += 1;
506 reader->finished = TRUE;
511 dict_entry_reader_next (DBusTypeReader *reader,
516 base_reader_next (reader, current_type);
518 /* for STRUCT containers we return FALSE at the end of the struct,
519 * for INVALID we return FALSE at the end of the signature.
520 * In both cases we arrange for get_current_type() to return INVALID
521 * which is defined to happen iff we're at the end (no more next())
523 t = _dbus_string_get_byte (reader->type_str, reader->type_pos);
524 if (t == DBUS_DICT_ENTRY_END_CHAR)
526 reader->type_pos += 1;
527 reader->finished = TRUE;
532 array_types_only_reader_next (DBusTypeReader *reader,
535 /* We have one "element" to be iterated over
536 * in each array, which is its element type.
537 * So the finished flag indicates whether we've
538 * iterated over it yet or not.
540 reader->finished = TRUE;
544 array_reader_next (DBusTypeReader *reader,
547 /* Skip one array element */
550 end_pos = reader->u.array.start_pos + array_reader_get_array_len (reader);
552 #if RECURSIVE_MARSHAL_READ_TRACE
553 _dbus_verbose (" reader %p array next START start_pos = %d end_pos = %d value_pos = %d current_type = %s\n",
555 reader->u.array.start_pos,
556 end_pos, reader->value_pos,
557 _dbus_type_to_string (current_type));
560 _dbus_assert (reader->value_pos < end_pos);
561 _dbus_assert (reader->value_pos >= reader->u.array.start_pos);
563 switch (_dbus_first_type_in_signature (reader->type_str,
566 case DBUS_TYPE_DICT_ENTRY:
567 case DBUS_TYPE_STRUCT:
568 case DBUS_TYPE_VARIANT:
572 /* Recurse into the struct or variant */
573 _dbus_type_reader_recurse (reader, &sub);
575 /* Skip everything in this element */
576 while (_dbus_type_reader_next (&sub))
581 /* Now we are at the end of this element */
582 reader->value_pos = sub.value_pos;
586 case DBUS_TYPE_ARRAY:
588 _dbus_marshal_skip_array (reader->value_str,
589 _dbus_first_type_in_signature (reader->type_str,
590 reader->type_pos + 1),
598 _dbus_marshal_skip_basic (reader->value_str,
599 current_type, reader->byte_order,
605 #if RECURSIVE_MARSHAL_READ_TRACE
606 _dbus_verbose (" reader %p array next END start_pos = %d end_pos = %d value_pos = %d current_type = %s\n",
608 reader->u.array.start_pos,
609 end_pos, reader->value_pos,
610 _dbus_type_to_string (current_type));
613 _dbus_assert (reader->value_pos <= end_pos);
615 if (reader->value_pos == end_pos)
617 skip_one_complete_type (reader->type_str,
622 static const DBusTypeReaderClass body_reader_class = {
625 NULL, /* body is always toplevel, so doesn't get recursed into */
630 static const DBusTypeReaderClass body_types_only_reader_class = {
633 NULL, /* body is always toplevel, so doesn't get recursed into */
638 static const DBusTypeReaderClass struct_reader_class = {
641 struct_or_dict_entry_reader_recurse,
646 static const DBusTypeReaderClass struct_types_only_reader_class = {
649 struct_or_dict_entry_types_only_reader_recurse,
654 static const DBusTypeReaderClass dict_entry_reader_class = {
657 struct_or_dict_entry_reader_recurse,
659 dict_entry_reader_next
662 static const DBusTypeReaderClass dict_entry_types_only_reader_class = {
663 "dict_entry types", 5,
665 struct_or_dict_entry_types_only_reader_recurse,
667 dict_entry_reader_next
670 static const DBusTypeReaderClass array_reader_class = {
673 array_reader_recurse,
674 array_reader_check_finished,
678 static const DBusTypeReaderClass array_types_only_reader_class = {
681 array_types_only_reader_recurse,
683 array_types_only_reader_next
686 static const DBusTypeReaderClass variant_reader_class = {
689 variant_reader_recurse,
694 #ifndef DBUS_DISABLE_ASSERT
695 static const DBusTypeReaderClass * const
696 all_reader_classes[] = {
698 &body_types_only_reader_class,
699 &struct_reader_class,
700 &struct_types_only_reader_class,
701 &dict_entry_reader_class,
702 &dict_entry_types_only_reader_class,
704 &array_types_only_reader_class,
705 &variant_reader_class
710 * Initializes a type reader.
712 * @param reader the reader
713 * @param byte_order the byte order of the block to read
714 * @param type_str the signature of the block to read
715 * @param type_pos location of signature
716 * @param value_str the string containing values block
717 * @param value_pos start of values block
720 _dbus_type_reader_init (DBusTypeReader *reader,
722 const DBusString *type_str,
724 const DBusString *value_str,
727 reader->klass = &body_reader_class;
729 reader_init (reader, byte_order, type_str, type_pos,
730 value_str, value_pos);
732 #if RECURSIVE_MARSHAL_READ_TRACE
733 _dbus_verbose (" type reader %p init type_pos = %d value_pos = %d remaining sig '%s'\n",
734 reader, reader->type_pos, reader->value_pos,
735 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
740 * Like _dbus_type_reader_init() but the iteration is over the
741 * signature, not over values.
743 * @param reader the reader
744 * @param type_str the signature string
745 * @param type_pos location in the signature string
748 _dbus_type_reader_init_types_only (DBusTypeReader *reader,
749 const DBusString *type_str,
752 reader->klass = &body_types_only_reader_class;
754 reader_init (reader, DBUS_COMPILER_BYTE_ORDER /* irrelevant */,
755 type_str, type_pos, NULL, _DBUS_INT_MAX /* crashes if we screw up */);
757 #if RECURSIVE_MARSHAL_READ_TRACE
758 _dbus_verbose (" type reader %p init types only type_pos = %d remaining sig '%s'\n",
759 reader, reader->type_pos,
760 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
765 * Gets the type of the value the reader is currently pointing to;
766 * or for a types-only reader gets the type it's currently pointing to.
767 * If the reader is at the end of a block or end of a container such
768 * as an array, returns #DBUS_TYPE_INVALID.
770 * @param reader the reader
773 _dbus_type_reader_get_current_type (const DBusTypeReader *reader)
777 if (reader->finished ||
778 (reader->klass->check_finished &&
779 (* reader->klass->check_finished) (reader)))
780 t = DBUS_TYPE_INVALID;
782 t = _dbus_first_type_in_signature (reader->type_str,
785 _dbus_assert (t != DBUS_STRUCT_END_CHAR);
786 _dbus_assert (t != DBUS_STRUCT_BEGIN_CHAR);
787 _dbus_assert (t != DBUS_DICT_ENTRY_END_CHAR);
788 _dbus_assert (t != DBUS_DICT_ENTRY_BEGIN_CHAR);
791 _dbus_verbose (" type reader %p current type_pos = %d type = %s\n",
792 reader, reader->type_pos,
793 _dbus_type_to_string (t));
800 * Gets the type of an element of the array the reader is currently
801 * pointing to. It's an error to call this if
802 * _dbus_type_reader_get_current_type() doesn't return #DBUS_TYPE_ARRAY
805 * @param reader the reader
808 _dbus_type_reader_get_element_type (const DBusTypeReader *reader)
812 _dbus_assert (_dbus_type_reader_get_current_type (reader) == DBUS_TYPE_ARRAY);
814 element_type = _dbus_first_type_in_signature (reader->type_str,
815 reader->type_pos + 1);
821 * Gets the current position in the value block
822 * @param reader the reader
825 _dbus_type_reader_get_value_pos (const DBusTypeReader *reader)
827 return reader->value_pos;
831 * Get the address of the marshaled value in the data being read. The
832 * address may not be aligned; you have to align it to the type of the
833 * value you want to read. Most of the demarshal routines do this for
836 * @param reader the reader
837 * @param value_location the address of the marshaled value
840 _dbus_type_reader_read_raw (const DBusTypeReader *reader,
841 const unsigned char **value_location)
843 _dbus_assert (!reader->klass->types_only);
845 *value_location = _dbus_string_get_const_data_len (reader->value_str,
851 * Reads a basic-typed value, as with _dbus_marshal_read_basic().
853 * @param reader the reader
854 * @param value the address of the value
857 _dbus_type_reader_read_basic (const DBusTypeReader *reader,
862 _dbus_assert (!reader->klass->types_only);
864 t = _dbus_type_reader_get_current_type (reader);
866 _dbus_marshal_read_basic (reader->value_str,
873 #if RECURSIVE_MARSHAL_READ_TRACE
874 _dbus_verbose (" type reader %p read basic type_pos = %d value_pos = %d remaining sig '%s'\n",
875 reader, reader->type_pos, reader->value_pos,
876 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
881 * Returns the number of bytes in the array.
883 * @param reader the reader to read from
884 * @returns the number of bytes in the array
887 _dbus_type_reader_get_array_length (const DBusTypeReader *reader)
889 _dbus_assert (!reader->klass->types_only);
890 _dbus_assert (reader->klass == &array_reader_class);
892 return array_reader_get_array_len (reader);
896 * Reads a block of fixed-length basic values, from the current point
897 * in an array to the end of the array. Does not work for arrays of
898 * string or container types.
900 * This function returns the array in-place; it does not make a copy,
901 * and it does not swap the bytes.
903 * If you ask for #DBUS_TYPE_DOUBLE you will get a "const double*" back
904 * and the "value" argument should be a "const double**" and so on.
906 * @param reader the reader to read from
907 * @param value place to return the array values
908 * @param n_elements place to return number of array elements
911 _dbus_type_reader_read_fixed_multi (const DBusTypeReader *reader,
921 _dbus_assert (!reader->klass->types_only);
922 _dbus_assert (reader->klass == &array_reader_class);
924 element_type = _dbus_first_type_in_signature (reader->type_str,
927 _dbus_assert (element_type != DBUS_TYPE_INVALID); /* why we don't use get_current_type() */
928 _dbus_assert (dbus_type_is_fixed (element_type));
930 alignment = _dbus_type_get_alignment (element_type);
932 _dbus_assert (reader->value_pos >= reader->u.array.start_pos);
934 total_len = array_reader_get_array_len (reader);
935 end_pos = reader->u.array.start_pos + total_len;
936 remaining_len = end_pos - reader->value_pos;
938 #if RECURSIVE_MARSHAL_READ_TRACE
939 _dbus_verbose ("end_pos %d total_len %d remaining_len %d value_pos %d\n",
940 end_pos, total_len, remaining_len, reader->value_pos);
943 _dbus_assert (remaining_len <= total_len);
945 if (remaining_len == 0)
946 *(const DBusBasicValue**) value = NULL;
948 *(const DBusBasicValue**) value =
949 (void*) _dbus_string_get_const_data_len (reader->value_str,
953 *n_elements = remaining_len / alignment;
954 _dbus_assert ((remaining_len % alignment) == 0);
956 #if RECURSIVE_MARSHAL_READ_TRACE
957 _dbus_verbose (" type reader %p read fixed array type_pos = %d value_pos = %d remaining sig '%s'\n",
958 reader, reader->type_pos, reader->value_pos,
959 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0));
964 * Initialize a new reader pointing to the first type and
965 * corresponding value that's a child of the current container. It's
966 * an error to call this if the current type is a non-container.
968 * Note that DBusTypeReader traverses values, not types. So if you
969 * have an empty array of array of int, you can't recurse into it. You
970 * can only recurse into each element.
972 * @param reader the reader
973 * @param sub a reader to init pointing to the first child
976 _dbus_type_reader_recurse (DBusTypeReader *reader,
981 t = _dbus_first_type_in_signature (reader->type_str, reader->type_pos);
985 case DBUS_TYPE_STRUCT:
986 if (reader->klass->types_only)
987 sub->klass = &struct_types_only_reader_class;
989 sub->klass = &struct_reader_class;
991 case DBUS_TYPE_DICT_ENTRY:
992 if (reader->klass->types_only)
993 sub->klass = &dict_entry_types_only_reader_class;
995 sub->klass = &dict_entry_reader_class;
997 case DBUS_TYPE_ARRAY:
998 if (reader->klass->types_only)
999 sub->klass = &array_types_only_reader_class;
1001 sub->klass = &array_reader_class;
1003 case DBUS_TYPE_VARIANT:
1004 if (reader->klass->types_only)
1005 _dbus_assert_not_reached ("can't recurse into variant typecode");
1007 sub->klass = &variant_reader_class;
1010 _dbus_verbose ("recursing into type %s\n", _dbus_type_to_string (t));
1011 #ifndef DBUS_DISABLE_CHECKS
1012 if (t == DBUS_TYPE_INVALID)
1013 _dbus_warn_check_failed ("You can't recurse into an empty array or off the end of a message body\n");
1014 #endif /* DBUS_DISABLE_CHECKS */
1016 _dbus_assert_not_reached ("don't yet handle recursing into this type");
1019 _dbus_assert (sub->klass == all_reader_classes[sub->klass->id]);
1021 (* sub->klass->recurse) (sub, reader);
1023 #if RECURSIVE_MARSHAL_READ_TRACE
1024 _dbus_verbose (" type reader %p RECURSED type_pos = %d value_pos = %d remaining sig '%s'\n",
1025 sub, sub->type_pos, sub->value_pos,
1026 _dbus_string_get_const_data_len (sub->type_str, sub->type_pos, 0));
1031 * Skip to the next value on this "level". e.g. the next field in a
1032 * struct, the next value in an array. Returns FALSE at the end of the
1033 * current container.
1035 * @param reader the reader
1036 * @returns FALSE if nothing more to read at or below this level
1039 _dbus_type_reader_next (DBusTypeReader *reader)
1043 t = _dbus_type_reader_get_current_type (reader);
1045 #if RECURSIVE_MARSHAL_READ_TRACE
1046 _dbus_verbose (" type reader %p START next() { type_pos = %d value_pos = %d remaining sig '%s' current_type = %s\n",
1047 reader, reader->type_pos, reader->value_pos,
1048 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0),
1049 _dbus_type_to_string (t));
1052 if (t == DBUS_TYPE_INVALID)
1055 (* reader->klass->next) (reader, t);
1057 #if RECURSIVE_MARSHAL_READ_TRACE
1058 _dbus_verbose (" type reader %p END next() type_pos = %d value_pos = %d remaining sig '%s' current_type = %s\n",
1059 reader, reader->type_pos, reader->value_pos,
1060 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0),
1061 _dbus_type_to_string (_dbus_type_reader_get_current_type (reader)));
1064 return _dbus_type_reader_get_current_type (reader) != DBUS_TYPE_INVALID;
1068 * Check whether there's another value on this "level". e.g. the next
1069 * field in a struct, the next value in an array. Returns FALSE at the
1070 * end of the current container.
1072 * You probably don't want to use this; it makes for an awkward for/while
1073 * loop. A nicer one is "while ((current_type = get_current_type()) != INVALID)"
1075 * @param reader the reader
1076 * @returns FALSE if nothing more to read at or below this level
1079 _dbus_type_reader_has_next (const DBusTypeReader *reader)
1081 /* Not efficient but works for now. */
1082 DBusTypeReader copy;
1085 return _dbus_type_reader_next (©);
1089 * Gets the string and range of said string containing the signature
1090 * of the current value. Essentially a more complete version of
1091 * _dbus_type_reader_get_current_type() (returns the full type
1092 * rather than only the outside of the onion).
1094 * Note though that the first byte in a struct signature is
1095 * #DBUS_STRUCT_BEGIN_CHAR while the current type will be
1096 * #DBUS_TYPE_STRUCT so it isn't true that the first byte of the
1097 * signature is always the same as the current type. Another
1098 * difference is that this function will still return a signature when
1099 * inside an empty array; say you recurse into empty array of int32,
1100 * the signature is "i" but the current type will always be
1101 * #DBUS_TYPE_INVALID since there are no elements to be currently
1104 * @param reader the reader
1105 * @param str_p place to return the string with the type in it
1106 * @param start_p place to return start of the type
1107 * @param len_p place to return the length of the type
1110 _dbus_type_reader_get_signature (const DBusTypeReader *reader,
1111 const DBusString **str_p,
1115 *str_p = reader->type_str;
1116 *start_p = reader->type_pos;
1117 *len_p = find_len_of_complete_type (reader->type_str, reader->type_pos);
1122 DBusString replacement; /**< Marshaled value including alignment padding */
1123 int padding; /**< How much of the replacement block is padding */
1127 replacement_block_init (ReplacementBlock *block,
1128 DBusTypeReader *reader)
1130 if (!_dbus_string_init (&block->replacement))
1133 /* % 8 is the padding to have the same align properties in
1134 * our replacement string as we do at the position being replaced
1136 block->padding = reader->value_pos % 8;
1138 if (!_dbus_string_lengthen (&block->replacement, block->padding))
1144 _dbus_string_free (&block->replacement);
1149 replacement_block_replace (ReplacementBlock *block,
1150 DBusTypeReader *reader,
1151 const DBusTypeReader *realign_root)
1153 DBusTypeWriter writer;
1154 DBusTypeReader realign_reader;
1158 _dbus_assert (realign_root != NULL);
1160 orig_len = _dbus_string_get_length (&block->replacement);
1162 realign_reader = *realign_root;
1164 #if RECURSIVE_MARSHAL_WRITE_TRACE
1165 _dbus_verbose ("INITIALIZING replacement block writer %p at value_pos %d\n",
1166 &writer, _dbus_string_get_length (&block->replacement));
1168 _dbus_type_writer_init_values_only (&writer,
1169 realign_reader.byte_order,
1170 realign_reader.type_str,
1171 realign_reader.type_pos,
1172 &block->replacement,
1173 _dbus_string_get_length (&block->replacement));
1175 _dbus_assert (realign_reader.value_pos <= reader->value_pos);
1177 #if RECURSIVE_MARSHAL_WRITE_TRACE
1178 _dbus_verbose ("COPYING from reader at value_pos %d to writer %p starting after value_pos %d\n",
1179 realign_reader.value_pos, &writer, reader->value_pos);
1182 if (!_dbus_type_writer_write_reader_partial (&writer,
1186 _dbus_string_get_length (&block->replacement) - block->padding,
1190 #if RECURSIVE_MARSHAL_WRITE_TRACE
1191 _dbus_verbose ("REPLACEMENT at padding %d len %d\n", block->padding,
1192 _dbus_string_get_length (&block->replacement) - block->padding);
1193 _dbus_verbose_bytes_of_string (&block->replacement, block->padding,
1194 _dbus_string_get_length (&block->replacement) - block->padding);
1195 _dbus_verbose ("TO BE REPLACED at value_pos = %d (align pad %d) len %d realign_reader.value_pos %d\n",
1196 reader->value_pos, reader->value_pos % 8,
1197 realign_reader.value_pos - reader->value_pos,
1198 realign_reader.value_pos);
1199 _dbus_verbose_bytes_of_string (reader->value_str,
1201 realign_reader.value_pos - reader->value_pos);
1204 /* Move the replacement into position
1205 * (realign_reader should now be at the end of the block to be replaced)
1207 if (!_dbus_string_replace_len (&block->replacement, block->padding,
1208 _dbus_string_get_length (&block->replacement) - block->padding,
1209 (DBusString*) reader->value_str,
1211 realign_reader.value_pos - reader->value_pos))
1214 /* Process our fixups now that we can't have an OOM error */
1215 apply_and_free_fixups (&fixups, reader);
1220 _dbus_string_set_length (&block->replacement, orig_len);
1221 free_fixups (&fixups);
1226 replacement_block_free (ReplacementBlock *block)
1228 _dbus_string_free (&block->replacement);
1231 /* In the variable-length case, we have to fix alignment after we insert.
1232 * The strategy is as follows:
1234 * - pad a new string to have the same alignment as the
1235 * start of the current basic value
1236 * - write the new basic value
1237 * - copy from the original reader to the new string,
1238 * which will fix the alignment of types following
1240 * - this copy has to start at realign_root,
1241 * but not really write anything until it
1242 * passes the value being set
1243 * - as an optimization, we can stop copying
1244 * when the source and dest values are both
1245 * on an 8-boundary, since we know all following
1246 * padding and alignment will be identical
1247 * - copy the new string back to the original
1248 * string, replacing the relevant part of the
1250 * - now any arrays in the original string that
1251 * contained the replaced string may have the
1252 * wrong length; so we have to fix that
1255 reader_set_basic_variable_length (DBusTypeReader *reader,
1258 const DBusTypeReader *realign_root)
1261 ReplacementBlock block;
1262 DBusTypeWriter writer;
1264 _dbus_assert (realign_root != NULL);
1268 if (!replacement_block_init (&block, reader))
1271 /* Write the new basic value */
1272 #if RECURSIVE_MARSHAL_WRITE_TRACE
1273 _dbus_verbose ("INITIALIZING writer %p to write basic value at value_pos %d of replacement string\n",
1274 &writer, _dbus_string_get_length (&block.replacement));
1276 _dbus_type_writer_init_values_only (&writer,
1281 _dbus_string_get_length (&block.replacement));
1282 #if RECURSIVE_MARSHAL_WRITE_TRACE
1283 _dbus_verbose ("WRITING basic value to writer %p (replacement string)\n", &writer);
1285 if (!_dbus_type_writer_write_basic (&writer, current_type, value))
1288 if (!replacement_block_replace (&block,
1296 replacement_block_free (&block);
1301 reader_set_basic_fixed_length (DBusTypeReader *reader,
1305 _dbus_marshal_set_basic ((DBusString*) reader->value_str,
1314 * Sets a new value for the basic type value pointed to by the reader,
1315 * leaving the reader valid to continue reading. Any other readers
1316 * will be invalidated if you set a variable-length type such as a
1319 * The provided realign_root is the reader to start from when
1320 * realigning the data that follows the newly-set value. The reader
1321 * parameter must point to a value below the realign_root parameter.
1322 * If the type being set is fixed-length, then realign_root may be
1323 * #NULL. Only values reachable from realign_root will be realigned,
1324 * so if your string contains other values you will need to deal with
1325 * those somehow yourself. It is OK if realign_root is the same
1326 * reader as the reader parameter, though if you aren't setting the
1327 * root it may not be such a good idea.
1329 * @todo DBusTypeReader currently takes "const" versions of the type
1330 * and value strings, and this function modifies those strings by
1331 * casting away the const, which is of course bad if we want to get
1332 * picky. (To be truly clean you'd have an object which contained the
1333 * type and value strings and set_basic would be a method on that
1334 * object... this would also make DBusTypeReader the same thing as
1335 * DBusTypeMark. But since DBusMessage is effectively that object for
1336 * D-Bus it doesn't seem worth creating some random object.)
1338 * @todo optimize this by only rewriting until the old and new values
1339 * are at the same alignment. Frequently this should result in only
1340 * replacing the value that's immediately at hand.
1342 * @param reader reader indicating where to set a new value
1343 * @param value address of the value to set
1344 * @param realign_root realign from here
1345 * @returns #FALSE if not enough memory
1348 _dbus_type_reader_set_basic (DBusTypeReader *reader,
1350 const DBusTypeReader *realign_root)
1354 _dbus_assert (!reader->klass->types_only);
1355 _dbus_assert (reader->value_str == realign_root->value_str);
1356 _dbus_assert (reader->value_pos >= realign_root->value_pos);
1358 current_type = _dbus_type_reader_get_current_type (reader);
1360 #if RECURSIVE_MARSHAL_WRITE_TRACE
1361 _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",
1362 reader, reader->type_pos, reader->value_pos,
1363 _dbus_string_get_const_data_len (reader->type_str, reader->type_pos, 0),
1365 realign_root ? realign_root->value_pos : -1,
1366 _dbus_type_to_string (current_type));
1367 _dbus_verbose_bytes_of_string (realign_root->value_str, realign_root->value_pos,
1368 _dbus_string_get_length (realign_root->value_str) -
1369 realign_root->value_pos);
1372 _dbus_assert (dbus_type_is_basic (current_type));
1374 if (dbus_type_is_fixed (current_type))
1376 reader_set_basic_fixed_length (reader, current_type, value);
1381 _dbus_assert (realign_root != NULL);
1382 return reader_set_basic_variable_length (reader, current_type,
1383 value, realign_root);
1388 * Recursively deletes any value pointed to by the reader, leaving the
1389 * reader valid to continue reading. Any other readers will be
1392 * The provided realign_root is the reader to start from when
1393 * realigning the data that follows the newly-set value.
1394 * See _dbus_type_reader_set_basic() for more details on the
1395 * realign_root paramter.
1397 * @todo for now this does not delete the typecodes associated with
1398 * the value, so this function should only be used for array elements.
1400 * @param reader reader indicating where to delete a value
1401 * @param realign_root realign from here
1402 * @returns #FALSE if not enough memory
1405 _dbus_type_reader_delete (DBusTypeReader *reader,
1406 const DBusTypeReader *realign_root)
1409 ReplacementBlock block;
1411 _dbus_assert (realign_root != NULL);
1412 _dbus_assert (reader->klass == &array_reader_class);
1416 if (!replacement_block_init (&block, reader))
1419 if (!replacement_block_replace (&block,
1427 replacement_block_free (&block);
1432 * Compares two readers, which must be iterating over the same value data.
1433 * Returns #TRUE if the first parameter is further along than the second parameter.
1435 * @param lhs left-hand-side (first) parameter
1436 * @param rhs left-hand-side (first) parameter
1437 * @returns whether lhs is greater than rhs
1440 _dbus_type_reader_greater_than (const DBusTypeReader *lhs,
1441 const DBusTypeReader *rhs)
1443 _dbus_assert (lhs->value_str == rhs->value_str);
1445 return lhs->value_pos > rhs->value_pos;
1458 * Initialize a write iterator, which is used to write out values in
1459 * serialized D-Bus format.
1461 * The type_pos passed in is expected to be inside an already-valid,
1462 * though potentially empty, type signature. This means that the byte
1463 * after type_pos must be either #DBUS_TYPE_INVALID (aka nul) or some
1464 * other valid type. #DBusTypeWriter won't enforce that the signature
1465 * is already valid (you can append the nul byte at the end if you
1466 * like), but just be aware that you need the nul byte eventually and
1467 * #DBusTypeWriter isn't going to write it for you.
1469 * @param writer the writer to init
1470 * @param byte_order the byte order to marshal into
1471 * @param type_str the string to write typecodes into
1472 * @param type_pos where to insert typecodes
1473 * @param value_str the string to write values into
1474 * @param value_pos where to insert values
1478 _dbus_type_writer_init (DBusTypeWriter *writer,
1480 DBusString *type_str,
1482 DBusString *value_str,
1485 writer->byte_order = byte_order;
1486 writer->type_str = type_str;
1487 writer->type_pos = type_pos;
1488 writer->value_str = value_str;
1489 writer->value_pos = value_pos;
1490 writer->container_type = DBUS_TYPE_INVALID;
1491 writer->type_pos_is_expectation = FALSE;
1492 writer->enabled = TRUE;
1494 #if RECURSIVE_MARSHAL_WRITE_TRACE
1495 _dbus_verbose ("writer %p init remaining sig '%s'\n", writer,
1497 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
1503 * Initialize a write iterator, with the signature to be provided
1506 * @param writer the writer to init
1507 * @param byte_order the byte order to marshal into
1508 * @param value_str the string to write values into
1509 * @param value_pos where to insert values
1513 _dbus_type_writer_init_types_delayed (DBusTypeWriter *writer,
1515 DBusString *value_str,
1518 _dbus_type_writer_init (writer, byte_order,
1519 NULL, 0, value_str, value_pos);
1523 * Adds type string to the writer, if it had none.
1525 * @param writer the writer to init
1526 * @param type_str type string to add
1527 * @param type_pos type position
1531 _dbus_type_writer_add_types (DBusTypeWriter *writer,
1532 DBusString *type_str,
1535 if (writer->type_str == NULL) /* keeps us from using this as setter */
1537 writer->type_str = type_str;
1538 writer->type_pos = type_pos;
1543 * Removes type string from the writer.
1545 * @param writer the writer to remove from
1548 _dbus_type_writer_remove_types (DBusTypeWriter *writer)
1550 writer->type_str = NULL;
1551 writer->type_pos = -1;
1555 * Like _dbus_type_writer_init(), except the type string
1556 * passed in should correspond to an existing signature that
1557 * matches what you're going to write out. The writer will
1558 * check what you write vs. this existing signature.
1560 * @param writer the writer to init
1561 * @param byte_order the byte order to marshal into
1562 * @param type_str the string with signature
1563 * @param type_pos start of signature
1564 * @param value_str the string to write values into
1565 * @param value_pos where to insert values
1569 _dbus_type_writer_init_values_only (DBusTypeWriter *writer,
1571 const DBusString *type_str,
1573 DBusString *value_str,
1576 _dbus_type_writer_init (writer, byte_order,
1577 (DBusString*)type_str, type_pos,
1578 value_str, value_pos);
1580 writer->type_pos_is_expectation = TRUE;
1584 _dbus_type_writer_write_basic_no_typecode (DBusTypeWriter *writer,
1588 if (writer->enabled)
1589 return _dbus_marshal_write_basic (writer->value_str,
1594 &writer->value_pos);
1599 /* If our parent is an array, things are a little bit complicated.
1601 * The parent must have a complete element type, such as
1602 * "i" or "aai" or "(ii)" or "a(ii)". There can't be
1603 * unclosed parens, or an "a" with no following type.
1605 * To recurse, the only allowed operation is to recurse into the
1606 * first type in the element type. So for "i" you can't recurse, for
1607 * "ai" you can recurse into the array, for "(ii)" you can recurse
1610 * If you recurse into the array for "ai", then you must specify
1611 * "i" for the element type of the array you recurse into.
1613 * While inside an array at any level, we need to avoid writing to
1614 * type_str, since the type only appears once for the whole array,
1615 * it does not appear for each array element.
1617 * While inside an array type_pos points to the expected next
1618 * typecode, rather than the next place we could write a typecode.
1621 writer_recurse_init_and_check (DBusTypeWriter *writer,
1623 DBusTypeWriter *sub)
1625 _dbus_type_writer_init (sub,
1632 sub->container_type = container_type;
1634 if (writer->type_pos_is_expectation ||
1635 (sub->container_type == DBUS_TYPE_ARRAY || sub->container_type == DBUS_TYPE_VARIANT))
1636 sub->type_pos_is_expectation = TRUE;
1638 sub->type_pos_is_expectation = FALSE;
1640 sub->enabled = writer->enabled;
1642 #ifndef DBUS_DISABLE_CHECKS
1643 if (writer->type_pos_is_expectation && writer->type_str)
1647 expected = _dbus_first_type_in_signature (writer->type_str, writer->type_pos);
1649 if (expected != sub->container_type)
1651 if (expected != DBUS_TYPE_INVALID)
1652 _dbus_warn_check_failed ("Writing an element of type %s, but the expected type here is %s\n"
1653 "The overall signature expected here was '%s' and we are on byte %d of that signature.\n",
1654 _dbus_type_to_string (sub->container_type),
1655 _dbus_type_to_string (expected),
1656 _dbus_string_get_const_data (writer->type_str), writer->type_pos);
1658 _dbus_warn_check_failed ("Writing an element of type %s, but no value is expected here\n"
1659 "The overall signature expected here was '%s' and we are on byte %d of that signature.\n",
1660 _dbus_type_to_string (sub->container_type),
1661 _dbus_string_get_const_data (writer->type_str), writer->type_pos);
1663 _dbus_assert_not_reached ("bad array element or variant content written");
1666 #endif /* DBUS_DISABLE_CHECKS */
1668 #if RECURSIVE_MARSHAL_WRITE_TRACE
1669 _dbus_verbose (" type writer %p recurse parent %s type_pos = %d value_pos = %d is_expectation = %d remaining sig '%s' enabled = %d\n",
1671 _dbus_type_to_string (writer->container_type),
1672 writer->type_pos, writer->value_pos, writer->type_pos_is_expectation,
1674 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
1677 _dbus_verbose (" type writer %p recurse sub %s type_pos = %d value_pos = %d is_expectation = %d enabled = %d\n",
1679 _dbus_type_to_string (sub->container_type),
1680 sub->type_pos, sub->value_pos,
1681 sub->type_pos_is_expectation,
1687 write_or_verify_typecode (DBusTypeWriter *writer,
1690 /* A subwriter inside an array or variant will have type_pos
1691 * pointing to the expected typecode; a writer not inside an array
1692 * or variant has type_pos pointing to the next place to insert a
1695 #if RECURSIVE_MARSHAL_WRITE_TRACE
1696 _dbus_verbose (" type writer %p write_or_verify start type_pos = %d remaining sig '%s' enabled = %d\n",
1697 writer, writer->type_pos,
1699 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
1704 if (writer->type_str == NULL)
1707 if (writer->type_pos_is_expectation)
1709 #ifndef DBUS_DISABLE_CHECKS
1713 expected = _dbus_string_get_byte (writer->type_str, writer->type_pos);
1715 if (expected != typecode)
1717 if (expected != DBUS_TYPE_INVALID)
1718 _dbus_warn_check_failed ("Array or variant type requires that type %s be written, but %s was written.\n"
1719 "The overall signature expected here was '%s' and we are on byte %d of that signature.\n",
1720 _dbus_type_to_string (expected), _dbus_type_to_string (typecode),
1721 _dbus_string_get_const_data (writer->type_str), writer->type_pos);
1723 _dbus_warn_check_failed ("Array or variant type wasn't expecting any more values to be written into it, but a value %s was written.\n"
1724 "The overall signature expected here was '%s' and we are on byte %d of that signature.\n",
1725 _dbus_type_to_string (typecode),
1726 _dbus_string_get_const_data (writer->type_str), writer->type_pos);
1727 _dbus_assert_not_reached ("bad type inserted somewhere inside an array or variant");
1730 #endif /* DBUS_DISABLE_CHECKS */
1732 /* if immediately inside an array we'd always be appending an element,
1733 * so the expected type doesn't change; if inside a struct or something
1734 * below an array, we need to move through said struct or something.
1736 if (writer->container_type != DBUS_TYPE_ARRAY)
1737 writer->type_pos += 1;
1741 if (!_dbus_string_insert_byte (writer->type_str,
1746 writer->type_pos += 1;
1749 #if RECURSIVE_MARSHAL_WRITE_TRACE
1750 _dbus_verbose (" type writer %p write_or_verify end type_pos = %d remaining sig '%s'\n",
1751 writer, writer->type_pos,
1752 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0));
1759 writer_recurse_struct_or_dict_entry (DBusTypeWriter *writer,
1761 const DBusString *contained_type,
1762 int contained_type_start,
1763 int contained_type_len,
1764 DBusTypeWriter *sub)
1766 /* FIXME right now contained_type is ignored; we could probably
1767 * almost trivially fix the code so if it's present we
1768 * write it out and then set type_pos_is_expectation
1771 /* Ensure that we'll be able to add alignment padding and the typecode */
1772 if (writer->enabled)
1774 if (!_dbus_string_alloc_space (sub->value_str, 8))
1778 if (!write_or_verify_typecode (sub, begin_char))
1779 _dbus_assert_not_reached ("failed to insert struct typecode after prealloc");
1781 if (writer->enabled)
1783 if (!_dbus_string_insert_bytes (sub->value_str,
1785 _DBUS_ALIGN_VALUE (sub->value_pos, 8) - sub->value_pos,
1787 _dbus_assert_not_reached ("should not have failed to insert alignment padding for struct");
1788 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 8);
1796 writer_recurse_array (DBusTypeWriter *writer,
1797 const DBusString *contained_type,
1798 int contained_type_start,
1799 int contained_type_len,
1800 DBusTypeWriter *sub,
1801 dbus_bool_t is_array_append)
1803 dbus_uint32_t value = 0;
1807 #ifndef DBUS_DISABLE_CHECKS
1808 if (writer->container_type == DBUS_TYPE_ARRAY &&
1811 if (!_dbus_string_equal_substring (contained_type,
1812 contained_type_start,
1815 writer->u.array.element_type_pos + 1))
1817 _dbus_warn_check_failed ("Writing an array of '%s' but this is incompatible with the expected type of elements in the parent array\n",
1818 _dbus_string_get_const_data_len (contained_type,
1819 contained_type_start,
1820 contained_type_len));
1821 _dbus_assert_not_reached ("incompatible type for child array");
1824 #endif /* DBUS_DISABLE_CHECKS */
1826 if (writer->enabled && !is_array_append)
1828 /* 3 pad + 4 bytes for the array length, and 4 bytes possible padding
1829 * before array values
1831 if (!_dbus_string_alloc_space (sub->value_str, 3 + 4 + 4))
1835 if (writer->type_str != NULL)
1837 sub->type_pos += 1; /* move to point to the element type, since type_pos
1838 * should be the expected type for further writes
1840 sub->u.array.element_type_pos = sub->type_pos;
1843 if (!writer->type_pos_is_expectation)
1845 /* sub is a toplevel/outermost array so we need to write the type data */
1847 /* alloc space for array typecode, element signature */
1848 if (!_dbus_string_alloc_space (writer->type_str, 1 + contained_type_len))
1851 if (!_dbus_string_insert_byte (writer->type_str,
1854 _dbus_assert_not_reached ("failed to insert array typecode after prealloc");
1856 if (!_dbus_string_copy_len (contained_type,
1857 contained_type_start, contained_type_len,
1859 sub->u.array.element_type_pos))
1860 _dbus_assert_not_reached ("should not have failed to insert array element typecodes");
1863 if (writer->type_str != NULL)
1865 /* If the parent is an array, we hold type_pos pointing at the array element type;
1866 * otherwise advance it to reflect the array value we just recursed into
1868 if (writer->container_type != DBUS_TYPE_ARRAY)
1869 writer->type_pos += 1 + contained_type_len;
1871 _dbus_assert (writer->type_pos_is_expectation); /* because it's an array */
1874 if (writer->enabled)
1876 /* Write (or jump over, if is_array_append) the length */
1877 sub->u.array.len_pos = _DBUS_ALIGN_VALUE (sub->value_pos, 4);
1879 if (is_array_append)
1881 sub->value_pos += 4;
1885 if (!_dbus_type_writer_write_basic_no_typecode (sub, DBUS_TYPE_UINT32,
1887 _dbus_assert_not_reached ("should not have failed to insert array len");
1890 _dbus_assert (sub->u.array.len_pos == sub->value_pos - 4);
1892 /* Write alignment padding for array elements
1893 * Note that we write the padding *even for empty arrays*
1894 * to avoid wonky special cases
1896 alignment = element_type_get_alignment (contained_type, contained_type_start);
1898 aligned = _DBUS_ALIGN_VALUE (sub->value_pos, alignment);
1899 if (aligned != sub->value_pos)
1901 if (!is_array_append)
1903 if (!_dbus_string_insert_bytes (sub->value_str,
1905 aligned - sub->value_pos,
1907 _dbus_assert_not_reached ("should not have failed to insert alignment padding");
1910 sub->value_pos = aligned;
1913 sub->u.array.start_pos = sub->value_pos;
1915 if (is_array_append)
1919 _dbus_assert (_DBUS_ALIGN_VALUE (sub->u.array.len_pos, 4) ==
1920 (unsigned) sub->u.array.len_pos);
1921 len = _dbus_unpack_uint32 (sub->byte_order,
1922 _dbus_string_get_const_data_len (sub->value_str,
1923 sub->u.array.len_pos,
1926 sub->value_pos += len;
1931 /* not enabled, so we won't write the len_pos; set it to -1 to so indicate */
1932 sub->u.array.len_pos = -1;
1933 sub->u.array.start_pos = sub->value_pos;
1936 _dbus_assert (sub->u.array.len_pos < sub->u.array.start_pos);
1937 _dbus_assert (is_array_append || sub->u.array.start_pos == sub->value_pos);
1939 #if RECURSIVE_MARSHAL_WRITE_TRACE
1940 _dbus_verbose (" type writer %p recurse array done remaining sig '%s' array start_pos = %d len_pos = %d value_pos = %d\n", sub,
1942 _dbus_string_get_const_data_len (sub->type_str, sub->type_pos, 0) :
1944 sub->u.array.start_pos, sub->u.array.len_pos, sub->value_pos);
1950 /* Variant value will normally have:
1951 * 1 byte signature length not including nul
1952 * signature typecodes (nul terminated)
1953 * padding to alignment of contained type
1954 * body according to signature
1956 * The signature string can only have a single type
1957 * in it but that type may be complex/recursive.
1959 * So a typical variant type with the integer 3 will have these
1961 * 0x1 'i' '\0' [1 byte padding to alignment boundary] 0x0 0x0 0x0 0x3
1963 * The main world of hurt for writing out a variant is that the type
1964 * string is the same string as the value string. Which means
1965 * inserting to the type string will move the value_pos; and it means
1966 * that inserting to the type string could break type alignment.
1969 writer_recurse_variant (DBusTypeWriter *writer,
1970 const DBusString *contained_type,
1971 int contained_type_start,
1972 int contained_type_len,
1973 DBusTypeWriter *sub)
1975 int contained_alignment;
1977 if (writer->enabled)
1979 /* Allocate space for the worst case, which is 1 byte sig
1980 * length, nul byte at end of sig, and 7 bytes padding to
1983 if (!_dbus_string_alloc_space (sub->value_str, contained_type_len + 9))
1987 /* write VARIANT typecode to the parent's type string */
1988 if (!write_or_verify_typecode (writer, DBUS_TYPE_VARIANT))
1991 /* If not enabled, mark that we have no type_str anymore ... */
1993 if (!writer->enabled)
1995 sub->type_str = NULL;
2001 /* If we're enabled then continue ... */
2003 if (!_dbus_string_insert_byte (sub->value_str,
2005 contained_type_len))
2006 _dbus_assert_not_reached ("should not have failed to insert variant type sig len");
2008 sub->value_pos += 1;
2010 /* Here we switch over to the expected type sig we're about to write */
2011 sub->type_str = sub->value_str;
2012 sub->type_pos = sub->value_pos;
2014 if (!_dbus_string_copy_len (contained_type, contained_type_start, contained_type_len,
2015 sub->value_str, sub->value_pos))
2016 _dbus_assert_not_reached ("should not have failed to insert variant type sig");
2018 sub->value_pos += contained_type_len;
2020 if (!_dbus_string_insert_byte (sub->value_str,
2023 _dbus_assert_not_reached ("should not have failed to insert variant type nul termination");
2025 sub->value_pos += 1;
2027 contained_alignment = _dbus_type_get_alignment (_dbus_first_type_in_signature (contained_type, contained_type_start));
2029 if (!_dbus_string_insert_bytes (sub->value_str,
2031 _DBUS_ALIGN_VALUE (sub->value_pos, contained_alignment) - sub->value_pos,
2033 _dbus_assert_not_reached ("should not have failed to insert alignment padding for variant body");
2034 sub->value_pos = _DBUS_ALIGN_VALUE (sub->value_pos, contained_alignment);
2040 _dbus_type_writer_recurse_contained_len (DBusTypeWriter *writer,
2042 const DBusString *contained_type,
2043 int contained_type_start,
2044 int contained_type_len,
2045 DBusTypeWriter *sub,
2046 dbus_bool_t is_array_append)
2048 writer_recurse_init_and_check (writer, container_type, sub);
2050 switch (container_type)
2052 case DBUS_TYPE_STRUCT:
2053 return writer_recurse_struct_or_dict_entry (writer,
2054 DBUS_STRUCT_BEGIN_CHAR,
2056 contained_type_start, contained_type_len,
2059 case DBUS_TYPE_DICT_ENTRY:
2060 return writer_recurse_struct_or_dict_entry (writer,
2061 DBUS_DICT_ENTRY_BEGIN_CHAR,
2063 contained_type_start, contained_type_len,
2066 case DBUS_TYPE_ARRAY:
2067 return writer_recurse_array (writer,
2068 contained_type, contained_type_start, contained_type_len,
2069 sub, is_array_append);
2071 case DBUS_TYPE_VARIANT:
2072 return writer_recurse_variant (writer,
2073 contained_type, contained_type_start, contained_type_len,
2077 _dbus_assert_not_reached ("tried to recurse into type that doesn't support that");
2084 * Opens a new container and writes out the initial information for that container.
2086 * @param writer the writer
2087 * @param container_type the type of the container to open
2088 * @param contained_type the array element type or variant content type
2089 * @param contained_type_start position to look for the type
2090 * @param sub the new sub-writer to write container contents
2091 * @returns #FALSE if no memory
2094 _dbus_type_writer_recurse (DBusTypeWriter *writer,
2096 const DBusString *contained_type,
2097 int contained_type_start,
2098 DBusTypeWriter *sub)
2100 int contained_type_len;
2103 contained_type_len = find_len_of_complete_type (contained_type, contained_type_start);
2105 contained_type_len = 0;
2107 return _dbus_type_writer_recurse_contained_len (writer, container_type,
2109 contained_type_start,
2116 * Append to an existing array. Essentially, the writer will read an
2117 * existing length at the write location; jump over that length; and
2118 * write new fields. On unrecurse(), the existing length will be
2121 * @param writer the writer
2122 * @param contained_type element type
2123 * @param contained_type_start position of element type
2124 * @param sub the subwriter to init
2125 * @returns #FALSE if no memory
2128 _dbus_type_writer_append_array (DBusTypeWriter *writer,
2129 const DBusString *contained_type,
2130 int contained_type_start,
2131 DBusTypeWriter *sub)
2133 int contained_type_len;
2136 contained_type_len = find_len_of_complete_type (contained_type, contained_type_start);
2138 contained_type_len = 0;
2140 return _dbus_type_writer_recurse_contained_len (writer, DBUS_TYPE_ARRAY,
2142 contained_type_start,
2149 writer_get_array_len (DBusTypeWriter *writer)
2151 _dbus_assert (writer->container_type == DBUS_TYPE_ARRAY);
2152 return writer->value_pos - writer->u.array.start_pos;
2156 * Closes a container created by _dbus_type_writer_recurse()
2157 * and writes any additional information to the values block.
2159 * @param writer the writer
2160 * @param sub the sub-writer created by _dbus_type_writer_recurse()
2161 * @returns #FALSE if no memory
2164 _dbus_type_writer_unrecurse (DBusTypeWriter *writer,
2165 DBusTypeWriter *sub)
2167 /* type_pos_is_expectation never gets unset once set, or we'd get all hosed */
2168 _dbus_assert (!writer->type_pos_is_expectation ||
2169 (writer->type_pos_is_expectation && sub->type_pos_is_expectation));
2171 #if RECURSIVE_MARSHAL_WRITE_TRACE
2172 _dbus_verbose (" type writer %p unrecurse type_pos = %d value_pos = %d is_expectation = %d container_type = %s\n",
2173 writer, writer->type_pos, writer->value_pos, writer->type_pos_is_expectation,
2174 _dbus_type_to_string (writer->container_type));
2175 _dbus_verbose (" type writer %p unrecurse sub type_pos = %d value_pos = %d is_expectation = %d container_type = %s\n",
2176 sub, sub->type_pos, sub->value_pos,
2177 sub->type_pos_is_expectation,
2178 _dbus_type_to_string (sub->container_type));
2181 if (sub->container_type == DBUS_TYPE_STRUCT)
2183 if (!write_or_verify_typecode (sub, DBUS_STRUCT_END_CHAR))
2186 else if (sub->container_type == DBUS_TYPE_DICT_ENTRY)
2188 if (!write_or_verify_typecode (sub, DBUS_DICT_ENTRY_END_CHAR))
2191 else if (sub->container_type == DBUS_TYPE_ARRAY)
2193 if (sub->u.array.len_pos >= 0) /* len_pos == -1 if we weren't enabled when we passed it */
2197 /* Set the array length */
2198 len = writer_get_array_len (sub);
2199 _dbus_marshal_set_uint32 (sub->value_str,
2200 sub->u.array.len_pos,
2203 #if RECURSIVE_MARSHAL_WRITE_TRACE
2204 _dbus_verbose (" filled in sub array len to %u at len_pos %d\n",
2205 len, sub->u.array.len_pos);
2208 #if RECURSIVE_MARSHAL_WRITE_TRACE
2211 _dbus_verbose (" not filling in sub array len because we were disabled when we passed the len\n");
2216 /* Now get type_pos right for the parent writer. Here are the cases:
2218 * Cases !writer->type_pos_is_expectation:
2219 * (in these cases we want to update to the new insertion point)
2221 * - if we recursed into a STRUCT then we didn't know in advance
2222 * what the types in the struct would be; so we have to fill in
2223 * that information now.
2224 * writer->type_pos = sub->type_pos
2226 * - if we recursed into anything else, we knew the full array
2227 * type, or knew the single typecode marking VARIANT, so
2228 * writer->type_pos is already correct.
2229 * writer->type_pos should remain as-is
2231 * - note that the parent is never an ARRAY or VARIANT, if it were
2232 * then type_pos_is_expectation would be TRUE. The parent
2233 * is thus known to be a toplevel or STRUCT.
2235 * Cases where writer->type_pos_is_expectation:
2236 * (in these cases we want to update to next expected type to write)
2238 * - we recursed from STRUCT into STRUCT and we didn't increment
2239 * type_pos in the parent just to stay consistent with the
2240 * !writer->type_pos_is_expectation case (though we could
2241 * special-case this in recurse_struct instead if we wanted)
2242 * writer->type_pos = sub->type_pos
2244 * - we recursed from STRUCT into ARRAY or VARIANT and type_pos
2245 * for parent should have been incremented already
2246 * writer->type_pos should remain as-is
2248 * - we recursed from ARRAY into a sub-element, so type_pos in the
2249 * parent is the element type and should remain the element type
2250 * for the benefit of the next child element
2251 * writer->type_pos should remain as-is
2253 * - we recursed from VARIANT into its value, so type_pos in the
2254 * parent makes no difference since there's only one value
2255 * and we just finished writing it and won't use type_pos again
2256 * writer->type_pos should remain as-is
2259 * For all these, DICT_ENTRY is the same as STRUCT
2261 if (writer->type_str != NULL)
2263 if ((sub->container_type == DBUS_TYPE_STRUCT ||
2264 sub->container_type == DBUS_TYPE_DICT_ENTRY) &&
2265 (writer->container_type == DBUS_TYPE_STRUCT ||
2266 writer->container_type == DBUS_TYPE_DICT_ENTRY ||
2267 writer->container_type == DBUS_TYPE_INVALID))
2269 /* Advance the parent to the next struct field */
2270 writer->type_pos = sub->type_pos;
2274 writer->value_pos = sub->value_pos;
2276 #if RECURSIVE_MARSHAL_WRITE_TRACE
2277 _dbus_verbose (" type writer %p unrecursed type_pos = %d value_pos = %d remaining sig '%s'\n",
2278 writer, writer->type_pos, writer->value_pos,
2280 _dbus_string_get_const_data_len (writer->type_str, writer->type_pos, 0) :
2288 * Writes out a basic type.
2290 * @param writer the writer
2291 * @param type the type to write
2292 * @param value the address of the value to write
2293 * @returns #FALSE if no memory
2296 _dbus_type_writer_write_basic (DBusTypeWriter *writer,
2302 /* First ensure that our type realloc will succeed */
2303 if (!writer->type_pos_is_expectation && writer->type_str != NULL)
2305 if (!_dbus_string_alloc_space (writer->type_str, 1))
2311 if (!_dbus_type_writer_write_basic_no_typecode (writer, type, value))
2314 if (!write_or_verify_typecode (writer, type))
2315 _dbus_assert_not_reached ("failed to write typecode after prealloc");
2320 #if RECURSIVE_MARSHAL_WRITE_TRACE
2321 _dbus_verbose (" type writer %p basic type_pos = %d value_pos = %d is_expectation = %d enabled = %d\n",
2322 writer, writer->type_pos, writer->value_pos, writer->type_pos_is_expectation,
2330 * Writes a block of fixed-length basic values, i.e. those that are
2331 * both dbus_type_is_fixed() and _dbus_type_is_basic(). The block
2332 * must be written inside an array.
2334 * The value parameter should be the address of said array of values,
2335 * so e.g. if it's an array of double, pass in "const double**"
2337 * @param writer the writer
2338 * @param element_type type of stuff in the array
2339 * @param value address of the array
2340 * @param n_elements number of elements in the array
2341 * @returns #FALSE if no memory
2344 _dbus_type_writer_write_fixed_multi (DBusTypeWriter *writer,
2349 _dbus_assert (writer->container_type == DBUS_TYPE_ARRAY);
2350 _dbus_assert (dbus_type_is_fixed (element_type));
2351 _dbus_assert (writer->type_pos_is_expectation);
2352 _dbus_assert (n_elements >= 0);
2354 #if RECURSIVE_MARSHAL_WRITE_TRACE
2355 _dbus_verbose (" type writer %p entering fixed multi type_pos = %d value_pos = %d n_elements %d\n",
2356 writer, writer->type_pos, writer->value_pos, n_elements);
2359 if (!write_or_verify_typecode (writer, element_type))
2360 _dbus_assert_not_reached ("OOM should not happen if only verifying typecode");
2362 if (writer->enabled)
2364 if (!_dbus_marshal_write_fixed_multi (writer->value_str,
2370 &writer->value_pos))
2374 #if RECURSIVE_MARSHAL_WRITE_TRACE
2375 _dbus_verbose (" type writer %p fixed multi written new type_pos = %d new value_pos = %d n_elements %d\n",
2376 writer, writer->type_pos, writer->value_pos, n_elements);
2383 enable_if_after (DBusTypeWriter *writer,
2384 DBusTypeReader *reader,
2385 const DBusTypeReader *start_after)
2389 if (!writer->enabled && _dbus_type_reader_greater_than (reader, start_after))
2391 _dbus_type_writer_set_enabled (writer, TRUE);
2392 #if RECURSIVE_MARSHAL_WRITE_TRACE
2393 _dbus_verbose ("ENABLING writer %p at %d because reader at value_pos %d is after reader at value_pos %d\n",
2394 writer, writer->value_pos, reader->value_pos, start_after->value_pos);
2398 _dbus_assert ((!writer->enabled && !_dbus_type_reader_greater_than (reader, start_after)) ||
2399 (writer->enabled && _dbus_type_reader_greater_than (reader, start_after)));
2404 append_fixup (DBusList **fixups,
2405 const DBusArrayLenFixup *fixup)
2407 DBusArrayLenFixup *f;
2409 f = dbus_new (DBusArrayLenFixup, 1);
2415 if (!_dbus_list_append (fixups, f))
2421 _dbus_assert (f->len_pos_in_reader == fixup->len_pos_in_reader);
2422 _dbus_assert (f->new_len == fixup->new_len);
2427 /* This loop is trivial if you ignore all the start_after nonsense,
2428 * so if you're trying to figure it out, start by ignoring that
2431 writer_write_reader_helper (DBusTypeWriter *writer,
2432 DBusTypeReader *reader,
2433 const DBusTypeReader *start_after,
2434 int start_after_new_pos,
2435 int start_after_new_len,
2437 dbus_bool_t inside_start_after)
2441 while ((current_type = _dbus_type_reader_get_current_type (reader)) != DBUS_TYPE_INVALID)
2443 if (dbus_type_is_container (current_type))
2445 DBusTypeReader subreader;
2446 DBusTypeWriter subwriter;
2447 const DBusString *sig_str;
2450 dbus_bool_t enabled_at_recurse;
2451 dbus_bool_t past_start_after;
2452 int reader_array_len_pos;
2453 int reader_array_start_pos;
2454 dbus_bool_t this_is_start_after;
2456 /* type_pos is checked since e.g. in a struct the struct
2457 * and its first field have the same value_pos.
2458 * type_str will differ in reader/start_after for variants
2459 * where type_str is inside the value_str
2461 if (!inside_start_after && start_after &&
2462 reader->value_pos == start_after->value_pos &&
2463 reader->type_str == start_after->type_str &&
2464 reader->type_pos == start_after->type_pos)
2465 this_is_start_after = TRUE;
2467 this_is_start_after = FALSE;
2469 _dbus_type_reader_recurse (reader, &subreader);
2471 if (current_type == DBUS_TYPE_ARRAY)
2473 reader_array_len_pos = ARRAY_READER_LEN_POS (&subreader);
2474 reader_array_start_pos = subreader.u.array.start_pos;
2479 reader_array_len_pos = -1;
2480 reader_array_start_pos = -1;
2483 _dbus_type_reader_get_signature (&subreader, &sig_str,
2484 &sig_start, &sig_len);
2486 #if RECURSIVE_MARSHAL_WRITE_TRACE
2487 _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",
2488 _dbus_type_to_string (current_type),
2490 subreader.value_pos,
2492 start_after ? start_after->value_pos : -1,
2493 _dbus_string_get_length (writer->value_str),
2494 inside_start_after, this_is_start_after);
2497 if (!inside_start_after && !this_is_start_after)
2498 enable_if_after (writer, &subreader, start_after);
2499 enabled_at_recurse = writer->enabled;
2500 if (!_dbus_type_writer_recurse_contained_len (writer, current_type,
2501 sig_str, sig_start, sig_len,
2505 #if RECURSIVE_MARSHAL_WRITE_TRACE
2506 _dbus_verbose ("recursed into subwriter at %d write target len %d\n",
2507 subwriter.value_pos,
2508 _dbus_string_get_length (subwriter.value_str));
2511 if (!writer_write_reader_helper (&subwriter, &subreader, start_after,
2512 start_after_new_pos, start_after_new_len,
2514 inside_start_after ||
2515 this_is_start_after))
2518 #if RECURSIVE_MARSHAL_WRITE_TRACE
2519 _dbus_verbose ("about to unrecurse from %s subreader at %d writer at %d subwriter at %d write target len %d\n",
2520 _dbus_type_to_string (current_type),
2521 subreader.value_pos,
2523 subwriter.value_pos,
2524 _dbus_string_get_length (writer->value_str));
2527 if (!inside_start_after && !this_is_start_after)
2528 enable_if_after (writer, &subreader, start_after);
2529 past_start_after = writer->enabled;
2530 if (!_dbus_type_writer_unrecurse (writer, &subwriter))
2533 /* If we weren't enabled when we recursed, we didn't
2534 * write an array len; if we passed start_after
2535 * somewhere inside the array, then we need to generate
2538 if (start_after != NULL &&
2539 !enabled_at_recurse && past_start_after &&
2540 current_type == DBUS_TYPE_ARRAY &&
2543 DBusArrayLenFixup fixup;
2544 int bytes_written_after_start_after;
2545 int bytes_before_start_after;
2548 /* this subwriter access is moderately unkosher since we
2549 * already unrecursed, but it works as long as unrecurse
2550 * doesn't break us on purpose
2552 bytes_written_after_start_after = writer_get_array_len (&subwriter);
2554 bytes_before_start_after =
2555 start_after->value_pos - reader_array_start_pos;
2557 fixup.len_pos_in_reader = reader_array_len_pos;
2559 bytes_before_start_after +
2560 start_after_new_len +
2561 bytes_written_after_start_after;
2563 _dbus_assert (_DBUS_ALIGN_VALUE (fixup.len_pos_in_reader, 4) ==
2564 (unsigned) fixup.len_pos_in_reader);
2566 old_len = _dbus_unpack_uint32 (reader->byte_order,
2567 _dbus_string_get_const_data_len (reader->value_str,
2568 fixup.len_pos_in_reader, 4));
2570 if (old_len != fixup.new_len && !append_fixup (fixups, &fixup))
2573 #if RECURSIVE_MARSHAL_WRITE_TRACE
2574 _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",
2575 fixup.len_pos_in_reader,
2577 reader_array_start_pos,
2578 start_after->value_pos,
2579 bytes_before_start_after,
2580 start_after_new_len,
2581 bytes_written_after_start_after);
2589 _dbus_assert (dbus_type_is_basic (current_type));
2591 #if RECURSIVE_MARSHAL_WRITE_TRACE
2592 _dbus_verbose ("Reading basic value %s at %d\n",
2593 _dbus_type_to_string (current_type),
2597 _dbus_type_reader_read_basic (reader, &val);
2599 #if RECURSIVE_MARSHAL_WRITE_TRACE
2600 _dbus_verbose ("Writing basic value %s at %d write target len %d inside_start_after = %d\n",
2601 _dbus_type_to_string (current_type),
2603 _dbus_string_get_length (writer->value_str),
2604 inside_start_after);
2606 if (!inside_start_after)
2607 enable_if_after (writer, reader, start_after);
2608 if (!_dbus_type_writer_write_basic (writer, current_type, &val))
2610 #if RECURSIVE_MARSHAL_WRITE_TRACE
2611 _dbus_verbose ("Wrote basic value %s, new value_pos %d write target len %d\n",
2612 _dbus_type_to_string (current_type),
2614 _dbus_string_get_length (writer->value_str));
2618 _dbus_type_reader_next (reader);
2625 apply_and_free_fixups (fixups, NULL); /* NULL for reader to apply to */
2631 * Iterate through all values in the given reader, writing a copy of
2632 * each value to the writer. The reader will be moved forward to its
2635 * If a reader start_after is provided, it should be a reader for the
2636 * same data as the reader to be written. Only values occurring after
2637 * the value pointed to by start_after will be written to the writer.
2639 * If start_after is provided, then the copy of the reader will be
2640 * partial. This means that array lengths will not have been copied.
2641 * The assumption is that you wrote a new version of the value at
2642 * start_after to the writer. You have to pass in the start position
2643 * and length of the new value. (If you are deleting the value
2644 * at start_after, pass in 0 for the length.)
2646 * If the fixups parameter is non-#NULL, then any array length that
2647 * was read but not written due to start_after will be provided
2648 * as a #DBusArrayLenFixup. The fixup contains the position of the
2649 * array length in the source data, and the correct array length
2650 * assuming you combine the source data before start_after with
2651 * the written data at start_after and beyond.
2653 * @param writer the writer to copy to
2654 * @param reader the reader to copy from
2655 * @param start_after #NULL or a reader showing where to start
2656 * @param start_after_new_pos the position of start_after equivalent in the target data
2657 * @param start_after_new_len the length of start_after equivalent in the target data
2658 * @param fixups list to append #DBusArrayLenFixup if the write was partial
2659 * @returns #FALSE if no memory
2662 _dbus_type_writer_write_reader_partial (DBusTypeWriter *writer,
2663 DBusTypeReader *reader,
2664 const DBusTypeReader *start_after,
2665 int start_after_new_pos,
2666 int start_after_new_len,
2669 DBusTypeWriter orig;
2676 orig_type_len = _dbus_string_get_length (writer->type_str);
2677 orig_value_len = _dbus_string_get_length (writer->value_str);
2678 orig_enabled = writer->enabled;
2681 _dbus_type_writer_set_enabled (writer, FALSE);
2683 if (!writer_write_reader_helper (writer, reader, start_after,
2684 start_after_new_pos,
2685 start_after_new_len,
2689 _dbus_type_writer_set_enabled (writer, orig_enabled);
2693 if (!writer->type_pos_is_expectation)
2695 new_bytes = _dbus_string_get_length (writer->type_str) - orig_type_len;
2696 _dbus_string_delete (writer->type_str, orig.type_pos, new_bytes);
2698 new_bytes = _dbus_string_get_length (writer->value_str) - orig_value_len;
2699 _dbus_string_delete (writer->value_str, orig.value_pos, new_bytes);
2707 * Iterate through all values in the given reader, writing a copy of
2708 * each value to the writer. The reader will be moved forward to its
2711 * @param writer the writer to copy to
2712 * @param reader the reader to copy from
2713 * @returns #FALSE if no memory
2716 _dbus_type_writer_write_reader (DBusTypeWriter *writer,
2717 DBusTypeReader *reader)
2719 return _dbus_type_writer_write_reader_partial (writer, reader, NULL, 0, 0, NULL);
2723 * If disabled, a writer can still be iterated forward and recursed/unrecursed
2724 * but won't write any values. Types will still be written unless the
2725 * writer is a "values only" writer, because the writer needs access to
2726 * a valid signature to be able to iterate.
2728 * @param writer the type writer
2729 * @param enabled #TRUE if values should be written
2732 _dbus_type_writer_set_enabled (DBusTypeWriter *writer,
2733 dbus_bool_t enabled)
2735 writer->enabled = enabled != FALSE;
2738 /** @} */ /* end of DBusMarshal group */
2740 /* tests in dbus-marshal-recursive-util.c */