RelaxNG schema validator.
More...
#include <libxml++/validators/relaxngvalidator.h>
RelaxNG schema validator.
RelaxNG = REgular LAnguage for XML Next Generation
- Since libxml++ 2.38:
xmlpp::RelaxNGValidator::RelaxNGValidator |
( |
| ) |
|
xmlpp::RelaxNGValidator::RelaxNGValidator |
( |
const Glib::ustring & |
filename | ) |
|
|
explicit |
Create a validator and parse a schema definition file.
The schema must be defined with XML syntax (.rng file). The compact syntax (.rnc file) is not supported.
- Parameters
-
filename | The URL of the schema. |
- Exceptions
-
xmlpp::RelaxNGValidator::RelaxNGValidator |
( |
const Document* |
document | ) |
|
|
explicit |
Create a validator and parse a schema definition document.
- Parameters
-
document | A preparsed document tree, containing the schema definition. |
- Exceptions
-
xmlpp::RelaxNGValidator::RelaxNGValidator |
( |
RelaxNGSchema* |
schema, |
|
|
bool |
take_ownership |
|
) |
| |
|
explicit |
Create a validator.
- Parameters
-
schema | A pointer to the schema to use when validating XML documents. |
take_ownership | If true , the validator takes ownership of the schema. The caller must not delete it.
If false , the validator does not take ownership of the schema. The caller must guarantee that the schema exists as long as the validator keeps a pointer to it. The caller is responsible for deleting the schema when it's no longer needed. |
xmlpp::RelaxNGValidator::~RelaxNGValidator |
( |
| ) |
|
|
override |
Get the schema.
- Returns
- A pointer to the schema, or
nullptr
.
const RelaxNGSchema* xmlpp::RelaxNGValidator::get_schema |
( |
| ) |
const |
Get the schema.
- Returns
- A pointer to the schema, or
nullptr
.
void xmlpp::RelaxNGValidator::initialize_valid |
( |
| ) |
|
|
overrideprotectedvirtual |
virtual xmlpp::RelaxNGValidator::operator BoolExpr |
( |
| ) |
const |
|
virtual |
virtual void xmlpp::RelaxNGValidator::parse_document |
( |
const Document* |
document | ) |
|
|
virtual |
Parse a schema definition from a document.
If the validator already contains a schema, that schema is released (deleted if the validator owns the schema).
- Parameters
-
document | A preparsed document tree, containing the schema definition. |
- Exceptions
-
Implements xmlpp::SchemaValidatorBase.
virtual void xmlpp::RelaxNGValidator::parse_file |
( |
const Glib::ustring & |
filename | ) |
|
|
virtual |
Parse a schema definition file.
The schema must be defined with XML syntax (.rng file). The compact syntax (.rnc file) is not supported.
If the validator already contains a schema, that schema is released (deleted if the validator owns the schema).
- Parameters
-
filename | The URL of the schema. |
- Exceptions
-
Implements xmlpp::SchemaValidatorBase.
virtual void xmlpp::RelaxNGValidator::parse_memory |
( |
const Glib::ustring & |
contents | ) |
|
|
virtual |
Parse a schema definition from a string.
The schema must be defined with XML syntax. The compact syntax is not supported.
If the validator already contains a schema, that schema is released (deleted if the validator owns the schema).
- Parameters
-
contents | The schema definition as a string. |
- Exceptions
-
Implements xmlpp::SchemaValidatorBase.
void xmlpp::RelaxNGValidator::release_underlying |
( |
| ) |
|
|
overrideprotectedvirtual |
void xmlpp::RelaxNGValidator::set_schema |
( |
RelaxNGSchema* |
schema, |
|
|
bool |
take_ownership |
|
) |
| |
Set a schema.
If the validator already contains a schema, that schema is released (deleted if the validator owns the schema).
- Parameters
-
schema | A pointer to the schema to use when validating XML documents. |
take_ownership | If true , the validator takes ownership of the schema. The caller must not delete it.
If false , the validator does not take ownership of the schema. The caller must guarantee that the schema exists as long as the validator keeps a pointer to it. The caller is responsible for deleting the schema when it's no longer needed. |
virtual void xmlpp::RelaxNGValidator::validate |
( |
const Document* |
document | ) |
|
|
virtual |
Validate a document, using a previously parsed schema.
- Parameters
-
document | Pointer to the document. |
- Exceptions
-
Implements xmlpp::SchemaValidatorBase.
virtual void xmlpp::RelaxNGValidator::validate |
( |
const Glib::ustring & |
filename | ) |
|
|
virtual |
Validate an XML file, using a previously parsed schema.
- Parameters
-
filename | The URL of the XML file. |
- Exceptions
-
Implements xmlpp::SchemaValidatorBase.