lxml 6.0.0__cp312-cp312-macosx_10_13_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (174) hide show
  1. lxml/ElementInclude.py +244 -0
  2. lxml/__init__.py +22 -0
  3. lxml/_elementpath.cpython-312-darwin.so +0 -0
  4. lxml/_elementpath.py +343 -0
  5. lxml/apihelpers.pxi +1801 -0
  6. lxml/builder.cpython-312-darwin.so +0 -0
  7. lxml/builder.py +243 -0
  8. lxml/classlookup.pxi +580 -0
  9. lxml/cleanup.pxi +215 -0
  10. lxml/cssselect.py +101 -0
  11. lxml/debug.pxi +36 -0
  12. lxml/docloader.pxi +178 -0
  13. lxml/doctestcompare.py +488 -0
  14. lxml/dtd.pxi +479 -0
  15. lxml/etree.cpython-312-darwin.so +0 -0
  16. lxml/etree.h +244 -0
  17. lxml/etree.pyx +3853 -0
  18. lxml/etree_api.h +204 -0
  19. lxml/extensions.pxi +830 -0
  20. lxml/html/ElementSoup.py +10 -0
  21. lxml/html/__init__.py +1927 -0
  22. lxml/html/_diffcommand.py +86 -0
  23. lxml/html/_difflib.cpython-312-darwin.so +0 -0
  24. lxml/html/_difflib.py +2106 -0
  25. lxml/html/_html5builder.py +100 -0
  26. lxml/html/_setmixin.py +56 -0
  27. lxml/html/builder.py +173 -0
  28. lxml/html/clean.py +21 -0
  29. lxml/html/defs.py +135 -0
  30. lxml/html/diff.cpython-312-darwin.so +0 -0
  31. lxml/html/diff.py +972 -0
  32. lxml/html/formfill.py +299 -0
  33. lxml/html/html5parser.py +260 -0
  34. lxml/html/soupparser.py +314 -0
  35. lxml/html/usedoctest.py +13 -0
  36. lxml/includes/__init__.pxd +0 -0
  37. lxml/includes/__init__.py +0 -0
  38. lxml/includes/c14n.pxd +25 -0
  39. lxml/includes/config.pxd +3 -0
  40. lxml/includes/dtdvalid.pxd +18 -0
  41. lxml/includes/etree_defs.h +379 -0
  42. lxml/includes/etreepublic.pxd +237 -0
  43. lxml/includes/extlibs/__init__.py +0 -0
  44. lxml/includes/extlibs/libcharset.h +45 -0
  45. lxml/includes/extlibs/localcharset.h +137 -0
  46. lxml/includes/extlibs/zconf.h +543 -0
  47. lxml/includes/extlibs/zlib.h +1938 -0
  48. lxml/includes/htmlparser.pxd +56 -0
  49. lxml/includes/libexslt/__init__.py +0 -0
  50. lxml/includes/libexslt/exslt.h +108 -0
  51. lxml/includes/libexslt/exsltconfig.h +70 -0
  52. lxml/includes/libexslt/exsltexports.h +63 -0
  53. lxml/includes/libxml/HTMLparser.h +339 -0
  54. lxml/includes/libxml/HTMLtree.h +148 -0
  55. lxml/includes/libxml/SAX.h +18 -0
  56. lxml/includes/libxml/SAX2.h +170 -0
  57. lxml/includes/libxml/__init__.py +0 -0
  58. lxml/includes/libxml/c14n.h +115 -0
  59. lxml/includes/libxml/catalog.h +183 -0
  60. lxml/includes/libxml/chvalid.h +230 -0
  61. lxml/includes/libxml/debugXML.h +79 -0
  62. lxml/includes/libxml/dict.h +82 -0
  63. lxml/includes/libxml/encoding.h +307 -0
  64. lxml/includes/libxml/entities.h +147 -0
  65. lxml/includes/libxml/globals.h +25 -0
  66. lxml/includes/libxml/hash.h +251 -0
  67. lxml/includes/libxml/list.h +137 -0
  68. lxml/includes/libxml/nanoftp.h +16 -0
  69. lxml/includes/libxml/nanohttp.h +98 -0
  70. lxml/includes/libxml/parser.h +1633 -0
  71. lxml/includes/libxml/parserInternals.h +591 -0
  72. lxml/includes/libxml/relaxng.h +224 -0
  73. lxml/includes/libxml/schemasInternals.h +959 -0
  74. lxml/includes/libxml/schematron.h +143 -0
  75. lxml/includes/libxml/threads.h +81 -0
  76. lxml/includes/libxml/tree.h +1326 -0
  77. lxml/includes/libxml/uri.h +106 -0
  78. lxml/includes/libxml/valid.h +485 -0
  79. lxml/includes/libxml/xinclude.h +141 -0
  80. lxml/includes/libxml/xlink.h +193 -0
  81. lxml/includes/libxml/xmlIO.h +419 -0
  82. lxml/includes/libxml/xmlautomata.h +163 -0
  83. lxml/includes/libxml/xmlerror.h +962 -0
  84. lxml/includes/libxml/xmlexports.h +96 -0
  85. lxml/includes/libxml/xmlmemory.h +188 -0
  86. lxml/includes/libxml/xmlmodule.h +61 -0
  87. lxml/includes/libxml/xmlreader.h +444 -0
  88. lxml/includes/libxml/xmlregexp.h +116 -0
  89. lxml/includes/libxml/xmlsave.h +111 -0
  90. lxml/includes/libxml/xmlschemas.h +254 -0
  91. lxml/includes/libxml/xmlschemastypes.h +152 -0
  92. lxml/includes/libxml/xmlstring.h +140 -0
  93. lxml/includes/libxml/xmlunicode.h +15 -0
  94. lxml/includes/libxml/xmlversion.h +332 -0
  95. lxml/includes/libxml/xmlwriter.h +489 -0
  96. lxml/includes/libxml/xpath.h +569 -0
  97. lxml/includes/libxml/xpathInternals.h +639 -0
  98. lxml/includes/libxml/xpointer.h +48 -0
  99. lxml/includes/libxslt/__init__.py +0 -0
  100. lxml/includes/libxslt/attributes.h +39 -0
  101. lxml/includes/libxslt/documents.h +93 -0
  102. lxml/includes/libxslt/extensions.h +262 -0
  103. lxml/includes/libxslt/extra.h +72 -0
  104. lxml/includes/libxslt/functions.h +78 -0
  105. lxml/includes/libxslt/imports.h +75 -0
  106. lxml/includes/libxslt/keys.h +53 -0
  107. lxml/includes/libxslt/namespaces.h +68 -0
  108. lxml/includes/libxslt/numbersInternals.h +73 -0
  109. lxml/includes/libxslt/pattern.h +84 -0
  110. lxml/includes/libxslt/preproc.h +43 -0
  111. lxml/includes/libxslt/security.h +104 -0
  112. lxml/includes/libxslt/templates.h +77 -0
  113. lxml/includes/libxslt/transform.h +207 -0
  114. lxml/includes/libxslt/variables.h +118 -0
  115. lxml/includes/libxslt/xslt.h +110 -0
  116. lxml/includes/libxslt/xsltInternals.h +1995 -0
  117. lxml/includes/libxslt/xsltconfig.h +146 -0
  118. lxml/includes/libxslt/xsltexports.h +64 -0
  119. lxml/includes/libxslt/xsltlocale.h +44 -0
  120. lxml/includes/libxslt/xsltutils.h +343 -0
  121. lxml/includes/lxml-version.h +3 -0
  122. lxml/includes/relaxng.pxd +64 -0
  123. lxml/includes/schematron.pxd +34 -0
  124. lxml/includes/tree.pxd +492 -0
  125. lxml/includes/uri.pxd +5 -0
  126. lxml/includes/xinclude.pxd +22 -0
  127. lxml/includes/xmlerror.pxd +852 -0
  128. lxml/includes/xmlparser.pxd +303 -0
  129. lxml/includes/xmlschema.pxd +35 -0
  130. lxml/includes/xpath.pxd +136 -0
  131. lxml/includes/xslt.pxd +190 -0
  132. lxml/isoschematron/__init__.py +348 -0
  133. lxml/isoschematron/resources/rng/iso-schematron.rng +709 -0
  134. lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl +75 -0
  135. lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl +77 -0
  136. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl +313 -0
  137. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl +1160 -0
  138. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl +55 -0
  139. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl +1796 -0
  140. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl +588 -0
  141. lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt +84 -0
  142. lxml/iterparse.pxi +438 -0
  143. lxml/lxml.etree.h +244 -0
  144. lxml/lxml.etree_api.h +204 -0
  145. lxml/nsclasses.pxi +281 -0
  146. lxml/objectify.cpython-312-darwin.so +0 -0
  147. lxml/objectify.pyx +2149 -0
  148. lxml/objectpath.pxi +332 -0
  149. lxml/parser.pxi +2059 -0
  150. lxml/parsertarget.pxi +180 -0
  151. lxml/proxy.pxi +619 -0
  152. lxml/public-api.pxi +178 -0
  153. lxml/pyclasslookup.py +3 -0
  154. lxml/readonlytree.pxi +565 -0
  155. lxml/relaxng.pxi +165 -0
  156. lxml/sax.cpython-312-darwin.so +0 -0
  157. lxml/sax.py +286 -0
  158. lxml/saxparser.pxi +875 -0
  159. lxml/schematron.pxi +173 -0
  160. lxml/serializer.pxi +1849 -0
  161. lxml/usedoctest.py +13 -0
  162. lxml/xinclude.pxi +67 -0
  163. lxml/xmlerror.pxi +1654 -0
  164. lxml/xmlid.pxi +179 -0
  165. lxml/xmlschema.pxi +215 -0
  166. lxml/xpath.pxi +487 -0
  167. lxml/xslt.pxi +957 -0
  168. lxml/xsltext.pxi +242 -0
  169. lxml-6.0.0.dist-info/METADATA +163 -0
  170. lxml-6.0.0.dist-info/RECORD +174 -0
  171. lxml-6.0.0.dist-info/WHEEL +6 -0
  172. lxml-6.0.0.dist-info/licenses/LICENSE.txt +31 -0
  173. lxml-6.0.0.dist-info/licenses/LICENSES.txt +29 -0
  174. lxml-6.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,254 @@
