summaryrefslogtreecommitdiff
path: root/saedit/xml.c
blob: 90c4d761e8503755ad7ea500bc84ea5630266c13 (plain) (blame)
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#include "xml.h"
#include <string.h>

gchar **
xml_attr_new (
	const gchar *name,
	const gchar *value
) {
	gchar **attr = g_new0(gchar*, 2);
	attr[0] = g_strdup(name);
	attr[1] = g_strdup(value);
	return attr;
}

gchar *
xml_node_get_attr_value (
	const XMLNode *node,
	const gchar *attr_name
) {
	gchar **attr = node->attributes;
	guint i;
	for (i = 0; i < g_strv_length(attr); i += 2)
		if (g_str_equal(attr[i], attr_name))
			return g_strdup (attr[i + 1]);
	return NULL;
}

gint
xml_node_get_int_attr_value (
	const XMLNode *node,
	const gchar *attr_name,
	gint retval
) {
	gchar *val = xml_node_get_attr_value (node, attr_name);

	if (val != NULL) {
		try_strtoint (val, &retval);
		g_free (val);
	}
	
	return retval;
}

gint
xml_node_get_int_attr_value_limited (
	const XMLNode *node,
	const gchar   *attr_name,
	gint           retval,
	gint           lower,
	gint           upper
) {
	g_assert (lower <= upper);

	retval = xml_node_get_int_attr_value (
		node, attr_name, retval
	);

	if (retval < lower)
		retval = lower;

	if (retval > upper)
		retval = upper;
	return retval;
}

gint 
xml_node_compare_with_name_func (
	gconstpointer a,
	gconstpointer b
) {
	return g_strcmp0((gchar *) b, ((XMLNode *) a)->name);
}

gint
xml_node_compare_with_action_node_by_imageset_name_func (
	gconstpointer a, 
	gconstpointer b
) {
	return g_strcmp0("action", ((XMLNode *) a)->name) ||
	       g_strcmp0((gchar *) b, xml_node_get_attr_value((XMLNode *) a, "imageset"));
}

gint
xml_node_compare_with_attr_func (
	const XMLNode *node,
	const gchar **attr
) {
	return g_strcmp0(attr[1],
	                 xml_node_get_attr_value(node, attr[0]));
}

static GMarkupParser parser;

void _xml_free_g_func (XMLNode *node, gpointer user_data) {
	xml_free (node);
}

void xml_free (XMLNode *node) {
	g_free (node->name);

	g_free (node->text);

	g_strfreev (node->attributes);

	g_list_foreach (node->sub_nodes, (GFunc) _xml_free_g_func, NULL);
	g_list_free (node->sub_nodes);

	g_slice_free (XMLNode, node);
}

static void _start_root_element_cb (	GMarkupParseContext *context,
				        const gchar         *element_name,
				        const gchar        **attribute_names,
				        const gchar        **attribute_values,
				        gpointer             user_data,
				        GError             **error
) {
	XMLNode **node = (XMLNode **) user_data;
	XMLNode  *p;
	GArray   *attributes;

	g_assert (node != NULL);

	p = g_slice_new0 (XMLNode);
	p->name = g_strdup (element_name);

	attributes = g_array_new (TRUE, TRUE, sizeof (gchar *));
	while (*attribute_names != NULL && *attribute_values != NULL) {
		gchar *p2;
		p2 = g_strdup (*attribute_names++);
		g_array_append_val (attributes, p2);
		p2 = g_strdup (*attribute_values++);
		g_array_append_val (attributes, p2);
	}

	p->attributes = (gchar **) g_array_free (attributes, FALSE);

	g_markup_parse_context_push (context, &parser, p);
	*node = p;
}


static void _start_element_cb (
	GMarkupParseContext *context,
   	const gchar         *element_name,
   	const gchar        **attribute_names,
  	const gchar        **attribute_values,
   	gpointer             user_data,
   	GError             **error
) {
	XMLNode *p, *node = (XMLNode *) user_data;
	GArray  *attributes;
	gint char_n, line_n;

	if (node->text) {
		g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, " ");
		return;
	}

	p = g_slice_new0 (XMLNode);

	node->sub_nodes = g_list_append (node->sub_nodes, p);
	g_markup_parse_context_push (context, &parser, p);

	p->name = g_strdup (element_name);

	attributes = g_array_new (TRUE, TRUE, sizeof (gchar *));
	while (*attribute_names != NULL && *attribute_values != NULL) {
		gchar *p2;
		p2 = g_strdup (*attribute_names++);
		g_array_append_val (attributes, p2);
		p2 = g_strdup (*attribute_values++);
		g_array_append_val (attributes, p2);
	}

	p->attributes = (gchar **)g_array_free (attributes, FALSE);

	g_markup_parse_context_get_position(context, &line_n, &char_n);
	p->line_no = line_n - (char_n <= 1 ? 1 : 0);
}

