sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* dbus-gsignature.c Mapping from dbus type signatures to GType
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (C) 2005 Red Hat, Inc.
|
sl@0
|
5 |
*
|
sl@0
|
6 |
* Licensed under the Academic Free License version 2.1
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This program is free software; you can redistribute it and/or modify
|
sl@0
|
9 |
* it under the terms of the GNU General Public License as published by
|
sl@0
|
10 |
* the Free Software Foundation; either version 2 of the License, or
|
sl@0
|
11 |
* (at your option) any later version.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* This program is distributed in the hope that it will be useful,
|
sl@0
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
sl@0
|
16 |
* GNU General Public License for more details.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
* You should have received a copy of the GNU General Public License
|
sl@0
|
19 |
* along with this program; if not, write to the Free Software
|
sl@0
|
20 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
sl@0
|
21 |
*
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "config.h"
|
sl@0
|
25 |
#include "dbus-gtest.h"
|
sl@0
|
26 |
#include "dbus-gsignature.h"
|
sl@0
|
27 |
#include "dbus-gvalue-utils.h"
|
sl@0
|
28 |
#include <string.h>
|
sl@0
|
29 |
#include <glib.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
#define MAP_BASIC(d_t, g_t) \
|
sl@0
|
32 |
case DBUS_TYPE_##d_t: \
|
sl@0
|
33 |
return G_TYPE_##g_t;
|
sl@0
|
34 |
static GType
|
sl@0
|
35 |
typecode_to_gtype (int type)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
switch (type)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
MAP_BASIC (BOOLEAN, BOOLEAN);
|
sl@0
|
40 |
MAP_BASIC (BYTE, UCHAR);
|
sl@0
|
41 |
MAP_BASIC (INT16, INT);
|
sl@0
|
42 |
MAP_BASIC (INT32, INT);
|
sl@0
|
43 |
MAP_BASIC (UINT16, UINT);
|
sl@0
|
44 |
MAP_BASIC (UINT32, UINT);
|
sl@0
|
45 |
MAP_BASIC (INT64, INT64);
|
sl@0
|
46 |
MAP_BASIC (UINT64, UINT64);
|
sl@0
|
47 |
MAP_BASIC (DOUBLE, DOUBLE);
|
sl@0
|
48 |
MAP_BASIC (STRING, STRING);
|
sl@0
|
49 |
default:
|
sl@0
|
50 |
return G_TYPE_INVALID;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
}
|
sl@0
|
53 |
#undef MAP_BASIC
|
sl@0
|
54 |
|
sl@0
|
55 |
static gboolean
|
sl@0
|
56 |
dbus_typecode_maps_to_basic (int typecode)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
return typecode_to_gtype (typecode) != G_TYPE_INVALID;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
GType
|
sl@0
|
62 |
_dbus_gtype_from_basic_typecode (int typecode)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
g_assert (dbus_type_is_basic (typecode));
|
sl@0
|
65 |
g_assert (dbus_typecode_maps_to_basic (typecode));
|
sl@0
|
66 |
return typecode_to_gtype (typecode);
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
static GType
|
sl@0
|
70 |
signature_iter_to_g_type_dict (const DBusSignatureIter *subiter, gboolean is_client)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
DBusSignatureIter iter;
|
sl@0
|
73 |
GType key_gtype;
|
sl@0
|
74 |
GType value_gtype;
|
sl@0
|
75 |
|
sl@0
|
76 |
g_assert (dbus_signature_iter_get_current_type (subiter) == DBUS_TYPE_DICT_ENTRY);
|
sl@0
|
77 |
|
sl@0
|
78 |
dbus_signature_iter_recurse (subiter, &iter);
|
sl@0
|
79 |
|
sl@0
|
80 |
key_gtype = _dbus_gtype_from_signature_iter (&iter, is_client);
|
sl@0
|
81 |
if (key_gtype == G_TYPE_INVALID)
|
sl@0
|
82 |
return G_TYPE_INVALID;
|
sl@0
|
83 |
|
sl@0
|
84 |
dbus_signature_iter_next (&iter);
|
sl@0
|
85 |
value_gtype = _dbus_gtype_from_signature_iter (&iter, is_client);
|
sl@0
|
86 |
if (value_gtype == G_TYPE_INVALID)
|
sl@0
|
87 |
return G_TYPE_INVALID;
|
sl@0
|
88 |
|
sl@0
|
89 |
if (!_dbus_gtype_is_valid_hash_key (key_gtype)
|
sl@0
|
90 |
|| !_dbus_gtype_is_valid_hash_value (value_gtype))
|
sl@0
|
91 |
/* Later we need to return DBUS_TYPE_G_VALUE */
|
sl@0
|
92 |
return G_TYPE_INVALID;
|
sl@0
|
93 |
|
sl@0
|
94 |
return dbus_g_type_get_map ("GHashTable", key_gtype, value_gtype);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
static GType
|
sl@0
|
98 |
signature_iter_to_g_type_array (DBusSignatureIter *iter, gboolean is_client)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
GType elt_gtype;
|
sl@0
|
101 |
|
sl@0
|
102 |
elt_gtype = _dbus_gtype_from_signature_iter (iter, is_client);
|
sl@0
|
103 |
if (elt_gtype == G_TYPE_INVALID)
|
sl@0
|
104 |
return G_TYPE_INVALID;
|
sl@0
|
105 |
|
sl@0
|
106 |
if (elt_gtype == G_TYPE_OBJECT)
|
sl@0
|
107 |
return DBUS_TYPE_G_OBJECT_ARRAY;
|
sl@0
|
108 |
if (elt_gtype == G_TYPE_STRING)
|
sl@0
|
109 |
return G_TYPE_STRV;
|
sl@0
|
110 |
if (_dbus_g_type_is_fixed (elt_gtype))
|
sl@0
|
111 |
return dbus_g_type_get_collection ("GArray", elt_gtype);
|
sl@0
|
112 |
else if (g_type_is_a (elt_gtype, G_TYPE_OBJECT)
|
sl@0
|
113 |
|| g_type_is_a (elt_gtype, G_TYPE_BOXED))
|
sl@0
|
114 |
return dbus_g_type_get_collection ("GPtrArray", elt_gtype);
|
sl@0
|
115 |
|
sl@0
|
116 |
/* Later we need to return DBUS_TYPE_G_VALUE */
|
sl@0
|
117 |
return G_TYPE_INVALID;
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
static GType
|
sl@0
|
121 |
signature_iter_to_g_type_struct (DBusSignatureIter *iter, gboolean is_client)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
GArray *types;
|
sl@0
|
124 |
GType ret;
|
sl@0
|
125 |
types = g_array_new (FALSE, FALSE, sizeof (GType));
|
sl@0
|
126 |
do
|
sl@0
|
127 |
{
|
sl@0
|
128 |
GType curtype;
|
sl@0
|
129 |
curtype = _dbus_gtype_from_signature_iter (iter, is_client);
|
sl@0
|
130 |
g_array_append_val (types, curtype);
|
sl@0
|
131 |
}
|
sl@0
|
132 |
while (dbus_signature_iter_next (iter));
|
sl@0
|
133 |
|
sl@0
|
134 |
ret = dbus_g_type_get_structv ("GValueArray", types->len, (GType*) types->data);
|
sl@0
|
135 |
g_array_free (types, TRUE);
|
sl@0
|
136 |
return ret;
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
GType
|
sl@0
|
140 |
_dbus_gtype_from_signature_iter (DBusSignatureIter *iter, gboolean is_client)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
int current_type;
|
sl@0
|
143 |
|
sl@0
|
144 |
current_type = dbus_signature_iter_get_current_type (iter);
|
sl@0
|
145 |
/* TODO: handle type 0? */
|
sl@0
|
146 |
if (dbus_typecode_maps_to_basic (current_type))
|
sl@0
|
147 |
return _dbus_gtype_from_basic_typecode (current_type);
|
sl@0
|
148 |
else if (current_type == DBUS_TYPE_OBJECT_PATH)
|
sl@0
|
149 |
return DBUS_TYPE_G_OBJECT_PATH;
|
sl@0
|
150 |
else
|
sl@0
|
151 |
{
|
sl@0
|
152 |
DBusSignatureIter subiter;
|
sl@0
|
153 |
|
sl@0
|
154 |
g_assert (dbus_type_is_container (current_type));
|
sl@0
|
155 |
|
sl@0
|
156 |
if (current_type == DBUS_TYPE_VARIANT)
|
sl@0
|
157 |
return G_TYPE_VALUE;
|
sl@0
|
158 |
|
sl@0
|
159 |
dbus_signature_iter_recurse (iter, &subiter);
|
sl@0
|
160 |
|
sl@0
|
161 |
if (current_type == DBUS_TYPE_ARRAY)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
int elt_type = dbus_signature_iter_get_current_type (&subiter);
|
sl@0
|
164 |
if (elt_type == DBUS_TYPE_DICT_ENTRY)
|
sl@0
|
165 |
return signature_iter_to_g_type_dict (&subiter, is_client);
|
sl@0
|
166 |
else
|
sl@0
|
167 |
return signature_iter_to_g_type_array (&subiter, is_client);
|
sl@0
|
168 |
}
|
sl@0
|
169 |
else if (current_type == DBUS_TYPE_STRUCT)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
return signature_iter_to_g_type_struct (&subiter, is_client);
|
sl@0
|
172 |
}
|
sl@0
|
173 |
else
|
sl@0
|
174 |
{
|
sl@0
|
175 |
g_assert_not_reached ();
|
sl@0
|
176 |
return G_TYPE_INVALID;
|
sl@0
|
177 |
}
|
sl@0
|
178 |
}
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
GType
|
sl@0
|
182 |
_dbus_gtype_from_signature (const char *signature, gboolean is_client)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
DBusSignatureIter iter;
|
sl@0
|
185 |
|
sl@0
|
186 |
dbus_signature_iter_init (&iter, signature);
|
sl@0
|
187 |
|
sl@0
|
188 |
return _dbus_gtype_from_signature_iter (&iter, is_client);
|
sl@0
|
189 |
}
|
sl@0
|
190 |
|
sl@0
|
191 |
GArray *
|
sl@0
|
192 |
_dbus_gtypes_from_arg_signature (const char *argsig, gboolean is_client)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
GArray *ret;
|
sl@0
|
195 |
int current_type;
|
sl@0
|
196 |
DBusSignatureIter sigiter;
|
sl@0
|
197 |
|
sl@0
|
198 |
ret = g_array_new (FALSE, FALSE, sizeof (GType));
|
sl@0
|
199 |
|
sl@0
|
200 |
dbus_signature_iter_init (&sigiter, argsig);
|
sl@0
|
201 |
while ((current_type = dbus_signature_iter_get_current_type (&sigiter)) != DBUS_TYPE_INVALID)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
GType curtype;
|
sl@0
|
204 |
|
sl@0
|
205 |
curtype = _dbus_gtype_from_signature_iter (&sigiter, is_client);
|
sl@0
|
206 |
g_array_append_val (ret, curtype);
|
sl@0
|
207 |
dbus_signature_iter_next (&sigiter);
|
sl@0
|
208 |
}
|
sl@0
|
209 |
return ret;
|
sl@0
|
210 |
}
|