nokogiri-maven 1.5.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (278) hide show
  1. data/CHANGELOG.ja.rdoc +544 -0
  2. data/CHANGELOG.rdoc +532 -0
  3. data/Manifest.txt +283 -0
  4. data/README.ja.rdoc +106 -0
  5. data/README.rdoc +174 -0
  6. data/Rakefile +164 -0
  7. data/bin/nokogiri +53 -0
  8. data/ext/java/nokogiri/EncodingHandler.java +124 -0
  9. data/ext/java/nokogiri/HtmlDocument.java +119 -0
  10. data/ext/java/nokogiri/HtmlElementDescription.java +145 -0
  11. data/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
  12. data/ext/java/nokogiri/HtmlSaxParserContext.java +259 -0
  13. data/ext/java/nokogiri/NokogiriService.java +590 -0
  14. data/ext/java/nokogiri/XmlAttr.java +180 -0
  15. data/ext/java/nokogiri/XmlAttributeDecl.java +130 -0
  16. data/ext/java/nokogiri/XmlCdata.java +84 -0
  17. data/ext/java/nokogiri/XmlComment.java +86 -0
  18. data/ext/java/nokogiri/XmlDocument.java +519 -0
  19. data/ext/java/nokogiri/XmlDocumentFragment.java +223 -0
  20. data/ext/java/nokogiri/XmlDtd.java +469 -0
  21. data/ext/java/nokogiri/XmlElement.java +195 -0
  22. data/ext/java/nokogiri/XmlElementContent.java +382 -0
  23. data/ext/java/nokogiri/XmlElementDecl.java +152 -0
  24. data/ext/java/nokogiri/XmlEntityDecl.java +162 -0
  25. data/ext/java/nokogiri/XmlEntityReference.java +97 -0
  26. data/ext/java/nokogiri/XmlNamespace.java +183 -0
  27. data/ext/java/nokogiri/XmlNode.java +1378 -0
  28. data/ext/java/nokogiri/XmlNodeSet.java +267 -0
  29. data/ext/java/nokogiri/XmlProcessingInstruction.java +99 -0
  30. data/ext/java/nokogiri/XmlReader.java +408 -0
  31. data/ext/java/nokogiri/XmlRelaxng.java +144 -0
  32. data/ext/java/nokogiri/XmlSaxParserContext.java +367 -0
  33. data/ext/java/nokogiri/XmlSaxPushParser.java +184 -0
  34. data/ext/java/nokogiri/XmlSchema.java +324 -0
  35. data/ext/java/nokogiri/XmlSyntaxError.java +119 -0
  36. data/ext/java/nokogiri/XmlText.java +119 -0
  37. data/ext/java/nokogiri/XmlXpathContext.java +199 -0
  38. data/ext/java/nokogiri/XsltStylesheet.java +197 -0
  39. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +204 -0
  40. data/ext/java/nokogiri/internals/NokogiriDocumentCache.java +73 -0
  41. data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +86 -0
  42. data/ext/java/nokogiri/internals/NokogiriHandler.java +327 -0
  43. data/ext/java/nokogiri/internals/NokogiriHelpers.java +639 -0
  44. data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +167 -0
  45. data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +130 -0
  46. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +74 -0
  47. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
  48. data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +79 -0
  49. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +141 -0
  50. data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +73 -0
  51. data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +67 -0
  52. data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +86 -0
  53. data/ext/java/nokogiri/internals/ParserContext.java +276 -0
  54. data/ext/java/nokogiri/internals/PushInputStream.java +411 -0
  55. data/ext/java/nokogiri/internals/ReaderNode.java +531 -0
  56. data/ext/java/nokogiri/internals/SaveContextVisitor.java +567 -0
  57. data/ext/java/nokogiri/internals/SchemaErrorHandler.java +76 -0
  58. data/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
  59. data/ext/java/nokogiri/internals/XmlDomParser.java +76 -0
  60. data/ext/java/nokogiri/internals/XmlDomParserContext.java +244 -0
  61. data/ext/java/nokogiri/internals/XmlSaxParser.java +65 -0
  62. data/ext/java/nokogiri/internals/XsltExtensionFunction.java +72 -0
  63. data/ext/nokogiri/depend +358 -0
  64. data/ext/nokogiri/extconf.rb +124 -0
  65. data/ext/nokogiri/html_document.c +154 -0
  66. data/ext/nokogiri/html_document.h +10 -0
  67. data/ext/nokogiri/html_element_description.c +276 -0
  68. data/ext/nokogiri/html_element_description.h +10 -0
  69. data/ext/nokogiri/html_entity_lookup.c +32 -0
  70. data/ext/nokogiri/html_entity_lookup.h +8 -0
  71. data/ext/nokogiri/html_sax_parser_context.c +94 -0
  72. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  73. data/ext/nokogiri/nokogiri.c +115 -0
  74. data/ext/nokogiri/nokogiri.h +160 -0
  75. data/ext/nokogiri/xml_attr.c +94 -0
  76. data/ext/nokogiri/xml_attr.h +9 -0
  77. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  78. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  79. data/ext/nokogiri/xml_cdata.c +56 -0
  80. data/ext/nokogiri/xml_cdata.h +9 -0
  81. data/ext/nokogiri/xml_comment.c +54 -0
  82. data/ext/nokogiri/xml_comment.h +9 -0
  83. data/ext/nokogiri/xml_document.c +478 -0
  84. data/ext/nokogiri/xml_document.h +23 -0
  85. data/ext/nokogiri/xml_document_fragment.c +48 -0
  86. data/ext/nokogiri/xml_document_fragment.h +10 -0
  87. data/ext/nokogiri/xml_dtd.c +202 -0
  88. data/ext/nokogiri/xml_dtd.h +10 -0
  89. data/ext/nokogiri/xml_element_content.c +123 -0
  90. data/ext/nokogiri/xml_element_content.h +10 -0
  91. data/ext/nokogiri/xml_element_decl.c +69 -0
  92. data/ext/nokogiri/xml_element_decl.h +9 -0
  93. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  94. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  95. data/ext/nokogiri/xml_entity_decl.c +110 -0
  96. data/ext/nokogiri/xml_entity_decl.h +10 -0
  97. data/ext/nokogiri/xml_entity_reference.c +52 -0
  98. data/ext/nokogiri/xml_entity_reference.h +9 -0
  99. data/ext/nokogiri/xml_io.c +56 -0
  100. data/ext/nokogiri/xml_io.h +11 -0
  101. data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  102. data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  103. data/ext/nokogiri/xml_namespace.c +84 -0
  104. data/ext/nokogiri/xml_namespace.h +13 -0
  105. data/ext/nokogiri/xml_node.c +1385 -0
  106. data/ext/nokogiri/xml_node.h +13 -0
  107. data/ext/nokogiri/xml_node_set.c +418 -0
  108. data/ext/nokogiri/xml_node_set.h +9 -0
  109. data/ext/nokogiri/xml_processing_instruction.c +56 -0
  110. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  111. data/ext/nokogiri/xml_reader.c +684 -0
  112. data/ext/nokogiri/xml_reader.h +10 -0
  113. data/ext/nokogiri/xml_relax_ng.c +161 -0
  114. data/ext/nokogiri/xml_relax_ng.h +9 -0
  115. data/ext/nokogiri/xml_sax_parser.c +293 -0
  116. data/ext/nokogiri/xml_sax_parser.h +39 -0
  117. data/ext/nokogiri/xml_sax_parser_context.c +199 -0
  118. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  119. data/ext/nokogiri/xml_sax_push_parser.c +115 -0
  120. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  121. data/ext/nokogiri/xml_schema.c +205 -0
  122. data/ext/nokogiri/xml_schema.h +9 -0
  123. data/ext/nokogiri/xml_syntax_error.c +58 -0
  124. data/ext/nokogiri/xml_syntax_error.h +13 -0
  125. data/ext/nokogiri/xml_text.c +50 -0
  126. data/ext/nokogiri/xml_text.h +9 -0
  127. data/ext/nokogiri/xml_xpath_context.c +309 -0
  128. data/ext/nokogiri/xml_xpath_context.h +9 -0
  129. data/ext/nokogiri/xslt_stylesheet.c +264 -0
  130. data/ext/nokogiri/xslt_stylesheet.h +9 -0
  131. data/lib/nokogiri.rb +127 -0
  132. data/lib/nokogiri/css.rb +27 -0
  133. data/lib/nokogiri/css/node.rb +99 -0
  134. data/lib/nokogiri/css/parser.rb +677 -0
  135. data/lib/nokogiri/css/parser.y +237 -0
  136. data/lib/nokogiri/css/parser_extras.rb +91 -0
  137. data/lib/nokogiri/css/syntax_error.rb +7 -0
  138. data/lib/nokogiri/css/tokenizer.rb +152 -0
  139. data/lib/nokogiri/css/tokenizer.rex +55 -0
  140. data/lib/nokogiri/css/xpath_visitor.rb +171 -0
  141. data/lib/nokogiri/decorators/slop.rb +35 -0
  142. data/lib/nokogiri/html.rb +36 -0
  143. data/lib/nokogiri/html/builder.rb +35 -0
  144. data/lib/nokogiri/html/document.rb +213 -0
  145. data/lib/nokogiri/html/document_fragment.rb +41 -0
  146. data/lib/nokogiri/html/element_description.rb +23 -0
  147. data/lib/nokogiri/html/element_description_defaults.rb +671 -0
  148. data/lib/nokogiri/html/entity_lookup.rb +13 -0
  149. data/lib/nokogiri/html/sax/parser.rb +52 -0
  150. data/lib/nokogiri/html/sax/parser_context.rb +16 -0
  151. data/lib/nokogiri/nokogiri.jar +0 -0
  152. data/lib/nokogiri/syntax_error.rb +4 -0
  153. data/lib/nokogiri/version.rb +88 -0
  154. data/lib/nokogiri/xml.rb +67 -0
  155. data/lib/nokogiri/xml/attr.rb +14 -0
  156. data/lib/nokogiri/xml/attribute_decl.rb +18 -0
  157. data/lib/nokogiri/xml/builder.rb +425 -0
  158. data/lib/nokogiri/xml/cdata.rb +11 -0
  159. data/lib/nokogiri/xml/character_data.rb +7 -0
  160. data/lib/nokogiri/xml/document.rb +234 -0
  161. data/lib/nokogiri/xml/document_fragment.rb +98 -0
  162. data/lib/nokogiri/xml/dtd.rb +22 -0
  163. data/lib/nokogiri/xml/element_content.rb +36 -0
  164. data/lib/nokogiri/xml/element_decl.rb +13 -0
  165. data/lib/nokogiri/xml/entity_decl.rb +19 -0
  166. data/lib/nokogiri/xml/namespace.rb +13 -0
  167. data/lib/nokogiri/xml/node.rb +915 -0
  168. data/lib/nokogiri/xml/node/save_options.rb +61 -0
  169. data/lib/nokogiri/xml/node_set.rb +357 -0
  170. data/lib/nokogiri/xml/notation.rb +6 -0
  171. data/lib/nokogiri/xml/parse_options.rb +93 -0
  172. data/lib/nokogiri/xml/pp.rb +2 -0
  173. data/lib/nokogiri/xml/pp/character_data.rb +18 -0
  174. data/lib/nokogiri/xml/pp/node.rb +56 -0
  175. data/lib/nokogiri/xml/processing_instruction.rb +8 -0
  176. data/lib/nokogiri/xml/reader.rb +112 -0
  177. data/lib/nokogiri/xml/relax_ng.rb +32 -0
  178. data/lib/nokogiri/xml/sax.rb +4 -0
  179. data/lib/nokogiri/xml/sax/document.rb +164 -0
  180. data/lib/nokogiri/xml/sax/parser.rb +115 -0
  181. data/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  182. data/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  183. data/lib/nokogiri/xml/schema.rb +63 -0
  184. data/lib/nokogiri/xml/syntax_error.rb +47 -0
  185. data/lib/nokogiri/xml/text.rb +9 -0
  186. data/lib/nokogiri/xml/xpath.rb +10 -0
  187. data/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  188. data/lib/nokogiri/xml/xpath_context.rb +16 -0
  189. data/lib/nokogiri/xslt.rb +52 -0
  190. data/lib/nokogiri/xslt/stylesheet.rb +25 -0
  191. data/lib/xsd/xmlparser/nokogiri.rb +90 -0
  192. data/nokogiri_help_responses.md +40 -0
  193. data/tasks/cross_compile.rb +152 -0
  194. data/tasks/nokogiri.org.rb +18 -0
  195. data/tasks/test.rb +94 -0
  196. data/test/css/test_nthiness.rb +159 -0
  197. data/test/css/test_parser.rb +303 -0
  198. data/test/css/test_tokenizer.rb +198 -0
  199. data/test/css/test_xpath_visitor.rb +85 -0
  200. data/test/decorators/test_slop.rb +16 -0
  201. data/test/files/2ch.html +108 -0
  202. data/test/files/address_book.rlx +12 -0
  203. data/test/files/address_book.xml +10 -0
  204. data/test/files/bar/bar.xsd +4 -0
  205. data/test/files/dont_hurt_em_why.xml +422 -0
  206. data/test/files/encoding.html +82 -0
  207. data/test/files/encoding.xhtml +84 -0
  208. data/test/files/exslt.xml +8 -0
  209. data/test/files/exslt.xslt +35 -0
  210. data/test/files/foo/foo.xsd +4 -0
  211. data/test/files/metacharset.html +10 -0
  212. data/test/files/noencoding.html +47 -0
  213. data/test/files/po.xml +32 -0
  214. data/test/files/po.xsd +66 -0
  215. data/test/files/shift_jis.html +10 -0
  216. data/test/files/shift_jis.xml +5 -0
  217. data/test/files/snuggles.xml +3 -0
  218. data/test/files/staff.dtd +10 -0
  219. data/test/files/staff.xml +59 -0
  220. data/test/files/staff.xslt +32 -0
  221. data/test/files/tlm.html +850 -0
  222. data/test/files/valid_bar.xml +2 -0
  223. data/test/helper.rb +173 -0
  224. data/test/html/sax/test_parser.rb +136 -0
  225. data/test/html/sax/test_parser_context.rb +48 -0
  226. data/test/html/test_builder.rb +164 -0
  227. data/test/html/test_document.rb +472 -0
  228. data/test/html/test_document_encoding.rb +138 -0
  229. data/test/html/test_document_fragment.rb +255 -0
  230. data/test/html/test_element_description.rb +100 -0
  231. data/test/html/test_named_characters.rb +14 -0
  232. data/test/html/test_node.rb +190 -0
  233. data/test/html/test_node_encoding.rb +27 -0
  234. data/test/test_convert_xpath.rb +135 -0
  235. data/test/test_css_cache.rb +45 -0
  236. data/test/test_encoding_handler.rb +46 -0
  237. data/test/test_memory_leak.rb +72 -0
  238. data/test/test_nokogiri.rb +132 -0
  239. data/test/test_reader.rb +425 -0
  240. data/test/test_soap4r_sax.rb +52 -0
  241. data/test/test_xslt_transforms.rb +193 -0
  242. data/test/xml/node/test_save_options.rb +28 -0
  243. data/test/xml/node/test_subclass.rb +44 -0
  244. data/test/xml/sax/test_parser.rb +338 -0
  245. data/test/xml/sax/test_parser_context.rb +113 -0
  246. data/test/xml/sax/test_push_parser.rb +156 -0
  247. data/test/xml/test_attr.rb +65 -0
  248. data/test/xml/test_attribute_decl.rb +86 -0
  249. data/test/xml/test_builder.rb +227 -0
  250. data/test/xml/test_cdata.rb +50 -0
  251. data/test/xml/test_comment.rb +29 -0
  252. data/test/xml/test_document.rb +697 -0
  253. data/test/xml/test_document_encoding.rb +26 -0
  254. data/test/xml/test_document_fragment.rb +192 -0
  255. data/test/xml/test_dtd.rb +107 -0
  256. data/test/xml/test_dtd_encoding.rb +33 -0
  257. data/test/xml/test_element_content.rb +56 -0
  258. data/test/xml/test_element_decl.rb +73 -0
  259. data/test/xml/test_entity_decl.rb +122 -0
  260. data/test/xml/test_entity_reference.rb +21 -0
  261. data/test/xml/test_namespace.rb +70 -0
  262. data/test/xml/test_node.rb +917 -0
  263. data/test/xml/test_node_attributes.rb +34 -0
  264. data/test/xml/test_node_encoding.rb +107 -0
  265. data/test/xml/test_node_reparenting.rb +334 -0
  266. data/test/xml/test_node_set.rb +742 -0
  267. data/test/xml/test_parse_options.rb +52 -0
  268. data/test/xml/test_processing_instruction.rb +30 -0
  269. data/test/xml/test_reader_encoding.rb +126 -0
  270. data/test/xml/test_relax_ng.rb +60 -0
  271. data/test/xml/test_schema.rb +94 -0
  272. data/test/xml/test_syntax_error.rb +12 -0
  273. data/test/xml/test_text.rb +47 -0
  274. data/test/xml/test_unparented_node.rb +381 -0
  275. data/test/xml/test_xpath.rb +237 -0
  276. data/test/xslt/test_custom_functions.rb +94 -0
  277. data/test/xslt/test_exception_handling.rb +37 -0
  278. metadata +552 -0
