Main Page | Modules | Data Structures | File List | Data Fields | Related Pages

dbus-gparser.h

00001 /* -*- mode: C; c-file-style: "gnu" -*- */ 00002 /* dbus-gparser.h parse DBus description files 00003 * 00004 * Copyright (C) 2003 Red Hat, Inc. 00005 * 00006 * Licensed under the Academic Free License version 2.1 00007 * 00008 * This program is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation; either version 2 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this program; if not, write to the Free Software 00020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 * 00022 */ 00023 #ifndef DBUS_GLIB_PARSER_H 00024 #define DBUS_GLIB_PARSER_H 00025 00026 #include <dbus/dbus.h> 00027 #include <glib.h> 00028 #include "dbus-gidl.h" 00029 00030 G_BEGIN_DECLS 00031 00032 typedef struct Parser Parser; 00033 00034 Parser* parser_new (void); 00035 Parser* parser_ref (Parser *parser); 00036 void parser_unref (Parser *parser); 00037 gboolean parser_check_doctype (Parser *parser, 00038 const char *doctype, 00039 GError **error); 00040 gboolean parser_start_element (Parser *parser, 00041 const char *element_name, 00042 const char **attribute_names, 00043 const char **attribute_values, 00044 GError **error); 00045 gboolean parser_end_element (Parser *parser, 00046 const char *element_name, 00047 GError **error); 00048 gboolean parser_content (Parser *parser, 00049 const char *content, 00050 int len, 00051 GError **error); 00052 gboolean parser_finished (Parser *parser, 00053 GError **error); 00054 00055 NodeInfo* description_load_from_file (const char *filename, 00056 GError **error); 00057 NodeInfo* description_load_from_string (const char *str, 00058 int len, 00059 GError **error); 00060 00061 NodeInfo* parser_get_nodes (Parser *parser); 00062 00063 G_END_DECLS 00064 00065 #endif /* DBUS_GLIB_GPARSER_H */

Generated on Mon Jun 27 07:48:21 2005 for D-BUS by doxygen 1.3.7