1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-marshal.h Marshalling routines
4 * Copyright (C) 2002 CodeFactory AB
6 * Licensed under the Academic Free License version 1.2
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_H
25 #define DBUS_MARSHAL_H
28 #include <dbus/dbus-dict.h>
29 #include <dbus/dbus-protocol.h>
30 #include <dbus/dbus-types.h>
31 #include <dbus/dbus-string.h>
34 #error "config.h not included here"
37 #ifdef WORDS_BIGENDIAN
38 #define DBUS_COMPILER_BYTE_ORDER DBUS_BIG_ENDIAN
40 #define DBUS_COMPILER_BYTE_ORDER DBUS_LITTLE_ENDIAN
43 #define DBUS_UINT32_SWAP_LE_BE_CONSTANT(val) ((dbus_uint32_t) ( \
44 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x000000ffU) << 24) | \
45 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x0000ff00U) << 8) | \
46 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0x00ff0000U) >> 8) | \
47 (((dbus_uint32_t) (val) & (dbus_uint32_t) 0xff000000U) >> 24)))
49 #define DBUS_UINT32_SWAP_LE_BE(val) (DBUS_UINT32_SWAP_LE_BE_CONSTANT (val))
50 #define DBUS_INT32_SWAP_LE_BE(val) ((dbus_int32_t)DBUS_UINT32_SWAP_LE_BE_CONSTANT (val))
52 #ifdef WORDS_BIGENDIAN
53 #define DBUS_INT32_TO_BE(val) ((dbus_int32_t) (val))
54 #define DBUS_UINT32_TO_BE(val) ((dbus_uint32_t) (val))
55 #define DBUS_INT32_TO_LE(val) (DBUS_INT32_SWAP_LE_BE (val))
56 #define DBUS_UINT32_TO_LE(val) (DBUS_UINT32_SWAP_LE_BE (val))
58 #define DBUS_INT32_TO_LE(val) ((dbus_int32_t) (val))
59 #define DBUS_UINT32_TO_LE(val) ((dbus_uint32_t) (val))
60 #define DBUS_INT32_TO_BE(val) ((dbus_int32_t) DBUS_UINT32_SWAP_LE_BE (val))
61 #define DBUS_UINT32_TO_BE(val) (DBUS_UINT32_SWAP_LE_BE (val))
64 /* The transformation is symmetric, so the FROM just maps to the TO. */
65 #define DBUS_INT32_FROM_LE(val) (DBUS_INT32_TO_LE (val))
66 #define DBUS_UINT32_FROM_LE(val) (DBUS_UINT32_TO_LE (val))
67 #define DBUS_INT32_FROM_BE(val) (DBUS_INT32_TO_BE (val))
68 #define DBUS_UINT32_FROM_BE(val) (DBUS_UINT32_TO_BE (val))
70 void _dbus_pack_int32 (dbus_int32_t value,
73 dbus_int32_t _dbus_unpack_int32 (int byte_order,
74 const unsigned char *data);
75 void _dbus_pack_uint32 (dbus_uint32_t value,
78 dbus_uint32_t _dbus_unpack_uint32 (int byte_order,
79 const unsigned char *data);
81 void _dbus_marshal_set_int32 (DBusString *str,
85 void _dbus_marshal_set_uint32 (DBusString *str,
89 dbus_bool_t _dbus_marshal_set_string (DBusString *str,
92 const DBusString *value,
96 dbus_bool_t _dbus_marshal_int32 (DBusString *str,
99 dbus_bool_t _dbus_marshal_uint32 (DBusString *str,
101 dbus_uint32_t value);
102 dbus_bool_t _dbus_marshal_double (DBusString *str,
105 dbus_bool_t _dbus_marshal_string (DBusString *str,
108 dbus_bool_t _dbus_marshal_byte_array (DBusString *str,
110 const unsigned char *value,
112 dbus_bool_t _dbus_marshal_int32_array (DBusString *str,
114 const dbus_int32_t *value,
116 dbus_bool_t _dbus_marshal_uint32_array (DBusString *str,
118 const dbus_uint32_t *value,
120 dbus_bool_t _dbus_marshal_double_array (DBusString *str,
124 dbus_bool_t _dbus_marshal_string_array (DBusString *str,
128 dbus_bool_t _dbus_marshal_dict (DBusString *str,
132 double _dbus_demarshal_double (const DBusString *str,
136 dbus_int32_t _dbus_demarshal_int32 (const DBusString *str,
140 dbus_uint32_t _dbus_demarshal_uint32 (const DBusString *str,
144 char * _dbus_demarshal_string (const DBusString *str,
148 unsigned char *_dbus_demarshal_byte_array (const DBusString *str,
153 dbus_int32_t * _dbus_demarshal_int32_array (const DBusString *str,
158 dbus_uint32_t *_dbus_demarshal_uint32_array (const DBusString *str,
163 double * _dbus_demarshal_double_array (const DBusString *str,
168 char ** _dbus_demarshal_string_array (const DBusString *str,
173 DBusDict * _dbus_demarshal_dict (const DBusString *str,
180 dbus_bool_t _dbus_marshal_get_arg_end_pos (const DBusString *str,
184 dbus_bool_t _dbus_marshal_validate_arg (const DBusString *str,
190 #endif /* DBUS_PROTOCOL_H */