@@ -0,0 +1,10 @@
1
+ #ifndef NOKOGIRI_XML_READER
2
+ #define NOKOGIRI_XML_READER
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_reader();
7
+
8
+ extern VALUE cNokogiriXmlReader;
9
+
10
+ #endif
@@ -0,0 +1,161 @@
1
+ #include <xml_relax_ng.h>
2
+
3
+ static void dealloc(xmlRelaxNGPtr schema)
4
+ {
5
+ NOKOGIRI_DEBUG_START(schema);
6
+ xmlRelaxNGFree(schema);
7
+ NOKOGIRI_DEBUG_END(schema);
8
+ }
9
+
10
+ /*
11
+ * call-seq:
12
+ * validate_document(document)
13
+ *
14
+ * Validate a Nokogiri::XML::Document against this RelaxNG schema.
15
+ */
16
+ static VALUE validate_document(VALUE self, VALUE document)
17
+ {
18
+ xmlDocPtr doc;
19
+ xmlRelaxNGPtr schema;
20
+ VALUE errors;
21
+ xmlRelaxNGValidCtxtPtr valid_ctxt;
22
+
23
+ Data_Get_Struct(self, xmlRelaxNG, schema);
24
+ Data_Get_Struct(document, xmlDoc, doc);
25
+
26
+ errors = rb_ary_new();
27
+
28
+ valid_ctxt = xmlRelaxNGNewValidCtxt(schema);
29
+
30
+ if(NULL == valid_ctxt) {
31
+ /* we have a problem */
32
+ rb_raise(rb_eRuntimeError, "Could not create a validation context");
33
+ }
34
+
35
+ #ifdef HAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS
36
+ xmlRelaxNGSetValidStructuredErrors(
37
+ valid_ctxt,
38
+ Nokogiri_error_array_pusher,
39
+ (void *)errors
40
+ );
41
+ #endif
42
+
43
+ xmlRelaxNGValidateDoc(valid_ctxt, doc);
44
+
45
+ xmlRelaxNGFreeValidCtxt(valid_ctxt);
46
+
47
+ return errors;
48
+ }
49
+
50
+ /*
51
+ * call-seq:
52
+ * read_memory(string)
53
+ *
54
+ * Create a new RelaxNG from the contents of +string+
55
+ */
56
+ static VALUE read_memory(VALUE klass, VALUE content)
57
+ {
58
+ xmlRelaxNGParserCtxtPtr ctx = xmlRelaxNGNewMemParserCtxt(
59
+ (const char *)StringValuePtr(content),
60
+ (int)RSTRING_LEN(content)
61
+ );
62
+ xmlRelaxNGPtr schema;
63
+ VALUE errors = rb_ary_new();
64
+ VALUE rb_schema;
65
+
66
+ xmlSetStructuredErrorFunc((void *)errors, Nokogiri_error_array_pusher);
67
+
68
+ #ifdef HAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS
69
+ xmlRelaxNGSetParserStructuredErrors(
70
+ ctx,
71
+ Nokogiri_error_array_pusher,
72
+ (void *)errors
73
+ );
74
+ #endif
75
+
76
+ schema = xmlRelaxNGParse(ctx);
77
+
78
+ xmlSetStructuredErrorFunc(NULL, NULL);
79
+ xmlRelaxNGFreeParserCtxt(ctx);
80
+
81
+ if(NULL == schema) {
82
+ xmlErrorPtr error = xmlGetLastError();
83
+ if(error)
84
+ Nokogiri_error_raise(NULL, error);
85
+ else
86
+ rb_raise(rb_eRuntimeError, "Could not parse document");
87
+
88
+ return Qnil;
89
+ }
90
+
91
+ rb_schema = Data_Wrap_Struct(klass, 0, dealloc, schema);
92
+ rb_iv_set(rb_schema, "@errors", errors);
93
+
94
+ return rb_schema;
95
+ }
96
+
97
+ /*
98
+ * call-seq:
99
+ * from_document(doc)
100
+ *
101
+ * Create a new RelaxNG schema from the Nokogiri::XML::Document +doc+
102
+ */
103
+ static VALUE from_document(VALUE klass, VALUE document)
104
+ {
105
+ xmlDocPtr doc;
106
+ xmlRelaxNGParserCtxtPtr ctx;
107
+ xmlRelaxNGPtr schema;
108
+ VALUE errors;
109
+ VALUE rb_schema;
110
+
111
+ Data_Get_Struct(document, xmlDoc, doc);
112
+
113
+ /* In case someone passes us a node. ugh. */
114
+ doc = doc->doc;
115
+
116
+ ctx = xmlRelaxNGNewDocParserCtxt(doc);
117
+
118
+ errors = rb_ary_new();
119
+ xmlSetStructuredErrorFunc((void *)errors, Nokogiri_error_array_pusher);
120
+
121
+ #ifdef HAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS
122
+ xmlRelaxNGSetParserStructuredErrors(
123
+ ctx,
124
+ Nokogiri_error_array_pusher,
125
+ (void *)errors
126
+ );
127
+ #endif
128
+
129
+ schema = xmlRelaxNGParse(ctx);
130
+
131
+ xmlSetStructuredErrorFunc(NULL, NULL);
132
+
133
+ if(NULL == schema) {
134
+ xmlErrorPtr error = xmlGetLastError();
135
+ if(error)
136
+ Nokogiri_error_raise(NULL, error);
137
+ else
138
+ rb_raise(rb_eRuntimeError, "Could not parse document");
139
+
140
+ return Qnil;
141
+ }
142
+
143
+ rb_schema = Data_Wrap_Struct(klass, 0, dealloc, schema);
144
+ rb_iv_set(rb_schema, "@errors", errors);
145
+
146
+ return rb_schema;
147
+ }
148
+
149
+ VALUE cNokogiriXmlRelaxNG;
150
+ void init_xml_relax_ng()
151
+ {
152
+ VALUE nokogiri = rb_define_module("Nokogiri");
153
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
154
+ VALUE klass = rb_define_class_under(xml, "RelaxNG", cNokogiriXmlSchema);
155
+
156
+ cNokogiriXmlRelaxNG = klass;
157
+
158
+ rb_define_singleton_method(klass, "read_memory", read_memory, 1);
159
+ rb_define_singleton_method(klass, "from_document", from_document, 1);
160
+ rb_define_private_method(klass, "validate_document", validate_document, 1);
161
+ }
@@ -0,0 +1,9 @@
1
+ #ifndef NOKOGIRI_XML_RELAX_NG
2
+ #define NOKOGIRI_XML_RELAX_NG
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_relax_ng();
7
+
8
+ extern VALUE cNokogiriXmlRelaxNG;
9
+ #endif
@@ -0,0 +1,293 @@
1
+ #include <xml_sax_parser.h>
2
+
3
+ int vasprintf (char **strp, const char *fmt, va_list ap);
4
+ void vasprintf_free (void *p);
5
+
6
+ static ID id_start_document, id_end_document, id_start_element, id_end_element;
7
+ static ID id_start_element_namespace, id_end_element_namespace;
8
+ static ID id_comment, id_characters, id_xmldecl, id_error, id_warning;
9
+ static ID id_cdata_block, id_cAttribute;
10
+
11
+ #define STRING_OR_NULL(str) \
12
+ (RTEST(str) ? StringValuePtr(str) : NULL)
13
+
14
+ static void start_document(void * ctx)
15
+ {
16
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
17
+ VALUE doc = rb_iv_get(self, "@document");
18
+
19
+ xmlParserCtxtPtr ctxt = NOKOGIRI_SAX_CTXT(ctx);
20
+
21
+ if(NULL != ctxt && ctxt->html != 1) {
22
+ if(ctxt->standalone != -1) { /* -1 means there was no declaration */
23
+ VALUE encoding = ctxt->encoding ?
24
+ NOKOGIRI_STR_NEW2(ctxt->encoding) :
25
+ Qnil;
26
+
27
+ VALUE version = ctxt->version ?
28
+ NOKOGIRI_STR_NEW2(ctxt->version) :
29
+ Qnil;
30
+
31
+ VALUE standalone = Qnil;
32
+
33
+ switch(ctxt->standalone)
34
+ {
35
+ case 0:
36
+ standalone = NOKOGIRI_STR_NEW2("no");
37
+ break;
38
+ case 1:
39
+ standalone = NOKOGIRI_STR_NEW2("yes");
40
+ break;
41
+ }
42
+
43
+ rb_funcall(doc, id_xmldecl, 3, version, encoding, standalone);
44
+ }
45
+ }
46
+
47
+ rb_funcall(doc, id_start_document, 0);
48
+ }
49
+
50
+ static void end_document(void * ctx)
51
+ {
52
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
53
+ VALUE doc = rb_iv_get(self, "@document");
54
+ rb_funcall(doc, id_end_document, 0);
55
+ }
56
+
57
+ static void start_element(void * ctx, const xmlChar *name, const xmlChar **atts)
58
+ {
59
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
60
+ VALUE doc = rb_iv_get(self, "@document");
61
+ VALUE attributes = rb_ary_new();
62
+ const xmlChar * attr;
63
+ int i = 0;
64
+ if(atts) {
65
+ while((attr = atts[i]) != NULL) {
66
+ const xmlChar * val = atts[i+1];
67
+ VALUE value = val != NULL ? NOKOGIRI_STR_NEW2(val) : Qnil;
68
+ rb_ary_push(attributes, rb_ary_new3(2, NOKOGIRI_STR_NEW2(attr), value));
69
+ i+=2;
70
+ }
71
+ }
72
+
73
+ rb_funcall( doc,
74
+ id_start_element,
75
+ 2,
76
+ NOKOGIRI_STR_NEW2(name),
77
+ attributes
78
+ );
79
+ }
80
+
81
+ static void end_element(void * ctx, const xmlChar *name)
82
+ {
83
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
84
+ VALUE doc = rb_iv_get(self, "@document");
85
+ rb_funcall(doc, id_end_element, 1, NOKOGIRI_STR_NEW2(name));
86
+ }
87
+
88
+ static VALUE attributes_as_list(
89
+ VALUE self,
90
+ int nb_attributes,
91
+ const xmlChar ** attributes)
92
+ {
93
+ VALUE list = rb_ary_new2((long)nb_attributes);
94
+
95
+ VALUE attr_klass = rb_const_get(cNokogiriXmlSaxParser, id_cAttribute);
96
+ if (attributes) {
97
+ /* Each attribute is an array of [localname, prefix, URI, value, end] */
98
+ int i;
99
+ for (i = 0; i < nb_attributes * 5; i += 5) {
100
+ VALUE argv[4], attribute;
101
+
102
+ argv[0] = RBSTR_OR_QNIL(attributes[i + 0]); /* localname */
103
+ argv[1] = RBSTR_OR_QNIL(attributes[i + 1]); /* prefix */
104
+ argv[2] = RBSTR_OR_QNIL(attributes[i + 2]); /* URI */
105
+
106
+ /* value */
107
+ argv[3] = NOKOGIRI_STR_NEW((const char*)attributes[i+3],
108
+ (attributes[i+4] - attributes[i+3]));
109
+
110
+ attribute = rb_class_new_instance(4, argv, attr_klass);
111
+ rb_ary_push(list, attribute);
112
+ }
113
+ }
114
+
115
+ return list;
116
+ }
117
+
118
+ static void
119
+ start_element_ns (
120
+ void * ctx,
121
+ const xmlChar * localname,
122
+ const xmlChar * prefix,
123
+ const xmlChar * uri,
124
+ int nb_namespaces,
125
+ const xmlChar ** namespaces,
126
+ int nb_attributes,
127
+ int nb_defaulted,
128
+ const xmlChar ** attributes)
129
+ {
130
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
131
+ VALUE doc = rb_iv_get(self, "@document");
132
+
133
+ VALUE attribute_list = attributes_as_list(self, nb_attributes, attributes);
134
+
135
+ VALUE ns_list = rb_ary_new2((long)nb_namespaces);
136
+
137
+ if (namespaces) {
138
+ int i;
139
+ for (i = 0; i < nb_namespaces * 2; i += 2)
140
+ {
141
+ rb_ary_push(ns_list,
142
+ rb_ary_new3((long)2,
143
+ RBSTR_OR_QNIL(namespaces[i + 0]),
144
+ RBSTR_OR_QNIL(namespaces[i + 1])
145
+ )
146
+ );
147
+ }
148
+ }
149
+
150
+ rb_funcall( doc,
151
+ id_start_element_namespace,
152
+ 5,
153
+ NOKOGIRI_STR_NEW2(localname),
154
+ attribute_list,
155
+ RBSTR_OR_QNIL(prefix),
156
+ RBSTR_OR_QNIL(uri),
157
+ ns_list
158
+ );
159
+ }
160
+
161
+ /**
162
+ * end_element_ns was borrowed heavily from libxml-ruby.
163
+ */
164
+ static void
165
+ end_element_ns (
166
+ void * ctx,
167
+ const xmlChar * localname,
168
+ const xmlChar * prefix,
169
+ const xmlChar * uri)
170
+ {
171
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
172
+ VALUE doc = rb_iv_get(self, "@document");
173
+
174
+ rb_funcall(doc, id_end_element_namespace, 3,
175
+ NOKOGIRI_STR_NEW2(localname),
176
+ RBSTR_OR_QNIL(prefix),
177
+ RBSTR_OR_QNIL(uri)
178
+ );
179
+ }
180
+
181
+ static void characters_func(void * ctx, const xmlChar * ch, int len)
182
+ {
183
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
184
+ VALUE doc = rb_iv_get(self, "@document");
185
+ VALUE str = NOKOGIRI_STR_NEW(ch, len);
186
+ rb_funcall(doc, id_characters, 1, str);
187
+ }
188
+
189
+ static void comment_func(void * ctx, const xmlChar * value)
190
+ {
191
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
192
+ VALUE doc = rb_iv_get(self, "@document");
193
+ VALUE str = NOKOGIRI_STR_NEW2(value);
194
+ rb_funcall(doc, id_comment, 1, str);
195
+ }
196
+
197
+ static void warning_func(void * ctx, const char *msg, ...)
198
+ {
199
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
200
+ VALUE doc = rb_iv_get(self, "@document");
201
+ char * message;
202
+ VALUE ruby_message;
203
+
204
+ va_list args;
205
+ va_start(args, msg);
206
+ vasprintf(&message, msg, args);
207
+ va_end(args);
208
+
209
+ ruby_message = NOKOGIRI_STR_NEW2(message);
210
+ vasprintf_free(message);
211
+ rb_funcall(doc, id_warning, 1, ruby_message);
212
+ }
213
+
214
+ static void error_func(void * ctx, const char *msg, ...)
215
+ {
216
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
217
+ VALUE doc = rb_iv_get(self, "@document");
218
+ char * message;
219
+ VALUE ruby_message;
220
+
221
+ va_list args;
222
+ va_start(args, msg);
223
+ vasprintf(&message, msg, args);
224
+ va_end(args);
225
+
226
+ ruby_message = NOKOGIRI_STR_NEW2(message);
227
+ vasprintf_free(message);
228
+ rb_funcall(doc, id_error, 1, ruby_message);
229
+ }
230
+
231
+ static void cdata_block(void * ctx, const xmlChar * value, int len)
232
+ {
233
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
234
+ VALUE doc = rb_iv_get(self, "@document");
235
+ VALUE string = NOKOGIRI_STR_NEW(value, len);
236
+ rb_funcall(doc, id_cdata_block, 1, string);
237
+ }
238
+
239
+ static void deallocate(xmlSAXHandlerPtr handler)
240
+ {
241
+ NOKOGIRI_DEBUG_START(handler);
242
+ free(handler);
243
+ NOKOGIRI_DEBUG_END(handler);
244
+ }
245
+
246
+ static VALUE allocate(VALUE klass)
247
+ {
248
+ xmlSAXHandlerPtr handler = calloc((size_t)1, sizeof(xmlSAXHandler));
249
+
250
+ xmlSetStructuredErrorFunc(NULL, NULL);
251
+
252
+ handler->startDocument = start_document;
253
+ handler->endDocument = end_document;
254
+ handler->startElement = start_element;
255
+ handler->endElement = end_element;
256
+ handler->startElementNs = start_element_ns;
257
+ handler->endElementNs = end_element_ns;
258
+ handler->characters = characters_func;
259
+ handler->comment = comment_func;
260
+ handler->warning = warning_func;
261
+ handler->error = error_func;
262
+ handler->cdataBlock = cdata_block;
263
+ handler->initialized = XML_SAX2_MAGIC;
264
+
265
+ return Data_Wrap_Struct(klass, NULL, deallocate, handler);
266
+ }
267
+
268
+ VALUE cNokogiriXmlSaxParser ;
269
+ void init_xml_sax_parser()
270
+ {
271
+ VALUE nokogiri = rb_define_module("Nokogiri");
272
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
273
+ VALUE sax = rb_define_module_under(xml, "SAX");
274
+ VALUE klass = rb_define_class_under(sax, "Parser", rb_cObject);
275
+
276
+ cNokogiriXmlSaxParser = klass;
277
+
278
+ rb_define_alloc_func(klass, allocate);
279
+
280
+ id_start_document = rb_intern("start_document");
281
+ id_end_document = rb_intern("end_document");
282
+ id_start_element = rb_intern("start_element");
283
+ id_end_element = rb_intern("end_element");
284
+ id_comment = rb_intern("comment");
285
+ id_characters = rb_intern("characters");
286
+ id_xmldecl = rb_intern("xmldecl");
287
+ id_error = rb_intern("error");
288
+ id_warning = rb_intern("warning");
289
+ id_cdata_block = rb_intern("cdata_block");
290
+ id_cAttribute = rb_intern("Attribute");
291
+ id_start_element_namespace = rb_intern("start_element_namespace");
292
+ id_end_element_namespace = rb_intern("end_element_namespace");
293
+ }