glebm-nokogiri 1.4.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +26 -0
- data/CHANGELOG.ja.rdoc +411 -0
- data/CHANGELOG.rdoc +397 -0
- data/Manifest.txt +276 -0
- data/README.ja.rdoc +106 -0
- data/README.rdoc +132 -0
- data/Rakefile +183 -0
- data/bin/nokogiri +49 -0
- data/deps.rip +5 -0
- data/ext/nokogiri/extconf.rb +97 -0
- data/ext/nokogiri/html_document.c +154 -0
- data/ext/nokogiri/html_document.h +10 -0
- data/ext/nokogiri/html_element_description.c +276 -0
- data/ext/nokogiri/html_element_description.h +10 -0
- data/ext/nokogiri/html_entity_lookup.c +32 -0
- data/ext/nokogiri/html_entity_lookup.h +8 -0
- data/ext/nokogiri/html_sax_parser_context.c +94 -0
- data/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/ext/nokogiri/nokogiri.c +95 -0
- data/ext/nokogiri/nokogiri.h +153 -0
- data/ext/nokogiri/xml_attr.c +94 -0
- data/ext/nokogiri/xml_attr.h +9 -0
- data/ext/nokogiri/xml_attribute_decl.c +70 -0
- data/ext/nokogiri/xml_attribute_decl.h +9 -0
- data/ext/nokogiri/xml_cdata.c +56 -0
- data/ext/nokogiri/xml_cdata.h +9 -0
- data/ext/nokogiri/xml_comment.c +54 -0
- data/ext/nokogiri/xml_comment.h +9 -0
- data/ext/nokogiri/xml_document.c +464 -0
- data/ext/nokogiri/xml_document.h +23 -0
- data/ext/nokogiri/xml_document_fragment.c +48 -0
- data/ext/nokogiri/xml_document_fragment.h +10 -0
- data/ext/nokogiri/xml_dtd.c +202 -0
- data/ext/nokogiri/xml_dtd.h +10 -0
- data/ext/nokogiri/xml_element_content.c +123 -0
- data/ext/nokogiri/xml_element_content.h +10 -0
- data/ext/nokogiri/xml_element_decl.c +69 -0
- data/ext/nokogiri/xml_element_decl.h +9 -0
- data/ext/nokogiri/xml_encoding_handler.c +79 -0
- data/ext/nokogiri/xml_encoding_handler.h +8 -0
- data/ext/nokogiri/xml_entity_decl.c +110 -0
- data/ext/nokogiri/xml_entity_decl.h +10 -0
- data/ext/nokogiri/xml_entity_reference.c +52 -0
- data/ext/nokogiri/xml_entity_reference.h +9 -0
- data/ext/nokogiri/xml_io.c +31 -0
- data/ext/nokogiri/xml_io.h +11 -0
- data/ext/nokogiri/xml_namespace.c +84 -0
- data/ext/nokogiri/xml_namespace.h +13 -0
- data/ext/nokogiri/xml_node.c +1347 -0
- data/ext/nokogiri/xml_node.h +13 -0
- data/ext/nokogiri/xml_node_set.c +418 -0
- data/ext/nokogiri/xml_node_set.h +9 -0
- data/ext/nokogiri/xml_processing_instruction.c +56 -0
- data/ext/nokogiri/xml_processing_instruction.h +9 -0
- data/ext/nokogiri/xml_reader.c +665 -0
- data/ext/nokogiri/xml_reader.h +10 -0
- data/ext/nokogiri/xml_relax_ng.c +168 -0
- data/ext/nokogiri/xml_relax_ng.h +9 -0
- data/ext/nokogiri/xml_sax_parser.c +286 -0
- data/ext/nokogiri/xml_sax_parser.h +39 -0
- data/ext/nokogiri/xml_sax_parser_context.c +159 -0
- data/ext/nokogiri/xml_sax_parser_context.h +10 -0
- data/ext/nokogiri/xml_sax_push_parser.c +115 -0
- data/ext/nokogiri/xml_sax_push_parser.h +9 -0
- data/ext/nokogiri/xml_schema.c +205 -0
- data/ext/nokogiri/xml_schema.h +9 -0
- data/ext/nokogiri/xml_syntax_error.c +58 -0
- data/ext/nokogiri/xml_syntax_error.h +13 -0
- data/ext/nokogiri/xml_text.c +50 -0
- data/ext/nokogiri/xml_text.h +9 -0
- data/ext/nokogiri/xml_xpath_context.c +276 -0
- data/ext/nokogiri/xml_xpath_context.h +9 -0
- data/ext/nokogiri/xslt_stylesheet.c +142 -0
- data/ext/nokogiri/xslt_stylesheet.h +9 -0
- data/lib/nokogiri.rb +133 -0
- data/lib/nokogiri/css.rb +25 -0
- data/lib/nokogiri/css/generated_parser.rb +669 -0
- data/lib/nokogiri/css/generated_tokenizer.rb +145 -0
- data/lib/nokogiri/css/node.rb +99 -0
- data/lib/nokogiri/css/parser.rb +82 -0
- data/lib/nokogiri/css/parser.y +232 -0
- data/lib/nokogiri/css/syntax_error.rb +7 -0
- data/lib/nokogiri/css/tokenizer.rb +7 -0
- data/lib/nokogiri/css/tokenizer.rex +55 -0
- data/lib/nokogiri/css/xpath_visitor.rb +169 -0
- data/lib/nokogiri/decorators/slop.rb +33 -0
- data/lib/nokogiri/ffi/encoding_handler.rb +42 -0
- data/lib/nokogiri/ffi/html/document.rb +28 -0
- data/lib/nokogiri/ffi/html/element_description.rb +81 -0
- data/lib/nokogiri/ffi/html/entity_lookup.rb +16 -0
- data/lib/nokogiri/ffi/html/sax/parser_context.rb +38 -0
- data/lib/nokogiri/ffi/io_callbacks.rb +42 -0
- data/lib/nokogiri/ffi/libxml.rb +386 -0
- data/lib/nokogiri/ffi/structs/common_node.rb +38 -0
- data/lib/nokogiri/ffi/structs/html_elem_desc.rb +24 -0
- data/lib/nokogiri/ffi/structs/html_entity_desc.rb +13 -0
- data/lib/nokogiri/ffi/structs/xml_alloc.rb +16 -0
- data/lib/nokogiri/ffi/structs/xml_attr.rb +19 -0
- data/lib/nokogiri/ffi/structs/xml_attribute.rb +27 -0
- data/lib/nokogiri/ffi/structs/xml_buffer.rb +16 -0
- data/lib/nokogiri/ffi/structs/xml_char_encoding_handler.rb +11 -0
- data/lib/nokogiri/ffi/structs/xml_document.rb +117 -0
- data/lib/nokogiri/ffi/structs/xml_dtd.rb +28 -0
- data/lib/nokogiri/ffi/structs/xml_element.rb +26 -0
- data/lib/nokogiri/ffi/structs/xml_element_content.rb +17 -0
- data/lib/nokogiri/ffi/structs/xml_entity.rb +32 -0
- data/lib/nokogiri/ffi/structs/xml_enumeration.rb +12 -0
- data/lib/nokogiri/ffi/structs/xml_node.rb +28 -0
- data/lib/nokogiri/ffi/structs/xml_node_set.rb +53 -0
- data/lib/nokogiri/ffi/structs/xml_notation.rb +11 -0
- data/lib/nokogiri/ffi/structs/xml_ns.rb +15 -0
- data/lib/nokogiri/ffi/structs/xml_parser_context.rb +19 -0
- data/lib/nokogiri/ffi/structs/xml_relax_ng.rb +14 -0
- data/lib/nokogiri/ffi/structs/xml_sax_handler.rb +51 -0
- data/lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb +124 -0
- data/lib/nokogiri/ffi/structs/xml_schema.rb +13 -0
- data/lib/nokogiri/ffi/structs/xml_syntax_error.rb +31 -0
- data/lib/nokogiri/ffi/structs/xml_text_reader.rb +12 -0
- data/lib/nokogiri/ffi/structs/xml_xpath_context.rb +38 -0
- data/lib/nokogiri/ffi/structs/xml_xpath_object.rb +35 -0
- data/lib/nokogiri/ffi/structs/xml_xpath_parser_context.rb +20 -0
- data/lib/nokogiri/ffi/structs/xslt_stylesheet.rb +13 -0
- data/lib/nokogiri/ffi/weak_bucket.rb +40 -0
- data/lib/nokogiri/ffi/xml/attr.rb +41 -0
- data/lib/nokogiri/ffi/xml/attribute_decl.rb +27 -0
- data/lib/nokogiri/ffi/xml/cdata.rb +19 -0
- data/lib/nokogiri/ffi/xml/comment.rb +18 -0
- data/lib/nokogiri/ffi/xml/document.rb +162 -0
- data/lib/nokogiri/ffi/xml/document_fragment.rb +21 -0
- data/lib/nokogiri/ffi/xml/dtd.rb +67 -0
- data/lib/nokogiri/ffi/xml/element_content.rb +43 -0
- data/lib/nokogiri/ffi/xml/element_decl.rb +19 -0
- data/lib/nokogiri/ffi/xml/entity_decl.rb +36 -0
- data/lib/nokogiri/ffi/xml/entity_reference.rb +19 -0
- data/lib/nokogiri/ffi/xml/namespace.rb +44 -0
- data/lib/nokogiri/ffi/xml/node.rb +556 -0
- data/lib/nokogiri/ffi/xml/node_set.rb +149 -0
- data/lib/nokogiri/ffi/xml/processing_instruction.rb +20 -0
- data/lib/nokogiri/ffi/xml/reader.rb +232 -0
- data/lib/nokogiri/ffi/xml/relax_ng.rb +85 -0
- data/lib/nokogiri/ffi/xml/sax/parser.rb +135 -0
- data/lib/nokogiri/ffi/xml/sax/parser_context.rb +67 -0
- data/lib/nokogiri/ffi/xml/sax/push_parser.rb +51 -0
- data/lib/nokogiri/ffi/xml/schema.rb +109 -0
- data/lib/nokogiri/ffi/xml/syntax_error.rb +98 -0
- data/lib/nokogiri/ffi/xml/text.rb +18 -0
- data/lib/nokogiri/ffi/xml/xpath.rb +9 -0
- data/lib/nokogiri/ffi/xml/xpath_context.rb +148 -0
- data/lib/nokogiri/ffi/xslt/stylesheet.rb +53 -0
- data/lib/nokogiri/html.rb +35 -0
- data/lib/nokogiri/html/builder.rb +35 -0
- data/lib/nokogiri/html/document.rb +90 -0
- data/lib/nokogiri/html/document_fragment.rb +36 -0
- data/lib/nokogiri/html/element_description.rb +23 -0
- data/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/lib/nokogiri/html/sax/parser.rb +48 -0
- data/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/lib/nokogiri/syntax_error.rb +4 -0
- data/lib/nokogiri/version.rb +37 -0
- data/lib/nokogiri/version_warning.rb +14 -0
- data/lib/nokogiri/xml.rb +67 -0
- data/lib/nokogiri/xml/attr.rb +14 -0
- data/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/lib/nokogiri/xml/builder.rb +418 -0
- data/lib/nokogiri/xml/cdata.rb +11 -0
- data/lib/nokogiri/xml/character_data.rb +7 -0
- data/lib/nokogiri/xml/document.rb +194 -0
- data/lib/nokogiri/xml/document_fragment.rb +77 -0
- data/lib/nokogiri/xml/dtd.rb +11 -0
- data/lib/nokogiri/xml/element_content.rb +36 -0
- data/lib/nokogiri/xml/element_decl.rb +13 -0
- data/lib/nokogiri/xml/entity_decl.rb +19 -0
- data/lib/nokogiri/xml/namespace.rb +13 -0
- data/lib/nokogiri/xml/node.rb +793 -0
- data/lib/nokogiri/xml/node/save_options.rb +42 -0
- data/lib/nokogiri/xml/node_set.rb +325 -0
- data/lib/nokogiri/xml/notation.rb +6 -0
- data/lib/nokogiri/xml/parse_options.rb +85 -0
- data/lib/nokogiri/xml/pp.rb +2 -0
- data/lib/nokogiri/xml/pp/character_data.rb +18 -0
- data/lib/nokogiri/xml/pp/node.rb +56 -0
- data/lib/nokogiri/xml/processing_instruction.rb +8 -0
- data/lib/nokogiri/xml/reader.rb +74 -0
- data/lib/nokogiri/xml/relax_ng.rb +32 -0
- data/lib/nokogiri/xml/sax.rb +4 -0
- data/lib/nokogiri/xml/sax/document.rb +160 -0
- data/lib/nokogiri/xml/sax/parser.rb +115 -0
- data/lib/nokogiri/xml/sax/parser_context.rb +16 -0
- data/lib/nokogiri/xml/sax/push_parser.rb +60 -0
- data/lib/nokogiri/xml/schema.rb +57 -0
- data/lib/nokogiri/xml/syntax_error.rb +47 -0
- data/lib/nokogiri/xml/text.rb +9 -0
- data/lib/nokogiri/xml/xpath.rb +10 -0
- data/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
- data/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/lib/nokogiri/xslt.rb +48 -0
- data/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/lib/xsd/xmlparser/nokogiri.rb +90 -0
- data/tasks/cross_compile.rb +158 -0
- data/tasks/test.rb +94 -0
- data/test/css/test_nthiness.rb +159 -0
- data/test/css/test_parser.rb +282 -0
- data/test/css/test_tokenizer.rb +190 -0
- data/test/css/test_xpath_visitor.rb +85 -0
- data/test/ffi/test_document.rb +35 -0
- data/test/files/2ch.html +108 -0
- data/test/files/address_book.rlx +12 -0
- data/test/files/address_book.xml +10 -0
- data/test/files/bar/bar.xsd +4 -0
- data/test/files/dont_hurt_em_why.xml +422 -0
- data/test/files/exslt.xml +8 -0
- data/test/files/exslt.xslt +35 -0
- data/test/files/foo/foo.xsd +4 -0
- data/test/files/po.xml +32 -0
- data/test/files/po.xsd +66 -0
- data/test/files/shift_jis.html +10 -0
- data/test/files/shift_jis.xml +5 -0
- data/test/files/snuggles.xml +3 -0
- data/test/files/staff.dtd +10 -0
- data/test/files/staff.xml +59 -0
- data/test/files/staff.xslt +32 -0
- data/test/files/tlm.html +850 -0
- data/test/files/valid_bar.xml +2 -0
- data/test/helper.rb +169 -0
- data/test/html/sax/test_parser.rb +74 -0
- data/test/html/sax/test_parser_context.rb +48 -0
- data/test/html/test_builder.rb +164 -0
- data/test/html/test_document.rb +398 -0
- data/test/html/test_document_encoding.rb +77 -0
- data/test/html/test_document_fragment.rb +182 -0
- data/test/html/test_element_description.rb +98 -0
- data/test/html/test_named_characters.rb +14 -0
- data/test/html/test_node.rb +181 -0
- data/test/html/test_node_encoding.rb +27 -0
- data/test/test_convert_xpath.rb +135 -0
- data/test/test_css_cache.rb +45 -0
- data/test/test_encoding_handler.rb +46 -0
- data/test/test_memory_leak.rb +87 -0
- data/test/test_nokogiri.rb +138 -0
- data/test/test_reader.rb +386 -0
- data/test/test_soap4r_sax.rb +52 -0
- data/test/test_xslt_transforms.rb +188 -0
- data/test/xml/node/test_save_options.rb +20 -0
- data/test/xml/node/test_subclass.rb +44 -0
- data/test/xml/sax/test_parser.rb +307 -0
- data/test/xml/sax/test_parser_context.rb +63 -0
- data/test/xml/sax/test_push_parser.rb +139 -0
- data/test/xml/test_attr.rb +38 -0
- data/test/xml/test_attribute_decl.rb +82 -0
- data/test/xml/test_builder.rb +210 -0
- data/test/xml/test_cdata.rb +50 -0
- data/test/xml/test_comment.rb +29 -0
- data/test/xml/test_document.rb +668 -0
- data/test/xml/test_document_encoding.rb +26 -0
- data/test/xml/test_document_fragment.rb +180 -0
- data/test/xml/test_dtd.rb +82 -0
- data/test/xml/test_dtd_encoding.rb +33 -0
- data/test/xml/test_element_content.rb +56 -0
- data/test/xml/test_element_decl.rb +73 -0
- data/test/xml/test_entity_decl.rb +120 -0
- data/test/xml/test_entity_reference.rb +21 -0
- data/test/xml/test_namespace.rb +68 -0
- data/test/xml/test_node.rb +865 -0
- data/test/xml/test_node_attributes.rb +34 -0
- data/test/xml/test_node_encoding.rb +107 -0
- data/test/xml/test_node_reparenting.rb +293 -0
- data/test/xml/test_node_set.rb +649 -0
- data/test/xml/test_parse_options.rb +52 -0
- data/test/xml/test_processing_instruction.rb +30 -0
- data/test/xml/test_reader_encoding.rb +126 -0
- data/test/xml/test_relax_ng.rb +60 -0
- data/test/xml/test_schema.rb +89 -0
- data/test/xml/test_syntax_error.rb +12 -0
- data/test/xml/test_text.rb +38 -0
- data/test/xml/test_unparented_node.rb +381 -0
- data/test/xml/test_xpath.rb +138 -0
- metadata +533 -0
@@ -0,0 +1,95 @@
|
|
1
|
+
#include <nokogiri.h>
|
2
|
+
|
3
|
+
VALUE mNokogiri ;
|
4
|
+
VALUE mNokogiriXml ;
|
5
|
+
VALUE mNokogiriHtml ;
|
6
|
+
VALUE mNokogiriXslt ;
|
7
|
+
VALUE mNokogiriXmlSax ;
|
8
|
+
VALUE mNokogiriHtmlSax ;
|
9
|
+
|
10
|
+
#ifdef USE_INCLUDED_VASPRINTF
|
11
|
+
/*
|
12
|
+
* I srsly hate windows. it doesn't have vasprintf.
|
13
|
+
* Thank you Geoffroy Couprie for this implementation of vasprintf!
|
14
|
+
*/
|
15
|
+
int vasprintf (char **strp, const char *fmt, va_list ap)
|
16
|
+
{
|
17
|
+
int len = vsnprintf (NULL, 0, fmt, ap) + 1;
|
18
|
+
char *res = (char *)malloc((unsigned int)len);
|
19
|
+
if (res == NULL)
|
20
|
+
return -1;
|
21
|
+
*strp = res;
|
22
|
+
return vsnprintf(res, (unsigned int)len, fmt, ap);
|
23
|
+
}
|
24
|
+
#endif
|
25
|
+
|
26
|
+
int is_2_6_16(void)
|
27
|
+
{
|
28
|
+
return (strcmp(xmlParserVersion, "20616") <= 0) ? 1 : 0 ;
|
29
|
+
}
|
30
|
+
|
31
|
+
void Init_nokogiri()
|
32
|
+
{
|
33
|
+
xmlMemSetup(
|
34
|
+
(xmlFreeFunc)ruby_xfree,
|
35
|
+
(xmlMallocFunc)ruby_xmalloc,
|
36
|
+
(xmlReallocFunc)ruby_xrealloc,
|
37
|
+
strdup
|
38
|
+
);
|
39
|
+
|
40
|
+
mNokogiri = rb_define_module("Nokogiri");
|
41
|
+
mNokogiriXml = rb_define_module_under(mNokogiri, "XML");
|
42
|
+
mNokogiriHtml = rb_define_module_under(mNokogiri, "HTML");
|
43
|
+
mNokogiriXslt = rb_define_module_under(mNokogiri, "XSLT");
|
44
|
+
mNokogiriXmlSax = rb_define_module_under(mNokogiriXml, "SAX");
|
45
|
+
mNokogiriHtmlSax = rb_define_module_under(mNokogiriHtml, "SAX");
|
46
|
+
|
47
|
+
rb_const_set( mNokogiri,
|
48
|
+
rb_intern("LIBXML_VERSION"),
|
49
|
+
NOKOGIRI_STR_NEW2(LIBXML_DOTTED_VERSION)
|
50
|
+
);
|
51
|
+
rb_const_set( mNokogiri,
|
52
|
+
rb_intern("LIBXML_PARSER_VERSION"),
|
53
|
+
NOKOGIRI_STR_NEW2(xmlParserVersion)
|
54
|
+
);
|
55
|
+
|
56
|
+
#ifdef LIBXML_ICONV_ENABLED
|
57
|
+
rb_const_set(mNokogiri, rb_intern("LIBXML_ICONV_ENABLED"), Qtrue);
|
58
|
+
#else
|
59
|
+
rb_const_set(mNokogiri, rb_intern("LIBXML_ICONV_ENABLED"), Qfalse);
|
60
|
+
#endif
|
61
|
+
|
62
|
+
xmlInitParser();
|
63
|
+
|
64
|
+
init_xml_document();
|
65
|
+
init_html_document();
|
66
|
+
init_xml_node();
|
67
|
+
init_xml_document_fragment();
|
68
|
+
init_xml_text();
|
69
|
+
init_xml_cdata();
|
70
|
+
init_xml_processing_instruction();
|
71
|
+
init_xml_attr();
|
72
|
+
init_xml_entity_reference();
|
73
|
+
init_xml_comment();
|
74
|
+
init_xml_node_set();
|
75
|
+
init_xml_xpath_context();
|
76
|
+
init_xml_sax_parser_context();
|
77
|
+
init_xml_sax_parser();
|
78
|
+
init_xml_sax_push_parser();
|
79
|
+
init_xml_reader();
|
80
|
+
init_xml_dtd();
|
81
|
+
init_xml_element_content();
|
82
|
+
init_xml_attribute_decl();
|
83
|
+
init_xml_element_decl();
|
84
|
+
init_xml_entity_decl();
|
85
|
+
init_xml_namespace();
|
86
|
+
init_html_sax_parser_context();
|
87
|
+
init_xslt_stylesheet();
|
88
|
+
init_xml_syntax_error();
|
89
|
+
init_html_entity_lookup();
|
90
|
+
init_html_element_description();
|
91
|
+
init_xml_schema();
|
92
|
+
init_xml_relax_ng();
|
93
|
+
init_nokogiri_io();
|
94
|
+
init_xml_encoding_handler();
|
95
|
+
}
|
@@ -0,0 +1,153 @@
|
|
1
|
+
#ifndef NOKOGIRI_NATIVE
|
2
|
+
#define NOKOGIRI_NATIVE
|
3
|
+
|
4
|
+
#include <stdlib.h>
|
5
|
+
#include <string.h>
|
6
|
+
#include <assert.h>
|
7
|
+
#include <stdarg.h>
|
8
|
+
|
9
|
+
#ifdef USE_INCLUDED_VASPRINTF
|
10
|
+
int vasprintf (char **strp, const char *fmt, va_list ap);
|
11
|
+
#else
|
12
|
+
|
13
|
+
#define _GNU_SOURCE
|
14
|
+
# include <stdio.h>
|
15
|
+
#undef _GNU_SOURCE
|
16
|
+
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#include <libxml/parser.h>
|
20
|
+
#include <libxml/entities.h>
|
21
|
+
#include <libxml/parserInternals.h>
|
22
|
+
#include <libxml/xpath.h>
|
23
|
+
#include <libxml/xpathInternals.h>
|
24
|
+
#include <libxml/xmlreader.h>
|
25
|
+
#include <libxml/xmlsave.h>
|
26
|
+
#include <libxml/xmlschemas.h>
|
27
|
+
#include <libxml/HTMLparser.h>
|
28
|
+
#include <libxml/HTMLtree.h>
|
29
|
+
#include <libxml/relaxng.h>
|
30
|
+
#include <ruby.h>
|
31
|
+
|
32
|
+
#ifdef HAVE_RUBY_ENCODING_H
|
33
|
+
#include <ruby/st.h>
|
34
|
+
#else
|
35
|
+
#include <st.h>
|
36
|
+
#endif
|
37
|
+
|
38
|
+
int is_2_6_16(void) ;
|
39
|
+
|
40
|
+
#ifndef UNUSED
|
41
|
+
# if defined(__GNUC__)
|
42
|
+
# define MAYBE_UNUSED(name) name __attribute__((unused))
|
43
|
+
# define UNUSED(name) MAYBE_UNUSED(UNUSED_ ## name)
|
44
|
+
# else
|
45
|
+
# define MAYBE_UNUSED(name) name
|
46
|
+
# define UNUSED(name) name
|
47
|
+
# endif
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#ifndef NORETURN
|
51
|
+
# if defined(__GNUC__)
|
52
|
+
# define NORETURN(name) __attribute__((noreturn)) name
|
53
|
+
# else
|
54
|
+
# define NORETURN(name) name
|
55
|
+
# endif
|
56
|
+
#endif
|
57
|
+
|
58
|
+
#ifdef HAVE_RUBY_ENCODING_H
|
59
|
+
|
60
|
+
#include <ruby/encoding.h>
|
61
|
+
|
62
|
+
#define NOKOGIRI_STR_NEW2(str) \
|
63
|
+
NOKOGIRI_STR_NEW(str, strlen((const char *)(str)))
|
64
|
+
|
65
|
+
#define NOKOGIRI_STR_NEW(str, len) \
|
66
|
+
rb_external_str_new_with_enc((const char *)(str), (long)(len), rb_utf8_encoding())
|
67
|
+
|
68
|
+
#else
|
69
|
+
|
70
|
+
#define NOKOGIRI_STR_NEW2(str) \
|
71
|
+
rb_str_new2((const char *)(str))
|
72
|
+
|
73
|
+
#define NOKOGIRI_STR_NEW(str, len) \
|
74
|
+
rb_str_new((const char *)(str), (long)(len))
|
75
|
+
#endif
|
76
|
+
|
77
|
+
#define RBSTR_OR_QNIL(_str) \
|
78
|
+
(_str ? NOKOGIRI_STR_NEW2(_str) : Qnil)
|
79
|
+
|
80
|
+
#include <xml_io.h>
|
81
|
+
#include <xml_document.h>
|
82
|
+
#include <html_entity_lookup.h>
|
83
|
+
#include <html_document.h>
|
84
|
+
#include <xml_node.h>
|
85
|
+
#include <xml_text.h>
|
86
|
+
#include <xml_cdata.h>
|
87
|
+
#include <xml_attr.h>
|
88
|
+
#include <xml_processing_instruction.h>
|
89
|
+
#include <xml_entity_reference.h>
|
90
|
+
#include <xml_document_fragment.h>
|
91
|
+
#include <xml_comment.h>
|
92
|
+
#include <xml_node_set.h>
|
93
|
+
#include <xml_dtd.h>
|
94
|
+
#include <xml_attribute_decl.h>
|
95
|
+
#include <xml_element_decl.h>
|
96
|
+
#include <xml_entity_decl.h>
|
97
|
+
#include <xml_xpath_context.h>
|
98
|
+
#include <xml_element_content.h>
|
99
|
+
#include <xml_sax_parser_context.h>
|
100
|
+
#include <xml_sax_parser.h>
|
101
|
+
#include <xml_sax_push_parser.h>
|
102
|
+
#include <xml_reader.h>
|
103
|
+
#include <html_sax_parser_context.h>
|
104
|
+
#include <xslt_stylesheet.h>
|
105
|
+
#include <xml_syntax_error.h>
|
106
|
+
#include <xml_schema.h>
|
107
|
+
#include <xml_relax_ng.h>
|
108
|
+
#include <html_element_description.h>
|
109
|
+
#include <xml_namespace.h>
|
110
|
+
#include <xml_encoding_handler.h>
|
111
|
+
|
112
|
+
extern VALUE mNokogiri ;
|
113
|
+
extern VALUE mNokogiriXml ;
|
114
|
+
extern VALUE mNokogiriXmlSax ;
|
115
|
+
extern VALUE mNokogiriHtml ;
|
116
|
+
extern VALUE mNokogiriHtmlSax ;
|
117
|
+
extern VALUE mNokogiriXslt ;
|
118
|
+
|
119
|
+
#define NOKOGIRI_ROOT_NODE(_node) \
|
120
|
+
st_insert(((nokogiriTuplePtr)(_node)->doc->_private)->unlinkedNodes, (st_data_t)(_node), (st_data_t)(_node))
|
121
|
+
|
122
|
+
#define NOKOGIRI_ROOT_NSDEF(_nsDef, _doc) \
|
123
|
+
st_insert(((nokogiriTuplePtr)(_doc)->_private)->unlinkedNodes, (st_data_t)(_nsDef), (st_data_t)(_nsDef))
|
124
|
+
|
125
|
+
#ifdef DEBUG
|
126
|
+
|
127
|
+
#define NOKOGIRI_DEBUG_START(p) if (getenv("NOKOGIRI_NO_FREE")) return ; if (getenv("NOKOGIRI_DEBUG")) fprintf(stderr,"nokogiri: %s:%d %p start\n", __FILE__, __LINE__, p);
|
128
|
+
#define NOKOGIRI_DEBUG_END(p) if (getenv("NOKOGIRI_DEBUG")) fprintf(stderr,"nokogiri: %s:%d %p end\n", __FILE__, __LINE__, p);
|
129
|
+
|
130
|
+
#else
|
131
|
+
|
132
|
+
#define NOKOGIRI_DEBUG_START(p)
|
133
|
+
#define NOKOGIRI_DEBUG_END(p)
|
134
|
+
|
135
|
+
#ifndef RSTRING_PTR
|
136
|
+
#define RSTRING_PTR(s) (RSTRING(s)->ptr)
|
137
|
+
#endif
|
138
|
+
|
139
|
+
#ifndef RSTRING_LEN
|
140
|
+
#define RSTRING_LEN(s) (RSTRING(s)->len)
|
141
|
+
#endif
|
142
|
+
|
143
|
+
#ifndef RARRAY_PTR
|
144
|
+
#define RARRAY_PTR(a) RARRAY(a)->ptr
|
145
|
+
#endif
|
146
|
+
|
147
|
+
#ifndef RARRAY_LEN
|
148
|
+
#define RARRAY_LEN(a) RARRAY(a)->len
|
149
|
+
#endif
|
150
|
+
|
151
|
+
#endif
|
152
|
+
|
153
|
+
#endif
|
@@ -0,0 +1,94 @@
|
|
1
|
+
#include <xml_attr.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* value=(content)
|
6
|
+
*
|
7
|
+
* Set the value for this Attr to +content+
|
8
|
+
*/
|
9
|
+
static VALUE set_value(VALUE self, VALUE content)
|
10
|
+
{
|
11
|
+
xmlAttrPtr attr;
|
12
|
+
Data_Get_Struct(self, xmlAttr, attr);
|
13
|
+
|
14
|
+
if(attr->children) xmlFreeNodeList(attr->children);
|
15
|
+
|
16
|
+
attr->children = attr->last = NULL;
|
17
|
+
|
18
|
+
if(content) {
|
19
|
+
xmlChar *buffer;
|
20
|
+
xmlNode *tmp;
|
21
|
+
|
22
|
+
/* Encode our content */
|
23
|
+
buffer = xmlEncodeEntitiesReentrant(attr->doc, (unsigned char *)StringValuePtr(content));
|
24
|
+
|
25
|
+
attr->children = xmlStringGetNodeList(attr->doc, buffer);
|
26
|
+
attr->last = NULL;
|
27
|
+
tmp = attr->children;
|
28
|
+
|
29
|
+
/* Loop through the children */
|
30
|
+
for(tmp = attr->children; tmp; tmp = tmp->next) {
|
31
|
+
tmp->parent = (xmlNode *)attr;
|
32
|
+
tmp->doc = attr->doc;
|
33
|
+
if(tmp->next == NULL) attr->last = tmp;
|
34
|
+
}
|
35
|
+
|
36
|
+
/* Free up memory */
|
37
|
+
xmlFree(buffer);
|
38
|
+
}
|
39
|
+
|
40
|
+
return content;
|
41
|
+
}
|
42
|
+
|
43
|
+
/*
|
44
|
+
* call-seq:
|
45
|
+
* new(document, name)
|
46
|
+
*
|
47
|
+
* Create a new Attr element on the +document+ with +name+
|
48
|
+
*/
|
49
|
+
static VALUE new(int argc, VALUE *argv, VALUE klass)
|
50
|
+
{
|
51
|
+
xmlDocPtr xml_doc;
|
52
|
+
VALUE document;
|
53
|
+
VALUE name;
|
54
|
+
VALUE rest;
|
55
|
+
xmlAttrPtr node;
|
56
|
+
VALUE rb_node;
|
57
|
+
|
58
|
+
rb_scan_args(argc, argv, "2*", &document, &name, &rest);
|
59
|
+
|
60
|
+
Data_Get_Struct(document, xmlDoc, xml_doc);
|
61
|
+
|
62
|
+
node = xmlNewDocProp(
|
63
|
+
xml_doc,
|
64
|
+
(const xmlChar *)StringValuePtr(name),
|
65
|
+
NULL
|
66
|
+
);
|
67
|
+
|
68
|
+
NOKOGIRI_ROOT_NODE((xmlNodePtr)node);
|
69
|
+
|
70
|
+
rb_node = Nokogiri_wrap_xml_node(klass, (xmlNodePtr)node);
|
71
|
+
rb_obj_call_init(rb_node, argc, argv);
|
72
|
+
|
73
|
+
if(rb_block_given_p()) rb_yield(rb_node);
|
74
|
+
|
75
|
+
return rb_node;
|
76
|
+
}
|
77
|
+
|
78
|
+
VALUE cNokogiriXmlAttr;
|
79
|
+
void init_xml_attr()
|
80
|
+
{
|
81
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
82
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
83
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
84
|
+
|
85
|
+
/*
|
86
|
+
* Attr represents a Attr node in an xml document.
|
87
|
+
*/
|
88
|
+
VALUE klass = rb_define_class_under(xml, "Attr", node);
|
89
|
+
|
90
|
+
cNokogiriXmlAttr = klass;
|
91
|
+
|
92
|
+
rb_define_singleton_method(klass, "new", new, -1);
|
93
|
+
rb_define_method(klass, "value=", set_value, 1);
|
94
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
#include <xml_attribute_decl.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* attribute_type
|
6
|
+
*
|
7
|
+
* The attribute_type for this AttributeDecl
|
8
|
+
*/
|
9
|
+
static VALUE attribute_type(VALUE self)
|
10
|
+
{
|
11
|
+
xmlAttributePtr node;
|
12
|
+
Data_Get_Struct(self, xmlAttribute, node);
|
13
|
+
return INT2NUM((long)node->atype);
|
14
|
+
}
|
15
|
+
|
16
|
+
/*
|
17
|
+
* call-seq:
|
18
|
+
* default
|
19
|
+
*
|
20
|
+
* The default value
|
21
|
+
*/
|
22
|
+
static VALUE default_value(VALUE self)
|
23
|
+
{
|
24
|
+
xmlAttributePtr node;
|
25
|
+
Data_Get_Struct(self, xmlAttribute, node);
|
26
|
+
|
27
|
+
if(node->defaultValue) return NOKOGIRI_STR_NEW2(node->defaultValue);
|
28
|
+
return Qnil;
|
29
|
+
}
|
30
|
+
|
31
|
+
/*
|
32
|
+
* call-seq:
|
33
|
+
* enumeration
|
34
|
+
*
|
35
|
+
* An enumeration of possible values
|
36
|
+
*/
|
37
|
+
static VALUE enumeration(VALUE self)
|
38
|
+
{
|
39
|
+
xmlAttributePtr node;
|
40
|
+
xmlEnumerationPtr enm;
|
41
|
+
VALUE list;
|
42
|
+
|
43
|
+
Data_Get_Struct(self, xmlAttribute, node);
|
44
|
+
|
45
|
+
list = rb_ary_new();
|
46
|
+
enm = node->tree;
|
47
|
+
|
48
|
+
while(enm) {
|
49
|
+
rb_ary_push(list, NOKOGIRI_STR_NEW2(enm->name));
|
50
|
+
enm = enm->next;
|
51
|
+
}
|
52
|
+
|
53
|
+
return list;
|
54
|
+
}
|
55
|
+
|
56
|
+
VALUE cNokogiriXmlAttributeDecl;
|
57
|
+
|
58
|
+
void init_xml_attribute_decl()
|
59
|
+
{
|
60
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
61
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
62
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
63
|
+
VALUE klass = rb_define_class_under(xml, "AttributeDecl", node);
|
64
|
+
|
65
|
+
cNokogiriXmlAttributeDecl = klass;
|
66
|
+
|
67
|
+
rb_define_method(klass, "attribute_type", attribute_type, 0);
|
68
|
+
rb_define_method(klass, "default", default_value, 0);
|
69
|
+
rb_define_method(klass, "enumeration", enumeration, 0);
|
70
|
+
}
|
@@ -0,0 +1,56 @@
|
|
1
|
+
#include <xml_cdata.h>
|
2
|
+
|
3
|
+
/*
|
4
|
+
* call-seq:
|
5
|
+
* new(document, content)
|
6
|
+
*
|
7
|
+
* Create a new CDATA element on the +document+ with +content+
|
8
|
+
*/
|
9
|
+
static VALUE new(int argc, VALUE *argv, VALUE klass)
|
10
|
+
{
|
11
|
+
xmlDocPtr xml_doc;
|
12
|
+
xmlNodePtr node;
|
13
|
+
VALUE doc;
|
14
|
+
VALUE content;
|
15
|
+
VALUE rest;
|
16
|
+
VALUE rb_node;
|
17
|
+
|
18
|
+
rb_scan_args(argc, argv, "2*", &doc, &content, &rest);
|
19
|
+
|
20
|
+
Data_Get_Struct(doc, xmlDoc, xml_doc);
|
21
|
+
|
22
|
+
node = xmlNewCDataBlock(
|
23
|
+
xml_doc->doc,
|
24
|
+
NIL_P(content) ? NULL : (const xmlChar *)StringValuePtr(content),
|
25
|
+
NIL_P(content) ? 0 : (int)RSTRING_LEN(content)
|
26
|
+
);
|
27
|
+
|
28
|
+
NOKOGIRI_ROOT_NODE(node);
|
29
|
+
|
30
|
+
rb_node = Nokogiri_wrap_xml_node(klass, node);
|
31
|
+
rb_obj_call_init(rb_node, argc, argv);
|
32
|
+
|
33
|
+
if(rb_block_given_p()) rb_yield(rb_node);
|
34
|
+
|
35
|
+
return rb_node;
|
36
|
+
}
|
37
|
+
|
38
|
+
VALUE cNokogiriXmlCData;
|
39
|
+
void init_xml_cdata()
|
40
|
+
{
|
41
|
+
VALUE nokogiri = rb_define_module("Nokogiri");
|
42
|
+
VALUE xml = rb_define_module_under(nokogiri, "XML");
|
43
|
+
VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
|
44
|
+
VALUE char_data = rb_define_class_under(xml, "CharacterData", node);
|
45
|
+
VALUE text = rb_define_class_under(xml, "Text", char_data);
|
46
|
+
|
47
|
+
/*
|
48
|
+
* CData represents a CData node in an xml document.
|
49
|
+
*/
|
50
|
+
VALUE klass = rb_define_class_under(xml, "CDATA", text);
|
51
|
+
|
52
|
+
|
53
|
+
cNokogiriXmlCData = klass;
|
54
|
+
|
55
|
+
rb_define_singleton_method(klass, "new", new, -1);
|
56
|
+
}
|