libxml-ruby 3.2.2-x64-mingw-ucrt

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 (205) hide show
  1. checksums.yaml +7 -0
  2. data/HISTORY +848 -0
  3. data/LICENSE +21 -0
  4. data/MANIFEST +166 -0
  5. data/README.rdoc +217 -0
  6. data/Rakefile +99 -0
  7. data/ext/libxml/extconf.rb +61 -0
  8. data/ext/libxml/libxml.c +80 -0
  9. data/ext/libxml/libxml_ruby.def +35 -0
  10. data/ext/libxml/ruby_libxml.h +67 -0
  11. data/ext/libxml/ruby_xml.c +933 -0
  12. data/ext/libxml/ruby_xml.h +10 -0
  13. data/ext/libxml/ruby_xml_attr.c +333 -0
  14. data/ext/libxml/ruby_xml_attr.h +12 -0
  15. data/ext/libxml/ruby_xml_attr_decl.c +153 -0
  16. data/ext/libxml/ruby_xml_attr_decl.h +11 -0
  17. data/ext/libxml/ruby_xml_attributes.c +275 -0
  18. data/ext/libxml/ruby_xml_attributes.h +15 -0
  19. data/ext/libxml/ruby_xml_cbg.c +85 -0
  20. data/ext/libxml/ruby_xml_document.c +1123 -0
  21. data/ext/libxml/ruby_xml_document.h +11 -0
  22. data/ext/libxml/ruby_xml_dtd.c +248 -0
  23. data/ext/libxml/ruby_xml_dtd.h +9 -0
  24. data/ext/libxml/ruby_xml_encoding.c +250 -0
  25. data/ext/libxml/ruby_xml_encoding.h +16 -0
  26. data/ext/libxml/ruby_xml_error.c +996 -0
  27. data/ext/libxml/ruby_xml_error.h +12 -0
  28. data/ext/libxml/ruby_xml_html_parser.c +89 -0
  29. data/ext/libxml/ruby_xml_html_parser.h +10 -0
  30. data/ext/libxml/ruby_xml_html_parser_context.c +337 -0
  31. data/ext/libxml/ruby_xml_html_parser_context.h +10 -0
  32. data/ext/libxml/ruby_xml_html_parser_options.c +46 -0
  33. data/ext/libxml/ruby_xml_html_parser_options.h +10 -0
  34. data/ext/libxml/ruby_xml_input_cbg.c +191 -0
  35. data/ext/libxml/ruby_xml_input_cbg.h +20 -0
  36. data/ext/libxml/ruby_xml_io.c +47 -0
  37. data/ext/libxml/ruby_xml_io.h +10 -0
  38. data/ext/libxml/ruby_xml_namespace.c +153 -0
  39. data/ext/libxml/ruby_xml_namespace.h +10 -0
  40. data/ext/libxml/ruby_xml_namespaces.c +293 -0
  41. data/ext/libxml/ruby_xml_namespaces.h +9 -0
  42. data/ext/libxml/ruby_xml_node.c +1402 -0
  43. data/ext/libxml/ruby_xml_node.h +13 -0
  44. data/ext/libxml/ruby_xml_parser.c +91 -0
  45. data/ext/libxml/ruby_xml_parser.h +12 -0
  46. data/ext/libxml/ruby_xml_parser_context.c +999 -0
  47. data/ext/libxml/ruby_xml_parser_context.h +10 -0
  48. data/ext/libxml/ruby_xml_parser_options.c +66 -0
  49. data/ext/libxml/ruby_xml_parser_options.h +12 -0
  50. data/ext/libxml/ruby_xml_reader.c +1239 -0
  51. data/ext/libxml/ruby_xml_reader.h +17 -0
  52. data/ext/libxml/ruby_xml_relaxng.c +110 -0
  53. data/ext/libxml/ruby_xml_relaxng.h +10 -0
  54. data/ext/libxml/ruby_xml_sax2_handler.c +326 -0
  55. data/ext/libxml/ruby_xml_sax2_handler.h +10 -0
  56. data/ext/libxml/ruby_xml_sax_parser.c +116 -0
  57. data/ext/libxml/ruby_xml_sax_parser.h +10 -0
  58. data/ext/libxml/ruby_xml_schema.c +278 -0
  59. data/ext/libxml/ruby_xml_schema.h +809 -0
  60. data/ext/libxml/ruby_xml_schema_attribute.c +109 -0
  61. data/ext/libxml/ruby_xml_schema_attribute.h +15 -0
  62. data/ext/libxml/ruby_xml_schema_element.c +95 -0
  63. data/ext/libxml/ruby_xml_schema_element.h +14 -0
  64. data/ext/libxml/ruby_xml_schema_facet.c +52 -0
  65. data/ext/libxml/ruby_xml_schema_facet.h +13 -0
  66. data/ext/libxml/ruby_xml_schema_type.c +232 -0
  67. data/ext/libxml/ruby_xml_schema_type.h +9 -0
  68. data/ext/libxml/ruby_xml_version.h +9 -0
  69. data/ext/libxml/ruby_xml_writer.c +1133 -0
  70. data/ext/libxml/ruby_xml_writer.h +10 -0
  71. data/ext/libxml/ruby_xml_xinclude.c +16 -0
  72. data/ext/libxml/ruby_xml_xinclude.h +11 -0
  73. data/ext/libxml/ruby_xml_xpath.c +194 -0
  74. data/ext/libxml/ruby_xml_xpath.h +13 -0
  75. data/ext/libxml/ruby_xml_xpath_context.c +360 -0
  76. data/ext/libxml/ruby_xml_xpath_context.h +9 -0
  77. data/ext/libxml/ruby_xml_xpath_expression.c +81 -0
  78. data/ext/libxml/ruby_xml_xpath_expression.h +10 -0
  79. data/ext/libxml/ruby_xml_xpath_object.c +338 -0
  80. data/ext/libxml/ruby_xml_xpath_object.h +17 -0
  81. data/ext/libxml/ruby_xml_xpointer.c +99 -0
  82. data/ext/libxml/ruby_xml_xpointer.h +11 -0
  83. data/ext/vc/libxml_ruby.sln +28 -0
  84. data/lib/3.1/libxml_ruby.so +0 -0
  85. data/lib/libxml/attr.rb +123 -0
  86. data/lib/libxml/attr_decl.rb +80 -0
  87. data/lib/libxml/attributes.rb +14 -0
  88. data/lib/libxml/document.rb +194 -0
  89. data/lib/libxml/error.rb +95 -0
  90. data/lib/libxml/hpricot.rb +78 -0
  91. data/lib/libxml/html_parser.rb +96 -0
  92. data/lib/libxml/namespace.rb +62 -0
  93. data/lib/libxml/namespaces.rb +38 -0
  94. data/lib/libxml/node.rb +323 -0
  95. data/lib/libxml/parser.rb +101 -0
  96. data/lib/libxml/sax_callbacks.rb +180 -0
  97. data/lib/libxml/sax_parser.rb +41 -0
  98. data/lib/libxml/schema/attribute.rb +19 -0
  99. data/lib/libxml/schema/element.rb +19 -0
  100. data/lib/libxml/schema/type.rb +21 -0
  101. data/lib/libxml/schema.rb +48 -0
  102. data/lib/libxml/tree.rb +29 -0
  103. data/lib/libxml-ruby.rb +30 -0
  104. data/lib/libxml.rb +5 -0
  105. data/lib/xml/libxml.rb +10 -0
  106. data/lib/xml.rb +14 -0
  107. data/libxml-ruby.gemspec +48 -0
  108. data/script/benchmark/depixelate +634 -0
  109. data/script/benchmark/hamlet.xml +9055 -0
  110. data/script/benchmark/parsecount +170 -0
  111. data/script/benchmark/sock_entries.xml +507 -0
  112. data/script/benchmark/throughput +41 -0
  113. data/script/test +6 -0
  114. data/setup.rb +1584 -0
  115. data/test/c14n/given/doc.dtd +1 -0
  116. data/test/c14n/given/example-1.xml +14 -0
  117. data/test/c14n/given/example-2.xml +11 -0
  118. data/test/c14n/given/example-3.xml +18 -0
  119. data/test/c14n/given/example-4.xml +9 -0
  120. data/test/c14n/given/example-5.xml +12 -0
  121. data/test/c14n/given/example-6.xml +2 -0
  122. data/test/c14n/given/example-7.xml +11 -0
  123. data/test/c14n/given/example-8.xml +11 -0
  124. data/test/c14n/given/example-8.xpath +10 -0
  125. data/test/c14n/given/world.txt +1 -0
  126. data/test/c14n/result/1-1-without-comments/example-1 +4 -0
  127. data/test/c14n/result/1-1-without-comments/example-2 +11 -0
  128. data/test/c14n/result/1-1-without-comments/example-3 +14 -0
  129. data/test/c14n/result/1-1-without-comments/example-4 +9 -0
  130. data/test/c14n/result/1-1-without-comments/example-5 +3 -0
  131. data/test/c14n/result/1-1-without-comments/example-6 +1 -0
  132. data/test/c14n/result/1-1-without-comments/example-7 +1 -0
  133. data/test/c14n/result/1-1-without-comments/example-8 +1 -0
  134. data/test/c14n/result/with-comments/example-1 +6 -0
  135. data/test/c14n/result/with-comments/example-2 +11 -0
  136. data/test/c14n/result/with-comments/example-3 +14 -0
  137. data/test/c14n/result/with-comments/example-4 +9 -0
  138. data/test/c14n/result/with-comments/example-5 +4 -0
  139. data/test/c14n/result/with-comments/example-6 +1 -0
  140. data/test/c14n/result/with-comments/example-7 +1 -0
  141. data/test/c14n/result/without-comments/example-1 +4 -0
  142. data/test/c14n/result/without-comments/example-2 +11 -0
  143. data/test/c14n/result/without-comments/example-3 +14 -0
  144. data/test/c14n/result/without-comments/example-4 +9 -0
  145. data/test/c14n/result/without-comments/example-5 +3 -0
  146. data/test/c14n/result/without-comments/example-6 +1 -0
  147. data/test/c14n/result/without-comments/example-7 +1 -0
  148. data/test/model/atom.xml +13 -0
  149. data/test/model/bands.iso-8859-1.xml +5 -0
  150. data/test/model/bands.utf-8.xml +5 -0
  151. data/test/model/bands.xml +5 -0
  152. data/test/model/books.xml +154 -0
  153. data/test/model/cwm_1_0.xml +11336 -0
  154. data/test/model/merge_bug_data.xml +58 -0
  155. data/test/model/ruby-lang.html +238 -0
  156. data/test/model/rubynet.xml +79 -0
  157. data/test/model/rubynet_project +1 -0
  158. data/test/model/shiporder.rnc +28 -0
  159. data/test/model/shiporder.rng +86 -0
  160. data/test/model/shiporder.xml +23 -0
  161. data/test/model/shiporder.xsd +40 -0
  162. data/test/model/soap.xml +27 -0
  163. data/test/model/xinclude.xml +5 -0
  164. data/test/test_attr.rb +181 -0
  165. data/test/test_attr_decl.rb +132 -0
  166. data/test/test_attributes.rb +136 -0
  167. data/test/test_canonicalize.rb +120 -0
  168. data/test/test_deprecated_require.rb +12 -0
  169. data/test/test_document.rb +132 -0
  170. data/test/test_document_write.rb +146 -0
  171. data/test/test_dtd.rb +129 -0
  172. data/test/test_encoding.rb +129 -0
  173. data/test/test_encoding_sax.rb +115 -0
  174. data/test/test_error.rb +178 -0
  175. data/test/test_helper.rb +9 -0
  176. data/test/test_html_parser.rb +162 -0
  177. data/test/test_html_parser_context.rb +23 -0
  178. data/test/test_namespace.rb +60 -0
  179. data/test/test_namespaces.rb +200 -0
  180. data/test/test_node.rb +237 -0
  181. data/test/test_node_cdata.rb +50 -0
  182. data/test/test_node_comment.rb +32 -0
  183. data/test/test_node_copy.rb +40 -0
  184. data/test/test_node_edit.rb +158 -0
  185. data/test/test_node_pi.rb +37 -0
  186. data/test/test_node_text.rb +69 -0
  187. data/test/test_node_write.rb +97 -0
  188. data/test/test_node_xlink.rb +28 -0
  189. data/test/test_parser.rb +324 -0
  190. data/test/test_parser_context.rb +198 -0
  191. data/test/test_properties.rb +38 -0
  192. data/test/test_reader.rb +364 -0
  193. data/test/test_relaxng.rb +53 -0
  194. data/test/test_sax_parser.rb +326 -0
  195. data/test/test_schema.rb +168 -0
  196. data/test/test_suite.rb +48 -0
  197. data/test/test_traversal.rb +152 -0
  198. data/test/test_writer.rb +468 -0
  199. data/test/test_xinclude.rb +20 -0
  200. data/test/test_xml.rb +263 -0
  201. data/test/test_xpath.rb +244 -0
  202. data/test/test_xpath_context.rb +88 -0
  203. data/test/test_xpath_expression.rb +37 -0
  204. data/test/test_xpointer.rb +72 -0
  205. metadata +325 -0
