1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus-glib/dbus/dbus-gparser.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,65 @@
1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
1.5 +/* dbus-gparser.h parse DBus description files
1.6 + *
1.7 + * Copyright (C) 2003 Red Hat, Inc.
1.8 + *
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 +#ifndef DBUS_GLIB_PARSER_H
1.27 +#define DBUS_GLIB_PARSER_H
1.28 +
1.29 +#include <dbus/dbus.h>
1.30 +#include <glib.h>
1.31 +#include "dbus-gidl.h"
1.32 +
1.33 +G_BEGIN_DECLS
1.34 +
1.35 +typedef struct Parser Parser;
1.36 +
1.37 +Parser* parser_new (void);
1.38 +Parser* parser_ref (Parser *parser);
1.39 +void parser_unref (Parser *parser);
1.40 +gboolean parser_check_doctype (Parser *parser,
1.41 + const char *doctype,
1.42 + GError **error);
1.43 +gboolean parser_start_element (Parser *parser,
1.44 + const char *element_name,
1.45 + const char **attribute_names,
1.46 + const char **attribute_values,
1.47 + GError **error);
1.48 +gboolean parser_end_element (Parser *parser,
1.49 + const char *element_name,
1.50 + GError **error);
1.51 +gboolean parser_content (Parser *parser,
1.52 + const char *content,
1.53 + int len,
1.54 + GError **error);
1.55 +gboolean parser_finished (Parser *parser,
1.56 + GError **error);
1.57 +
1.58 +NodeInfo* description_load_from_file (const char *filename,
1.59 + GError **error);
1.60 +NodeInfo* description_load_from_string (const char *str,
1.61 + int len,
1.62 + GError **error);
1.63 +
1.64 +NodeInfo* parser_get_nodes (Parser *parser);
1.65 +
1.66 +G_END_DECLS
1.67 +
1.68 +#endif /* DBUS_GLIB_GPARSER_H */