1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus/bus/config-parser.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,94 @@
1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
1.5 +/* config-parser.h XML-library-agnostic configuration file parser
1.6 + *
1.7 + * Copyright (C) 2003 Red Hat, Inc.
1.8 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
1.9 + * Licensed under the Academic Free License version 2.1
1.10 + *
1.11 + * This program is free software; you can redistribute it and/or modify
1.12 + * it under the terms of the GNU General Public License as published by
1.13 + * the Free Software Foundation; either version 2 of the License, or
1.14 + * (at your option) any later version.
1.15 + *
1.16 + * This program is distributed in the hope that it will be useful,
1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.19 + * GNU General Public License for more details.
1.20 + *
1.21 + * You should have received a copy of the GNU General Public License
1.22 + * along with this program; if not, write to the Free Software
1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1.24 + *
1.25 + */
1.26 +
1.27 +#ifndef BUS_CONFIG_PARSER_H
1.28 +#define BUS_CONFIG_PARSER_H
1.29 +
1.30 +#ifndef __SYMBIAN32__
1.31 +#include <config.h>
1.32 +#endif // __SYMBIAN32__
1.33 +
1.34 +#include <dbus/dbus.h>
1.35 +
1.36 +#ifndef __SYMBIAN32__
1.37 +#include <dbus/dbus-string.h>
1.38 +#include <dbus/dbus-list.h>
1.39 +#include <dbus/dbus-hash.h>
1.40 +#else
1.41 +#include "dbus-string.h"
1.42 +#include "dbus-list.h"
1.43 +#include "dbus-hash.h"
1.44 +#endif //__SYMBIAN32__
1.45 +#include "bus.h"
1.46 +
1.47 +/* Whatever XML library we're using just pushes data into this API */
1.48 +
1.49 +typedef struct BusConfigParser BusConfigParser;
1.50 +
1.51 +BusConfigParser* bus_config_parser_new (const DBusString *basedir,
1.52 + dbus_bool_t is_toplevel,
1.53 + const BusConfigParser *parent);
1.54 +
1.55 +BusConfigParser* bus_config_parser_ref (BusConfigParser *parser);
1.56 +void bus_config_parser_unref (BusConfigParser *parser);
1.57 +dbus_bool_t bus_config_parser_check_doctype (BusConfigParser *parser,
1.58 + const char *doctype,
1.59 + DBusError *error);
1.60 +dbus_bool_t bus_config_parser_start_element (BusConfigParser *parser,
1.61 + const char *element_name,
1.62 + const char **attribute_names,
1.63 + const char **attribute_values,
1.64 + DBusError *error);
1.65 +dbus_bool_t bus_config_parser_end_element (BusConfigParser *parser,
1.66 + const char *element_name,
1.67 + DBusError *error);
1.68 +dbus_bool_t bus_config_parser_content (BusConfigParser *parser,
1.69 + const DBusString *content,
1.70 + DBusError *error);
1.71 +dbus_bool_t bus_config_parser_finished (BusConfigParser *parser,
1.72 + DBusError *error);
1.73 +
1.74 +/* Functions for extracting the parse results */
1.75 +const char* bus_config_parser_get_user (BusConfigParser *parser);
1.76 +const char* bus_config_parser_get_type (BusConfigParser *parser);
1.77 +DBusList** bus_config_parser_get_addresses (BusConfigParser *parser);
1.78 +DBusList** bus_config_parser_get_mechanisms (BusConfigParser *parser);
1.79 +dbus_bool_t bus_config_parser_get_fork (BusConfigParser *parser);
1.80 +const char* bus_config_parser_get_pidfile (BusConfigParser *parser);
1.81 +DBusList** bus_config_parser_get_service_dirs (BusConfigParser *parser);
1.82 +DBusList** bus_config_parser_get_conf_dirs (BusConfigParser *parser);
1.83 +BusPolicy* bus_config_parser_steal_policy (BusConfigParser *parser);
1.84 +void bus_config_parser_get_limits (BusConfigParser *parser,
1.85 + BusLimits *limits);
1.86 +
1.87 +DBusHashTable* bus_config_parser_steal_service_context_table (BusConfigParser *parser);
1.88 +
1.89 +/* Loader functions (backended off one of the XML parsers). Returns a
1.90 + * finished ConfigParser.
1.91 + */
1.92 +BusConfigParser* bus_config_load (const DBusString *file,
1.93 + dbus_bool_t is_toplevel,
1.94 + const BusConfigParser *parent,
1.95 + DBusError *error);
1.96 +
1.97 +#endif /* BUS_CONFIG_PARSER_H */