X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fxml-support.h;h=59b4467d082a9290151be86ad8417b3acc1c5049;hb=3cb5a3a16af2cae1a5059b7571c514b3fa575df9;hp=1a1b7fd0e7fe8b9a0199de3f0ab9a43a04b9a080;hpb=fdd243b001585c5ca078342608332af77050c867;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/xml-support.h b/gdb/xml-support.h index 1a1b7fd0e7..59b4467d08 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-2017 Free Software Foundation, Inc. + Copyright (C) 2006-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -22,8 +22,9 @@ #define XML_SUPPORT_H #include "gdb_obstack.h" -#include "vec.h" -#include "xml-utils.h" +#include "gdbsupport/xml-utils.h" +#include "gdbsupport/byte-vector.h" +#include "gdbsupport/gdb_optional.h" struct gdb_xml_parser; struct gdb_xml_element; @@ -43,16 +44,12 @@ LONGEST xml_builtin_xfer_partial (const char *filename, gdb_byte *readbuf, const gdb_byte *writebuf, ULONGEST offset, LONGEST len); -/* The text of compiled-in XML documents, from xml-builtin.c - (generated). */ - -extern const char *xml_builtin[][2]; - /* Support for XInclude. */ /* Callback to fetch a new XML file, based on the provided HREF. */ -typedef char *(*xml_fetch_another) (const char *href, void *baton); +typedef gdb::optional (*xml_fetch_another) (const char *href, + void *baton); /* Append the expansion of TEXT after processing tags in RESULT. FETCHER will be called (with FETCHER_BATON) to retrieve @@ -73,11 +70,13 @@ bool xml_process_xincludes (std::string &result, 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. @@ -145,7 +144,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. @@ -198,8 +197,8 @@ void gdb_xml_error (struct gdb_xml_parser *parser, const char *format, ...) /* 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. */ @@ -228,9 +227,10 @@ ULONGEST gdb_xml_parse_ulongest (struct gdb_xml_parser *parser, const char *value); /* Open FILENAME, read all its text into memory, close it, and return - the text. If something goes wrong, return NULL and warn. */ + the text. If something goes wrong, return an uninstantiated optional + and warn. */ -extern char *xml_fetch_content_from_file (const char *filename, - void *baton); +extern gdb::optional xml_fetch_content_from_file + (const char *filename, void *baton); #endif