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-marshal-basic.h>
31 #error "config.h not included here"
34 typedef struct DBusTypeReader DBusTypeReader;
35 typedef struct DBusTypeWriter DBusTypeWriter;
36 typedef struct DBusTypeReaderClass DBusTypeReaderClass;
40 dbus_uint32_t byte_order : 8;
42 dbus_uint32_t finished : 1; /* marks we're at end iterator for cases
43 * where we don't have another way to tell
45 const DBusString *type_str;
47 const DBusString *value_str;
50 const DBusTypeReaderClass *klass;
63 dbus_uint32_t byte_order : 8;
65 dbus_uint32_t container_type : 8;
67 dbus_uint32_t type_pos_is_expectation : 1; /* type_pos is an insertion point or an expected next type */
70 DBusString *value_str;
76 int start_pos; /* first element */
78 int element_type_pos; /* position of array element type in type_str */
83 void _dbus_type_reader_init (DBusTypeReader *reader,
85 const DBusString *type_str,
87 const DBusString *value_str,
89 void _dbus_type_reader_init_types_only (DBusTypeReader *reader,
90 const DBusString *type_str,
92 int _dbus_type_reader_get_current_type (DBusTypeReader *reader);
93 dbus_bool_t _dbus_type_reader_array_is_empty (DBusTypeReader *reader);
94 void _dbus_type_reader_read_basic (DBusTypeReader *reader,
96 dbus_bool_t _dbus_type_reader_read_array_of_basic (DBusTypeReader *reader,
100 void _dbus_type_reader_recurse (DBusTypeReader *reader,
101 DBusTypeReader *subreader);
102 dbus_bool_t _dbus_type_reader_next (DBusTypeReader *reader);
104 void _dbus_type_writer_init (DBusTypeWriter *writer,
106 DBusString *type_str,
108 DBusString *value_str,
110 dbus_bool_t _dbus_type_writer_write_basic (DBusTypeWriter *writer,
113 dbus_bool_t _dbus_type_writer_write_array (DBusTypeWriter *writer,
117 dbus_bool_t _dbus_type_writer_recurse_struct (DBusTypeWriter *writer,
118 DBusTypeWriter *sub);
119 dbus_bool_t _dbus_type_writer_recurse_array (DBusTypeWriter *writer,
120 const char *element_type,
121 DBusTypeWriter *sub);
122 dbus_bool_t _dbus_type_writer_recurse_variant (DBusTypeWriter *writer,
123 const char *contained_type,
124 DBusTypeWriter *sub);
125 dbus_bool_t _dbus_type_writer_unrecurse (DBusTypeWriter *writer,
126 DBusTypeWriter *sub);
130 #endif /* DBUS_MARSHAL_RECURSIVE_H */