First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-gloader-expat.c expat XML loader
4 * Copyright (C) 2003 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 #include "dbus-gparser.h"
29 expat_g_malloc (size_t sz)
35 expat_g_realloc (void *mem, size_t sz)
37 return g_realloc (mem, sz);
40 static XML_Memory_Handling_Suite memsuite =
48 * Context for Expat parser for introspection data.
52 Parser *parser; /**< The parser for the introspection data */
53 const char *filename; /**< The filename being loaded */
54 GString *content; /**< The content of the current element */
55 GError **error; /**< Error return location */
56 gboolean failed; /**< True if parse has failed */
60 process_content (ExpatParseContext *context)
65 if (context->content->len > 0)
67 if (!parser_content (context->parser,
68 context->content->str,
69 context->content->len,
72 context->failed = TRUE;
75 g_string_set_size (context->content, 0);
82 expat_StartElementHandler (void *userData,
84 const XML_Char **atts)
86 ExpatParseContext *context = userData;
91 /* Expat seems to suck and can't abort the parse if we
92 * throw an error. Expat 2.0 is supposed to fix this.
97 if (!process_content (context))
100 /* "atts" is key, value, key, value, NULL */
101 for (i = 0; atts[i] != NULL; ++i)
104 g_assert (i % 2 == 0);
105 names = g_new0 (char *, i / 2 + 1);
106 values = g_new0 (char *, i / 2 + 1);
109 while (atts[i] != NULL)
111 g_assert (i % 2 == 0);
112 names [i / 2] = (char*) atts[i];
113 values[i / 2] = (char*) atts[i+1];
118 if (!parser_start_element (context->parser,
120 (const char **) names,
121 (const char **) values,
126 context->failed = TRUE;
135 expat_EndElementHandler (void *userData,
136 const XML_Char *name)
138 ExpatParseContext *context = userData;
140 if (!process_content (context))
143 if (!parser_end_element (context->parser,
147 context->failed = TRUE;
152 /* s is not 0 terminated. */
154 expat_CharacterDataHandler (void *userData,
158 ExpatParseContext *context = userData;
163 g_string_append_len (context->content,
168 description_load_from_file (const char *filename,
176 if (!g_file_get_contents (filename, &contents, &len, error))
179 nodes = description_load_from_string (contents, len, error);
186 description_load_from_string (const char *str,
191 ExpatParseContext context;
194 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
200 context.parser = NULL;
201 context.error = error;
202 context.failed = FALSE;
204 expat = XML_ParserCreate_MM ("UTF-8", &memsuite, NULL);
206 g_error ("No memory to create XML parser\n");
208 context.parser = parser_new ();
209 context.content = g_string_new (NULL);
211 XML_SetUserData (expat, &context);
212 XML_SetElementHandler (expat,
213 expat_StartElementHandler,
214 expat_EndElementHandler);
215 XML_SetCharacterDataHandler (expat,
216 expat_CharacterDataHandler);
218 if (!XML_Parse (expat, str, len, TRUE))
220 if (context.error != NULL &&
221 *context.error == NULL)
225 e = XML_GetErrorCode (expat);
226 if (e == XML_ERROR_NO_MEMORY)
227 g_error ("Not enough memory to parse XML document");
231 G_MARKUP_ERROR_PARSE,
232 "Error in D-BUS description XML, line %d, column %d: %s\n",
233 XML_GetCurrentLineNumber (expat),
234 XML_GetCurrentColumnNumber (expat),
235 XML_ErrorString (e));
244 if (!parser_finished (context.parser, error))
247 XML_ParserFree (expat);
248 g_string_free (context.content, TRUE);
250 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
251 nodes = parser_get_nodes (context.parser);
252 node_info_ref (nodes);
253 parser_unref (context.parser);
257 g_return_val_if_fail (error == NULL || *error != NULL, NULL);
259 g_string_free (context.content, TRUE);
261 XML_ParserFree (expat);
263 parser_unref (context.parser);