X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=gdb%2Fxml-support.h;h=13edeaec9104a01996899f44daeb796d45d030e0;hb=ea764154c27a11619ba764a4c92f395ba5007234;hp=970ab81291c449e26f2fa54e23a6471ac96d583f;hpb=42a4f53d2bf8938c2aeda9f52be7a20534b214a9;p=binutils-gdb.git diff --git a/gdb/xml-support.h b/gdb/xml-support.h index 970ab81291c..13edeaec910 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-2019 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. This file is part of GDB. @@ -21,10 +21,11 @@ #ifndef XML_SUPPORT_H #define XML_SUPPORT_H -#include "gdb_obstack.h" -#include "vec.h" -#include "xml-utils.h" -#include "common/byte-vector.h" +#include "gdbsupport/gdb_obstack.h" +#include "gdbsupport/xml-utils.h" +#include "gdbsupport/byte-vector.h" +#include "gdbsupport/gdb_optional.h" +#include "gdbsupport/function-view.h" struct gdb_xml_parser; struct gdb_xml_element; @@ -44,21 +45,16 @@ 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 gdb::optional (*xml_fetch_another) (const char *href, - void *baton); +using xml_fetch_another = gdb::function_view + (const char * /* href */)>; /* 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. + RESULT. FETCHER will be called to retrieve any new files. DEPTH + should be zero on the initial call. On failure, this function uses NAME in a warning and returns false. It may throw an exception, but does not for XML parsing @@ -66,8 +62,7 @@ typedef gdb::optional (*xml_fetch_another) (const char *href, bool xml_process_xincludes (std::string &result, const char *name, const char *text, - xml_fetch_another fetcher, void *fetcher_baton, - int depth); + xml_fetch_another fetcher, int depth); /* Simplified XML parser infrastructure. */ @@ -236,6 +231,6 @@ ULONGEST gdb_xml_parse_ulongest (struct gdb_xml_parser *parser, and warn. */ extern gdb::optional xml_fetch_content_from_file - (const char *filename, void *baton); + (const char *filename, const char *dirname); #endif