static void 
_end_element_cb (
	GMarkupParseContext *context,
	const gchar         *element_name,
	gpointer             user_data,
	GError             **error
) {
	XMLNode *p = (XMLNode *) g_markup_parse_context_pop (context);

	if (p->text && p->sub_nodes) {
		g_warning ("Error");
	}

	if (p->text == NULL && p->sub_nodes == NULL) {
		p->text = g_strdup ("");
	}
}

static gboolean
_is_space (
	const gchar *text,
	gsize text_len
) {
	gsize i = 0;

	for (i = 0; text[i] != '\0' && i < text_len; i++) {
		switch (text[i]) {
		case '\t':
		case ' ':
		case '\n':
		case '\r':
			continue;
		default:
			return FALSE;
		}
	}

	return TRUE;
}

static void 
_text_cb (	
	GMarkupParseContext *context,
	const gchar         *text,
	gsize                text_len,
	gpointer             user_data,
	GError             **error
) {
	XMLNode *p = (XMLNode *)user_data;

	if (_is_space (text, text_len)) {
		return;
	}

	if (p->sub_nodes || p->text) {
		g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, " ");
		return;
	}

	p->text = g_strndup (text, text_len);
}

static GMarkupParser parser = {
	_start_element_cb,
	_end_element_cb,
	_text_cb,
	0,
	0,
};

XMLNode *
xml_parse_file (const gchar *filename) {
	gboolean retval = FALSE;
	GError *error = NULL;
	GMarkupParseContext *context;
	XMLNode *node;

	static const GMarkupParser root_parser = {
		_start_root_element_cb,
		_end_element_cb,
		_text_cb,
		0,
		0,
	};

	FILE *pf = fopen (filename, "r");

	if (pf == NULL) {
		return NULL;
	}

	do {
		context = g_markup_parse_context_new (&root_parser, 0, &node, 0);

		while (!feof (pf)) {
			gchar buf[1024];
			gssize len = 0;

			len = fread (buf, 1, sizeof (buf), pf);
			retval = g_markup_parse_context_parse (context, buf, len, &error);

			if (!retval)
				break;
		}
		fclose (pf);

		if (!retval)
			break;

		retval = g_markup_parse_context_end_parse (context, &error);
		if (!retval)
			break;

		g_markup_parse_context_free (context);

		return node;
	} while (0);

	g_warning ("Parse %s failed: %s", filename, error->message);
	g_error_free (error);
	g_markup_parse_context_free (context);
	return NULL;
}

XMLNode *
xml_parse_buffer (const gchar *buffer, GError **error) {
	gboolean retval;

	GMarkupParseContext *context;
	XMLNode *node;

	static const GMarkupParser root_parser = {
		_start_root_element_cb,
		_end_element_cb,
		_text_cb,
		0,
		0,
	};

	context = g_markup_parse_context_new (&root_parser, 0, &node, 0);

	do {
		retval = g_markup_parse_context_parse (context, buffer, strlen (buffer), error);
		if (!retval)
			break;

		retval = g_markup_parse_context_end_parse (context, error);
		if (!retval)
			break;
		g_markup_parse_context_free (context);
		return node;
	} while (0);

	g_markup_parse_context_free (context);
	return NULL;
}


static void output_indent (int level, GString *output) {
	gint i;
	for (i = 0; i < level; i++) {
		g_string_append (output, "    ");
	}
}

static void xml_output_indent (
	const XMLNode *node, 
	int level,
	GString *output
) {
	gchar **attrs;

	output_indent (level, output);
	g_string_append_printf (output, "<%s", node->name);

	attrs = node->attributes;

	while (attrs != NULL && *attrs != NULL) {
		g_string_append_printf (output, " %s", *(attrs++));
		g_string_append_printf (output, "=\"%s\"", *(attrs++));
	}

	if (node->sub_nodes != NULL) {
		GList *sub_node;
		g_string_append (output, ">\n");

		for (sub_node = node->sub_nodes; sub_node != NULL; sub_node = sub_node->next) {
			xml_output_indent (sub_node->data, level + 1, output);
		}
		output_indent (level, output);
		g_string_append_printf (output, "</%s>\n",node->name);
	} else if (node->text != NULL) {
		gchar *text = g_markup_escape_text (node->text, -1);
		g_string_append_printf (output, ">%s</%s>\n", text, node->name);
		g_free (text);
	} else {
		g_string_append (output, "/>\n");
	}
}

void xml_output (const XMLNode *node, GString *output) {
	xml_output_indent (node, 0, output);
}