nokogiri 1.11.0.rc1-x86-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (145) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-DEPENDENCIES.md +1614 -0
  3. data/LICENSE.md +9 -0
  4. data/README.md +200 -0
  5. data/bin/nokogiri +118 -0
  6. data/dependencies.yml +74 -0
  7. data/ext/nokogiri/depend +358 -0
  8. data/ext/nokogiri/extconf.rb +695 -0
  9. data/ext/nokogiri/html_document.c +170 -0
  10. data/ext/nokogiri/html_document.h +10 -0
  11. data/ext/nokogiri/html_element_description.c +279 -0
  12. data/ext/nokogiri/html_element_description.h +10 -0
  13. data/ext/nokogiri/html_entity_lookup.c +32 -0
  14. data/ext/nokogiri/html_entity_lookup.h +8 -0
  15. data/ext/nokogiri/html_sax_parser_context.c +116 -0
  16. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  17. data/ext/nokogiri/html_sax_push_parser.c +87 -0
  18. data/ext/nokogiri/html_sax_push_parser.h +9 -0
  19. data/ext/nokogiri/nokogiri.c +147 -0
  20. data/ext/nokogiri/nokogiri.h +122 -0
  21. data/ext/nokogiri/xml_attr.c +103 -0
  22. data/ext/nokogiri/xml_attr.h +9 -0
  23. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  24. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  25. data/ext/nokogiri/xml_cdata.c +62 -0
  26. data/ext/nokogiri/xml_cdata.h +9 -0
  27. data/ext/nokogiri/xml_comment.c +69 -0
  28. data/ext/nokogiri/xml_comment.h +9 -0
  29. data/ext/nokogiri/xml_document.c +617 -0
  30. data/ext/nokogiri/xml_document.h +23 -0
  31. data/ext/nokogiri/xml_document_fragment.c +48 -0
  32. data/ext/nokogiri/xml_document_fragment.h +10 -0
  33. data/ext/nokogiri/xml_dtd.c +202 -0
  34. data/ext/nokogiri/xml_dtd.h +10 -0
  35. data/ext/nokogiri/xml_element_content.c +123 -0
  36. data/ext/nokogiri/xml_element_content.h +10 -0
  37. data/ext/nokogiri/xml_element_decl.c +69 -0
  38. data/ext/nokogiri/xml_element_decl.h +9 -0
  39. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  40. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  41. data/ext/nokogiri/xml_entity_decl.c +110 -0
  42. data/ext/nokogiri/xml_entity_decl.h +10 -0
  43. data/ext/nokogiri/xml_entity_reference.c +52 -0
  44. data/ext/nokogiri/xml_entity_reference.h +9 -0
  45. data/ext/nokogiri/xml_io.c +61 -0
  46. data/ext/nokogiri/xml_io.h +11 -0
  47. data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  48. data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  49. data/ext/nokogiri/xml_namespace.c +111 -0
  50. data/ext/nokogiri/xml_namespace.h +14 -0
  51. data/ext/nokogiri/xml_node.c +1773 -0
  52. data/ext/nokogiri/xml_node.h +13 -0
  53. data/ext/nokogiri/xml_node_set.c +486 -0
  54. data/ext/nokogiri/xml_node_set.h +12 -0
  55. data/ext/nokogiri/xml_processing_instruction.c +56 -0
  56. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  57. data/ext/nokogiri/xml_reader.c +668 -0
  58. data/ext/nokogiri/xml_reader.h +10 -0
  59. data/ext/nokogiri/xml_relax_ng.c +161 -0
  60. data/ext/nokogiri/xml_relax_ng.h +9 -0
  61. data/ext/nokogiri/xml_sax_parser.c +310 -0
  62. data/ext/nokogiri/xml_sax_parser.h +39 -0
  63. data/ext/nokogiri/xml_sax_parser_context.c +262 -0
  64. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  65. data/ext/nokogiri/xml_sax_push_parser.c +159 -0
  66. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  67. data/ext/nokogiri/xml_schema.c +205 -0
  68. data/ext/nokogiri/xml_schema.h +9 -0
  69. data/ext/nokogiri/xml_syntax_error.c +64 -0
  70. data/ext/nokogiri/xml_syntax_error.h +13 -0
  71. data/ext/nokogiri/xml_text.c +52 -0
  72. data/ext/nokogiri/xml_text.h +9 -0
  73. data/ext/nokogiri/xml_xpath_context.c +298 -0
  74. data/ext/nokogiri/xml_xpath_context.h +10 -0
  75. data/ext/nokogiri/xslt_stylesheet.c +266 -0
  76. data/ext/nokogiri/xslt_stylesheet.h +14 -0
  77. data/lib/nokogiri.rb +127 -0
  78. data/lib/nokogiri/2.4/nokogiri.so +0 -0
  79. data/lib/nokogiri/2.5/nokogiri.so +0 -0
  80. data/lib/nokogiri/2.6/nokogiri.so +0 -0
  81. data/lib/nokogiri/2.7/nokogiri.so +0 -0
  82. data/lib/nokogiri/css.rb +28 -0
  83. data/lib/nokogiri/css/node.rb +53 -0
  84. data/lib/nokogiri/css/parser.rb +751 -0
  85. data/lib/nokogiri/css/parser.y +272 -0
  86. data/lib/nokogiri/css/parser_extras.rb +92 -0
  87. data/lib/nokogiri/css/syntax_error.rb +8 -0
  88. data/lib/nokogiri/css/tokenizer.rb +154 -0
  89. data/lib/nokogiri/css/tokenizer.rex +55 -0
  90. data/lib/nokogiri/css/xpath_visitor.rb +232 -0
  91. data/lib/nokogiri/decorators/slop.rb +43 -0
  92. data/lib/nokogiri/html.rb +38 -0
  93. data/lib/nokogiri/html/builder.rb +36 -0
  94. data/lib/nokogiri/html/document.rb +336 -0
  95. data/lib/nokogiri/html/document_fragment.rb +50 -0
  96. data/lib/nokogiri/html/element_description.rb +24 -0
  97. data/lib/nokogiri/html/element_description_defaults.rb +672 -0
  98. data/lib/nokogiri/html/entity_lookup.rb +14 -0
  99. data/lib/nokogiri/html/sax/parser.rb +63 -0
  100. data/lib/nokogiri/html/sax/parser_context.rb +17 -0
  101. data/lib/nokogiri/html/sax/push_parser.rb +37 -0
  102. data/lib/nokogiri/jruby/dependencies.rb +20 -0
  103. data/lib/nokogiri/syntax_error.rb +5 -0
  104. data/lib/nokogiri/version.rb +149 -0
  105. data/lib/nokogiri/xml.rb +76 -0
  106. data/lib/nokogiri/xml/attr.rb +15 -0
  107. data/lib/nokogiri/xml/attribute_decl.rb +19 -0
  108. data/lib/nokogiri/xml/builder.rb +447 -0
  109. data/lib/nokogiri/xml/cdata.rb +12 -0
  110. data/lib/nokogiri/xml/character_data.rb +8 -0
  111. data/lib/nokogiri/xml/document.rb +280 -0
  112. data/lib/nokogiri/xml/document_fragment.rb +161 -0
  113. data/lib/nokogiri/xml/dtd.rb +33 -0
  114. data/lib/nokogiri/xml/element_content.rb +37 -0
  115. data/lib/nokogiri/xml/element_decl.rb +14 -0
  116. data/lib/nokogiri/xml/entity_decl.rb +20 -0
  117. data/lib/nokogiri/xml/entity_reference.rb +19 -0
  118. data/lib/nokogiri/xml/namespace.rb +14 -0
  119. data/lib/nokogiri/xml/node.rb +916 -0
  120. data/lib/nokogiri/xml/node/save_options.rb +62 -0
  121. data/lib/nokogiri/xml/node_set.rb +372 -0
  122. data/lib/nokogiri/xml/notation.rb +7 -0
  123. data/lib/nokogiri/xml/parse_options.rb +121 -0
  124. data/lib/nokogiri/xml/pp.rb +3 -0
  125. data/lib/nokogiri/xml/pp/character_data.rb +19 -0
  126. data/lib/nokogiri/xml/pp/node.rb +57 -0
  127. data/lib/nokogiri/xml/processing_instruction.rb +9 -0
  128. data/lib/nokogiri/xml/reader.rb +116 -0
  129. data/lib/nokogiri/xml/relax_ng.rb +33 -0
  130. data/lib/nokogiri/xml/sax.rb +5 -0
  131. data/lib/nokogiri/xml/sax/document.rb +172 -0
  132. data/lib/nokogiri/xml/sax/parser.rb +123 -0
  133. data/lib/nokogiri/xml/sax/parser_context.rb +17 -0
  134. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  135. data/lib/nokogiri/xml/schema.rb +64 -0
  136. data/lib/nokogiri/xml/searchable.rb +231 -0
  137. data/lib/nokogiri/xml/syntax_error.rb +71 -0
  138. data/lib/nokogiri/xml/text.rb +10 -0
  139. data/lib/nokogiri/xml/xpath.rb +11 -0
  140. data/lib/nokogiri/xml/xpath/syntax_error.rb +12 -0
  141. data/lib/nokogiri/xml/xpath_context.rb +17 -0
  142. data/lib/nokogiri/xslt.rb +57 -0
  143. data/lib/nokogiri/xslt/stylesheet.rb +26 -0
  144. data/lib/xsd/xmlparser/nokogiri.rb +103 -0
  145. metadata +482 -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,310 @@
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
+ static ID id_processing_instruction;
11
+
12
+ static void start_document(void * ctx)
13
+ {
14
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
15
+ VALUE doc = rb_iv_get(self, "@document");
16
+
17
+ xmlParserCtxtPtr ctxt = NOKOGIRI_SAX_CTXT(ctx);
18
+
19
+ if(NULL != ctxt && ctxt->html != 1) {
20
+ if(ctxt->standalone != -1) { /* -1 means there was no declaration */
21
+ VALUE encoding = Qnil ;
22
+ VALUE standalone = Qnil;
23
+ VALUE version;
24
+ if (ctxt->encoding) {
25
+ encoding = NOKOGIRI_STR_NEW2(ctxt->encoding) ;
26
+ } else if (ctxt->input && ctxt->input->encoding) {
27
+ encoding = NOKOGIRI_STR_NEW2(ctxt->input->encoding) ;
28
+ }
29
+
30
+ version = ctxt->version ? NOKOGIRI_STR_NEW2(ctxt->version) : Qnil;
31
+
32
+ switch(ctxt->standalone)
33
+ {
34
+ case 0:
35
+ standalone = NOKOGIRI_STR_NEW2("no");
36
+ break;
37
+ case 1:
38
+ standalone = NOKOGIRI_STR_NEW2("yes");
39
+ break;
40
+ }
41
+
42
+ rb_funcall(doc, id_xmldecl, 3, version, encoding, standalone);
43
+ }
44
+ }
45
+
46
+ rb_funcall(doc, id_start_document, 0);
47
+ }
48
+
49
+ static void end_document(void * ctx)
50
+ {
51
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
52
+ VALUE doc = rb_iv_get(self, "@document");
53
+ rb_funcall(doc, id_end_document, 0);
54
+ }
55
+
56
+ static void start_element(void * ctx, const xmlChar *name, const xmlChar **atts)
57
+ {
58
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
59
+ VALUE doc = rb_iv_get(self, "@document");
60
+ VALUE attributes = rb_ary_new();
61
+ const xmlChar * attr;
62
+ int i = 0;
63
+ if(atts) {
64
+ while((attr = atts[i]) != NULL) {
65
+ const xmlChar * val = atts[i+1];
66
+ VALUE value = val != NULL ? NOKOGIRI_STR_NEW2(val) : Qnil;
67
+ rb_ary_push(attributes, rb_ary_new3(2, NOKOGIRI_STR_NEW2(attr), value));
68
+ i+=2;
69
+ }
70
+ }
71
+
72
+ rb_funcall( doc,
73
+ id_start_element,
74
+ 2,
75
+ NOKOGIRI_STR_NEW2(name),
76
+ attributes
77
+ );
78
+ }
79
+
80
+ static void end_element(void * ctx, const xmlChar *name)
81
+ {
82
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
83
+ VALUE doc = rb_iv_get(self, "@document");
84
+ rb_funcall(doc, id_end_element, 1, NOKOGIRI_STR_NEW2(name));
85
+ }
86
+
87
+ static VALUE attributes_as_list(
88
+ VALUE self,
89
+ int nb_attributes,
90
+ const xmlChar ** attributes)
91
+ {
92
+ VALUE list = rb_ary_new2((long)nb_attributes);
93
+
94
+ VALUE attr_klass = rb_const_get(cNokogiriXmlSaxParser, id_cAttribute);
95
+ if (attributes) {
96
+ /* Each attribute is an array of [localname, prefix, URI, value, end] */
97
+ int i;
98
+ for (i = 0; i < nb_attributes * 5; i += 5) {
99
+ VALUE argv[4], attribute;
100
+
101
+ argv[0] = RBSTR_OR_QNIL(attributes[i + 0]); /* localname */
102
+ argv[1] = RBSTR_OR_QNIL(attributes[i + 1]); /* prefix */
103
+ argv[2] = RBSTR_OR_QNIL(attributes[i + 2]); /* URI */
104
+
105
+ /* value */
106
+ argv[3] = NOKOGIRI_STR_NEW((const char*)attributes[i+3],
107
+ (attributes[i+4] - attributes[i+3]));
108
+
109
+ attribute = rb_class_new_instance(4, argv, attr_klass);
110
+ rb_ary_push(list, attribute);
111
+ }
112
+ }
113
+
114
+ return list;
115
+ }
116
+
117
+ static void
118
+ start_element_ns (
119
+ void * ctx,
120
+ const xmlChar * localname,
121
+ const xmlChar * prefix,
122
+ const xmlChar * uri,
123
+ int nb_namespaces,
124
+ const xmlChar ** namespaces,
125
+ int nb_attributes,
126
+ int nb_defaulted,
127
+ const xmlChar ** attributes)
128
+ {
129
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
130
+ VALUE doc = rb_iv_get(self, "@document");
131
+
132
+ VALUE attribute_list = attributes_as_list(self, nb_attributes, attributes);
133
+
134
+ VALUE ns_list = rb_ary_new2((long)nb_namespaces);
135
+
136
+ if (namespaces) {
137
+ int i;
138
+ for (i = 0; i < nb_namespaces * 2; i += 2)
139
+ {
140
+ rb_ary_push(ns_list,
141
+ rb_ary_new3((long)2,
142
+ RBSTR_OR_QNIL(namespaces[i + 0]),
143
+ RBSTR_OR_QNIL(namespaces[i + 1])
144
+ )
145
+ );
146
+ }
147
+ }
148
+
149
+ rb_funcall( doc,
150
+ id_start_element_namespace,
151
+ 5,
152
+ NOKOGIRI_STR_NEW2(localname),
153
+ attribute_list,
154
+ RBSTR_OR_QNIL(prefix),
155
+ RBSTR_OR_QNIL(uri),
156
+ ns_list
157
+ );
158
+ }
159
+
160
+ /**
161
+ * end_element_ns was borrowed heavily from libxml-ruby.
162
+ */
163
+ static void
164
+ end_element_ns (
165
+ void * ctx,
166
+ const xmlChar * localname,
167
+ const xmlChar * prefix,
168
+ const xmlChar * uri)
169
+ {
170
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
171
+ VALUE doc = rb_iv_get(self, "@document");
172
+
173
+ rb_funcall(doc, id_end_element_namespace, 3,
174
+ NOKOGIRI_STR_NEW2(localname),
175
+ RBSTR_OR_QNIL(prefix),
176
+ RBSTR_OR_QNIL(uri)
177
+ );
178
+ }
179
+
180
+ static void characters_func(void * ctx, const xmlChar * ch, int len)
181
+ {
182
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
183
+ VALUE doc = rb_iv_get(self, "@document");
184
+ VALUE str = NOKOGIRI_STR_NEW(ch, len);
185
+ rb_funcall(doc, id_characters, 1, str);
186
+ }
187
+
188
+ static void comment_func(void * ctx, const xmlChar * value)
189
+ {
190
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
191
+ VALUE doc = rb_iv_get(self, "@document");
192
+ VALUE str = NOKOGIRI_STR_NEW2(value);
193
+ rb_funcall(doc, id_comment, 1, str);
194
+ }
195
+
196
+ static void warning_func(void * ctx, const char *msg, ...)
197
+ {
198
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
199
+ VALUE doc = rb_iv_get(self, "@document");
200
+ char * message;
201
+ VALUE ruby_message;
202
+
203
+ va_list args;
204
+ va_start(args, msg);
205
+ vasprintf(&message, msg, args);
206
+ va_end(args);
207
+
208
+ ruby_message = NOKOGIRI_STR_NEW2(message);
209
+ vasprintf_free(message);
210
+ rb_funcall(doc, id_warning, 1, ruby_message);
211
+ }
212
+
213
+ static void error_func(void * ctx, const char *msg, ...)
214
+ {
215
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
216
+ VALUE doc = rb_iv_get(self, "@document");
217
+ char * message;
218
+ VALUE ruby_message;
219
+
220
+ va_list args;
221
+ va_start(args, msg);
222
+ vasprintf(&message, msg, args);
223
+ va_end(args);
224
+
225
+ ruby_message = NOKOGIRI_STR_NEW2(message);
226
+ vasprintf_free(message);
227
+ rb_funcall(doc, id_error, 1, ruby_message);
228
+ }
229
+
230
+ static void cdata_block(void * ctx, const xmlChar * value, int len)
231
+ {
232
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
233
+ VALUE doc = rb_iv_get(self, "@document");
234
+ VALUE string = NOKOGIRI_STR_NEW(value, len);
235
+ rb_funcall(doc, id_cdata_block, 1, string);
236
+ }
237
+
238
+ static void processing_instruction(void * ctx, const xmlChar * name, const xmlChar * content)
239
+ {
240
+ VALUE rb_content;
241
+ VALUE self = NOKOGIRI_SAX_SELF(ctx);
242
+ VALUE doc = rb_iv_get(self, "@document");
243
+
244
+ rb_content = content ? NOKOGIRI_STR_NEW2(content) : Qnil;
245
+
246
+ rb_funcall( doc,
247
+ id_processing_instruction,
248
+ 2,
249
+ NOKOGIRI_STR_NEW2(name),
250
+ rb_content
251
+ );
252
+ }
253
+
254
+ static void deallocate(xmlSAXHandlerPtr handler)
255
+ {
256
+ NOKOGIRI_DEBUG_START(handler);
257
+ free(handler);
258
+ NOKOGIRI_DEBUG_END(handler);
259
+ }
260
+
261
+ static VALUE allocate(VALUE klass)
262
+ {
263
+ xmlSAXHandlerPtr handler = calloc((size_t)1, sizeof(xmlSAXHandler));
264
+
265
+ xmlSetStructuredErrorFunc(NULL, NULL);
266
+
267
+ handler->startDocument = start_document;
268
+ handler->endDocument = end_document;
269
+ handler->startElement = start_element;
270
+ handler->endElement = end_element;
271
+ handler->startElementNs = start_element_ns;
272
+ handler->endElementNs = end_element_ns;
273
+ handler->characters = characters_func;
274
+ handler->comment = comment_func;
275
+ handler->warning = warning_func;
276
+ handler->error = error_func;
277
+ handler->cdataBlock = cdata_block;
278
+ handler->processingInstruction = processing_instruction;
279
+ handler->initialized = XML_SAX2_MAGIC;
280
+
281
+ return Data_Wrap_Struct(klass, NULL, deallocate, handler);
282
+ }
283
+
284
+ VALUE cNokogiriXmlSaxParser ;
285
+ void init_xml_sax_parser()
286
+ {
287
+ VALUE nokogiri = rb_define_module("Nokogiri");
288
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
289
+ VALUE sax = rb_define_module_under(xml, "SAX");
290
+ VALUE klass = rb_define_class_under(sax, "Parser", rb_cObject);
291
+
292
+ cNokogiriXmlSaxParser = klass;
293
+
294
+ rb_define_alloc_func(klass, allocate);
295
+
296
+ id_start_document = rb_intern("start_document");
297
+ id_end_document = rb_intern("end_document");
298
+ id_start_element = rb_intern("start_element");
299
+ id_end_element = rb_intern("end_element");
300
+ id_comment = rb_intern("comment");
301
+ id_characters = rb_intern("characters");
302
+ id_xmldecl = rb_intern("xmldecl");
303
+ id_error = rb_intern("error");
304
+ id_warning = rb_intern("warning");
305
+ id_cdata_block = rb_intern("cdata_block");
306
+ id_cAttribute = rb_intern("Attribute");
307
+ id_start_element_namespace = rb_intern("start_element_namespace");
308
+ id_end_element_namespace = rb_intern("end_element_namespace");
309
+ id_processing_instruction = rb_intern("processing_instruction");
310
+ }