1 /* Helper routines for parsing XML using Expat.
3 Copyright (C) 2006-2014 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "exceptions.h"
23 #include "xml-support.h"
24 #include "filestuff.h"
25 #include "safe-ctype.h"
30 /* The contents of this file are only useful if XML support is
34 #include "gdb_expat.h"
36 /* The maximum depth of <xi:include> nesting. No need to be miserly,
37 we just want to avoid running out of stack on loops. */
38 #define MAX_XINCLUDE_DEPTH 30
40 /* Simplified XML parser infrastructure. */
42 /* A parsing level -- used to keep track of the current element
46 /* Elements we allow at this level. */
47 const struct gdb_xml_element *elements;
49 /* The element which we are within. */
50 const struct gdb_xml_element *element;
52 /* Mask of which elements we've seen at this level (used for
53 optional and repeatable checking). */
56 /* Body text accumulation. */
59 typedef struct scope_level scope_level_s;
60 DEF_VEC_O(scope_level_s);
62 /* The parser itself, and our additional state. */
65 XML_Parser expat_parser; /* The underlying expat parser. */
67 const char *name; /* Name of this parser. */
68 void *user_data; /* The user's callback data, for handlers. */
70 VEC(scope_level_s) *scopes; /* Scoping stack. */
72 struct gdb_exception error; /* A thrown error, if any. */
73 int last_line; /* The line of the thrown error, or 0. */
75 const char *dtd_name; /* The name of the expected / default DTD,
77 int is_xinclude; /* Are we the special <xi:include> parser? */
80 /* Process some body text. We accumulate the text for later use; it's
81 wrong to do anything with it immediately, because a single block of
82 text might be broken up into multiple calls to this function. */
85 gdb_xml_body_text (void *data, const XML_Char *text, int length)
87 struct gdb_xml_parser *parser = data;
88 struct scope_level *scope = VEC_last (scope_level_s, parser->scopes);
90 if (parser->error.reason < 0)
93 if (scope->body == NULL)
95 scope->body = XCNEW (struct obstack);
96 obstack_init (scope->body);
99 obstack_grow (scope->body, text, length);
102 /* Issue a debugging message from one of PARSER's handlers. */
105 gdb_xml_debug (struct gdb_xml_parser *parser, const char *format, ...)
107 int line = XML_GetCurrentLineNumber (parser->expat_parser);
114 va_start (ap, format);
115 message = xstrvprintf (format, ap);
117 fprintf_unfiltered (gdb_stderr, "%s (line %d): %s\n",
118 parser->name, line, message);
120 fprintf_unfiltered (gdb_stderr, "%s: %s\n",
121 parser->name, message);
125 /* Issue an error message from one of PARSER's handlers, and stop
129 gdb_xml_error (struct gdb_xml_parser *parser, const char *format, ...)
131 int line = XML_GetCurrentLineNumber (parser->expat_parser);
134 parser->last_line = line;
135 va_start (ap, format);
136 throw_verror (XML_PARSE_ERROR, format, ap);
139 /* Find the attribute named NAME in the set of parsed attributes
140 ATTRIBUTES. Returns NULL if not found. */
142 struct gdb_xml_value *
143 xml_find_attribute (VEC(gdb_xml_value_s) *attributes, const char *name)
145 struct gdb_xml_value *value;
148 for (ix = 0; VEC_iterate (gdb_xml_value_s, attributes, ix, value); ix++)
149 if (strcmp (value->name, name) == 0)
155 /* Clean up a vector of parsed attribute values. */
158 gdb_xml_values_cleanup (void *data)
160 VEC(gdb_xml_value_s) **values = data;
161 struct gdb_xml_value *value;
164 for (ix = 0; VEC_iterate (gdb_xml_value_s, *values, ix, value); ix++)
165 xfree (value->value);
166 VEC_free (gdb_xml_value_s, *values);
169 /* Handle the start of an element. DATA is our local XML parser, NAME
170 is the element, and ATTRS are the names and values of this
171 element's attributes. */
174 gdb_xml_start_element (void *data, const XML_Char *name,
175 const XML_Char **attrs)
177 struct gdb_xml_parser *parser = data;
178 struct scope_level *scope;
179 struct scope_level new_scope;
180 const struct gdb_xml_element *element;
181 const struct gdb_xml_attribute *attribute;
182 VEC(gdb_xml_value_s) *attributes = NULL;
184 struct cleanup *back_to;
186 /* Push an error scope. If we return or throw an exception before
187 filling this in, it will tell us to ignore children of this
189 VEC_reserve (scope_level_s, parser->scopes, 1);
190 scope = VEC_last (scope_level_s, parser->scopes);
191 memset (&new_scope, 0, sizeof (new_scope));
192 VEC_quick_push (scope_level_s, parser->scopes, &new_scope);
194 gdb_xml_debug (parser, _("Entering element <%s>"), name);
196 /* Find this element in the list of the current scope's allowed
197 children. Record that we've seen it. */
200 for (element = scope->elements; element && element->name;
201 element++, seen <<= 1)
202 if (strcmp (element->name, name) == 0)
205 if (element == NULL || element->name == NULL)
207 /* If we're working on XInclude, <xi:include> can be the child
208 of absolutely anything. Copy the previous scope's element
209 list into the new scope even if there was no match. */
210 if (parser->is_xinclude)
212 struct scope_level *unknown_scope;
214 XML_DefaultCurrent (parser->expat_parser);
216 unknown_scope = VEC_last (scope_level_s, parser->scopes);
217 unknown_scope->elements = scope->elements;
221 gdb_xml_debug (parser, _("Element <%s> unknown"), name);
225 if (!(element->flags & GDB_XML_EF_REPEATABLE) && (seen & scope->seen))
226 gdb_xml_error (parser, _("Element <%s> only expected once"), name);
230 back_to = make_cleanup (gdb_xml_values_cleanup, &attributes);
232 for (attribute = element->attributes;
233 attribute != NULL && attribute->name != NULL;
236 const char *val = NULL;
239 struct gdb_xml_value new_value;
241 for (p = attrs; *p != NULL; p += 2)
242 if (!strcmp (attribute->name, p[0]))
248 if (*p != NULL && val == NULL)
250 gdb_xml_debug (parser, _("Attribute \"%s\" missing a value"),
255 if (*p == NULL && !(attribute->flags & GDB_XML_AF_OPTIONAL))
257 gdb_xml_error (parser, _("Required attribute \"%s\" of "
258 "<%s> not specified"),
259 attribute->name, element->name);
266 gdb_xml_debug (parser, _("Parsing attribute %s=\"%s\""),
267 attribute->name, val);
269 if (attribute->handler)
270 parsed_value = attribute->handler (parser, attribute, val);
272 parsed_value = xstrdup (val);
274 new_value.name = attribute->name;
275 new_value.value = parsed_value;
276 VEC_safe_push (gdb_xml_value_s, attributes, &new_value);
279 /* Check for unrecognized attributes. */
284 for (p = attrs; *p != NULL; p += 2)
286 for (attribute = element->attributes;
287 attribute != NULL && attribute->name != NULL;
289 if (strcmp (attribute->name, *p) == 0)
292 if (attribute == NULL || attribute->name == NULL)
293 gdb_xml_debug (parser, _("Ignoring unknown attribute %s"), *p);
297 /* Call the element handler if there is one. */
298 if (element->start_handler)
299 element->start_handler (parser, element, parser->user_data, attributes);
301 /* Fill in a new scope level. */
302 scope = VEC_last (scope_level_s, parser->scopes);
303 scope->element = element;
304 scope->elements = element->children;
306 do_cleanups (back_to);
309 /* Wrapper for gdb_xml_start_element, to prevent throwing exceptions
313 gdb_xml_start_element_wrapper (void *data, const XML_Char *name,
314 const XML_Char **attrs)
316 struct gdb_xml_parser *parser = data;
317 volatile struct gdb_exception ex;
319 if (parser->error.reason < 0)
322 TRY_CATCH (ex, RETURN_MASK_ALL)
324 gdb_xml_start_element (data, name, attrs);
329 #ifdef HAVE_XML_STOPPARSER
330 XML_StopParser (parser->expat_parser, XML_FALSE);
335 /* Handle the end of an element. DATA is our local XML parser, and
336 NAME is the current element. */
339 gdb_xml_end_element (void *data, const XML_Char *name)
341 struct gdb_xml_parser *parser = data;
342 struct scope_level *scope = VEC_last (scope_level_s, parser->scopes);
343 const struct gdb_xml_element *element;
346 gdb_xml_debug (parser, _("Leaving element <%s>"), name);
348 for (element = scope->elements, seen = 1;
349 element != NULL && element->name != NULL;
350 element++, seen <<= 1)
351 if ((scope->seen & seen) == 0
352 && (element->flags & GDB_XML_EF_OPTIONAL) == 0)
353 gdb_xml_error (parser, _("Required element <%s> is missing"),
356 /* Call the element processor. */
357 if (scope->element != NULL && scope->element->end_handler)
361 if (scope->body == NULL)
367 length = obstack_object_size (scope->body);
368 obstack_1grow (scope->body, '\0');
369 body = obstack_finish (scope->body);
371 /* Strip leading and trailing whitespace. */
372 while (length > 0 && ISSPACE (body[length-1]))
373 body[--length] = '\0';
374 while (*body && ISSPACE (*body))
378 scope->element->end_handler (parser, scope->element, parser->user_data,
381 else if (scope->element == NULL)
382 XML_DefaultCurrent (parser->expat_parser);
384 /* Pop the scope level. */
387 obstack_free (scope->body, NULL);
390 VEC_pop (scope_level_s, parser->scopes);
393 /* Wrapper for gdb_xml_end_element, to prevent throwing exceptions
397 gdb_xml_end_element_wrapper (void *data, const XML_Char *name)
399 struct gdb_xml_parser *parser = data;
400 volatile struct gdb_exception ex;
402 if (parser->error.reason < 0)
405 TRY_CATCH (ex, RETURN_MASK_ALL)
407 gdb_xml_end_element (data, name);
412 #ifdef HAVE_XML_STOPPARSER
413 XML_StopParser (parser->expat_parser, XML_FALSE);
418 /* Free a parser and all its associated state. */
421 gdb_xml_cleanup (void *arg)
423 struct gdb_xml_parser *parser = arg;
424 struct scope_level *scope;
427 XML_ParserFree (parser->expat_parser);
429 /* Clean up the scopes. */
430 for (ix = 0; VEC_iterate (scope_level_s, parser->scopes, ix, scope); ix++)
433 obstack_free (scope->body, NULL);
436 VEC_free (scope_level_s, parser->scopes);
441 /* Initialize a parser and store it to *PARSER_RESULT. Register a
442 cleanup to destroy the parser. */
444 static struct cleanup *
445 gdb_xml_create_parser_and_cleanup (const char *name,
446 const struct gdb_xml_element *elements,
448 struct gdb_xml_parser **parser_result)
450 struct gdb_xml_parser *parser;
451 struct scope_level start_scope;
452 struct cleanup *result;
454 /* Initialize the parser. */
455 parser = XCNEW (struct gdb_xml_parser);
456 parser->expat_parser = XML_ParserCreateNS (NULL, '!');
457 if (parser->expat_parser == NULL)
465 parser->user_data = user_data;
466 XML_SetUserData (parser->expat_parser, parser);
468 /* Set the callbacks. */
469 XML_SetElementHandler (parser->expat_parser, gdb_xml_start_element_wrapper,
470 gdb_xml_end_element_wrapper);
471 XML_SetCharacterDataHandler (parser->expat_parser, gdb_xml_body_text);
473 /* Initialize the outer scope. */
474 memset (&start_scope, 0, sizeof (start_scope));
475 start_scope.elements = elements;
476 VEC_safe_push (scope_level_s, parser->scopes, &start_scope);
478 *parser_result = parser;
479 return make_cleanup (gdb_xml_cleanup, parser);
482 /* External entity handler. The only external entities we support
483 are those compiled into GDB (we do not fetch entities from the
487 gdb_xml_fetch_external_entity (XML_Parser expat_parser,
488 const XML_Char *context,
489 const XML_Char *base,
490 const XML_Char *systemId,
491 const XML_Char *publicId)
493 struct gdb_xml_parser *parser = XML_GetUserData (expat_parser);
494 XML_Parser entity_parser;
496 enum XML_Status status;
498 if (systemId == NULL)
500 text = fetch_xml_builtin (parser->dtd_name);
502 internal_error (__FILE__, __LINE__,
503 _("could not locate built-in DTD %s"),
508 text = fetch_xml_builtin (systemId);
510 return XML_STATUS_ERROR;
513 entity_parser = XML_ExternalEntityParserCreate (expat_parser, context, NULL);
515 /* Don't use our handlers for the contents of the DTD. Just let expat
517 XML_SetElementHandler (entity_parser, NULL, NULL);
518 XML_SetDoctypeDeclHandler (entity_parser, NULL, NULL);
519 XML_SetXmlDeclHandler (entity_parser, NULL);
520 XML_SetDefaultHandler (entity_parser, NULL);
521 XML_SetUserData (entity_parser, NULL);
523 status = XML_Parse (entity_parser, text, strlen (text), 1);
525 XML_ParserFree (entity_parser);
529 /* Associate DTD_NAME, which must be the name of a compiled-in DTD,
533 gdb_xml_use_dtd (struct gdb_xml_parser *parser, const char *dtd_name)
537 parser->dtd_name = dtd_name;
539 XML_SetParamEntityParsing (parser->expat_parser,
540 XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE);
541 XML_SetExternalEntityRefHandler (parser->expat_parser,
542 gdb_xml_fetch_external_entity);
544 /* Even if no DTD is provided, use the built-in DTD anyway. */
545 err = XML_UseForeignDTD (parser->expat_parser, XML_TRUE);
546 if (err != XML_ERROR_NONE)
547 internal_error (__FILE__, __LINE__,
548 _("XML_UseForeignDTD failed: %s"),
549 XML_ErrorString (err));
552 /* Invoke PARSER on BUFFER. BUFFER is the data to parse, which
553 should be NUL-terminated.
555 The return value is 0 for success or -1 for error. It may throw,
556 but only if something unexpected goes wrong during parsing; parse
557 errors will be caught, warned about, and reported as failure. */
560 gdb_xml_parse (struct gdb_xml_parser *parser, const char *buffer)
562 enum XML_Status status;
563 const char *error_string;
565 gdb_xml_debug (parser, _("Starting:\n%s"), buffer);
567 status = XML_Parse (parser->expat_parser, buffer, strlen (buffer), 1);
569 if (status == XML_STATUS_OK && parser->error.reason == 0)
572 if (parser->error.reason == RETURN_ERROR
573 && parser->error.error == XML_PARSE_ERROR)
575 gdb_assert (parser->error.message != NULL);
576 error_string = parser->error.message;
578 else if (status == XML_STATUS_ERROR)
580 enum XML_Error err = XML_GetErrorCode (parser->expat_parser);
582 error_string = XML_ErrorString (err);
586 gdb_assert (parser->error.reason < 0);
587 throw_exception (parser->error);
590 if (parser->last_line != 0)
591 warning (_("while parsing %s (at line %d): %s"), parser->name,
592 parser->last_line, error_string);
594 warning (_("while parsing %s: %s"), parser->name, error_string);
600 gdb_xml_parse_quick (const char *name, const char *dtd_name,
601 const struct gdb_xml_element *elements,
602 const char *document, void *user_data)
604 struct gdb_xml_parser *parser;
605 struct cleanup *back_to;
608 back_to = gdb_xml_create_parser_and_cleanup (name, elements,
610 if (dtd_name != NULL)
611 gdb_xml_use_dtd (parser, dtd_name);
612 result = gdb_xml_parse (parser, document);
614 do_cleanups (back_to);
619 /* Parse a field VALSTR that we expect to contain an integer value.
620 The integer is returned in *VALP. The string is parsed with an
621 equivalent to strtoul.
623 Returns 0 for success, -1 for error. */
626 xml_parse_unsigned_integer (const char *valstr, ULONGEST *valp)
634 result = strtoulst (valstr, &endptr, 0);
642 /* Parse an integer string into a ULONGEST and return it, or call
643 gdb_xml_error if it could not be parsed. */
646 gdb_xml_parse_ulongest (struct gdb_xml_parser *parser, const char *value)
650 if (xml_parse_unsigned_integer (value, &result) != 0)
651 gdb_xml_error (parser, _("Can't convert \"%s\" to an integer"), value);
656 /* Parse an integer attribute into a ULONGEST. */
659 gdb_xml_parse_attr_ulongest (struct gdb_xml_parser *parser,
660 const struct gdb_xml_attribute *attribute,
666 if (xml_parse_unsigned_integer (value, &result) != 0)
667 gdb_xml_error (parser, _("Can't convert %s=\"%s\" to an integer"),
668 attribute->name, value);
670 ret = xmalloc (sizeof (result));
671 memcpy (ret, &result, sizeof (result));
675 /* A handler_data for yes/no boolean values. */
677 const struct gdb_xml_enum gdb_xml_enums_boolean[] = {
683 /* Map NAME to VALUE. A struct gdb_xml_enum * should be saved as the
684 value of handler_data when using gdb_xml_parse_attr_enum to parse a
685 fixed list of possible strings. The list is terminated by an entry
686 with NAME == NULL. */
689 gdb_xml_parse_attr_enum (struct gdb_xml_parser *parser,
690 const struct gdb_xml_attribute *attribute,
693 const struct gdb_xml_enum *enums = attribute->handler_data;
696 for (enums = attribute->handler_data; enums->name != NULL; enums++)
697 if (strcasecmp (enums->name, value) == 0)
700 if (enums->name == NULL)
701 gdb_xml_error (parser, _("Unknown attribute value %s=\"%s\""),
702 attribute->name, value);
704 ret = xmalloc (sizeof (enums->value));
705 memcpy (ret, &enums->value, sizeof (enums->value));
710 /* XInclude processing. This is done as a separate step from actually
711 parsing the document, so that we can produce a single combined XML
712 document - e.g. to hand to a front end or to simplify comparing two
713 documents. We make extensive use of XML_DefaultCurrent, to pass
714 input text directly into the output without reformatting or
717 We output the DOCTYPE declaration for the first document unchanged,
718 if present, and discard DOCTYPEs from included documents. Only the
719 one we pass through here is used when we feed the result back to
720 expat. The XInclude standard explicitly does not discuss
721 validation of the result; we choose to apply the same DTD applied
722 to the outermost document.
724 We can not simply include the external DTD subset in the document
725 as an internal subset, because <!IGNORE> and <!INCLUDE> are valid
726 only in external subsets. But if we do not pass the DTD into the
727 output at all, default values will not be filled in.
729 We don't pass through any <?xml> declaration because we generate
730 UTF-8, not whatever the input encoding was. */
732 struct xinclude_parsing_data
734 /* The obstack to build the output in. */
735 struct obstack obstack;
737 /* A count indicating whether we are in an element whose
738 children should not be copied to the output, and if so,
739 how deep we are nested. This is used for anything inside
740 an xi:include, and for the DTD. */
743 /* The number of <xi:include> elements currently being processed,
747 /* A function to call to obtain additional features, and its
749 xml_fetch_another fetcher;
754 xinclude_start_include (struct gdb_xml_parser *parser,
755 const struct gdb_xml_element *element,
756 void *user_data, VEC(gdb_xml_value_s) *attributes)
758 struct xinclude_parsing_data *data = user_data;
759 char *href = xml_find_attribute (attributes, "href")->value;
760 struct cleanup *back_to;
763 gdb_xml_debug (parser, _("Processing XInclude of \"%s\""), href);
765 if (data->include_depth > MAX_XINCLUDE_DEPTH)
766 gdb_xml_error (parser, _("Maximum XInclude depth (%d) exceeded"),
769 text = data->fetcher (href, data->fetcher_baton);
771 gdb_xml_error (parser, _("Could not load XML document \"%s\""), href);
772 back_to = make_cleanup (xfree, text);
774 output = xml_process_xincludes (parser->name, text, data->fetcher,
776 data->include_depth + 1);
778 gdb_xml_error (parser, _("Parsing \"%s\" failed"), href);
780 obstack_grow (&data->obstack, output, strlen (output));
783 do_cleanups (back_to);
789 xinclude_end_include (struct gdb_xml_parser *parser,
790 const struct gdb_xml_element *element,
791 void *user_data, const char *body_text)
793 struct xinclude_parsing_data *data = user_data;
799 xml_xinclude_default (void *data_, const XML_Char *s, int len)
801 struct gdb_xml_parser *parser = data_;
802 struct xinclude_parsing_data *data = parser->user_data;
804 /* If we are inside of e.g. xi:include or the DTD, don't save this
806 if (data->skip_depth)
809 /* Otherwise just add it to the end of the document we're building
811 obstack_grow (&data->obstack, s, len);
815 xml_xinclude_start_doctype (void *data_, const XML_Char *doctypeName,
816 const XML_Char *sysid, const XML_Char *pubid,
817 int has_internal_subset)
819 struct gdb_xml_parser *parser = data_;
820 struct xinclude_parsing_data *data = parser->user_data;
822 /* Don't print out the doctype, or the contents of the DTD internal
828 xml_xinclude_end_doctype (void *data_)
830 struct gdb_xml_parser *parser = data_;
831 struct xinclude_parsing_data *data = parser->user_data;
837 xml_xinclude_xml_decl (void *data_, const XML_Char *version,
838 const XML_Char *encoding, int standalone)
840 /* Do nothing - this function prevents the default handler from
841 being called, thus suppressing the XML declaration from the
846 xml_xinclude_cleanup (void *data_)
848 struct xinclude_parsing_data *data = data_;
850 obstack_free (&data->obstack, NULL);
854 const struct gdb_xml_attribute xinclude_attributes[] = {
855 { "href", GDB_XML_AF_NONE, NULL, NULL },
856 { NULL, GDB_XML_AF_NONE, NULL, NULL }
859 const struct gdb_xml_element xinclude_elements[] = {
860 { "http://www.w3.org/2001/XInclude!include", xinclude_attributes, NULL,
861 GDB_XML_EF_OPTIONAL | GDB_XML_EF_REPEATABLE,
862 xinclude_start_include, xinclude_end_include },
863 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
866 /* The main entry point for <xi:include> processing. */
869 xml_process_xincludes (const char *name, const char *text,
870 xml_fetch_another fetcher, void *fetcher_baton,
873 struct gdb_xml_parser *parser;
874 struct xinclude_parsing_data *data;
875 struct cleanup *back_to;
878 data = XCNEW (struct xinclude_parsing_data);
879 obstack_init (&data->obstack);
880 back_to = make_cleanup (xml_xinclude_cleanup, data);
882 gdb_xml_create_parser_and_cleanup (name, xinclude_elements,
884 parser->is_xinclude = 1;
886 data->include_depth = depth;
887 data->fetcher = fetcher;
888 data->fetcher_baton = fetcher_baton;
890 XML_SetCharacterDataHandler (parser->expat_parser, NULL);
891 XML_SetDefaultHandler (parser->expat_parser, xml_xinclude_default);
893 /* Always discard the XML version declarations; the only important
894 thing this provides is encoding, and our result will have been
895 converted to UTF-8. */
896 XML_SetXmlDeclHandler (parser->expat_parser, xml_xinclude_xml_decl);
899 /* Discard the doctype for included documents. */
900 XML_SetDoctypeDeclHandler (parser->expat_parser,
901 xml_xinclude_start_doctype,
902 xml_xinclude_end_doctype);
904 gdb_xml_use_dtd (parser, "xinclude.dtd");
906 if (gdb_xml_parse (parser, text) == 0)
908 obstack_1grow (&data->obstack, '\0');
909 result = xstrdup (obstack_finish (&data->obstack));
912 gdb_xml_debug (parser, _("XInclude processing succeeded."));
917 do_cleanups (back_to);
920 #endif /* HAVE_LIBEXPAT */
923 /* Return an XML document which was compiled into GDB, from
924 the given FILENAME, or NULL if the file was not compiled in. */
927 fetch_xml_builtin (const char *filename)
931 for (p = xml_builtin; (*p)[0]; p++)
932 if (strcmp ((*p)[0], filename) == 0)
938 /* A to_xfer_partial helper function which reads XML files which were
939 compiled into GDB. The target may call this function from its own
940 to_xfer_partial handler, after converting object and annex to the
941 appropriate filename. */
944 xml_builtin_xfer_partial (const char *filename,
945 gdb_byte *readbuf, const gdb_byte *writebuf,
946 ULONGEST offset, LONGEST len)
951 gdb_assert (readbuf != NULL && writebuf == NULL);
952 gdb_assert (filename != NULL);
954 buf = fetch_xml_builtin (filename);
958 len_avail = strlen (buf);
959 if (offset >= len_avail)
962 if (len > len_avail - offset)
963 len = len_avail - offset;
964 memcpy (readbuf, buf + offset, len);
970 show_debug_xml (struct ui_file *file, int from_tty,
971 struct cmd_list_element *c, const char *value)
973 fprintf_filtered (file, _("XML debugging is %s.\n"), value);
977 obstack_xml_printf (struct obstack *obstack, const char *format, ...)
984 va_start (ap, format);
987 for (f = format; *f; f++)
996 char *a = va_arg (ap, char *);
998 obstack_grow (obstack, prev, f - prev - 1);
999 p = xml_escape_text (a);
1000 obstack_grow_str (obstack, p);
1012 obstack_grow_str (obstack, prev);
1017 xml_fetch_content_from_file (const char *filename, void *baton)
1019 const char *dirname = baton;
1021 struct cleanup *back_to;
1025 if (dirname && *dirname)
1027 char *fullname = concat (dirname, "/", filename, (char *) NULL);
1029 if (fullname == NULL)
1031 file = gdb_fopen_cloexec (fullname, FOPEN_RT);
1035 file = gdb_fopen_cloexec (filename, FOPEN_RT);
1040 back_to = make_cleanup_fclose (file);
1042 /* Read in the whole file, one chunk at a time. */
1045 text = xmalloc (len);
1046 make_cleanup (free_current_contents, &text);
1051 /* Continue reading where the last read left off. Leave at least
1052 one byte so that we can NUL-terminate the result. */
1053 bytes_read = fread (text + offset, 1, len - offset - 1, file);
1056 warning (_("Read error from \"%s\""), filename);
1057 do_cleanups (back_to);
1061 offset += bytes_read;
1067 text = xrealloc (text, len);
1071 discard_cleanups (back_to);
1073 text[offset] = '\0';
1077 void _initialize_xml_support (void);
1080 _initialize_xml_support (void)
1082 add_setshow_boolean_cmd ("xml", class_maintenance, &debug_xml,
1083 _("Set XML parser debugging."),
1084 _("Show XML parser debugging."),
1085 _("When set, debugging messages for XML parsers "
1087 NULL, show_debug_xml,
1088 &setdebuglist, &showdebuglist);