File: parse.h

package info (click to toggle)
libnih 1.0.3-4.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 10,544 kB
  • sloc: ansic: 188,634; sh: 11,217; makefile: 1,116; yacc: 291; xml: 239; sed: 16
file content (110 lines) | stat: -rw-r--r-- 2,888 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* nih-dbus-tool
 *
 * Copyright © 2009 Scott James Remnant <scott@netsplit.com>.
 * Copyright © 2009 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2, as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef NIH_DBUS_TOOL_PARSE_H
#define NIH_DBUS_TOOL_PARSE_H

#include <nih/macros.h>
#include <nih/list.h>

#include "node.h"
#include "interface.h"
#include "method.h"
#include "signal.h"
#include "property.h"
#include "argument.h"


/**
 * ParseStackType:
 *
 * Type of parsed object on the stack.
 **/
typedef enum parse_stack_type {
	PARSE_IGNORED,
	PARSE_NODE,
	PARSE_INTERFACE,
	PARSE_METHOD,
	PARSE_SIGNAL,
	PARSE_PROPERTY,
	PARSE_ARGUMENT,
	PARSE_ANNOTATION,
} ParseStackType;

/**
 * ParseStack:
 * @entry: list header,
 * @type: type of object parsed,
 * @data: object pointer.
 *
 * This structure represents an object parsed from the XML file and is used
 * as a stack.  @type indicates which type of object is being parsed, and
 * the @data pointer is part of a union of the different types of pointer.
 **/
typedef struct parse_stack {
	NihList            entry;
	ParseStackType     type;
	union {
		void *     data;
		Node *     node;
		Interface *interface;
		Method *   method;
		Signal *   signal;
		Property * property;
		Argument * argument;
	};
} ParseStack;


/**
 * ParseContext:
 * @parent: parent for node,
 * @stack: parse stack,
 * @filename: filename being parsed,
 * @node: top-level node.
 *
 * This structure is used as the user data for the XML parser, it tracks the
 * stack of objects being parsed and returns the top-level node object which
 * has all of the interfaces, etc.
 **/
typedef struct parse_context {
	const void *parent;
	NihList     stack;
	const char *filename;
	Node *      node;
} ParseContext;


NIH_BEGIN_EXTERN

ParseStack *parse_stack_push (const void *parent, NihList *stack,
			      ParseStackType type, void *data)
	__attribute__ ((warn_unused_result, malloc));
ParseStack *parse_stack_top  (NihList *stack);

void        parse_start_tag  (XML_Parser xmlp, const char *tag,
			      char * const *attr);
void        parse_end_tag    (XML_Parser xmlp, const char *tag);

Node *      parse_xml        (const void *parent, int fd, const char *filename)
	__attribute__ ((warn_unused_result, malloc));

NIH_END_EXTERN

#endif /* NIH_DBUS_TOOL_PARSE_H */