1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
/* json-gboxed.c - JSON GBoxed integration
*
* This file is part of JSON-GLib
*
* Copyright (C) 2007 OpenedHand Ltd.
* Copyright (C) 2009 Intel Corp.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* Author:
* Emmanuele Bassi <ebassi@linux.intel.com>
*/
#include "config.h"
#include <string.h>
#include <stdlib.h>
#include "json-types-private.h"
#include "json-gobject.h"
typedef struct _BoxedTransform BoxedTransform;
struct _BoxedTransform
{
GType boxed_type;
gint node_type;
JsonBoxedSerializeFunc serialize;
JsonBoxedDeserializeFunc deserialize;
};
G_LOCK_DEFINE_STATIC (boxed_serialize);
static GSList *boxed_serialize = NULL;
G_LOCK_DEFINE_STATIC (boxed_deserialize);
static GSList *boxed_deserialize = NULL;
static gint
boxed_transforms_cmp (gconstpointer a,
gconstpointer b)
{
const BoxedTransform *ta = a;
const BoxedTransform *tb = b;
return tb->boxed_type - ta->boxed_type;
}
static gint
boxed_transforms_find (gconstpointer a,
gconstpointer b)
{
const BoxedTransform *haystack = a;
const BoxedTransform *needle = b;
if (needle->node_type != -1)
return (haystack->boxed_type == needle->boxed_type &&
haystack->node_type == needle->node_type) ? 0 : 1;
else
return (haystack->boxed_type == needle->boxed_type) ? 0 : 1;
}
static BoxedTransform *
lookup_boxed_transform (GSList *transforms,
GType gboxed_type,
JsonNodeType node_type)
{
BoxedTransform lookup;
GSList *t;
lookup.boxed_type = gboxed_type;
lookup.node_type = node_type;
t = g_slist_find_custom (transforms, &lookup, boxed_transforms_find);
if (t == NULL)
return NULL;
return t->data;
}
/**
* json_boxed_register_serialize_func: (skip)
* @gboxed_type: a boxed type
* @node_type: a node type
* @serialize_func: serialization function for @boxed_type into
* a #JsonNode of type @node_type
*
* Registers a serialization function for a #GBoxed of type @gboxed_type
* to a #JsonNode of type @node_type.
*
* Since: 0.10
*/
void
json_boxed_register_serialize_func (GType gboxed_type,
JsonNodeType node_type,
JsonBoxedSerializeFunc serialize_func)
{
BoxedTransform *t;
g_return_if_fail (G_TYPE_IS_BOXED (gboxed_type));
g_return_if_fail (G_TYPE_IS_ABSTRACT (gboxed_type) == FALSE);
G_LOCK (boxed_serialize);
t = lookup_boxed_transform (boxed_serialize, gboxed_type, node_type);
if (t == NULL)
{
t = g_slice_new (BoxedTransform);
t->boxed_type = gboxed_type;
t->node_type = node_type;
t->serialize = serialize_func;
boxed_serialize = g_slist_insert_sorted (boxed_serialize, t,
boxed_transforms_cmp);
}
else
g_warning ("A serialization function for the boxed type %s into "
"JSON nodes of type %s already exists",
g_type_name (gboxed_type),
json_node_type_get_name (node_type));
G_UNLOCK (boxed_serialize);
}
/**
* json_boxed_register_deserialize_func: (skip)
* @gboxed_type: a boxed type
* @node_type: a node type
* @deserialize_func: deserialization function for @boxed_type from
* a #JsonNode of type @node_type
*
* Registers a deserialization function for a #GBoxed of type @gboxed_type
* from a #JsonNode of type @node_type
*
* Since: 0.10
*/
void
json_boxed_register_deserialize_func (GType gboxed_type,
JsonNodeType node_type,
JsonBoxedDeserializeFunc deserialize_func)
{
BoxedTransform *t;
g_return_if_fail (G_TYPE_IS_BOXED (gboxed_type));
g_return_if_fail (G_TYPE_IS_ABSTRACT (gboxed_type) == FALSE);
G_LOCK (boxed_deserialize);
t = lookup_boxed_transform (boxed_deserialize, gboxed_type, node_type);
if (t == NULL)
{
t = g_slice_new (BoxedTransform);
t->boxed_type = gboxed_type;
t->node_type = node_type;
t->deserialize = deserialize_func;
boxed_deserialize = g_slist_insert_sorted (boxed_deserialize, t,
boxed_transforms_cmp);
}
else
g_warning ("A deserialization function for the boxed type %s from "
"JSON nodes of type %s already exists",
g_type_name (gboxed_type),
json_node_type_get_name (node_type));
G_UNLOCK (boxed_deserialize);
}
/**
* json_boxed_can_serialize:
* @gboxed_type: a boxed type
* @node_type: (out) (optional): the #JsonNode type to which the boxed type
* can be serialized into
*
* Checks whether it is possible to serialize a #GBoxed of
* type @gboxed_type into a #JsonNode.
*
* The type of the #JsonNode is placed inside @node_type if the function
* returns %TRUE and it's undefined otherwise.
*
* Return value: %TRUE if the type can be serialized,
* and %FALSE otherwise.
*
* Since: 0.10
*/
gboolean
json_boxed_can_serialize (GType gboxed_type,
JsonNodeType *node_type)
{
BoxedTransform *t;
g_return_val_if_fail (G_TYPE_IS_BOXED (gboxed_type), FALSE);
g_return_val_if_fail (G_TYPE_IS_ABSTRACT (gboxed_type) == FALSE, FALSE);
t = lookup_boxed_transform (boxed_serialize, gboxed_type, -1);
if (t != NULL)
{
if (node_type)
*node_type = t->node_type;
return TRUE;
}
return FALSE;
}
/**
* json_boxed_can_deserialize:
* @gboxed_type: a boxed type
* @node_type: a #JsonNode type
*
* Checks whether it is possible to deserialize a #GBoxed of
* type @gboxed_type from a #JsonNode of type @node_type
*
* Return value: %TRUE if the type can be deserialized, %FALSE otherwise
*
* Since: 0.10
*/
gboolean
json_boxed_can_deserialize (GType gboxed_type,
JsonNodeType node_type)
{
BoxedTransform *t;
g_return_val_if_fail (G_TYPE_IS_BOXED (gboxed_type), FALSE);
g_return_val_if_fail (G_TYPE_IS_ABSTRACT (gboxed_type) == FALSE, FALSE);
t = lookup_boxed_transform (boxed_deserialize, gboxed_type, node_type);
if (t != NULL)
return TRUE;
return FALSE;
}
/**
* json_boxed_serialize:
* @gboxed_type: a boxed type
* @boxed: a pointer to a #GBoxed of type @gboxed_type
*
* Serializes a pointer to a #GBoxed of type @gboxed_type into a #JsonNode
*
* Return value: (nullable) (transfer full): a #JsonNode with the serialization of
* the boxed type, or %NULL if serialization either failed or was not possible
*
* Since: 0.10
*/
JsonNode *
json_boxed_serialize (GType gboxed_type,
gconstpointer boxed)
{
BoxedTransform *t;
g_return_val_if_fail (G_TYPE_IS_BOXED (gboxed_type), NULL);
g_return_val_if_fail (G_TYPE_IS_ABSTRACT (gboxed_type) == FALSE, NULL);
g_return_val_if_fail (boxed != NULL, NULL);
t = lookup_boxed_transform (boxed_serialize, gboxed_type, -1);
if (t != NULL && t->serialize != NULL)
return t->serialize (boxed);
return NULL;
}
/**
* json_boxed_deserialize:
* @gboxed_type: a boxed type
* @node: a #JsonNode
*
* Deserializes @node into a #GBoxed of @gboxed_type.
*
* Return value: (transfer full): the newly allocated #GBoxed. Use
* g_boxed_free() to release the resources allocated by this
* function
*
* Since: 0.10
*/
gpointer
json_boxed_deserialize (GType gboxed_type,
JsonNode *node)
{
JsonNodeType node_type;
BoxedTransform *t;
g_return_val_if_fail (G_TYPE_IS_BOXED (gboxed_type), NULL);
g_return_val_if_fail (G_TYPE_IS_ABSTRACT (gboxed_type) == FALSE, NULL);
g_return_val_if_fail (node != NULL, NULL);
node_type = json_node_get_node_type (node);
t = lookup_boxed_transform (boxed_deserialize, gboxed_type, node_type);
if (t != NULL && t->deserialize != NULL)
return t->deserialize (node);
return NULL;
}
|