]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/xml-support.h
[binutils, ARM, 4/16] BF insns infrastructure with array of relocs in struct arm_it
[thirdparty/binutils-gdb.git] / gdb / xml-support.h
CommitLineData
fd79ecee
DJ
1/* Helper routines for parsing XML using Expat.
2
42a4f53d 3 Copyright (C) 2006-2019 Free Software Foundation, Inc.
fd79ecee
DJ
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
fd79ecee
DJ
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fd79ecee
DJ
19
20
21#ifndef XML_SUPPORT_H
22#define XML_SUPPORT_H
23
e776119f 24#include "gdb_obstack.h"
0747795c
TT
25#include "common/vec.h"
26#include "common/xml-utils.h"
9018be22 27#include "common/byte-vector.h"
fd79ecee 28
e776119f
DJ
29struct gdb_xml_parser;
30struct gdb_xml_element;
31struct gdb_xml_attribute;
fd79ecee 32
108546a0
DJ
33/* Return an XML document which was compiled into GDB, from
34 the given FILENAME, or NULL if the file was not compiled in. */
35
36const char *fetch_xml_builtin (const char *filename);
37
05a4558a
DJ
38/* A to_xfer_partial helper function which reads XML files which were
39 compiled into GDB. The target may call this function from its own
40 to_xfer_partial handler, after converting object and annex to the
41 appropriate filename. */
42
43LONGEST xml_builtin_xfer_partial (const char *filename,
44 gdb_byte *readbuf, const gdb_byte *writebuf,
45 ULONGEST offset, LONGEST len);
46
108546a0
DJ
47/* The text of compiled-in XML documents, from xml-builtin.c
48 (generated). */
de584861 49
108546a0
DJ
50extern const char *xml_builtin[][2];
51
de584861
PA
52/* Support for XInclude. */
53
54/* Callback to fetch a new XML file, based on the provided HREF. */
55
9018be22
SM
56typedef gdb::optional<gdb::char_vector> (*xml_fetch_another) (const char *href,
57 void *baton);
de584861 58
bd8a901f
PA
59/* Append the expansion of TEXT after processing <xi:include> tags in
60 RESULT. FETCHER will be called (with FETCHER_BATON) to retrieve
61 any new files. DEPTH should be zero on the initial call.
de584861 62
bd8a901f 63 On failure, this function uses NAME in a warning and returns false.
de584861
PA
64 It may throw an exception, but does not for XML parsing
65 problems. */
66
bd8a901f
PA
67bool xml_process_xincludes (std::string &result,
68 const char *name, const char *text,
69 xml_fetch_another fetcher, void *fetcher_baton,
70 int depth);
de584861 71
108546a0
DJ
72/* Simplified XML parser infrastructure. */
73
e776119f 74/* A name and value pair, used to record parsed attributes. */
fd79ecee 75
e776119f
DJ
76struct gdb_xml_value
77{
4d0fdd9b
SM
78 gdb_xml_value (const char *name_, void *value_)
79 : name (name_), value (value_)
80 {}
81
e776119f 82 const char *name;
4d0fdd9b 83 gdb::unique_xmalloc_ptr<void> value;
e776119f 84};
fd79ecee 85
e776119f 86/* The type of an attribute handler.
fd79ecee 87
e776119f
DJ
88 PARSER is the current XML parser, which should be used to issue any
89 debugging or error messages. The second argument is the
90 corresponding attribute description, so that a single handler can
91 be used for multiple attributes; the attribute name is available
92 for error messages and the handler data is available for additional
93 customization (see gdb_xml_parse_attr_enum). VALUE is the string
94 value of the attribute.
95
96 The returned value should be freeable with xfree, and will be freed
97 after the start handler is called. Errors should be reported by
98 calling gdb_xml_error. */
99
100typedef void *(gdb_xml_attribute_handler) (struct gdb_xml_parser *parser,
101 const struct gdb_xml_attribute *,
102 const char *value);
103
104/* Flags for attributes. If no flags are specified, the attribute is
105 required. */
106
107enum gdb_xml_attribute_flag
108{
109 GDB_XML_AF_NONE,
110 GDB_XML_AF_OPTIONAL = 1 << 0, /* The attribute is optional. */
111};
112
113/* An expected attribute and the handler to call when it is
114 encountered. Arrays of struct gdb_xml_attribute are terminated
115 by an entry with NAME == NULL. */
116
117struct gdb_xml_attribute
118{
119 const char *name;
120 int flags;
121 gdb_xml_attribute_handler *handler;
122 const void *handler_data;
123};
124
125/* Flags for elements. If no flags are specified, the element is
126 required exactly once. */
127
128enum gdb_xml_element_flag
129{
130 GDB_XML_EF_NONE,
131 GDB_XML_EF_OPTIONAL = 1 << 0, /* The element is optional. */
132 GDB_XML_EF_REPEATABLE = 1 << 1, /* The element is repeatable. */
133};
134
135/* A handler called at the beginning of an element.
136
137 PARSER is the current XML parser, which should be used to issue any
138 debugging or error messages. ELEMENT is the current element.
139 USER_DATA is the opaque pointer supplied when the parser was
140 created. ATTRIBUTES is a vector of the values of any attributes
141 attached to this element.
142
143 The start handler will only be called if all the required
144 attributes were present and parsed successfully, and elements of
145 ATTRIBUTES are guaranteed to be in the same order used in
146 ELEMENT->ATTRIBUTES (not the order from the XML file). Accordingly
147 fixed offsets can be used to find any non-optional attributes as
148 long as no optional attributes precede them. */
149
150typedef void (gdb_xml_element_start_handler)
151 (struct gdb_xml_parser *parser, const struct gdb_xml_element *element,
4d0fdd9b 152 void *user_data, std::vector<gdb_xml_value> &attributes);
e776119f
DJ
153
154/* A handler called at the end of an element.
155
156 PARSER, ELEMENT, and USER_DATA are as for the start handler. BODY
157 is any accumulated body text inside the element, with leading and
158 trailing whitespace removed. It will never be NULL. */
159
160typedef void (gdb_xml_element_end_handler)
161 (struct gdb_xml_parser *, const struct gdb_xml_element *,
162 void *user_data, const char *body_text);
163
164/* An expected element and the handlers to call when it is
165 encountered. Arrays of struct gdb_xml_element are terminated
166 by an entry with NAME == NULL. */
167
168struct gdb_xml_element
169{
170 const char *name;
171 const struct gdb_xml_attribute *attributes;
172 const struct gdb_xml_element *children;
173 int flags;
174
175 gdb_xml_element_start_handler *start_handler;
176 gdb_xml_element_end_handler *end_handler;
177};
178
efc0eabd
PA
179/* Parse a XML document. DOCUMENT is the data to parse, which should
180 be NUL-terminated. If non-NULL, use the compiled-in DTD named
181 DTD_NAME to drive the parsing.
182
183 The return value is 0 for success or -1 for error. It may throw,
184 but only if something unexpected goes wrong during parsing; parse
185 errors will be caught, warned about, and reported as failure. */
186
187int gdb_xml_parse_quick (const char *name, const char *dtd_name,
188 const struct gdb_xml_element *elements,
189 const char *document, void *user_data);
190
e776119f
DJ
191/* Issue a debugging message from one of PARSER's handlers. */
192
193void gdb_xml_debug (struct gdb_xml_parser *parser, const char *format, ...)
21047726 194 ATTRIBUTE_PRINTF (2, 3);
e776119f
DJ
195
196/* Issue an error message from one of PARSER's handlers, and stop
197 parsing. */
198
199void gdb_xml_error (struct gdb_xml_parser *parser, const char *format, ...)
21047726 200 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (2, 3);
e776119f 201
3d2c1d41
PA
202/* Find the attribute named NAME in the set of parsed attributes
203 ATTRIBUTES. Returns NULL if not found. */
204
4d0fdd9b
SM
205struct gdb_xml_value *xml_find_attribute
206 (std::vector<gdb_xml_value> &attributes, const char *name);
3d2c1d41 207
e776119f
DJ
208/* Parse an integer attribute into a ULONGEST. */
209
210extern gdb_xml_attribute_handler gdb_xml_parse_attr_ulongest;
211
212/* Map NAME to VALUE. A struct gdb_xml_enum * should be saved as the
213 value of handler_data when using gdb_xml_parse_attr_enum to parse a
214 fixed list of possible strings. The list is terminated by an entry
215 with NAME == NULL. */
216
217struct gdb_xml_enum
218{
219 const char *name;
220 ULONGEST value;
221};
222
123dc839
DJ
223/* A handler_data for yes/no boolean values. */
224extern const struct gdb_xml_enum gdb_xml_enums_boolean[];
225
e776119f
DJ
226extern gdb_xml_attribute_handler gdb_xml_parse_attr_enum;
227
228/* Parse an integer string into a ULONGEST and return it, or call
229 gdb_xml_error if it could not be parsed. */
230
231ULONGEST gdb_xml_parse_ulongest (struct gdb_xml_parser *parser,
232 const char *value);
fd79ecee 233
a96d9b2e 234/* Open FILENAME, read all its text into memory, close it, and return
9018be22
SM
235 the text. If something goes wrong, return an uninstantiated optional
236 and warn. */
a96d9b2e 237
9018be22 238extern gdb::optional<gdb::char_vector> xml_fetch_content_from_file
b7b030ad 239 (const char *filename, void *baton);
a96d9b2e 240
fd79ecee 241#endif