Merge branch 'fd-passing'
[platform/upstream/dbus.git] / bus / config-parser-trivial.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* config-parser-trivial.h  XML-library-agnostic configuration file parser
3  *
4  * Copyright (C) 2003 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
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.
12  *
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.
17  * 
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
21  *
22  */
23
24 #ifndef BUS_CONFIG_PARSER_TRIVIAL_H
25 #define BUS_CONFIG_PARSER_TRIVIAL_H
26
27 #include <config.h>
28
29 #include <dbus/dbus.h>
30 #include <dbus/dbus-string.h>
31 #include <dbus/dbus-list.h>
32 #include <dbus/dbus-hash.h>
33
34 /* Whatever XML library we're using just pushes data into this API */
35
36 typedef struct BusConfigParser BusConfigParser;
37
38 BusConfigParser* bus_config_parser_new (const DBusString      *basedir,
39                                         dbus_bool_t            is_toplevel,
40                                         const BusConfigParser *parent);
41
42 BusConfigParser* bus_config_parser_ref           (BusConfigParser   *parser);
43 void             bus_config_parser_unref         (BusConfigParser   *parser);
44 dbus_bool_t      bus_config_parser_start_element (BusConfigParser   *parser,
45                                                   const char        *element_name,
46                                                   const char       **attribute_names,
47                                                   const char       **attribute_values,
48                                                   DBusError         *error);
49 dbus_bool_t      bus_config_parser_end_element   (BusConfigParser   *parser,
50                                                   const char        *element_name,
51                                                   DBusError         *error);
52 dbus_bool_t      bus_config_parser_content       (BusConfigParser   *parser,
53                                                   const DBusString  *content,
54                                                   DBusError         *error);
55 dbus_bool_t      bus_config_parser_finished      (BusConfigParser   *parser,
56                                                   DBusError         *error);
57
58 /* Functions for extracting the parse results */
59 const char* bus_config_parser_get_user         (BusConfigParser *parser);
60 const char* bus_config_parser_get_type         (BusConfigParser *parser);
61 DBusList**  bus_config_parser_get_service_dirs (BusConfigParser *parser);
62
63 /* Loader functions (backended off one of the XML parsers).  Returns a
64  * finished ConfigParser.
65  */
66 BusConfigParser* bus_config_load (const DBusString      *file,
67                                   dbus_bool_t            is_toplevel,
68                                   const BusConfigParser *parent,
69                                   DBusError             *error);
70
71 #endif /* BUS_CONFIG_PARSER_TRIVIAL_H */