X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fxml-support.h;h=5947623e5a41d4632da052ec14f84c38e26c1865;hb=41c1efc614472cdc74397e734f5a66018362a80a;hp=a3a15ca4362d14b120803f1b4c9798b06d7a11c6;hpb=e3b76b4f446aeb82fdfd46185b624359d5490ec6;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/xml-support.h b/gdb/xml-support.h index a3a15ca436..5947623e5a 100644 --- a/gdb/xml-support.h +++ b/gdb/xml-support.h @@ -1,6 +1,6 @@ /* Helper routines for parsing XML using Expat. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2018 Free Software Foundation, Inc. This file is part of GDB. @@ -52,19 +52,21 @@ extern const char *xml_builtin[][2]; /* Callback to fetch a new XML file, based on the provided HREF. */ -typedef char *(*xml_fetch_another) (const char *href, void *baton); +typedef gdb::unique_xmalloc_ptr (*xml_fetch_another) (const char *href, + void *baton); -/* Return a new string which is the expansion of TEXT after processing - tags. FETCHER will be called (with FETCHER_BATON) to - retrieve any new files. DEPTH should be zero on the initial call. +/* Append the expansion of TEXT after processing tags in + RESULT. FETCHER will be called (with FETCHER_BATON) to retrieve + any new files. DEPTH should be zero on the initial call. - On failure, this function uses NAME in a warning and returns NULL. + On failure, this function uses NAME in a warning and returns false. It may throw an exception, but does not for XML parsing problems. */ -char *xml_process_xincludes (const char *name, const char *text, - xml_fetch_another fetcher, void *fetcher_baton, - int depth); +bool xml_process_xincludes (std::string &result, + const char *name, const char *text, + xml_fetch_another fetcher, void *fetcher_baton, + int depth); /* Simplified XML parser infrastructure. */ @@ -72,11 +74,13 @@ char *xml_process_xincludes (const char *name, const char *text, struct gdb_xml_value { + gdb_xml_value (const char *name_, void *value_) + : name (name_), value (value_) + {} + const char *name; - void *value; + gdb::unique_xmalloc_ptr value; }; -typedef struct gdb_xml_value gdb_xml_value_s; -DEF_VEC_O(gdb_xml_value_s); /* The type of an attribute handler. @@ -144,7 +148,7 @@ enum gdb_xml_element_flag typedef void (gdb_xml_element_start_handler) (struct gdb_xml_parser *parser, const struct gdb_xml_element *element, - void *user_data, VEC(gdb_xml_value_s) *attributes); + void *user_data, std::vector &attributes); /* A handler called at the end of an element. @@ -171,20 +175,6 @@ struct gdb_xml_element gdb_xml_element_end_handler *end_handler; }; -/* Associate DTD_NAME, which must be the name of a compiled-in DTD, - with PARSER. */ - -void gdb_xml_use_dtd (struct gdb_xml_parser *parser, const char *dtd_name); - -/* Invoke PARSER on BUFFER. BUFFER is the data to parse, which - should be NUL-terminated. - - The return value is 0 for success or -1 for error. It may throw, - but only if something unexpected goes wrong during parsing; parse - errors will be caught, warned about, and reported as failure. */ - -int gdb_xml_parse (struct gdb_xml_parser *parser, const char *buffer); - /* Parse a XML document. DOCUMENT is the data to parse, which should be NUL-terminated. If non-NULL, use the compiled-in DTD named DTD_NAME to drive the parsing. @@ -200,19 +190,19 @@ int gdb_xml_parse_quick (const char *name, const char *dtd_name, /* Issue a debugging message from one of PARSER's handlers. */ void gdb_xml_debug (struct gdb_xml_parser *parser, const char *format, ...) - ATTRIBUTE_PRINTF (2, 0); + ATTRIBUTE_PRINTF (2, 3); /* Issue an error message from one of PARSER's handlers, and stop parsing. */ void gdb_xml_error (struct gdb_xml_parser *parser, const char *format, ...) - ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (2, 0); + ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (2, 3); /* Find the attribute named NAME in the set of parsed attributes ATTRIBUTES. Returns NULL if not found. */ -struct gdb_xml_value *xml_find_attribute (VEC(gdb_xml_value_s) *attributes, - const char *name); +struct gdb_xml_value *xml_find_attribute + (std::vector &attributes, const char *name); /* Parse an integer attribute into a ULONGEST. */ @@ -240,17 +230,10 @@ extern gdb_xml_attribute_handler gdb_xml_parse_attr_enum; ULONGEST gdb_xml_parse_ulongest (struct gdb_xml_parser *parser, const char *value); -/* Simple printf to obstack function. Current implemented formatters: - %s - grow an xml escaped text in OBSTACK. */ - -extern void obstack_xml_printf (struct obstack *obstack, - const char *format, ...) - ATTRIBUTE_PRINTF_2; - /* Open FILENAME, read all its text into memory, close it, and return the text. If something goes wrong, return NULL and warn. */ -extern char *xml_fetch_content_from_file (const char *filename, - void *baton); +extern gdb::unique_xmalloc_ptr xml_fetch_content_from_file + (const char *filename, void *baton); #endif