1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* config-loader-libxml.c libxml2 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "config-parser.h"
26 #include <dbus/dbus-internals.h>
27 #include <libxml/xmlreader.h>
28 #include <libxml/parser.h>
29 #include <libxml/globals.h>
30 #include <libxml/xmlmemory.h>
36 /* About the error handling:
37 * - setup a "structured" error handler that catches structural
38 * errors and some oom errors
39 * - assume that a libxml function returning an error code means
42 #define _DBUS_MAYBE_SET_OOM(e) (dbus_error_is_set(e) ? (void)0 : _DBUS_SET_OOM(e))
46 xml_text_start_element (BusConfigParser *parser,
47 xmlTextReader *reader,
52 const char **attribute_names, **attribute_values;
54 int i, status, is_empty;
56 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
59 attribute_names = NULL;
60 attribute_values = NULL;
62 name = xmlTextReaderConstName (reader);
63 n_attributes = xmlTextReaderAttributeCount (reader);
64 is_empty = xmlTextReaderIsEmptyElement (reader);
66 if (name == NULL || n_attributes < 0 || is_empty == -1)
68 _DBUS_MAYBE_SET_OOM (error);
72 attribute_names = dbus_new0 (const char *, n_attributes + 1);
73 attribute_values = dbus_new0 (const char *, n_attributes + 1);
74 if (attribute_names == NULL || attribute_values == NULL)
76 _DBUS_SET_OOM (error);
80 while ((status = xmlTextReaderMoveToNextAttribute (reader)) == 1)
82 _dbus_assert (i < n_attributes);
83 attribute_names[i] = xmlTextReaderConstName (reader);
84 attribute_values[i] = xmlTextReaderConstValue (reader);
85 if (attribute_names[i] == NULL || attribute_values[i] == NULL)
87 _DBUS_MAYBE_SET_OOM (error);
94 _DBUS_MAYBE_SET_OOM (error);
97 _dbus_assert (i == n_attributes);
99 ret = bus_config_parser_start_element (parser, name,
100 attribute_names, attribute_values,
102 if (ret && is_empty == 1)
103 ret = bus_config_parser_end_element (parser, name, error);
106 dbus_free (attribute_names);
107 dbus_free (attribute_values);
112 static void xml_shut_up (void *ctx, const char *msg, ...)
118 xml_text_reader_error (void *arg, xmlErrorPtr xml_error)
120 DBusError *error = arg;
123 _dbus_verbose ("XML_ERROR level=%d, domain=%d, code=%d, msg=%s\n",
124 xml_error->level, xml_error->domain,
125 xml_error->code, xml_error->message);
128 if (!dbus_error_is_set (error))
130 if (xml_error->code == XML_ERR_NO_MEMORY)
131 _DBUS_SET_OOM (error);
132 else if (xml_error->level == XML_ERR_ERROR ||
133 xml_error->level == XML_ERR_FATAL)
134 dbus_set_error (error, DBUS_ERROR_FAILED,
135 "Error loading config file: '%s'",
142 bus_config_load (const DBusString *file,
143 dbus_bool_t is_toplevel,
144 const BusConfigParser *parent,
148 xmlTextReader *reader;
149 BusConfigParser *parser;
150 DBusString dirname, data;
154 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
159 if (!_dbus_string_init (&dirname))
161 _DBUS_SET_OOM (error);
165 if (!_dbus_string_init (&data))
167 _DBUS_SET_OOM (error);
168 _dbus_string_free (&dirname);
174 /* xmlMemSetup only fails if one of the functions is NULL */
175 xmlMemSetup (dbus_free,
180 xmlSetGenericErrorFunc (NULL, xml_shut_up);
183 if (!_dbus_string_get_dirname (file, &dirname))
185 _DBUS_SET_OOM (error);
189 parser = bus_config_parser_new (&dirname, is_toplevel, parent);
192 _DBUS_SET_OOM (error);
196 if (!_dbus_file_get_contents (&data, file, error))
199 reader = xmlReaderForMemory (_dbus_string_get_const_data (&data),
200 _dbus_string_get_length (&data),
204 _DBUS_SET_OOM (error);
208 xmlTextReaderSetParserProp (reader, XML_PARSER_SUBST_ENTITIES, 1);
210 dbus_error_init (&tmp_error);
211 xmlTextReaderSetStructuredErrorHandler (reader, xml_text_reader_error, &tmp_error);
213 while ((ret = xmlTextReaderRead (reader)) == 1)
217 if (dbus_error_is_set (&tmp_error))
220 type = xmlTextReaderNodeType (reader);
223 _DBUS_MAYBE_SET_OOM (&tmp_error);
227 switch ((xmlReaderTypes) type) {
228 case XML_READER_TYPE_ELEMENT:
229 xml_text_start_element (parser, reader, &tmp_error);
232 case XML_READER_TYPE_TEXT:
233 case XML_READER_TYPE_CDATA:
237 value = xmlTextReaderConstValue (reader);
240 _dbus_string_init_const (&content, value);
241 bus_config_parser_content (parser, &content, &tmp_error);
244 _DBUS_MAYBE_SET_OOM (&tmp_error);
248 case XML_READER_TYPE_DOCUMENT_TYPE:
251 name = xmlTextReaderConstName (reader);
253 bus_config_parser_check_doctype (parser, name, &tmp_error);
255 _DBUS_MAYBE_SET_OOM (&tmp_error);
259 case XML_READER_TYPE_END_ELEMENT:
262 name = xmlTextReaderConstName (reader);
264 bus_config_parser_end_element (parser, name, &tmp_error);
266 _DBUS_MAYBE_SET_OOM (&tmp_error);
270 case XML_READER_TYPE_DOCUMENT:
271 case XML_READER_TYPE_DOCUMENT_FRAGMENT:
272 case XML_READER_TYPE_PROCESSING_INSTRUCTION:
273 case XML_READER_TYPE_COMMENT:
274 case XML_READER_TYPE_ENTITY:
275 case XML_READER_TYPE_NOTATION:
276 case XML_READER_TYPE_WHITESPACE:
277 case XML_READER_TYPE_SIGNIFICANT_WHITESPACE:
278 case XML_READER_TYPE_END_ENTITY:
279 case XML_READER_TYPE_XML_DECLARATION:
280 /* nothing to do, just read on */
283 case XML_READER_TYPE_NONE:
284 case XML_READER_TYPE_ATTRIBUTE:
285 case XML_READER_TYPE_ENTITY_REFERENCE:
286 _dbus_assert_not_reached ("unexpected nodes in XML");
289 if (dbus_error_is_set (&tmp_error))
294 _DBUS_MAYBE_SET_OOM (&tmp_error);
297 xmlFreeTextReader (reader);
299 if (dbus_error_is_set (&tmp_error))
301 dbus_move_error (&tmp_error, error);
305 if (!bus_config_parser_finished (parser, error))
307 _dbus_string_free (&dirname);
308 _dbus_string_free (&data);
311 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
315 _DBUS_ASSERT_ERROR_IS_SET (error);
316 _dbus_string_free (&dirname);
317 _dbus_string_free (&data);
321 bus_config_parser_unref (parser);
322 _dbus_assert (reader == NULL); /* must go to reader_out first */