1
+ /*
2
+ * Summary: incomplete XML Schemas structure implementation
3
+ * Description: interface to the XML Schemas handling and schema validity
4
+ * checking, it is incomplete right now.
5
+ *
6
+ * Copy: See Copyright for the status of this software.
7
+ *
8
+ * Author: Daniel Veillard
9
+ */
10
+
11
+
12
+ #ifndef __XML_SCHEMA_H__
13
+ #define __XML_SCHEMA_H__
14
+
15
+ #include <libxml/xmlversion.h>
16
+
17
+ #ifdef LIBXML_SCHEMAS_ENABLED
18
+
19
+ #include <stdio.h>
20
+ #include <libxml/encoding.h>
21
+ #include <libxml/parser.h>
22
+ #include <libxml/tree.h>
23
+ #include <libxml/xmlerror.h>
24
+
25
+ #ifdef __cplusplus
26
+ extern "C" {
27
+ #endif
28
+
29
+ /**
30
+ * This error codes are obsolete; not used any more.
31
+ */
32
+ typedef enum {
33
+ XML_SCHEMAS_ERR_OK = 0,
34
+ XML_SCHEMAS_ERR_NOROOT = 1,
35
+ XML_SCHEMAS_ERR_UNDECLAREDELEM,
36
+ XML_SCHEMAS_ERR_NOTTOPLEVEL,
37
+ XML_SCHEMAS_ERR_MISSING,
38
+ XML_SCHEMAS_ERR_WRONGELEM,
39
+ XML_SCHEMAS_ERR_NOTYPE,
40
+ XML_SCHEMAS_ERR_NOROLLBACK,
41
+ XML_SCHEMAS_ERR_ISABSTRACT,
42
+ XML_SCHEMAS_ERR_NOTEMPTY,
43
+ XML_SCHEMAS_ERR_ELEMCONT,
44
+ XML_SCHEMAS_ERR_HAVEDEFAULT,
45
+ XML_SCHEMAS_ERR_NOTNILLABLE,
46
+ XML_SCHEMAS_ERR_EXTRACONTENT,
47
+ XML_SCHEMAS_ERR_INVALIDATTR,
48
+ XML_SCHEMAS_ERR_INVALIDELEM,
49
+ XML_SCHEMAS_ERR_NOTDETERMINIST,
50
+ XML_SCHEMAS_ERR_CONSTRUCT,
51
+ XML_SCHEMAS_ERR_INTERNAL,
52
+ XML_SCHEMAS_ERR_NOTSIMPLE,
53
+ XML_SCHEMAS_ERR_ATTRUNKNOWN,
54
+ XML_SCHEMAS_ERR_ATTRINVALID,
55
+ XML_SCHEMAS_ERR_VALUE,
56
+ XML_SCHEMAS_ERR_FACET,
57
+ XML_SCHEMAS_ERR_,
58
+ XML_SCHEMAS_ERR_XXX
59
+ } xmlSchemaValidError;
60
+
61
+ /*
62
+ * ATTENTION: Change xmlSchemaSetValidOptions's check
63
+ * for invalid values, if adding to the validation
64
+ * options below.
65
+ */
66
+ /**
67
+ * xmlSchemaValidOption:
68
+ *
69
+ * This is the set of XML Schema validation options.
70
+ */
71
+ typedef enum {
72
+ XML_SCHEMA_VAL_VC_I_CREATE = 1<<0
73
+ /* Default/fixed: create an attribute node
74
+ * or an element's text node on the instance.
75
+ */
76
+ } xmlSchemaValidOption;
77
+
78
+ /*
79
+ XML_SCHEMA_VAL_XSI_ASSEMBLE = 1<<1,
80
+ * assemble schemata using
81
+ * xsi:schemaLocation and
82
+ * xsi:noNamespaceSchemaLocation
83
+ */
84
+
85
+ /**
86
+ * The schemas related types are kept internal
87
+ */
88
+ typedef struct _xmlSchema xmlSchema;
89
+ typedef xmlSchema *xmlSchemaPtr;
90
+
91
+ /**
92
+ * xmlSchemaValidityErrorFunc:
93
+ * @ctx: the validation context
94
+ * @msg: the message
95
+ * @...: extra arguments
96
+ *
97
+ * Signature of an error callback from an XSD validation
98
+ */
99
+ typedef void (*xmlSchemaValidityErrorFunc)
100
+ (void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
101
+
102
+ /**
103
+ * xmlSchemaValidityWarningFunc:
104
+ * @ctx: the validation context
105
+ * @msg: the message
106
+ * @...: extra arguments
107
+ *
108
+ * Signature of a warning callback from an XSD validation
109
+ */
110
+ typedef void (*xmlSchemaValidityWarningFunc)
111
+ (void *ctx, const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
112
+
113
+ /**
114
+ * A schemas validation context
115
+ */
116
+ typedef struct _xmlSchemaParserCtxt xmlSchemaParserCtxt;
117
+ typedef xmlSchemaParserCtxt *xmlSchemaParserCtxtPtr;
118
+
119
+ typedef struct _xmlSchemaValidCtxt xmlSchemaValidCtxt;
120
+ typedef xmlSchemaValidCtxt *xmlSchemaValidCtxtPtr;
121
+
122
+ /**
123
+ * xmlSchemaValidityLocatorFunc:
124
+ * @ctx: user provided context
125
+ * @file: returned file information
126
+ * @line: returned line information
127
+ *
128
+ * A schemas validation locator, a callback called by the validator.
129
+ * This is used when file or node information are not available
130
+ * to find out what file and line number are affected
131
+ *
132
+ * Returns: 0 in case of success and -1 in case of error
133
+ */
134
+
135
+ typedef int (*xmlSchemaValidityLocatorFunc) (void *ctx,
136
+ const char **file, unsigned long *line);
137
+
138
+ /*
139
+ * Interfaces for parsing.
140
+ */
141
+ XMLPUBFUN xmlSchemaParserCtxtPtr
142
+ xmlSchemaNewParserCtxt (const char *URL);
143
+ XMLPUBFUN xmlSchemaParserCtxtPtr
144
+ xmlSchemaNewMemParserCtxt (const char *buffer,
145
+ int size);
146
+ XMLPUBFUN xmlSchemaParserCtxtPtr
147
+ xmlSchemaNewDocParserCtxt (xmlDocPtr doc);
148
+ XMLPUBFUN void
149
+ xmlSchemaFreeParserCtxt (xmlSchemaParserCtxtPtr ctxt);
150
+ XMLPUBFUN void
151
+ xmlSchemaSetParserErrors (xmlSchemaParserCtxtPtr ctxt,
152
+ xmlSchemaValidityErrorFunc err,
153
+ xmlSchemaValidityWarningFunc warn,
154
+ void *ctx);
155
+ XMLPUBFUN void
156
+ xmlSchemaSetParserStructuredErrors(xmlSchemaParserCtxtPtr ctxt,
157
+ xmlStructuredErrorFunc serror,
158
+ void *ctx);
159
+ XMLPUBFUN int
160
+ xmlSchemaGetParserErrors (xmlSchemaParserCtxtPtr ctxt,
161
+ xmlSchemaValidityErrorFunc * err,
162
+ xmlSchemaValidityWarningFunc * warn,
163
+ void **ctx);
164
+ XMLPUBFUN void
165
+ xmlSchemaSetResourceLoader (xmlSchemaParserCtxtPtr ctxt,
166
+ xmlResourceLoader loader,
167
+ void *data);
168
+ XMLPUBFUN int
169
+ xmlSchemaIsValid (xmlSchemaValidCtxtPtr ctxt);
170
+
171
+ XMLPUBFUN xmlSchemaPtr
172
+ xmlSchemaParse (xmlSchemaParserCtxtPtr ctxt);
173
+ XMLPUBFUN void
174
+ xmlSchemaFree (xmlSchemaPtr schema);
175
+ #ifdef LIBXML_DEBUG_ENABLED
176
+ XMLPUBFUN void
177
+ xmlSchemaDump (FILE *output,
178
+ xmlSchemaPtr schema);
179
+ #endif /* LIBXML_DEBUG_ENABLED */
180
+ /*
181
+ * Interfaces for validating
182
+ */
183
+ XMLPUBFUN void
184
+ xmlSchemaSetValidErrors (xmlSchemaValidCtxtPtr ctxt,
185
+ xmlSchemaValidityErrorFunc err,
186
+ xmlSchemaValidityWarningFunc warn,
187
+ void *ctx);
188
+ XMLPUBFUN void
189
+ xmlSchemaSetValidStructuredErrors(xmlSchemaValidCtxtPtr ctxt,
190
+ xmlStructuredErrorFunc serror,
191
+ void *ctx);
192
+ XMLPUBFUN int
193
+ xmlSchemaGetValidErrors (xmlSchemaValidCtxtPtr ctxt,
194
+ xmlSchemaValidityErrorFunc *err,
195
+ xmlSchemaValidityWarningFunc *warn,
196
+ void **ctx);
197
+ XMLPUBFUN int
198
+ xmlSchemaSetValidOptions (xmlSchemaValidCtxtPtr ctxt,
199
+ int options);
200
+ XMLPUBFUN void
201
+ xmlSchemaValidateSetFilename(xmlSchemaValidCtxtPtr vctxt,
202
+ const char *filename);
203
+ XMLPUBFUN int
204
+ xmlSchemaValidCtxtGetOptions(xmlSchemaValidCtxtPtr ctxt);
205
+
206
+ XMLPUBFUN xmlSchemaValidCtxtPtr
207
+ xmlSchemaNewValidCtxt (xmlSchemaPtr schema);
208
+ XMLPUBFUN void
209
+ xmlSchemaFreeValidCtxt (xmlSchemaValidCtxtPtr ctxt);
210
+ XMLPUBFUN int
211
+ xmlSchemaValidateDoc (xmlSchemaValidCtxtPtr ctxt,
212
+ xmlDocPtr instance);
213
+ XMLPUBFUN int
214
+ xmlSchemaValidateOneElement (xmlSchemaValidCtxtPtr ctxt,
215
+ xmlNodePtr elem);
216
+ XMLPUBFUN int
217
+ xmlSchemaValidateStream (xmlSchemaValidCtxtPtr ctxt,
218
+ xmlParserInputBufferPtr input,
219
+ xmlCharEncoding enc,
220
+ const xmlSAXHandler *sax,
221
+ void *user_data);
222
+ XMLPUBFUN int
223
+ xmlSchemaValidateFile (xmlSchemaValidCtxtPtr ctxt,
224
+ const char * filename,
225
+ int options);
226
+
227
+ XMLPUBFUN xmlParserCtxtPtr
228
+ xmlSchemaValidCtxtGetParserCtxt(xmlSchemaValidCtxtPtr ctxt);
229
+
230
+ /*
231
+ * Interface to insert Schemas SAX validation in a SAX stream
232
+ */
233
+ typedef struct _xmlSchemaSAXPlug xmlSchemaSAXPlugStruct;
234
+ typedef xmlSchemaSAXPlugStruct *xmlSchemaSAXPlugPtr;
235
+
236
+ XMLPUBFUN xmlSchemaSAXPlugPtr
237
+ xmlSchemaSAXPlug (xmlSchemaValidCtxtPtr ctxt,
238
+ xmlSAXHandlerPtr *sax,
239
+ void **user_data);
240
+ XMLPUBFUN int
241
+ xmlSchemaSAXUnplug (xmlSchemaSAXPlugPtr plug);
242
+
243
+
244
+ XMLPUBFUN void
245
+ xmlSchemaValidateSetLocator (xmlSchemaValidCtxtPtr vctxt,
246
+ xmlSchemaValidityLocatorFunc f,
247
+ void *ctxt);
248
+
249
+ #ifdef __cplusplus
250
+ }
251
+ #endif
252
+
253
+ #endif /* LIBXML_SCHEMAS_ENABLED */
254
+ #endif /* __XML_SCHEMA_H__ */
@@ -0,0 +1,152 @@
1
+ /*
2
+ * Summary: implementation of XML Schema Datatypes
3
+ * Description: module providing the XML Schema Datatypes implementation
4
+ * both definition and validity checking
5
+ *
6
+ * Copy: See Copyright for the status of this software.
7
+ *
8
+ * Author: Daniel Veillard
9
+ */
10
+
11
+
12
+ #ifndef __XML_SCHEMA_TYPES_H__
13
+ #define __XML_SCHEMA_TYPES_H__
14
+
15
+ #include <libxml/xmlversion.h>
16
+
17
+ #ifdef LIBXML_SCHEMAS_ENABLED
18
+
19
+ #include <libxml/schemasInternals.h>
20
+ #include <libxml/xmlschemas.h>
21
+
22
+ #ifdef __cplusplus
23
+ extern "C" {
24
+ #endif
25
+
26
+ typedef enum {
27
+ XML_SCHEMA_WHITESPACE_UNKNOWN = 0,
28
+ XML_SCHEMA_WHITESPACE_PRESERVE = 1,
29
+ XML_SCHEMA_WHITESPACE_REPLACE = 2,
30
+ XML_SCHEMA_WHITESPACE_COLLAPSE = 3
31
+ } xmlSchemaWhitespaceValueType;
32
+
33
+ XMLPUBFUN int
34
+ xmlSchemaInitTypes (void);
35
+ XML_DEPRECATED
36
+ XMLPUBFUN void
37
+ xmlSchemaCleanupTypes (void);
38
+ XMLPUBFUN xmlSchemaTypePtr
39
+ xmlSchemaGetPredefinedType (const xmlChar *name,
40
+ const xmlChar *ns);
41
+ XMLPUBFUN int
42
+ xmlSchemaValidatePredefinedType (xmlSchemaTypePtr type,
43
+ const xmlChar *value,
44
+ xmlSchemaValPtr *val);
45
+ XMLPUBFUN int
46
+ xmlSchemaValPredefTypeNode (xmlSchemaTypePtr type,
47
+ const xmlChar *value,
48
+ xmlSchemaValPtr *val,
49
+ xmlNodePtr node);
50
+ XMLPUBFUN int
51
+ xmlSchemaValidateFacet (xmlSchemaTypePtr base,
52
+ xmlSchemaFacetPtr facet,
53
+ const xmlChar *value,
54
+ xmlSchemaValPtr val);
55
+ XMLPUBFUN int
56
+ xmlSchemaValidateFacetWhtsp (xmlSchemaFacetPtr facet,
57
+ xmlSchemaWhitespaceValueType fws,
58
+ xmlSchemaValType valType,
59
+ const xmlChar *value,
60
+ xmlSchemaValPtr val,
61
+ xmlSchemaWhitespaceValueType ws);
62
+ XMLPUBFUN void
63
+ xmlSchemaFreeValue (xmlSchemaValPtr val);
64
+ XMLPUBFUN xmlSchemaFacetPtr
65
+ xmlSchemaNewFacet (void);
66
+ XMLPUBFUN int
67
+ xmlSchemaCheckFacet (xmlSchemaFacetPtr facet,
68
+ xmlSchemaTypePtr typeDecl,
69
+ xmlSchemaParserCtxtPtr ctxt,
70
+ const xmlChar *name);
71
+ XMLPUBFUN void
72
+ xmlSchemaFreeFacet (xmlSchemaFacetPtr facet);
73
+ XMLPUBFUN int
74
+ xmlSchemaCompareValues (xmlSchemaValPtr x,
75
+ xmlSchemaValPtr y);
76
+ XMLPUBFUN xmlSchemaTypePtr
77
+ xmlSchemaGetBuiltInListSimpleTypeItemType (xmlSchemaTypePtr type);
78
+ XMLPUBFUN int
79
+ xmlSchemaValidateListSimpleTypeFacet (xmlSchemaFacetPtr facet,
80
+ const xmlChar *value,
81
+ unsigned long actualLen,
82
+ unsigned long *expectedLen);
83
+ XMLPUBFUN xmlSchemaTypePtr
84
+ xmlSchemaGetBuiltInType (xmlSchemaValType type);
85
+ XMLPUBFUN int
86
+ xmlSchemaIsBuiltInTypeFacet (xmlSchemaTypePtr type,
87
+ int facetType);
88
+ XMLPUBFUN xmlChar *
89
+ xmlSchemaCollapseString (const xmlChar *value);
90
+ XMLPUBFUN xmlChar *
91
+ xmlSchemaWhiteSpaceReplace (const xmlChar *value);
92
+ XMLPUBFUN unsigned long
93
+ xmlSchemaGetFacetValueAsULong (xmlSchemaFacetPtr facet);
94
+ XMLPUBFUN int
95
+ xmlSchemaValidateLengthFacet (xmlSchemaTypePtr type,
96
+ xmlSchemaFacetPtr facet,
97
+ const xmlChar *value,
98
+ xmlSchemaValPtr val,
99
+ unsigned long *length);
100
+ XMLPUBFUN int
101
+ xmlSchemaValidateLengthFacetWhtsp(xmlSchemaFacetPtr facet,
102
+ xmlSchemaValType valType,
103
+ const xmlChar *value,
104
+ xmlSchemaValPtr val,
105
+ unsigned long *length,
106
+ xmlSchemaWhitespaceValueType ws);
107
+ XMLPUBFUN int
108
+ xmlSchemaValPredefTypeNodeNoNorm(xmlSchemaTypePtr type,
109
+ const xmlChar *value,
110
+ xmlSchemaValPtr *val,
111
+ xmlNodePtr node);
112
+ XMLPUBFUN int
113
+ xmlSchemaGetCanonValue (xmlSchemaValPtr val,
114
+ const xmlChar **retValue);
115
+ XMLPUBFUN int
116
+ xmlSchemaGetCanonValueWhtsp (xmlSchemaValPtr val,
117
+ const xmlChar **retValue,
118
+ xmlSchemaWhitespaceValueType ws);
119
+ XMLPUBFUN int
120
+ xmlSchemaValueAppend (xmlSchemaValPtr prev,
121
+ xmlSchemaValPtr cur);
122
+ XMLPUBFUN xmlSchemaValPtr
123
+ xmlSchemaValueGetNext (xmlSchemaValPtr cur);
124
+ XMLPUBFUN const xmlChar *
125
+ xmlSchemaValueGetAsString (xmlSchemaValPtr val);
126
+ XMLPUBFUN int
127
+ xmlSchemaValueGetAsBoolean (xmlSchemaValPtr val);
128
+ XMLPUBFUN xmlSchemaValPtr
129
+ xmlSchemaNewStringValue (xmlSchemaValType type,
130
+ const xmlChar *value);
131
+ XMLPUBFUN xmlSchemaValPtr
132
+ xmlSchemaNewNOTATIONValue (const xmlChar *name,
133
+ const xmlChar *ns);
134
+ XMLPUBFUN xmlSchemaValPtr
135
+ xmlSchemaNewQNameValue (const xmlChar *namespaceName,
136
+ const xmlChar *localName);
137
+ XMLPUBFUN int
138
+ xmlSchemaCompareValuesWhtsp (xmlSchemaValPtr x,
139
+ xmlSchemaWhitespaceValueType xws,
140
+ xmlSchemaValPtr y,
141
+ xmlSchemaWhitespaceValueType yws);
142
+ XMLPUBFUN xmlSchemaValPtr
143
+ xmlSchemaCopyValue (xmlSchemaValPtr val);
144
+ XMLPUBFUN xmlSchemaValType
145
+ xmlSchemaGetValType (xmlSchemaValPtr val);
146
+
147
+ #ifdef __cplusplus
148
+ }
149
+ #endif
150
+
151
+ #endif /* LIBXML_SCHEMAS_ENABLED */
152
+ #endif /* __XML_SCHEMA_TYPES_H__ */
@@ -0,0 +1,140 @@
1
+ /*
2
+ * Summary: set of routines to process strings
3
+ * Description: type and interfaces needed for the internal string handling
4
+ * of the library, especially UTF8 processing.
5
+ *
6
+ * Copy: See Copyright for the status of this software.
7
+ *
8
+ * Author: Daniel Veillard
9
+ */
10
+
11
+ #ifndef __XML_STRING_H__
12
+ #define __XML_STRING_H__
13
+
14
+ #include <stdarg.h>
15
+ #include <libxml/xmlversion.h>
16
+
17
+ #ifdef __cplusplus
18
+ extern "C" {
19
+ #endif
20
+
21
+ /**
22
+ * xmlChar:
23
+ *
24
+ * This is a basic byte in an UTF-8 encoded string.
25
+ * It's unsigned allowing to pinpoint case where char * are assigned
26
+ * to xmlChar * (possibly making serialization back impossible).
27
+ */
28
+ typedef unsigned char xmlChar;
29
+
30
+ /**
31
+ * BAD_CAST:
32
+ *
33
+ * Macro to cast a string to an xmlChar * when one know its safe.
34
+ */
35
+ #define BAD_CAST (xmlChar *)
36
+
37
+ /*
38
+ * xmlChar handling
39
+ */
40
+ XMLPUBFUN xmlChar *
41
+ xmlStrdup (const xmlChar *cur);
42
+ XMLPUBFUN xmlChar *
43
+ xmlStrndup (const xmlChar *cur,
44
+ int len);
45
+ XMLPUBFUN xmlChar *
46
+ xmlCharStrndup (const char *cur,
47
+ int len);
48
+ XMLPUBFUN xmlChar *
49
+ xmlCharStrdup (const char *cur);
50
+ XMLPUBFUN xmlChar *
51
+ xmlStrsub (const xmlChar *str,
52
+ int start,
53
+ int len);
54
+ XMLPUBFUN const xmlChar *
55
+ xmlStrchr (const xmlChar *str,
56
+ xmlChar val);
57
+ XMLPUBFUN const xmlChar *
58
+ xmlStrstr (const xmlChar *str,
59
+ const xmlChar *val);
60
+ XMLPUBFUN const xmlChar *
61
+ xmlStrcasestr (const xmlChar *str,
62
+ const xmlChar *val);
63
+ XMLPUBFUN int
64
+ xmlStrcmp (const xmlChar *str1,
65
+ const xmlChar *str2);
66
+ XMLPUBFUN int
67
+ xmlStrncmp (const xmlChar *str1,
68
+ const xmlChar *str2,
69
+ int len);
70
+ XMLPUBFUN int
71
+ xmlStrcasecmp (const xmlChar *str1,
72
+ const xmlChar *str2);
73
+ XMLPUBFUN int
74
+ xmlStrncasecmp (const xmlChar *str1,
75
+ const xmlChar *str2,
76
+ int len);
77
+ XMLPUBFUN int
78
+ xmlStrEqual (const xmlChar *str1,
79
+ const xmlChar *str2);
80
+ XMLPUBFUN int
81
+ xmlStrQEqual (const xmlChar *pref,
82
+ const xmlChar *name,
83
+ const xmlChar *str);
84
+ XMLPUBFUN int
85
+ xmlStrlen (const xmlChar *str);
86
+ XMLPUBFUN xmlChar *
87
+ xmlStrcat (xmlChar *cur,
88
+ const xmlChar *add);
89
+ XMLPUBFUN xmlChar *
90
+ xmlStrncat (xmlChar *cur,
91
+ const xmlChar *add,
92
+ int len);
93
+ XMLPUBFUN xmlChar *
94
+ xmlStrncatNew (const xmlChar *str1,
95
+ const xmlChar *str2,
96
+ int len);
97
+ XMLPUBFUN int
98
+ xmlStrPrintf (xmlChar *buf,
99
+ int len,
100
+ const char *msg,
101
+ ...) LIBXML_ATTR_FORMAT(3,4);
102
+ XMLPUBFUN int
103
+ xmlStrVPrintf (xmlChar *buf,
104
+ int len,
105
+ const char *msg,
106
+ va_list ap) LIBXML_ATTR_FORMAT(3,0);
107
+
108
+ XMLPUBFUN int
109
+ xmlGetUTF8Char (const unsigned char *utf,
110
+ int *len);
111
+ XMLPUBFUN int
112
+ xmlCheckUTF8 (const unsigned char *utf);
113
+ XMLPUBFUN int
114
+ xmlUTF8Strsize (const xmlChar *utf,
115
+ int len);
116
+ XMLPUBFUN xmlChar *
117
+ xmlUTF8Strndup (const xmlChar *utf,
118
+ int len);
119
+ XMLPUBFUN const xmlChar *
120
+ xmlUTF8Strpos (const xmlChar *utf,
121
+ int pos);
122
+ XMLPUBFUN int
123
+ xmlUTF8Strloc (const xmlChar *utf,
124
+ const xmlChar *utfchar);
125
+ XMLPUBFUN xmlChar *
126
+ xmlUTF8Strsub (const xmlChar *utf,
127
+ int start,
128
+ int len);
129
+ XMLPUBFUN int
130
+ xmlUTF8Strlen (const xmlChar *utf);
131
+ XMLPUBFUN int
132
+ xmlUTF8Size (const xmlChar *utf);
133
+ XMLPUBFUN int
134
+ xmlUTF8Charcmp (const xmlChar *utf1,
135
+ const xmlChar *utf2);
136
+
137
+ #ifdef __cplusplus
138
+ }
139
+ #endif
140
+ #endif /* __XML_STRING_H__ */
@@ -0,0 +1,15 @@
1
+ /*
2
+ * Summary: Unicode character APIs
3
+ * Description: API for the Unicode character APIs
4
+ *
5
+ * Deprecated, don't use.
6
+ */
7
+
8
+ #ifndef __XML_UNICODE_H__
9
+ #define __XML_UNICODE_H__
10
+
11
+ #ifdef __GNUC__
12
+ #warning "libxml/xmlunicode.h is deprecated"
13
+ #endif
14
+
15
+ #endif /* __XML_UNICODE_H__ */