1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-marshal-recursive.h Marshalling routines for recursive types
4 * Copyright (C) 2004 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 #ifndef DBUS_MARSHAL_RECURSIVE_H
25 #define DBUS_MARSHAL_RECURSIVE_H
28 #include <dbus/dbus-protocol.h>
29 #include <dbus/dbus-marshal-basic.h> /* this can vanish when we merge */
32 #error "config.h not included here"
35 /* Features we need to port dbus-message:
36 * - memoize a position of a reader for small/fast access later
37 * - delete an array element and re-align the remainder of the array
38 * (not necessary yet to re-align remainder of entire string,
39 * though that's probably just as hard/easy)
40 * (really this one is to set a complex-type array element to
41 * a new value, but for dbus-message.c delete-and-reappend would
43 * - set string, int, etc. values at a memoized position
44 * (implement generic set of any value? changes only
45 * value_str not type_str)
46 * - implement has_next()
47 * - the all-in-one-block array accessors
51 typedef struct DBusTypeMark DBusTypeMark;
52 typedef struct DBusTypeReader DBusTypeReader;
53 typedef struct DBusTypeWriter DBusTypeWriter;
54 typedef struct DBusTypeReaderClass DBusTypeReaderClass;
56 /* The mark is a way to compress a TypeReader; it isn't all that
61 dbus_uint32_t type_pos_in_value_str : 1;
62 dbus_uint32_t container_type : 3;
63 dbus_uint32_t array_len_offset : 3; /* bytes back from start_pos that len ends */
64 dbus_uint32_t type_pos : DBUS_MAXIMUM_MESSAGE_LENGTH_BITS;
65 dbus_uint32_t value_pos : DBUS_MAXIMUM_MESSAGE_LENGTH_BITS;
66 dbus_uint32_t array_start_pos : DBUS_MAXIMUM_MESSAGE_LENGTH_BITS;
71 dbus_uint32_t byte_order : 8;
73 dbus_uint32_t finished : 1; /* marks we're at end iterator for cases
74 * where we don't have another way to tell
76 dbus_uint32_t array_len_offset : 3; /* bytes back from start_pos that len ends */
77 const DBusString *type_str;
79 const DBusString *value_str;
82 const DBusTypeReaderClass *klass;
93 dbus_uint32_t byte_order : 8;
95 dbus_uint32_t container_type : 8;
97 dbus_uint32_t type_pos_is_expectation : 1; /* type_pos is an insertion point or an expected next type */
100 DBusString *value_str;
106 int start_pos; /* first element */
108 int element_type_pos; /* position of array element type in type_str */
113 void _dbus_type_reader_init (DBusTypeReader *reader,
115 const DBusString *type_str,
117 const DBusString *value_str,
119 void _dbus_type_reader_init_from_mark (DBusTypeReader *reader,
121 const DBusString *type_str,
122 const DBusString *value_str,
123 const DBusTypeMark *mark);
124 void _dbus_type_reader_init_types_only (DBusTypeReader *reader,
125 const DBusString *type_str,
127 void _dbus_type_reader_init_types_only_from_mark (DBusTypeReader *reader,
128 const DBusString *type_str,
129 const DBusTypeMark *mark);
130 void _dbus_type_reader_save_mark (const DBusTypeReader *reader,
132 int _dbus_type_reader_get_current_type (const DBusTypeReader *reader);
133 dbus_bool_t _dbus_type_reader_array_is_empty (const DBusTypeReader *reader);
134 void _dbus_type_reader_read_basic (const DBusTypeReader *reader,
136 dbus_bool_t _dbus_type_reader_read_array_of_basic (const DBusTypeReader *reader,
140 void _dbus_type_reader_recurse (DBusTypeReader *reader,
141 DBusTypeReader *subreader);
142 dbus_bool_t _dbus_type_reader_next (DBusTypeReader *reader);
143 dbus_bool_t _dbus_type_reader_has_next (const DBusTypeReader *reader);
144 void _dbus_type_reader_get_signature (const DBusTypeReader *reader,
145 const DBusString **str_p,
149 void _dbus_type_writer_init (DBusTypeWriter *writer,
151 DBusString *type_str,
153 DBusString *value_str,
155 dbus_bool_t _dbus_type_writer_write_basic (DBusTypeWriter *writer,
158 dbus_bool_t _dbus_type_writer_write_array (DBusTypeWriter *writer,
162 dbus_bool_t _dbus_type_writer_recurse (DBusTypeWriter *writer,
164 const DBusString *contained_type,
165 int contained_type_start,
166 DBusTypeWriter *sub);
167 dbus_bool_t _dbus_type_writer_unrecurse (DBusTypeWriter *writer,
168 DBusTypeWriter *sub);
169 dbus_bool_t _dbus_type_writer_write_reader (DBusTypeWriter *writer,
170 DBusTypeReader *reader);
174 #endif /* DBUS_MARSHAL_RECURSIVE_H */