pocxxeci 0.30.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of pocxxeci might be problematic. Click here for more details.
- package/LICENSE +19 -0
- package/Makefile +18 -0
- package/README.md +52 -0
- package/binding.gyp +81 -0
- package/index.d.ts +273 -0
- package/index.js +45 -0
- package/lib/bindings.js +1 -0
- package/lib/document.js +122 -0
- package/lib/element.js +82 -0
- package/lib/sax_parser.js +38 -0
- package/package.json +70 -0
- package/src/html_document.cc +7 -0
- package/src/html_document.h +18 -0
- package/src/libxmljs.cc +252 -0
- package/src/libxmljs.h +53 -0
- package/src/xml_attribute.cc +173 -0
- package/src/xml_attribute.h +40 -0
- package/src/xml_comment.cc +117 -0
- package/src/xml_comment.h +30 -0
- package/src/xml_document.cc +810 -0
- package/src/xml_document.h +67 -0
- package/src/xml_element.cc +565 -0
- package/src/xml_element.h +61 -0
- package/src/xml_namespace.cc +158 -0
- package/src/xml_namespace.h +39 -0
- package/src/xml_node.cc +761 -0
- package/src/xml_node.h +73 -0
- package/src/xml_pi.cc +161 -0
- package/src/xml_pi.h +34 -0
- package/src/xml_sax_parser.cc +424 -0
- package/src/xml_sax_parser.h +73 -0
- package/src/xml_syntax_error.cc +66 -0
- package/src/xml_syntax_error.h +25 -0
- package/src/xml_text.cc +320 -0
- package/src/xml_text.h +48 -0
- package/src/xml_textwriter.cc +315 -0
- package/src/xml_textwriter.h +62 -0
- package/src/xml_xpath_context.cc +70 -0
- package/src/xml_xpath_context.h +23 -0
- package/vendor/libxml/Copyright +23 -0
- package/vendor/libxml/DOCBparser.c +305 -0
- package/vendor/libxml/HTMLparser.c +7287 -0
- package/vendor/libxml/HTMLtree.c +1200 -0
- package/vendor/libxml/Makefile +2983 -0
- package/vendor/libxml/SAX.c +180 -0
- package/vendor/libxml/SAX2.c +3036 -0
- package/vendor/libxml/buf.c +1351 -0
- package/vendor/libxml/buf.h +72 -0
- package/vendor/libxml/c14n.c +2234 -0
- package/vendor/libxml/catalog.c +3828 -0
- package/vendor/libxml/chvalid.c +336 -0
- package/vendor/libxml/config.h +294 -0
- package/vendor/libxml/config.h.gch +0 -0
- package/vendor/libxml/debugXML.c +3423 -0
- package/vendor/libxml/dict.c +1298 -0
- package/vendor/libxml/elfgcchack.h +17818 -0
- package/vendor/libxml/enc.h +32 -0
- package/vendor/libxml/encoding.c +3975 -0
- package/vendor/libxml/entities.c +1163 -0
- package/vendor/libxml/error.c +998 -0
- package/vendor/libxml/globals.c +1126 -0
- package/vendor/libxml/hash.c +1146 -0
- package/vendor/libxml/include/libxml/DOCBparser.h +96 -0
- package/vendor/libxml/include/libxml/HTMLparser.h +306 -0
- package/vendor/libxml/include/libxml/HTMLtree.h +147 -0
- package/vendor/libxml/include/libxml/Makefile +725 -0
- package/vendor/libxml/include/libxml/Makefile.am +54 -0
- package/vendor/libxml/include/libxml/Makefile.in +725 -0
- package/vendor/libxml/include/libxml/SAX.h +173 -0
- package/vendor/libxml/include/libxml/SAX2.h +178 -0
- package/vendor/libxml/include/libxml/c14n.h +128 -0
- package/vendor/libxml/include/libxml/catalog.h +182 -0
- package/vendor/libxml/include/libxml/chvalid.h +230 -0
- package/vendor/libxml/include/libxml/debugXML.h +217 -0
- package/vendor/libxml/include/libxml/dict.h +79 -0
- package/vendor/libxml/include/libxml/encoding.h +245 -0
- package/vendor/libxml/include/libxml/entities.h +151 -0
- package/vendor/libxml/include/libxml/globals.h +508 -0
- package/vendor/libxml/include/libxml/hash.h +236 -0
- package/vendor/libxml/include/libxml/list.h +137 -0
- package/vendor/libxml/include/libxml/nanoftp.h +163 -0
- package/vendor/libxml/include/libxml/nanohttp.h +81 -0
- package/vendor/libxml/include/libxml/parser.h +1243 -0
- package/vendor/libxml/include/libxml/parserInternals.h +644 -0
- package/vendor/libxml/include/libxml/pattern.h +100 -0
- package/vendor/libxml/include/libxml/relaxng.h +217 -0
- package/vendor/libxml/include/libxml/schemasInternals.h +958 -0
- package/vendor/libxml/include/libxml/schematron.h +142 -0
- package/vendor/libxml/include/libxml/threads.h +89 -0
- package/vendor/libxml/include/libxml/tree.h +1311 -0
- package/vendor/libxml/include/libxml/uri.h +94 -0
- package/vendor/libxml/include/libxml/valid.h +458 -0
- package/vendor/libxml/include/libxml/xinclude.h +129 -0
- package/vendor/libxml/include/libxml/xlink.h +189 -0
- package/vendor/libxml/include/libxml/xmlIO.h +368 -0
- package/vendor/libxml/include/libxml/xmlautomata.h +146 -0
- package/vendor/libxml/include/libxml/xmlerror.h +945 -0
- package/vendor/libxml/include/libxml/xmlexports.h +77 -0
- package/vendor/libxml/include/libxml/xmlmemory.h +224 -0
- package/vendor/libxml/include/libxml/xmlmodule.h +57 -0
- package/vendor/libxml/include/libxml/xmlreader.h +428 -0
- package/vendor/libxml/include/libxml/xmlregexp.h +222 -0
- package/vendor/libxml/include/libxml/xmlsave.h +88 -0
- package/vendor/libxml/include/libxml/xmlschemas.h +246 -0
- package/vendor/libxml/include/libxml/xmlschemastypes.h +151 -0
- package/vendor/libxml/include/libxml/xmlstring.h +140 -0
- package/vendor/libxml/include/libxml/xmlunicode.h +202 -0
- package/vendor/libxml/include/libxml/xmlversion.h +484 -0
- package/vendor/libxml/include/libxml/xmlwin32version.h +239 -0
- package/vendor/libxml/include/libxml/xmlwriter.h +488 -0
- package/vendor/libxml/include/libxml/xpath.h +564 -0
- package/vendor/libxml/include/libxml/xpathInternals.h +632 -0
- package/vendor/libxml/include/libxml/xpointer.h +114 -0
- package/vendor/libxml/include/win32config.h +122 -0
- package/vendor/libxml/include/wsockcompat.h +54 -0
- package/vendor/libxml/legacy.c +1343 -0
- package/vendor/libxml/libxml.h +134 -0
- package/vendor/libxml/list.c +779 -0
- package/vendor/libxml/nanoftp.c +2118 -0
- package/vendor/libxml/nanohttp.c +1899 -0
- package/vendor/libxml/parser.c +15553 -0
- package/vendor/libxml/parserInternals.c +2164 -0
- package/vendor/libxml/pattern.c +2621 -0
- package/vendor/libxml/relaxng.c +11101 -0
- package/vendor/libxml/rngparser.c +1595 -0
- package/vendor/libxml/runsuite.c +1157 -0
- package/vendor/libxml/save.h +36 -0
- package/vendor/libxml/schematron.c +1787 -0
- package/vendor/libxml/threads.c +1049 -0
- package/vendor/libxml/timsort.h +601 -0
- package/vendor/libxml/tree.c +10183 -0
- package/vendor/libxml/trio.c +6895 -0
- package/vendor/libxml/trio.h +230 -0
- package/vendor/libxml/triodef.h +228 -0
- package/vendor/libxml/trionan.c +914 -0
- package/vendor/libxml/trionan.h +84 -0
- package/vendor/libxml/triop.h +150 -0
- package/vendor/libxml/triostr.c +2112 -0
- package/vendor/libxml/triostr.h +144 -0
- package/vendor/libxml/uri.c +2561 -0
- package/vendor/libxml/valid.c +7138 -0
- package/vendor/libxml/xinclude.c +2657 -0
- package/vendor/libxml/xlink.c +183 -0
- package/vendor/libxml/xmlIO.c +4135 -0
- package/vendor/libxml/xmlcatalog.c +624 -0
- package/vendor/libxml/xmllint.c +3796 -0
- package/vendor/libxml/xmlmemory.c +1163 -0
- package/vendor/libxml/xmlmodule.c +468 -0
- package/vendor/libxml/xmlreader.c +6033 -0
- package/vendor/libxml/xmlregexp.c +8271 -0
- package/vendor/libxml/xmlsave.c +2735 -0
- package/vendor/libxml/xmlschemas.c +29173 -0
- package/vendor/libxml/xmlschemastypes.c +6276 -0
- package/vendor/libxml/xmlstring.c +1050 -0
- package/vendor/libxml/xmlunicode.c +3179 -0
- package/vendor/libxml/xmlwriter.c +4738 -0
- package/vendor/libxml/xpath.c +14734 -0
- package/vendor/libxml/xpointer.c +2969 -0
- package/vendor/libxml/xzlib.c +815 -0
- package/vendor/libxml/xzlib.h +19 -0
@@ -0,0 +1,100 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: pattern expression handling
|
3
|
+
* Description: allows to compile and test pattern expressions for nodes
|
4
|
+
* either in a tree or based on a parser state.
|
5
|
+
*
|
6
|
+
* Copy: See Copyright for the status of this software.
|
7
|
+
*
|
8
|
+
* Author: Daniel Veillard
|
9
|
+
*/
|
10
|
+
|
11
|
+
#ifndef __XML_PATTERN_H__
|
12
|
+
#define __XML_PATTERN_H__
|
13
|
+
|
14
|
+
#include <libxml/xmlversion.h>
|
15
|
+
#include <libxml/tree.h>
|
16
|
+
#include <libxml/dict.h>
|
17
|
+
|
18
|
+
#ifdef LIBXML_PATTERN_ENABLED
|
19
|
+
|
20
|
+
#ifdef __cplusplus
|
21
|
+
extern "C" {
|
22
|
+
#endif
|
23
|
+
|
24
|
+
/**
|
25
|
+
* xmlPattern:
|
26
|
+
*
|
27
|
+
* A compiled (XPath based) pattern to select nodes
|
28
|
+
*/
|
29
|
+
typedef struct _xmlPattern xmlPattern;
|
30
|
+
typedef xmlPattern *xmlPatternPtr;
|
31
|
+
|
32
|
+
/**
|
33
|
+
* xmlPatternFlags:
|
34
|
+
*
|
35
|
+
* This is the set of options affecting the behaviour of pattern
|
36
|
+
* matching with this module
|
37
|
+
*
|
38
|
+
*/
|
39
|
+
typedef enum {
|
40
|
+
XML_PATTERN_DEFAULT = 0, /* simple pattern match */
|
41
|
+
XML_PATTERN_XPATH = 1<<0, /* standard XPath pattern */
|
42
|
+
XML_PATTERN_XSSEL = 1<<1, /* XPath subset for schema selector */
|
43
|
+
XML_PATTERN_XSFIELD = 1<<2 /* XPath subset for schema field */
|
44
|
+
} xmlPatternFlags;
|
45
|
+
|
46
|
+
XMLPUBFUN void XMLCALL
|
47
|
+
xmlFreePattern (xmlPatternPtr comp);
|
48
|
+
|
49
|
+
XMLPUBFUN void XMLCALL
|
50
|
+
xmlFreePatternList (xmlPatternPtr comp);
|
51
|
+
|
52
|
+
XMLPUBFUN xmlPatternPtr XMLCALL
|
53
|
+
xmlPatterncompile (const xmlChar *pattern,
|
54
|
+
xmlDict *dict,
|
55
|
+
int flags,
|
56
|
+
const xmlChar **namespaces);
|
57
|
+
XMLPUBFUN int XMLCALL
|
58
|
+
xmlPatternMatch (xmlPatternPtr comp,
|
59
|
+
xmlNodePtr node);
|
60
|
+
|
61
|
+
/* streaming interfaces */
|
62
|
+
typedef struct _xmlStreamCtxt xmlStreamCtxt;
|
63
|
+
typedef xmlStreamCtxt *xmlStreamCtxtPtr;
|
64
|
+
|
65
|
+
XMLPUBFUN int XMLCALL
|
66
|
+
xmlPatternStreamable (xmlPatternPtr comp);
|
67
|
+
XMLPUBFUN int XMLCALL
|
68
|
+
xmlPatternMaxDepth (xmlPatternPtr comp);
|
69
|
+
XMLPUBFUN int XMLCALL
|
70
|
+
xmlPatternMinDepth (xmlPatternPtr comp);
|
71
|
+
XMLPUBFUN int XMLCALL
|
72
|
+
xmlPatternFromRoot (xmlPatternPtr comp);
|
73
|
+
XMLPUBFUN xmlStreamCtxtPtr XMLCALL
|
74
|
+
xmlPatternGetStreamCtxt (xmlPatternPtr comp);
|
75
|
+
XMLPUBFUN void XMLCALL
|
76
|
+
xmlFreeStreamCtxt (xmlStreamCtxtPtr stream);
|
77
|
+
XMLPUBFUN int XMLCALL
|
78
|
+
xmlStreamPushNode (xmlStreamCtxtPtr stream,
|
79
|
+
const xmlChar *name,
|
80
|
+
const xmlChar *ns,
|
81
|
+
int nodeType);
|
82
|
+
XMLPUBFUN int XMLCALL
|
83
|
+
xmlStreamPush (xmlStreamCtxtPtr stream,
|
84
|
+
const xmlChar *name,
|
85
|
+
const xmlChar *ns);
|
86
|
+
XMLPUBFUN int XMLCALL
|
87
|
+
xmlStreamPushAttr (xmlStreamCtxtPtr stream,
|
88
|
+
const xmlChar *name,
|
89
|
+
const xmlChar *ns);
|
90
|
+
XMLPUBFUN int XMLCALL
|
91
|
+
xmlStreamPop (xmlStreamCtxtPtr stream);
|
92
|
+
XMLPUBFUN int XMLCALL
|
93
|
+
xmlStreamWantsAnyNode (xmlStreamCtxtPtr stream);
|
94
|
+
#ifdef __cplusplus
|
95
|
+
}
|
96
|
+
#endif
|
97
|
+
|
98
|
+
#endif /* LIBXML_PATTERN_ENABLED */
|
99
|
+
|
100
|
+
#endif /* __XML_PATTERN_H__ */
|
@@ -0,0 +1,217 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: implementation of the Relax-NG validation
|
3
|
+
* Description: implementation of the Relax-NG validation
|
4
|
+
*
|
5
|
+
* Copy: See Copyright for the status of this software.
|
6
|
+
*
|
7
|
+
* Author: Daniel Veillard
|
8
|
+
*/
|
9
|
+
|
10
|
+
#ifndef __XML_RELAX_NG__
|
11
|
+
#define __XML_RELAX_NG__
|
12
|
+
|
13
|
+
#include <libxml/xmlversion.h>
|
14
|
+
#include <libxml/hash.h>
|
15
|
+
#include <libxml/xmlstring.h>
|
16
|
+
|
17
|
+
#ifdef LIBXML_SCHEMAS_ENABLED
|
18
|
+
|
19
|
+
#ifdef __cplusplus
|
20
|
+
extern "C" {
|
21
|
+
#endif
|
22
|
+
|
23
|
+
typedef struct _xmlRelaxNG xmlRelaxNG;
|
24
|
+
typedef xmlRelaxNG *xmlRelaxNGPtr;
|
25
|
+
|
26
|
+
|
27
|
+
/**
|
28
|
+
* xmlRelaxNGValidityErrorFunc:
|
29
|
+
* @ctx: the validation context
|
30
|
+
* @msg: the message
|
31
|
+
* @...: extra arguments
|
32
|
+
*
|
33
|
+
* Signature of an error callback from a Relax-NG validation
|
34
|
+
*/
|
35
|
+
typedef void (XMLCDECL *xmlRelaxNGValidityErrorFunc) (void *ctx,
|
36
|
+
const char *msg,
|
37
|
+
...) LIBXML_ATTR_FORMAT(2,3);
|
38
|
+
|
39
|
+
/**
|
40
|
+
* xmlRelaxNGValidityWarningFunc:
|
41
|
+
* @ctx: the validation context
|
42
|
+
* @msg: the message
|
43
|
+
* @...: extra arguments
|
44
|
+
*
|
45
|
+
* Signature of a warning callback from a Relax-NG validation
|
46
|
+
*/
|
47
|
+
typedef void (XMLCDECL *xmlRelaxNGValidityWarningFunc) (void *ctx,
|
48
|
+
const char *msg,
|
49
|
+
...) LIBXML_ATTR_FORMAT(2,3);
|
50
|
+
|
51
|
+
/**
|
52
|
+
* A schemas validation context
|
53
|
+
*/
|
54
|
+
typedef struct _xmlRelaxNGParserCtxt xmlRelaxNGParserCtxt;
|
55
|
+
typedef xmlRelaxNGParserCtxt *xmlRelaxNGParserCtxtPtr;
|
56
|
+
|
57
|
+
typedef struct _xmlRelaxNGValidCtxt xmlRelaxNGValidCtxt;
|
58
|
+
typedef xmlRelaxNGValidCtxt *xmlRelaxNGValidCtxtPtr;
|
59
|
+
|
60
|
+
/*
|
61
|
+
* xmlRelaxNGValidErr:
|
62
|
+
*
|
63
|
+
* List of possible Relax NG validation errors
|
64
|
+
*/
|
65
|
+
typedef enum {
|
66
|
+
XML_RELAXNG_OK = 0,
|
67
|
+
XML_RELAXNG_ERR_MEMORY,
|
68
|
+
XML_RELAXNG_ERR_TYPE,
|
69
|
+
XML_RELAXNG_ERR_TYPEVAL,
|
70
|
+
XML_RELAXNG_ERR_DUPID,
|
71
|
+
XML_RELAXNG_ERR_TYPECMP,
|
72
|
+
XML_RELAXNG_ERR_NOSTATE,
|
73
|
+
XML_RELAXNG_ERR_NODEFINE,
|
74
|
+
XML_RELAXNG_ERR_LISTEXTRA,
|
75
|
+
XML_RELAXNG_ERR_LISTEMPTY,
|
76
|
+
XML_RELAXNG_ERR_INTERNODATA,
|
77
|
+
XML_RELAXNG_ERR_INTERSEQ,
|
78
|
+
XML_RELAXNG_ERR_INTEREXTRA,
|
79
|
+
XML_RELAXNG_ERR_ELEMNAME,
|
80
|
+
XML_RELAXNG_ERR_ATTRNAME,
|
81
|
+
XML_RELAXNG_ERR_ELEMNONS,
|
82
|
+
XML_RELAXNG_ERR_ATTRNONS,
|
83
|
+
XML_RELAXNG_ERR_ELEMWRONGNS,
|
84
|
+
XML_RELAXNG_ERR_ATTRWRONGNS,
|
85
|
+
XML_RELAXNG_ERR_ELEMEXTRANS,
|
86
|
+
XML_RELAXNG_ERR_ATTREXTRANS,
|
87
|
+
XML_RELAXNG_ERR_ELEMNOTEMPTY,
|
88
|
+
XML_RELAXNG_ERR_NOELEM,
|
89
|
+
XML_RELAXNG_ERR_NOTELEM,
|
90
|
+
XML_RELAXNG_ERR_ATTRVALID,
|
91
|
+
XML_RELAXNG_ERR_CONTENTVALID,
|
92
|
+
XML_RELAXNG_ERR_EXTRACONTENT,
|
93
|
+
XML_RELAXNG_ERR_INVALIDATTR,
|
94
|
+
XML_RELAXNG_ERR_DATAELEM,
|
95
|
+
XML_RELAXNG_ERR_VALELEM,
|
96
|
+
XML_RELAXNG_ERR_LISTELEM,
|
97
|
+
XML_RELAXNG_ERR_DATATYPE,
|
98
|
+
XML_RELAXNG_ERR_VALUE,
|
99
|
+
XML_RELAXNG_ERR_LIST,
|
100
|
+
XML_RELAXNG_ERR_NOGRAMMAR,
|
101
|
+
XML_RELAXNG_ERR_EXTRADATA,
|
102
|
+
XML_RELAXNG_ERR_LACKDATA,
|
103
|
+
XML_RELAXNG_ERR_INTERNAL,
|
104
|
+
XML_RELAXNG_ERR_ELEMWRONG,
|
105
|
+
XML_RELAXNG_ERR_TEXTWRONG
|
106
|
+
} xmlRelaxNGValidErr;
|
107
|
+
|
108
|
+
/*
|
109
|
+
* xmlRelaxNGParserFlags:
|
110
|
+
*
|
111
|
+
* List of possible Relax NG Parser flags
|
112
|
+
*/
|
113
|
+
typedef enum {
|
114
|
+
XML_RELAXNGP_NONE = 0,
|
115
|
+
XML_RELAXNGP_FREE_DOC = 1,
|
116
|
+
XML_RELAXNGP_CRNG = 2
|
117
|
+
} xmlRelaxNGParserFlag;
|
118
|
+
|
119
|
+
XMLPUBFUN int XMLCALL
|
120
|
+
xmlRelaxNGInitTypes (void);
|
121
|
+
XMLPUBFUN void XMLCALL
|
122
|
+
xmlRelaxNGCleanupTypes (void);
|
123
|
+
|
124
|
+
/*
|
125
|
+
* Interfaces for parsing.
|
126
|
+
*/
|
127
|
+
XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL
|
128
|
+
xmlRelaxNGNewParserCtxt (const char *URL);
|
129
|
+
XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL
|
130
|
+
xmlRelaxNGNewMemParserCtxt (const char *buffer,
|
131
|
+
int size);
|
132
|
+
XMLPUBFUN xmlRelaxNGParserCtxtPtr XMLCALL
|
133
|
+
xmlRelaxNGNewDocParserCtxt (xmlDocPtr doc);
|
134
|
+
|
135
|
+
XMLPUBFUN int XMLCALL
|
136
|
+
xmlRelaxParserSetFlag (xmlRelaxNGParserCtxtPtr ctxt,
|
137
|
+
int flag);
|
138
|
+
|
139
|
+
XMLPUBFUN void XMLCALL
|
140
|
+
xmlRelaxNGFreeParserCtxt (xmlRelaxNGParserCtxtPtr ctxt);
|
141
|
+
XMLPUBFUN void XMLCALL
|
142
|
+
xmlRelaxNGSetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
|
143
|
+
xmlRelaxNGValidityErrorFunc err,
|
144
|
+
xmlRelaxNGValidityWarningFunc warn,
|
145
|
+
void *ctx);
|
146
|
+
XMLPUBFUN int XMLCALL
|
147
|
+
xmlRelaxNGGetParserErrors(xmlRelaxNGParserCtxtPtr ctxt,
|
148
|
+
xmlRelaxNGValidityErrorFunc *err,
|
149
|
+
xmlRelaxNGValidityWarningFunc *warn,
|
150
|
+
void **ctx);
|
151
|
+
XMLPUBFUN void XMLCALL
|
152
|
+
xmlRelaxNGSetParserStructuredErrors(
|
153
|
+
xmlRelaxNGParserCtxtPtr ctxt,
|
154
|
+
xmlStructuredErrorFunc serror,
|
155
|
+
void *ctx);
|
156
|
+
XMLPUBFUN xmlRelaxNGPtr XMLCALL
|
157
|
+
xmlRelaxNGParse (xmlRelaxNGParserCtxtPtr ctxt);
|
158
|
+
XMLPUBFUN void XMLCALL
|
159
|
+
xmlRelaxNGFree (xmlRelaxNGPtr schema);
|
160
|
+
#ifdef LIBXML_OUTPUT_ENABLED
|
161
|
+
XMLPUBFUN void XMLCALL
|
162
|
+
xmlRelaxNGDump (FILE *output,
|
163
|
+
xmlRelaxNGPtr schema);
|
164
|
+
XMLPUBFUN void XMLCALL
|
165
|
+
xmlRelaxNGDumpTree (FILE * output,
|
166
|
+
xmlRelaxNGPtr schema);
|
167
|
+
#endif /* LIBXML_OUTPUT_ENABLED */
|
168
|
+
/*
|
169
|
+
* Interfaces for validating
|
170
|
+
*/
|
171
|
+
XMLPUBFUN void XMLCALL
|
172
|
+
xmlRelaxNGSetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
|
173
|
+
xmlRelaxNGValidityErrorFunc err,
|
174
|
+
xmlRelaxNGValidityWarningFunc warn,
|
175
|
+
void *ctx);
|
176
|
+
XMLPUBFUN int XMLCALL
|
177
|
+
xmlRelaxNGGetValidErrors(xmlRelaxNGValidCtxtPtr ctxt,
|
178
|
+
xmlRelaxNGValidityErrorFunc *err,
|
179
|
+
xmlRelaxNGValidityWarningFunc *warn,
|
180
|
+
void **ctx);
|
181
|
+
XMLPUBFUN void XMLCALL
|
182
|
+
xmlRelaxNGSetValidStructuredErrors(xmlRelaxNGValidCtxtPtr ctxt,
|
183
|
+
xmlStructuredErrorFunc serror, void *ctx);
|
184
|
+
XMLPUBFUN xmlRelaxNGValidCtxtPtr XMLCALL
|
185
|
+
xmlRelaxNGNewValidCtxt (xmlRelaxNGPtr schema);
|
186
|
+
XMLPUBFUN void XMLCALL
|
187
|
+
xmlRelaxNGFreeValidCtxt (xmlRelaxNGValidCtxtPtr ctxt);
|
188
|
+
XMLPUBFUN int XMLCALL
|
189
|
+
xmlRelaxNGValidateDoc (xmlRelaxNGValidCtxtPtr ctxt,
|
190
|
+
xmlDocPtr doc);
|
191
|
+
/*
|
192
|
+
* Interfaces for progressive validation when possible
|
193
|
+
*/
|
194
|
+
XMLPUBFUN int XMLCALL
|
195
|
+
xmlRelaxNGValidatePushElement (xmlRelaxNGValidCtxtPtr ctxt,
|
196
|
+
xmlDocPtr doc,
|
197
|
+
xmlNodePtr elem);
|
198
|
+
XMLPUBFUN int XMLCALL
|
199
|
+
xmlRelaxNGValidatePushCData (xmlRelaxNGValidCtxtPtr ctxt,
|
200
|
+
const xmlChar *data,
|
201
|
+
int len);
|
202
|
+
XMLPUBFUN int XMLCALL
|
203
|
+
xmlRelaxNGValidatePopElement (xmlRelaxNGValidCtxtPtr ctxt,
|
204
|
+
xmlDocPtr doc,
|
205
|
+
xmlNodePtr elem);
|
206
|
+
XMLPUBFUN int XMLCALL
|
207
|
+
xmlRelaxNGValidateFullElement (xmlRelaxNGValidCtxtPtr ctxt,
|
208
|
+
xmlDocPtr doc,
|
209
|
+
xmlNodePtr elem);
|
210
|
+
|
211
|
+
#ifdef __cplusplus
|
212
|
+
}
|
213
|
+
#endif
|
214
|
+
|
215
|
+
#endif /* LIBXML_SCHEMAS_ENABLED */
|
216
|
+
|
217
|
+
#endif /* __XML_RELAX_NG__ */
|