nokogiri 1.11.1 → 1.11.2
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.
- checksums.yaml +4 -4
- data/LICENSE-DEPENDENCIES.md +12 -12
- data/LICENSE.md +1 -1
- data/README.md +20 -15
- data/ext/nokogiri/depend +34 -474
- data/ext/nokogiri/extconf.rb +253 -183
- data/ext/nokogiri/html_document.c +10 -15
- data/ext/nokogiri/html_element_description.c +84 -71
- data/ext/nokogiri/html_entity_lookup.c +21 -16
- data/ext/nokogiri/html_sax_parser_context.c +66 -65
- data/ext/nokogiri/html_sax_push_parser.c +29 -27
- data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
- data/ext/nokogiri/nokogiri.c +171 -63
- data/ext/nokogiri/nokogiri.h +158 -75
- data/ext/nokogiri/test_global_handlers.c +3 -4
- data/ext/nokogiri/xml_attr.c +15 -15
- data/ext/nokogiri/xml_attribute_decl.c +18 -18
- data/ext/nokogiri/xml_cdata.c +13 -18
- data/ext/nokogiri/xml_comment.c +19 -26
- data/ext/nokogiri/xml_document.c +221 -164
- data/ext/nokogiri/xml_document_fragment.c +13 -15
- data/ext/nokogiri/xml_dtd.c +54 -48
- data/ext/nokogiri/xml_element_content.c +30 -27
- data/ext/nokogiri/xml_element_decl.c +22 -22
- data/ext/nokogiri/xml_encoding_handler.c +17 -11
- data/ext/nokogiri/xml_entity_decl.c +32 -30
- data/ext/nokogiri/xml_entity_reference.c +16 -18
- data/ext/nokogiri/xml_namespace.c +56 -49
- data/ext/nokogiri/xml_node.c +338 -286
- data/ext/nokogiri/xml_node_set.c +168 -156
- data/ext/nokogiri/xml_processing_instruction.c +17 -19
- data/ext/nokogiri/xml_reader.c +191 -157
- data/ext/nokogiri/xml_relax_ng.c +29 -23
- data/ext/nokogiri/xml_sax_parser.c +117 -112
- data/ext/nokogiri/xml_sax_parser_context.c +100 -85
- data/ext/nokogiri/xml_sax_push_parser.c +34 -27
- data/ext/nokogiri/xml_schema.c +48 -42
- data/ext/nokogiri/xml_syntax_error.c +21 -23
- data/ext/nokogiri/xml_text.c +13 -17
- data/ext/nokogiri/xml_xpath_context.c +134 -127
- data/ext/nokogiri/xslt_stylesheet.c +157 -157
- data/lib/nokogiri.rb +1 -22
- data/lib/nokogiri/css/parser.rb +1 -1
- data/lib/nokogiri/extension.rb +26 -0
- data/lib/nokogiri/html/document_fragment.rb +15 -15
- data/lib/nokogiri/version/constant.rb +1 -1
- data/lib/nokogiri/version/info.rb +31 -8
- data/lib/nokogiri/xml/document.rb +31 -11
- data/lib/nokogiri/xml/node.rb +38 -42
- data/lib/nokogiri/xml/reader.rb +2 -9
- data/lib/nokogiri/xml/xpath.rb +1 -3
- data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
- data/patches/libxml2/0010-parser.c-shrink-the-input-buffer-when-appropriate.patch +70 -0
- metadata +8 -41
- data/ext/nokogiri/html_document.h +0 -10
- data/ext/nokogiri/html_element_description.h +0 -10
- data/ext/nokogiri/html_entity_lookup.h +0 -8
- data/ext/nokogiri/html_sax_parser_context.h +0 -11
- data/ext/nokogiri/html_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_attr.h +0 -9
- data/ext/nokogiri/xml_attribute_decl.h +0 -9
- data/ext/nokogiri/xml_cdata.h +0 -9
- data/ext/nokogiri/xml_comment.h +0 -9
- data/ext/nokogiri/xml_document.h +0 -23
- data/ext/nokogiri/xml_document_fragment.h +0 -10
- data/ext/nokogiri/xml_dtd.h +0 -10
- data/ext/nokogiri/xml_element_content.h +0 -10
- data/ext/nokogiri/xml_element_decl.h +0 -9
- data/ext/nokogiri/xml_encoding_handler.h +0 -8
- data/ext/nokogiri/xml_entity_decl.h +0 -10
- data/ext/nokogiri/xml_entity_reference.h +0 -9
- data/ext/nokogiri/xml_io.c +0 -63
- data/ext/nokogiri/xml_io.h +0 -11
- data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
- data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
- data/ext/nokogiri/xml_namespace.h +0 -14
- data/ext/nokogiri/xml_node.h +0 -13
- data/ext/nokogiri/xml_node_set.h +0 -12
- data/ext/nokogiri/xml_processing_instruction.h +0 -9
- data/ext/nokogiri/xml_reader.h +0 -10
- data/ext/nokogiri/xml_relax_ng.h +0 -9
- data/ext/nokogiri/xml_sax_parser.h +0 -39
- data/ext/nokogiri/xml_sax_parser_context.h +0 -10
- data/ext/nokogiri/xml_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_schema.h +0 -9
- data/ext/nokogiri/xml_syntax_error.h +0 -25
- data/ext/nokogiri/xml_text.h +0 -9
- data/ext/nokogiri/xml_xpath_context.h +0 -10
- data/ext/nokogiri/xslt_stylesheet.h +0 -14
@@ -1,4 +1,6 @@
|
|
1
|
-
#include <
|
1
|
+
#include <nokogiri.h>
|
2
|
+
|
3
|
+
VALUE cNokogiriHtmlSaxPushParser;
|
2
4
|
|
3
5
|
/*
|
4
6
|
* call-seq:
|
@@ -6,17 +8,18 @@
|
|
6
8
|
*
|
7
9
|
* Write +chunk+ to PushParser. +last_chunk+ triggers the end_document handle
|
8
10
|
*/
|
9
|
-
static VALUE
|
11
|
+
static VALUE
|
12
|
+
native_write(VALUE self, VALUE _chunk, VALUE _last_chunk)
|
10
13
|
{
|
11
14
|
xmlParserCtxtPtr ctx;
|
12
|
-
const char *
|
15
|
+
const char *chunk = NULL;
|
13
16
|
int size = 0;
|
14
17
|
int status = 0;
|
15
18
|
libxmlStructuredErrorHandlerState handler_state;
|
16
19
|
|
17
20
|
Data_Get_Struct(self, xmlParserCtxt, ctx);
|
18
21
|
|
19
|
-
if(Qnil != _chunk) {
|
22
|
+
if (Qnil != _chunk) {
|
20
23
|
chunk = StringValuePtr(_chunk);
|
21
24
|
size = (int)RSTRING_LEN(_chunk);
|
22
25
|
}
|
@@ -42,34 +45,37 @@ static VALUE native_write(VALUE self, VALUE _chunk, VALUE _last_chunk)
|
|
42
45
|
*
|
43
46
|
* Initialize the push parser with +xml_sax+ using +filename+
|
44
47
|
*/
|
45
|
-
static VALUE
|
46
|
-
|
48
|
+
static VALUE
|
49
|
+
initialize_native(VALUE self, VALUE _xml_sax, VALUE _filename,
|
50
|
+
VALUE encoding)
|
47
51
|
{
|
48
52
|
htmlSAXHandlerPtr sax;
|
49
|
-
const char *
|
53
|
+
const char *filename = NULL;
|
50
54
|
htmlParserCtxtPtr ctx;
|
51
55
|
xmlCharEncoding enc = XML_CHAR_ENCODING_NONE;
|
52
56
|
|
53
57
|
Data_Get_Struct(_xml_sax, xmlSAXHandler, sax);
|
54
58
|
|
55
|
-
if(_filename != Qnil) filename = StringValueCStr(_filename);
|
59
|
+
if (_filename != Qnil) { filename = StringValueCStr(_filename); }
|
56
60
|
|
57
61
|
if (!NIL_P(encoding)) {
|
58
62
|
enc = xmlParseCharEncoding(StringValueCStr(encoding));
|
59
|
-
if (enc == XML_CHAR_ENCODING_ERROR)
|
63
|
+
if (enc == XML_CHAR_ENCODING_ERROR) {
|
60
64
|
rb_raise(rb_eArgError, "Unsupported Encoding");
|
65
|
+
}
|
61
66
|
}
|
62
67
|
|
63
68
|
ctx = htmlCreatePushParserCtxt(
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
if(ctx == NULL)
|
69
|
+
sax,
|
70
|
+
NULL,
|
71
|
+
NULL,
|
72
|
+
0,
|
73
|
+
filename,
|
74
|
+
enc
|
75
|
+
);
|
76
|
+
if (ctx == NULL) {
|
72
77
|
rb_raise(rb_eRuntimeError, "Could not create a parser context");
|
78
|
+
}
|
73
79
|
|
74
80
|
ctx->userData = NOKOGIRI_SAX_TUPLE_NEW(ctx, self);
|
75
81
|
|
@@ -78,16 +84,12 @@ static VALUE initialize_native(VALUE self, VALUE _xml_sax, VALUE _filename,
|
|
78
84
|
return self;
|
79
85
|
}
|
80
86
|
|
81
|
-
|
82
|
-
|
87
|
+
void
|
88
|
+
noko_init_html_sax_push_parser()
|
83
89
|
{
|
84
|
-
|
85
|
-
|
86
|
-
VALUE sax = rb_define_module_under(html, "SAX");
|
87
|
-
VALUE klass = rb_define_class_under(sax, "PushParser", cNokogiriXmlSaxPushParser);
|
88
|
-
|
89
|
-
cNokogiriHtmlSaxPushParser = klass;
|
90
|
+
assert(cNokogiriXmlSaxPushParser);
|
91
|
+
cNokogiriHtmlSaxPushParser = rb_define_class_under(mNokogiriHtmlSax, "PushParser", cNokogiriXmlSaxPushParser);
|
90
92
|
|
91
|
-
rb_define_private_method(
|
92
|
-
rb_define_private_method(
|
93
|
+
rb_define_private_method(cNokogiriHtmlSaxPushParser, "initialize_native", initialize_native, 3);
|
94
|
+
rb_define_private_method(cNokogiriHtmlSaxPushParser, "native_write", native_write, 2);
|
93
95
|
}
|
@@ -0,0 +1,121 @@
|
|
1
|
+
#ifndef HAVE_XMLFIRSTELEMENTCHILD
|
2
|
+
#include <nokogiri.h>
|
3
|
+
/**
|
4
|
+
* xmlFirstElementChild:
|
5
|
+
* @parent: the parent node
|
6
|
+
*
|
7
|
+
* Finds the first child node of that element which is a Element node
|
8
|
+
* Note the handling of entities references is different than in
|
9
|
+
* the W3C DOM element traversal spec since we don't have back reference
|
10
|
+
* from entities content to entities references.
|
11
|
+
*
|
12
|
+
* Returns the first element child or NULL if not available
|
13
|
+
*/
|
14
|
+
xmlNodePtr
|
15
|
+
xmlFirstElementChild(xmlNodePtr parent)
|
16
|
+
{
|
17
|
+
xmlNodePtr cur = NULL;
|
18
|
+
|
19
|
+
if (parent == NULL) {
|
20
|
+
return (NULL);
|
21
|
+
}
|
22
|
+
switch (parent->type) {
|
23
|
+
case XML_ELEMENT_NODE:
|
24
|
+
case XML_ENTITY_NODE:
|
25
|
+
case XML_DOCUMENT_NODE:
|
26
|
+
case XML_HTML_DOCUMENT_NODE:
|
27
|
+
cur = parent->children;
|
28
|
+
break;
|
29
|
+
default:
|
30
|
+
return (NULL);
|
31
|
+
}
|
32
|
+
while (cur != NULL) {
|
33
|
+
if (cur->type == XML_ELEMENT_NODE) {
|
34
|
+
return (cur);
|
35
|
+
}
|
36
|
+
cur = cur->next;
|
37
|
+
}
|
38
|
+
return (NULL);
|
39
|
+
}
|
40
|
+
|
41
|
+
/**
|
42
|
+
* xmlNextElementSibling:
|
43
|
+
* @node: the current node
|
44
|
+
*
|
45
|
+
* Finds the first closest next sibling of the node which is an
|
46
|
+
* element node.
|
47
|
+
* Note the handling of entities references is different than in
|
48
|
+
* the W3C DOM element traversal spec since we don't have back reference
|
49
|
+
* from entities content to entities references.
|
50
|
+
*
|
51
|
+
* Returns the next element sibling or NULL if not available
|
52
|
+
*/
|
53
|
+
xmlNodePtr
|
54
|
+
xmlNextElementSibling(xmlNodePtr node)
|
55
|
+
{
|
56
|
+
if (node == NULL) {
|
57
|
+
return (NULL);
|
58
|
+
}
|
59
|
+
switch (node->type) {
|
60
|
+
case XML_ELEMENT_NODE:
|
61
|
+
case XML_TEXT_NODE:
|
62
|
+
case XML_CDATA_SECTION_NODE:
|
63
|
+
case XML_ENTITY_REF_NODE:
|
64
|
+
case XML_ENTITY_NODE:
|
65
|
+
case XML_PI_NODE:
|
66
|
+
case XML_COMMENT_NODE:
|
67
|
+
case XML_DTD_NODE:
|
68
|
+
case XML_XINCLUDE_START:
|
69
|
+
case XML_XINCLUDE_END:
|
70
|
+
node = node->next;
|
71
|
+
break;
|
72
|
+
default:
|
73
|
+
return (NULL);
|
74
|
+
}
|
75
|
+
while (node != NULL) {
|
76
|
+
if (node->type == XML_ELEMENT_NODE) {
|
77
|
+
return (node);
|
78
|
+
}
|
79
|
+
node = node->next;
|
80
|
+
}
|
81
|
+
return (NULL);
|
82
|
+
}
|
83
|
+
|
84
|
+
/**
|
85
|
+
* xmlLastElementChild:
|
86
|
+
* @parent: the parent node
|
87
|
+
*
|
88
|
+
* Finds the last child node of that element which is a Element node
|
89
|
+
* Note the handling of entities references is different than in
|
90
|
+
* the W3C DOM element traversal spec since we don't have back reference
|
91
|
+
* from entities content to entities references.
|
92
|
+
*
|
93
|
+
* Returns the last element child or NULL if not available
|
94
|
+
*/
|
95
|
+
xmlNodePtr
|
96
|
+
xmlLastElementChild(xmlNodePtr parent)
|
97
|
+
{
|
98
|
+
xmlNodePtr cur = NULL;
|
99
|
+
|
100
|
+
if (parent == NULL) {
|
101
|
+
return (NULL);
|
102
|
+
}
|
103
|
+
switch (parent->type) {
|
104
|
+
case XML_ELEMENT_NODE:
|
105
|
+
case XML_ENTITY_NODE:
|
106
|
+
case XML_DOCUMENT_NODE:
|
107
|
+
case XML_HTML_DOCUMENT_NODE:
|
108
|
+
cur = parent->last;
|
109
|
+
break;
|
110
|
+
default:
|
111
|
+
return (NULL);
|
112
|
+
}
|
113
|
+
while (cur != NULL) {
|
114
|
+
if (cur->type == XML_ELEMENT_NODE) {
|
115
|
+
return (cur);
|
116
|
+
}
|
117
|
+
cur = cur->prev;
|
118
|
+
}
|
119
|
+
return (NULL);
|
120
|
+
}
|
121
|
+
#endif
|
data/ext/nokogiri/nokogiri.c
CHANGED
@@ -1,26 +1,67 @@
|
|
1
1
|
#include <nokogiri.h>
|
2
2
|
|
3
|
-
void init_test_global_handlers(); /* in lieu of test_global_handlers.h */
|
4
|
-
|
5
3
|
VALUE mNokogiri ;
|
6
|
-
VALUE mNokogiriXml ;
|
7
4
|
VALUE mNokogiriHtml ;
|
8
|
-
VALUE mNokogiriXslt ;
|
9
|
-
VALUE mNokogiriXmlSax ;
|
10
5
|
VALUE mNokogiriHtmlSax ;
|
6
|
+
VALUE mNokogiriXml ;
|
7
|
+
VALUE mNokogiriXmlSax ;
|
8
|
+
VALUE mNokogiriXmlXpath ;
|
9
|
+
VALUE mNokogiriXslt ;
|
10
|
+
|
11
|
+
VALUE cNokogiriSyntaxError;
|
12
|
+
VALUE cNokogiriXmlCharacterData;
|
13
|
+
VALUE cNokogiriXmlElement;
|
14
|
+
VALUE cNokogiriXmlXpathSyntaxError;
|
15
|
+
|
16
|
+
void noko_init_xml_attr();
|
17
|
+
void noko_init_xml_attribute_decl();
|
18
|
+
void noko_init_xml_cdata();
|
19
|
+
void noko_init_xml_comment();
|
20
|
+
void noko_init_xml_document();
|
21
|
+
void noko_init_xml_document_fragment();
|
22
|
+
void noko_init_xml_dtd();
|
23
|
+
void noko_init_xml_element_content();
|
24
|
+
void noko_init_xml_element_decl();
|
25
|
+
void noko_init_xml_encoding_handler();
|
26
|
+
void noko_init_xml_entity_decl();
|
27
|
+
void noko_init_xml_entity_reference();
|
28
|
+
void noko_init_xml_namespace();
|
29
|
+
void noko_init_xml_node();
|
30
|
+
void noko_init_xml_node_set();
|
31
|
+
void noko_init_xml_processing_instruction();
|
32
|
+
void noko_init_xml_reader();
|
33
|
+
void noko_init_xml_relax_ng();
|
34
|
+
void noko_init_xml_sax_parser();
|
35
|
+
void noko_init_xml_sax_parser_context();
|
36
|
+
void noko_init_xml_sax_push_parser();
|
37
|
+
void noko_init_xml_schema();
|
38
|
+
void noko_init_xml_syntax_error();
|
39
|
+
void noko_init_xml_text();
|
40
|
+
void noko_init_xml_xpath_context();
|
41
|
+
void noko_init_xslt_stylesheet();
|
42
|
+
void noko_init_html_document();
|
43
|
+
void noko_init_html_element_description();
|
44
|
+
void noko_init_html_entity_lookup();
|
45
|
+
void noko_init_html_sax_parser_context();
|
46
|
+
void noko_init_html_sax_push_parser();
|
47
|
+
void noko_init_test_global_handlers();
|
48
|
+
|
49
|
+
static ID id_read, id_write;
|
50
|
+
|
11
51
|
|
12
52
|
#ifndef HAVE_VASPRINTF
|
13
53
|
/*
|
14
54
|
* Thank you Geoffroy Couprie for this implementation of vasprintf!
|
15
55
|
*/
|
16
|
-
int
|
56
|
+
int
|
57
|
+
vasprintf(char **strp, const char *fmt, va_list ap)
|
17
58
|
{
|
18
59
|
/* Mingw32/64 have a broken vsnprintf implementation that fails when
|
19
60
|
* using a zero-byte limit in order to retrieve the required size for malloc.
|
20
61
|
* So we use a one byte buffer instead.
|
21
62
|
*/
|
22
63
|
char tmp[1];
|
23
|
-
int len = vsnprintf
|
64
|
+
int len = vsnprintf(tmp, 1, fmt, ap) + 1;
|
24
65
|
char *res = (char *)malloc((unsigned int)len);
|
25
66
|
if (res == NULL) {
|
26
67
|
return -1;
|
@@ -30,41 +71,91 @@ int vasprintf(char **strp, const char *fmt, va_list ap)
|
|
30
71
|
}
|
31
72
|
#endif
|
32
73
|
|
33
|
-
#include "ruby/util.h"
|
34
74
|
|
35
|
-
|
75
|
+
static VALUE
|
76
|
+
read_check(VALUE val)
|
77
|
+
{
|
78
|
+
VALUE *args = (VALUE *)val;
|
79
|
+
return rb_funcall(args[0], id_read, 1, args[1]);
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
static VALUE
|
84
|
+
read_failed(VALUE arg, VALUE exc)
|
85
|
+
{
|
86
|
+
return Qundef;
|
87
|
+
}
|
88
|
+
|
89
|
+
|
90
|
+
int
|
91
|
+
noko_io_read(void *ctx, char *buffer, int len)
|
92
|
+
{
|
93
|
+
VALUE string, args[2];
|
94
|
+
size_t str_len, safe_len;
|
95
|
+
|
96
|
+
args[0] = (VALUE)ctx;
|
97
|
+
args[1] = INT2NUM(len);
|
98
|
+
|
99
|
+
string = rb_rescue(read_check, (VALUE)args, read_failed, 0);
|
100
|
+
|
101
|
+
if (NIL_P(string)) { return 0; }
|
102
|
+
if (string == Qundef) { return -1; }
|
103
|
+
if (TYPE(string) != T_STRING) { return -1; }
|
104
|
+
|
105
|
+
str_len = (size_t)RSTRING_LEN(string);
|
106
|
+
safe_len = str_len > (size_t)len ? (size_t)len : str_len;
|
107
|
+
memcpy(buffer, StringValuePtr(string), safe_len);
|
108
|
+
|
109
|
+
return (int)safe_len;
|
110
|
+
}
|
111
|
+
|
112
|
+
|
113
|
+
static VALUE
|
114
|
+
write_check(VALUE val)
|
36
115
|
{
|
37
|
-
|
38
|
-
|
116
|
+
VALUE *args = (VALUE *)val;
|
117
|
+
return rb_funcall(args[0], id_write, 1, args[1]);
|
118
|
+
}
|
119
|
+
|
39
120
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
121
|
+
static VALUE
|
122
|
+
write_failed(VALUE arg, VALUE exc)
|
123
|
+
{
|
124
|
+
return Qundef;
|
44
125
|
}
|
45
126
|
|
46
|
-
|
127
|
+
|
128
|
+
int
|
129
|
+
noko_io_write(void *ctx, char *buffer, int len)
|
47
130
|
{
|
48
|
-
|
131
|
+
VALUE args[2], size;
|
49
132
|
|
50
|
-
|
51
|
-
|
52
|
-
|
133
|
+
args[0] = (VALUE)ctx;
|
134
|
+
args[1] = rb_str_new(buffer, (long)len);
|
135
|
+
|
136
|
+
size = rb_rescue(write_check, (VALUE)args, write_failed, 0);
|
137
|
+
|
138
|
+
if (size == Qundef) { return -1; }
|
139
|
+
|
140
|
+
return NUM2INT(size);
|
53
141
|
}
|
54
142
|
|
55
|
-
|
143
|
+
|
144
|
+
int
|
145
|
+
noko_io_close(void *ctx)
|
56
146
|
{
|
57
|
-
|
58
|
-
|
59
|
-
(xmlMallocFunc)ruby_xmalloc,
|
60
|
-
(xmlReallocFunc)ruby_xrealloc,
|
61
|
-
ruby_strdup
|
62
|
-
);
|
147
|
+
return 0;
|
148
|
+
}
|
63
149
|
|
150
|
+
|
151
|
+
void
|
152
|
+
Init_nokogiri()
|
153
|
+
{
|
64
154
|
mNokogiri = rb_define_module("Nokogiri");
|
65
155
|
mNokogiriXml = rb_define_module_under(mNokogiri, "XML");
|
66
156
|
mNokogiriHtml = rb_define_module_under(mNokogiri, "HTML");
|
67
157
|
mNokogiriXslt = rb_define_module_under(mNokogiri, "XSLT");
|
158
|
+
mNokogiriXmlXpath = rb_define_module_under(mNokogiriXml, "XPath");
|
68
159
|
mNokogiriXmlSax = rb_define_module_under(mNokogiriXml, "SAX");
|
69
160
|
mNokogiriHtmlSax = rb_define_module_under(mNokogiriHtml, "SAX");
|
70
161
|
|
@@ -76,11 +167,11 @@ void Init_nokogiri()
|
|
76
167
|
|
77
168
|
#ifdef NOKOGIRI_PACKAGED_LIBRARIES
|
78
169
|
rb_const_set(mNokogiri, rb_intern("PACKAGED_LIBRARIES"), Qtrue);
|
79
|
-
#ifdef NOKOGIRI_PRECOMPILED_LIBRARIES
|
170
|
+
# ifdef NOKOGIRI_PRECOMPILED_LIBRARIES
|
80
171
|
rb_const_set(mNokogiri, rb_intern("PRECOMPILED_LIBRARIES"), Qtrue);
|
81
|
-
#else
|
172
|
+
# else
|
82
173
|
rb_const_set(mNokogiri, rb_intern("PRECOMPILED_LIBRARIES"), Qfalse);
|
83
|
-
#endif
|
174
|
+
# endif
|
84
175
|
rb_const_set(mNokogiri, rb_intern("LIBXML2_PATCHES"), rb_str_split(NOKOGIRI_STR_NEW2(NOKOGIRI_LIBXML2_PATCHES), " "));
|
85
176
|
rb_const_set(mNokogiri, rb_intern("LIBXSLT_PATCHES"), rb_str_split(NOKOGIRI_STR_NEW2(NOKOGIRI_LIBXSLT_PATCHES), " "));
|
86
177
|
#else
|
@@ -100,39 +191,56 @@ void Init_nokogiri()
|
|
100
191
|
rb_const_set(mNokogiri, rb_intern("OTHER_LIBRARY_VERSIONS"), NOKOGIRI_STR_NEW2(NOKOGIRI_OTHER_LIBRARY_VERSIONS));
|
101
192
|
#endif
|
102
193
|
|
194
|
+
xmlMemSetup((xmlFreeFunc)ruby_xfree, (xmlMallocFunc)ruby_xmalloc, (xmlReallocFunc)ruby_xrealloc, ruby_strdup);
|
195
|
+
|
103
196
|
xmlInitParser();
|
104
197
|
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
198
|
+
cNokogiriSyntaxError = rb_define_class_under(mNokogiri, "SyntaxError", rb_eStandardError);
|
199
|
+
noko_init_xml_syntax_error();
|
200
|
+
assert(cNokogiriXmlSyntaxError);
|
201
|
+
cNokogiriXmlXpathSyntaxError = rb_define_class_under(mNokogiriXmlXpath, "SyntaxError", cNokogiriXmlSyntaxError);
|
202
|
+
|
203
|
+
noko_init_xml_element_content();
|
204
|
+
noko_init_xml_encoding_handler();
|
205
|
+
noko_init_xml_namespace();
|
206
|
+
noko_init_xml_node_set();
|
207
|
+
noko_init_xml_reader();
|
208
|
+
noko_init_xml_sax_parser();
|
209
|
+
noko_init_xml_xpath_context();
|
210
|
+
noko_init_xslt_stylesheet();
|
211
|
+
noko_init_html_element_description();
|
212
|
+
noko_init_html_entity_lookup();
|
213
|
+
|
214
|
+
noko_init_xml_schema();
|
215
|
+
noko_init_xml_relax_ng();
|
216
|
+
|
217
|
+
noko_init_xml_sax_parser_context();
|
218
|
+
noko_init_html_sax_parser_context();
|
219
|
+
|
220
|
+
noko_init_xml_sax_push_parser();
|
221
|
+
noko_init_html_sax_push_parser();
|
222
|
+
|
223
|
+
noko_init_xml_node();
|
224
|
+
noko_init_xml_attr();
|
225
|
+
noko_init_xml_attribute_decl();
|
226
|
+
noko_init_xml_dtd();
|
227
|
+
noko_init_xml_element_decl();
|
228
|
+
noko_init_xml_entity_decl();
|
229
|
+
noko_init_xml_entity_reference();
|
230
|
+
noko_init_xml_processing_instruction();
|
231
|
+
assert(cNokogiriXmlNode);
|
232
|
+
cNokogiriXmlElement = rb_define_class_under(mNokogiriXml, "Element", cNokogiriXmlNode);
|
233
|
+
cNokogiriXmlCharacterData = rb_define_class_under(mNokogiriXml, "CharacterData", cNokogiriXmlNode);
|
234
|
+
noko_init_xml_comment();
|
235
|
+
noko_init_xml_text();
|
236
|
+
noko_init_xml_cdata();
|
237
|
+
|
238
|
+
noko_init_xml_document_fragment();
|
239
|
+
noko_init_xml_document();
|
240
|
+
noko_init_html_document();
|
241
|
+
|
242
|
+
noko_init_test_global_handlers();
|
243
|
+
|
244
|
+
id_read = rb_intern("read");
|
245
|
+
id_write = rb_intern("write");
|
138
246
|
}
|