@@ -0,0 +1,278 @@
1
+ #include "ruby_libxml.h"
2
+ #define LIBXML_OUTPUT_ENABLED
3
+ #define DUMP_CONTENT_MODEL
4
+ #include "ruby_xml_schema.h"
5
+
6
+ #include "ruby_xml_schema_type.h"
7
+ #include "ruby_xml_schema_element.h"
8
+ #include "ruby_xml_schema_attribute.h"
9
+ #include "ruby_xml_schema_facet.h"
10
+
11
+ /*
12
+ * Document-class: LibXML::XML::Schema
13
+ *
14
+ * The XML::Schema class is used to prepare XML Schemas for validation of xml
15
+ * documents.
16
+ *
17
+ * Schemas can be created from XML documents, strinings or URIs using the
18
+ * corresponding methods (new for URIs).
19
+ *
20
+ * Once a schema is prepared, an XML document can be validated by the
21
+ * XML::Document#validate_schema method providing the XML::Schema object
22
+ * as parameter. The method return true if the document validates, false
23
+ * otherwise.
24
+ *
25
+ * Basic usage:
26
+ *
27
+ * # parse schema as xml document
28
+ * schema_document = XML::Document.file('schema.rng')
29
+ *
30
+ * # prepare schema for validation
31
+ * schema = XML::Schema.document(schema_document)
32
+ *
33
+ * # parse xml document to be validated
34
+ * instance = XML::Document.file('instance.xml')
35
+ *
36
+ * # validate
37
+ * instance.validate_schema(schema)
38
+ */
39
+
40
+ VALUE cXMLSchema;
41
+
42
+ static void rxml_schema_free(xmlSchemaPtr xschema)
43
+ {
44
+ xmlSchemaFree(xschema);
45
+ }
46
+
47
+ VALUE rxml_wrap_schema(xmlSchemaPtr xschema)
48
+ {
49
+ return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
50
+ }
51
+
52
+
53
+ /*
54
+ * call-seq:
55
+ * XML::Schema.initialize(schema_uri) -> schema
56
+ *
57
+ * Create a new schema from the specified URI.
58
+ */
59
+ static VALUE rxml_schema_init_from_uri(VALUE class, VALUE uri)
60
+ {
61
+ xmlSchemaParserCtxtPtr xparser;
62
+ xmlSchemaPtr xschema;
63
+
64
+ Check_Type(uri, T_STRING);
65
+
66
+ xparser = xmlSchemaNewParserCtxt(StringValuePtr(uri));
67
+ xschema = xmlSchemaParse(xparser);
68
+ xmlSchemaFreeParserCtxt(xparser);
69
+
70
+ return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
71
+ }
72
+
73
+ /*
74
+ * call-seq:
75
+ * XML::Schema.document(document) -> schema
76
+ *
77
+ * Create a new schema from the specified document.
78
+ */
79
+ static VALUE rxml_schema_init_from_document(VALUE class, VALUE document)
80
+ {
81
+ xmlDocPtr xdoc;
82
+ xmlSchemaPtr xschema;
83
+ xmlSchemaParserCtxtPtr xparser;
84
+
85
+ Data_Get_Struct(document, xmlDoc, xdoc);
86
+
87
+ xparser = xmlSchemaNewDocParserCtxt(xdoc);
88
+ xschema = xmlSchemaParse(xparser);
89
+ xmlSchemaFreeParserCtxt(xparser);
90
+
91
+ if (xschema == NULL)
92
+ return Qnil;
93
+
94
+ return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
95
+ }
96
+
97
+ /*
98
+ * call-seq:
99
+ * XML::Schema.from_string("schema_data") -> "value"
100
+ *
101
+ * Create a new schema using the specified string.
102
+ */
103
+ static VALUE rxml_schema_init_from_string(VALUE self, VALUE schema_str)
104
+ {
105
+ xmlSchemaParserCtxtPtr xparser;
106
+ xmlSchemaPtr xschema;
107
+
108
+ Check_Type(schema_str, T_STRING);
109
+
110
+ xparser = xmlSchemaNewMemParserCtxt(StringValuePtr(schema_str), (int)strlen(StringValuePtr(schema_str)));
111
+ xschema = xmlSchemaParse(xparser);
112
+ xmlSchemaFreeParserCtxt(xparser);
113
+
114
+ return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
115
+ }
116
+
117
+
118
+ static VALUE rxml_schema_target_namespace(VALUE self)
119
+ {
120
+ xmlSchemaPtr xschema;
121
+
122
+ Data_Get_Struct(self, xmlSchema, xschema);
123
+
124
+ QNIL_OR_STRING(xschema->targetNamespace)
125
+ }
126
+
127
+ static VALUE rxml_schema_name(VALUE self)
128
+ {
129
+ xmlSchemaPtr xschema;
130
+
131
+ Data_Get_Struct(self, xmlSchema, xschema);
132
+
133
+ QNIL_OR_STRING(xschema->name)
134
+ }
135
+
136
+ static VALUE rxml_schema_version(VALUE self)
137
+ {
138
+ xmlSchemaPtr xschema;
139
+
140
+ Data_Get_Struct(self, xmlSchema, xschema);
141
+
142
+ QNIL_OR_STRING(xschema->version)
143
+ }
144
+
145
+ static VALUE rxml_schema_id(VALUE self)
146
+ {
147
+ xmlSchemaPtr xschema;
148
+
149
+ Data_Get_Struct(self, xmlSchema, xschema);
150
+
151
+ QNIL_OR_STRING(xschema->id)
152
+ }
153
+
154
+ static VALUE rxml_schema_document(VALUE self)
155
+ {
156
+ xmlSchemaPtr xschema;
157
+
158
+ Data_Get_Struct(self, xmlSchema, xschema);
159
+
160
+ return rxml_node_wrap(xmlDocGetRootElement(xschema->doc));
161
+ }
162
+
163
+ static void scan_namespaces(xmlSchemaImportPtr ximport, VALUE array, xmlChar *nsname)
164
+ {
165
+ xmlNodePtr xnode;
166
+ xmlNsPtr xns;
167
+
168
+ if (ximport->doc)
169
+ {
170
+ xnode = xmlDocGetRootElement(ximport->doc);
171
+ xns = xnode->nsDef;
172
+
173
+ while (xns)
174
+ {
175
+ VALUE namespace = rxml_namespace_wrap(xns);
176
+ rb_ary_push(array, namespace);
177
+ xns = xns->next;
178
+ }
179
+ }
180
+ }
181
+
182
+ static VALUE rxml_schema_namespaces(VALUE self)
183
+ {
184
+ VALUE result;
185
+ xmlSchemaPtr xschema;
186
+
187
+ Data_Get_Struct(self, xmlSchema, xschema);
188
+
189
+ result = rb_ary_new();
190
+ xmlHashScan(xschema->schemasImports, (xmlHashScanner)scan_namespaces, (void *)result);
191
+
192
+ return result;
193
+ }
194
+
195
+ static void scan_element(xmlSchemaElementPtr xelement, VALUE hash, xmlChar *name)
196
+ {
197
+ VALUE element = rxml_wrap_schema_element(xelement);
198
+ rb_hash_aset(hash, rb_str_new2((const char*)name), element);
199
+ }
200
+
201
+ static VALUE rxml_schema_elements(VALUE self)
202
+ {
203
+ VALUE result = rb_hash_new();
204
+ xmlSchemaPtr xschema;
205
+
206
+ Data_Get_Struct(self, xmlSchema, xschema);
207
+ xmlHashScan(xschema->elemDecl, (xmlHashScanner)scan_element, (void *)result);
208
+
209
+ return result;
210
+ }
211
+
212
+ static void scan_type(xmlSchemaTypePtr xtype, VALUE hash, xmlChar *name)
213
+ {
214
+ VALUE type = rxml_wrap_schema_type(xtype);
215
+ rb_hash_aset(hash, rb_str_new2((const char*)name), type);
216
+ }
217
+
218
+ static VALUE rxml_schema_types(VALUE self)
219
+ {
220
+ VALUE result = rb_hash_new();
221
+ xmlSchemaPtr xschema;
222
+
223
+ Data_Get_Struct(self, xmlSchema, xschema);
224
+
225
+ if (xschema != NULL && xschema->typeDecl != NULL)
226
+ {
227
+ xmlHashScan(xschema->typeDecl, (xmlHashScanner)scan_type, (void *)result);
228
+ }
229
+
230
+ return result;
231
+ }
232
+
233
+ static void collect_imported_types(xmlSchemaImportPtr import, VALUE result)
234
+ {
235
+ if (import->imported && import->schema)
236
+ {
237
+ xmlHashScan(import->schema->typeDecl, (xmlHashScanner)scan_type, (void *)result);
238
+ }
239
+ }
240
+
241
+ static VALUE rxml_schema_imported_types(VALUE self)
242
+ {
243
+ xmlSchemaPtr xschema;
244
+ VALUE result = rb_hash_new();
245
+
246
+ Data_Get_Struct(self, xmlSchema, xschema);
247
+
248
+ if (xschema)
249
+ {
250
+ xmlHashScan(xschema->schemasImports, (xmlHashScanner)collect_imported_types, (void *)result);
251
+ }
252
+
253
+ return result;
254
+ }
255
+
256
+ void rxml_init_schema(void)
257
+ {
258
+ cXMLSchema = rb_define_class_under(mXML, "Schema", rb_cObject);
259
+ rb_define_singleton_method(cXMLSchema, "new", rxml_schema_init_from_uri, 1);
260
+ rb_define_singleton_method(cXMLSchema, "from_string", rxml_schema_init_from_string, 1);
261
+ rb_define_singleton_method(cXMLSchema, "document", rxml_schema_init_from_document, 1);
262
+
263
+ rb_define_method(cXMLSchema, "target_namespace", rxml_schema_target_namespace, 0);
264
+ rb_define_method(cXMLSchema, "name", rxml_schema_name, 0);
265
+ rb_define_method(cXMLSchema, "id", rxml_schema_id, 0);
266
+ rb_define_method(cXMLSchema, "version", rxml_schema_version, 0);
267
+ rb_define_method(cXMLSchema, "document", rxml_schema_document, 0);
268
+
269
+ rb_define_method(cXMLSchema, "elements", rxml_schema_elements, 0);
270
+ rb_define_method(cXMLSchema, "imported_types", rxml_schema_imported_types, 0);
271
+ rb_define_method(cXMLSchema, "namespaces", rxml_schema_namespaces, 0);
272
+ rb_define_method(cXMLSchema, "types", rxml_schema_types, 0);
273
+
274
+ rxml_init_schema_facet();
275
+ rxml_init_schema_element();
276
+ rxml_init_schema_attribute();
277
+ rxml_init_schema_type();
278
+ }