libxml++
5.4.0
|
XML parser. More...
#include <libxml++/parsers/parser.h>
Public Types | |
using | size_type = unsigned int |
Public Member Functions | |
Parser () | |
~Parser () override | |
bool | get_include_default_attributes () const noexcept |
See set_include_default_attributes(). More... | |
void | get_parser_options (int & set_options, int & clear_options) const noexcept |
See set_parser_options(). More... | |
bool | get_substitute_entities () const noexcept |
See set_substitute_entities(). More... | |
bool | get_throw_messages () const noexcept |
See set_throw_messages(). More... | |
bool | get_validate () const noexcept |
See set_validate(). More... | |
virtual void | parse_file (const std::string & filename)=0 |
Parse an XML document from a file. More... | |
virtual void | parse_memory (const ustring & contents)=0 |
Parse an XML document from a string. More... | |
virtual void | parse_memory_raw (const unsigned char * contents, size_type bytes_count)=0 |
Parse an XML document from raw memory. More... | |
virtual void | parse_stream (std::istream & in)=0 |
Parse an XML document from a stream. More... | |
void | set_include_default_attributes (bool val=true) noexcept |
Set whether default attribute values from the DTD shall be included in the node tree. More... | |
void | set_parser_options (int set_options=0, int clear_options=0) noexcept |
Set and/or clear parser option flags. More... | |
void | set_substitute_entities (bool val=true) noexcept |
Set whether the parser will automatically substitute entity references with the text of the entities' definitions. More... | |
void | set_throw_messages (bool val=true) noexcept |
Set whether the parser will collect and throw error and warning messages. More... | |
void | set_validate (bool val=true) noexcept |
By default, the parser will not validate the XML file. More... | |
Public Member Functions inherited from xmlpp::NonCopyable | |
NonCopyable (const NonCopyable &)=delete | |
NonCopyable (NonCopyable &&)=delete | |
NonCopyable & | operator= (const NonCopyable &)=delete |
NonCopyable & | operator= (NonCopyable &&)=delete |
Protected Types | |
enum class | MsgType { ParserError , ParserWarning , ValidityError , ValidityWarning } |
Protected Member Functions | |
virtual void | check_for_error_and_warning_messages () |
virtual void | check_for_exception () |
virtual void | handle_exception () |
To be called in an exception handler. More... | |
virtual void | initialize_context () |
virtual void | on_parser_error (const ustring & message) |
virtual void | on_parser_warning (const ustring & message) |
virtual void | on_validity_error (const ustring & message) |
virtual void | on_validity_warning (const ustring & message) |
virtual void | release_underlying () |
Protected Member Functions inherited from xmlpp::NonCopyable | |
NonCopyable () noexcept | |
virtual | ~NonCopyable () |
Static Protected Member Functions | |
static void | callback_error_or_warning (bool is_parser, bool is_error, void * ctx, const char * msg, va_list var_args) |
static void | callback_error_or_warning (MsgType msg_type, void * ctx, const char * msg, va_list var_args) |
static void | callback_parser_error (void * ctx, const char * msg,...) |
static void | callback_parser_warning (void * ctx, const char * msg,...) |
static void | callback_validity_error (void * ctx, const char * msg,...) |
static void | callback_validity_warning (void * ctx, const char * msg,...) |
static ParserCallbackCFuncType | get_callback_parser_error_cfunc () |
static ParserCallbackCFuncType | get_callback_parser_warning_cfunc () |
static ParserCallbackCFuncType | get_callback_validity_error_cfunc () |
static ParserCallbackCFuncType | get_callback_validity_warning_cfunc () |
Protected Attributes | |
_xmlParserCtxt * | context_ |
std::unique_ptr< exception > | exception_ |
XML parser.
Abstract base class for DOM parser and SAX parser.
using xmlpp::Parser::size_type = unsigned int |
|
strongprotected |
xmlpp::Parser::Parser | ( | ) |
|
override |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
protectedvirtual |
|
protectedvirtual |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
noexcept |
See set_include_default_attributes().
|
noexcept |
See set_parser_options().
[out] | set_options | Set bits correspond to flags that shall be set during parsing. |
[out] | clear_options | Set bits correspond to flags that shall be cleared during parsing. Bits that are set in neither set_options nor clear_options are not affected. |
|
noexcept |
See set_substitute_entities().
|
noexcept |
See set_throw_messages().
|
noexcept |
See set_validate().
|
protectedvirtual |
To be called in an exception handler.
|
protectedvirtual |
Reimplemented in xmlpp::SaxParser.
|
protectedvirtual |
|
protectedvirtual |
|
protectedvirtual |
|
protectedvirtual |
|
pure virtual |
Parse an XML document from a file.
exception |
filename | The path to the file. |
Implemented in xmlpp::SaxParser, and xmlpp::DomParser.
|
pure virtual |
Parse an XML document from a string.
exception |
contents | The XML document as a string. |
Implemented in xmlpp::SaxParser, and xmlpp::DomParser.
|
pure virtual |
Parse an XML document from raw memory.
exception |
contents | The XML document as an array of bytes. |
bytes_count | The number of bytes in the contents array. |
Implemented in xmlpp::SaxParser, and xmlpp::DomParser.
|
pure virtual |
Parse an XML document from a stream.
exception |
in | The stream. |
Implemented in xmlpp::SaxParser, and xmlpp::DomParser.
|
protectedvirtual |
Reimplemented in xmlpp::SaxParser, and xmlpp::DomParser.
|
noexcept |
Set whether default attribute values from the DTD shall be included in the node tree.
If set, attributes not assigned a value in the XML file, but with a default value in the DTD file, will be included in the node tree that the parser creates. These attributes will be represented by AttributeNode instances (not AttributeDeclaration instances), just like attributes which are assigned a value in the XML file.
val | Whether attributes with default values will be included in the node tree. |
|
noexcept |
Set and/or clear parser option flags.
See the libxml2 documentation, enum xmlParserOption, for a list of parser options. This method overrides other methods that set parser options, such as set_validate(), set_substitute_entities() and set_include_default_attributes(). Use set_parser_options() only if no other method can set the parser options you want.
set_options | Set bits correspond to flags that shall be set during parsing. |
clear_options | Set bits correspond to flags that shall be cleared during parsing. Bits that are set in neither set_options nor clear_options are not affected. |
|
noexcept |
Set whether the parser will automatically substitute entity references with the text of the entities' definitions.
For instance, this affects the text returned by ContentNode::get_content(). By default, the parser will not substitute entities, so that you do not lose the entity reference information.
val | Whether entities will be substitued. |
|
noexcept |
Set whether the parser will collect and throw error and warning messages.
If messages are collected, they are included in an exception thrown at the end of parsing.
DOM parser
If the messages are not collected, they are written on stderr. The messages written on stderr are slightly different, and may be preferred in a program started from the command-line. The default, if set_throw_messages() is not called, is to collect and throw messages.
SAX parser
If the messages are not collected, the error handling on_*() methods in the user's SAX parser subclass are called. This is the default, if set_throw_messages() is not called.
val | Whether messages will be collected and thrown in an exception. |
|
noexcept |
By default, the parser will not validate the XML file.
val | Whether the document should be validated. |
|
protected |
|
protected |