nokogiri 1.11.0.rc3-java → 1.11.4-java
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/Gemfile +3 -0
- data/LICENSE-DEPENDENCIES.md +1015 -947
- data/LICENSE.md +1 -1
- data/README.md +168 -91
- data/dependencies.yml +12 -12
- data/ext/java/nokogiri/EncodingHandler.java +76 -89
- data/ext/java/nokogiri/HtmlDocument.java +135 -144
- data/ext/java/nokogiri/HtmlElementDescription.java +102 -117
- data/ext/java/nokogiri/HtmlEntityLookup.java +33 -60
- data/ext/java/nokogiri/HtmlSaxParserContext.java +218 -222
- data/ext/java/nokogiri/HtmlSaxPushParser.java +162 -169
- data/ext/java/nokogiri/NokogiriService.java +595 -556
- data/ext/java/nokogiri/XmlAttr.java +118 -126
- data/ext/java/nokogiri/XmlAttributeDecl.java +95 -106
- data/ext/java/nokogiri/XmlCdata.java +35 -58
- data/ext/java/nokogiri/XmlComment.java +46 -67
- data/ext/java/nokogiri/XmlDocument.java +645 -572
- data/ext/java/nokogiri/XmlDocumentFragment.java +125 -137
- data/ext/java/nokogiri/XmlDtd.java +448 -414
- data/ext/java/nokogiri/XmlElement.java +23 -48
- data/ext/java/nokogiri/XmlElementContent.java +343 -316
- data/ext/java/nokogiri/XmlElementDecl.java +124 -125
- data/ext/java/nokogiri/XmlEntityDecl.java +119 -127
- data/ext/java/nokogiri/XmlEntityReference.java +49 -72
- data/ext/java/nokogiri/XmlNamespace.java +175 -175
- data/ext/java/nokogiri/XmlNode.java +1843 -1622
- data/ext/java/nokogiri/XmlNodeSet.java +361 -331
- data/ext/java/nokogiri/XmlProcessingInstruction.java +47 -69
- data/ext/java/nokogiri/XmlReader.java +513 -450
- data/ext/java/nokogiri/XmlRelaxng.java +89 -101
- data/ext/java/nokogiri/XmlSaxParserContext.java +328 -310
- data/ext/java/nokogiri/XmlSaxPushParser.java +227 -220
- data/ext/java/nokogiri/XmlSchema.java +335 -242
- data/ext/java/nokogiri/XmlSyntaxError.java +113 -119
- data/ext/java/nokogiri/XmlText.java +55 -76
- data/ext/java/nokogiri/XmlXpathContext.java +242 -210
- data/ext/java/nokogiri/XsltStylesheet.java +280 -269
- data/ext/java/nokogiri/internals/ClosedStreamException.java +5 -2
- data/ext/java/nokogiri/internals/HtmlDomParserContext.java +201 -190
- data/ext/java/nokogiri/internals/IgnoreSchemaErrorsErrorHandler.java +17 -10
- data/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +43 -16
- data/ext/java/nokogiri/internals/NokogiriDomParser.java +63 -80
- data/ext/java/nokogiri/internals/NokogiriEntityResolver.java +107 -88
- data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +27 -52
- data/ext/java/nokogiri/internals/NokogiriHandler.java +316 -286
- data/ext/java/nokogiri/internals/NokogiriHelpers.java +736 -652
- data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +184 -173
- data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +79 -89
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +64 -79
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +84 -99
- data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +48 -65
- data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +119 -78
- data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +34 -54
- data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +23 -46
- data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +55 -72
- data/ext/java/nokogiri/internals/ParserContext.java +206 -211
- data/ext/java/nokogiri/internals/ReaderNode.java +478 -403
- data/ext/java/nokogiri/internals/SaveContextVisitor.java +822 -739
- data/ext/java/nokogiri/internals/SchemaErrorHandler.java +31 -54
- data/ext/java/nokogiri/internals/XalanDTMManagerPatch.java +129 -123
- data/ext/java/nokogiri/internals/XmlDeclHandler.java +3 -34
- data/ext/java/nokogiri/internals/XmlDomParserContext.java +206 -207
- data/ext/java/nokogiri/internals/XmlSaxParser.java +22 -47
- data/ext/java/nokogiri/internals/c14n/AttrCompare.java +71 -68
- data/ext/java/nokogiri/internals/c14n/C14nHelper.java +137 -118
- data/ext/java/nokogiri/internals/c14n/CanonicalFilter.java +27 -21
- data/ext/java/nokogiri/internals/c14n/CanonicalizationException.java +74 -61
- data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +230 -205
- data/ext/java/nokogiri/internals/c14n/Canonicalizer11.java +572 -547
- data/ext/java/nokogiri/internals/c14n/Canonicalizer11_OmitComments.java +17 -10
- data/ext/java/nokogiri/internals/c14n/Canonicalizer11_WithComments.java +17 -10
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java +323 -302
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315Excl.java +232 -219
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclOmitComments.java +22 -15
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclWithComments.java +23 -16
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315OmitComments.java +23 -16
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315WithComments.java +22 -15
- data/ext/java/nokogiri/internals/c14n/CanonicalizerBase.java +575 -545
- data/ext/java/nokogiri/internals/c14n/CanonicalizerPhysical.java +141 -120
- data/ext/java/nokogiri/internals/c14n/CanonicalizerSpi.java +39 -38
- data/ext/java/nokogiri/internals/c14n/Constants.java +13 -10
- data/ext/java/nokogiri/internals/c14n/ElementProxy.java +279 -247
- data/ext/java/nokogiri/internals/c14n/HelperNodeList.java +66 -53
- data/ext/java/nokogiri/internals/c14n/IgnoreAllErrorHandler.java +44 -37
- data/ext/java/nokogiri/internals/c14n/InclusiveNamespaces.java +135 -120
- data/ext/java/nokogiri/internals/c14n/InvalidCanonicalizerException.java +59 -48
- data/ext/java/nokogiri/internals/c14n/NameSpaceSymbTable.java +384 -334
- data/ext/java/nokogiri/internals/c14n/NodeFilter.java +25 -24
- data/ext/java/nokogiri/internals/c14n/UtfHelpper.java +151 -140
- data/ext/java/nokogiri/internals/c14n/XMLUtils.java +456 -423
- data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +1466 -1500
- data/ext/java/nokogiri/internals/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java +626 -574
- data/ext/nokogiri/depend +37 -358
- data/ext/nokogiri/extconf.rb +581 -374
- data/ext/nokogiri/html_document.c +78 -82
- 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 +69 -66
- data/ext/nokogiri/html_sax_push_parser.c +42 -34
- data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
- data/ext/nokogiri/nokogiri.c +192 -93
- data/ext/nokogiri/test_global_handlers.c +40 -0
- 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 +246 -188
- 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 +371 -320
- 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 +52 -28
- data/ext/nokogiri/xml_sax_parser.c +118 -118
- data/ext/nokogiri/xml_sax_parser_context.c +103 -86
- data/ext/nokogiri/xml_sax_push_parser.c +36 -27
- data/ext/nokogiri/xml_schema.c +95 -47
- data/ext/nokogiri/xml_syntax_error.c +42 -21
- data/ext/nokogiri/xml_text.c +13 -17
- data/ext/nokogiri/xml_xpath_context.c +206 -123
- data/ext/nokogiri/xslt_stylesheet.c +158 -161
- data/lib/nokogiri.rb +3 -7
- data/lib/nokogiri/css/parser.rb +3 -3
- data/lib/nokogiri/css/parser.y +2 -2
- data/lib/nokogiri/css/xpath_visitor.rb +70 -42
- data/lib/nokogiri/extension.rb +26 -0
- data/lib/nokogiri/html/document.rb +12 -26
- data/lib/nokogiri/html/document_fragment.rb +15 -15
- data/lib/nokogiri/nokogiri.jar +0 -0
- data/lib/nokogiri/version.rb +2 -149
- data/lib/nokogiri/version/constant.rb +5 -0
- data/lib/nokogiri/version/info.rb +205 -0
- data/lib/nokogiri/xml/document.rb +91 -35
- data/lib/nokogiri/xml/document_fragment.rb +4 -6
- data/lib/nokogiri/xml/node.rb +89 -69
- data/lib/nokogiri/xml/parse_options.rb +6 -0
- data/lib/nokogiri/xml/reader.rb +2 -9
- data/lib/nokogiri/xml/relax_ng.rb +6 -2
- data/lib/nokogiri/xml/schema.rb +12 -4
- data/lib/nokogiri/xml/searchable.rb +3 -1
- data/lib/nokogiri/xml/xpath.rb +1 -3
- data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
- metadata +86 -177
- 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/nokogiri.h +0 -134
- 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 -13
- 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
data/ext/nokogiri/nokogiri.h
DELETED
@@ -1,134 +0,0 @@
|
|
1
|
-
#ifndef NOKOGIRI_NATIVE
|
2
|
-
#define NOKOGIRI_NATIVE
|
3
|
-
|
4
|
-
#if _MSC_VER
|
5
|
-
#ifndef WIN32_LEAN_AND_MEAN
|
6
|
-
#define WIN32_LEAN_AND_MEAN
|
7
|
-
#endif /* WIN32_LEAN_AND_MEAN */
|
8
|
-
#ifndef WIN32
|
9
|
-
#define WIN32
|
10
|
-
#endif /* WIN32 */
|
11
|
-
#include <winsock2.h>
|
12
|
-
#include <ws2tcpip.h>
|
13
|
-
#include <windows.h>
|
14
|
-
#endif
|
15
|
-
|
16
|
-
#include <stdlib.h>
|
17
|
-
#include <string.h>
|
18
|
-
#include <assert.h>
|
19
|
-
#include <stdarg.h>
|
20
|
-
|
21
|
-
#ifdef USE_INCLUDED_VASPRINTF
|
22
|
-
int vasprintf (char **strp, const char *fmt, va_list ap);
|
23
|
-
#else
|
24
|
-
|
25
|
-
#define _GNU_SOURCE
|
26
|
-
# include <stdio.h>
|
27
|
-
#undef _GNU_SOURCE
|
28
|
-
|
29
|
-
#endif
|
30
|
-
|
31
|
-
#include <libxml/parser.h>
|
32
|
-
#include <libxml/entities.h>
|
33
|
-
#include <libxml/parserInternals.h>
|
34
|
-
#include <libxml/xpath.h>
|
35
|
-
#include <libxml/xpathInternals.h>
|
36
|
-
#include <libxml/xmlreader.h>
|
37
|
-
#include <libxml/xmlsave.h>
|
38
|
-
#include <libxml/xmlschemas.h>
|
39
|
-
#include <libxml/HTMLparser.h>
|
40
|
-
#include <libxml/HTMLtree.h>
|
41
|
-
#include <libxml/relaxng.h>
|
42
|
-
#include <libxml/xinclude.h>
|
43
|
-
#include <libxslt/extensions.h>
|
44
|
-
#include <libxslt/xsltconfig.h>
|
45
|
-
#include <libxml/c14n.h>
|
46
|
-
#include <ruby.h>
|
47
|
-
#include <ruby/st.h>
|
48
|
-
#include <ruby/encoding.h>
|
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
|
-
#define NOKOGIRI_STR_NEW2(str) \
|
59
|
-
NOKOGIRI_STR_NEW(str, strlen((const char *)(str)))
|
60
|
-
|
61
|
-
#define NOKOGIRI_STR_NEW(str, len) \
|
62
|
-
rb_external_str_new_with_enc((const char *)(str), (long)(len), rb_utf8_encoding())
|
63
|
-
|
64
|
-
#define RBSTR_OR_QNIL(_str) \
|
65
|
-
(_str ? NOKOGIRI_STR_NEW2(_str) : Qnil)
|
66
|
-
|
67
|
-
#include <xml_libxml2_hacks.h>
|
68
|
-
|
69
|
-
#include <xml_io.h>
|
70
|
-
#include <xml_document.h>
|
71
|
-
#include <html_entity_lookup.h>
|
72
|
-
#include <html_document.h>
|
73
|
-
#include <xml_node.h>
|
74
|
-
#include <xml_text.h>
|
75
|
-
#include <xml_cdata.h>
|
76
|
-
#include <xml_attr.h>
|
77
|
-
#include <xml_processing_instruction.h>
|
78
|
-
#include <xml_entity_reference.h>
|
79
|
-
#include <xml_document_fragment.h>
|
80
|
-
#include <xml_comment.h>
|
81
|
-
#include <xml_node_set.h>
|
82
|
-
#include <xml_dtd.h>
|
83
|
-
#include <xml_attribute_decl.h>
|
84
|
-
#include <xml_element_decl.h>
|
85
|
-
#include <xml_entity_decl.h>
|
86
|
-
#include <xml_xpath_context.h>
|
87
|
-
#include <xml_element_content.h>
|
88
|
-
#include <xml_sax_parser_context.h>
|
89
|
-
#include <xml_sax_parser.h>
|
90
|
-
#include <xml_sax_push_parser.h>
|
91
|
-
#include <xml_reader.h>
|
92
|
-
#include <html_sax_parser_context.h>
|
93
|
-
#include <html_sax_push_parser.h>
|
94
|
-
#include <xslt_stylesheet.h>
|
95
|
-
#include <xml_syntax_error.h>
|
96
|
-
#include <xml_schema.h>
|
97
|
-
#include <xml_relax_ng.h>
|
98
|
-
#include <html_element_description.h>
|
99
|
-
#include <xml_namespace.h>
|
100
|
-
#include <xml_encoding_handler.h>
|
101
|
-
|
102
|
-
extern VALUE mNokogiri ;
|
103
|
-
extern VALUE mNokogiriXml ;
|
104
|
-
extern VALUE mNokogiriXmlSax ;
|
105
|
-
extern VALUE mNokogiriHtml ;
|
106
|
-
extern VALUE mNokogiriHtmlSax ;
|
107
|
-
extern VALUE mNokogiriXslt ;
|
108
|
-
|
109
|
-
void nokogiri_root_node(xmlNodePtr);
|
110
|
-
void nokogiri_root_nsdef(xmlNsPtr, xmlDocPtr);
|
111
|
-
|
112
|
-
#ifdef DEBUG
|
113
|
-
|
114
|
-
#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);
|
115
|
-
#define NOKOGIRI_DEBUG_END(p) if (getenv("NOKOGIRI_DEBUG")) fprintf(stderr,"nokogiri: %s:%d %p end\n", __FILE__, __LINE__, p);
|
116
|
-
|
117
|
-
#else
|
118
|
-
|
119
|
-
#define NOKOGIRI_DEBUG_START(p)
|
120
|
-
#define NOKOGIRI_DEBUG_END(p)
|
121
|
-
|
122
|
-
#endif
|
123
|
-
|
124
|
-
#ifndef __builtin_expect
|
125
|
-
# if defined(__GNUC__)
|
126
|
-
# define __builtin_expect(expr, c) __builtin_expect((long)(expr), (long)(c))
|
127
|
-
# endif
|
128
|
-
#endif
|
129
|
-
|
130
|
-
#define XMLNS_PREFIX "xmlns"
|
131
|
-
#define XMLNS_PREFIX_LEN 6 /* including either colon or \0 */
|
132
|
-
#define XMLNS_BUFFER_LEN 128
|
133
|
-
|
134
|
-
#endif
|
data/ext/nokogiri/xml_attr.h
DELETED
data/ext/nokogiri/xml_cdata.h
DELETED
data/ext/nokogiri/xml_comment.h
DELETED
data/ext/nokogiri/xml_document.h
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
#ifndef NOKOGIRI_XML_DOCUMENT
|
2
|
-
#define NOKOGIRI_XML_DOCUMENT
|
3
|
-
|
4
|
-
#include <nokogiri.h>
|
5
|
-
|
6
|
-
struct _nokogiriTuple {
|
7
|
-
VALUE doc;
|
8
|
-
st_table *unlinkedNodes;
|
9
|
-
VALUE node_cache;
|
10
|
-
};
|
11
|
-
typedef struct _nokogiriTuple nokogiriTuple;
|
12
|
-
typedef nokogiriTuple * nokogiriTuplePtr;
|
13
|
-
|
14
|
-
void init_xml_document();
|
15
|
-
VALUE Nokogiri_wrap_xml_document(VALUE klass, xmlDocPtr doc);
|
16
|
-
|
17
|
-
#define DOC_RUBY_OBJECT_TEST(x) ((nokogiriTuplePtr)(x->_private))
|
18
|
-
#define DOC_RUBY_OBJECT(x) (((nokogiriTuplePtr)(x->_private))->doc)
|
19
|
-
#define DOC_UNLINKED_NODE_HASH(x) (((nokogiriTuplePtr)(x->_private))->unlinkedNodes)
|
20
|
-
#define DOC_NODE_CACHE(x) (((nokogiriTuplePtr)(x->_private))->node_cache)
|
21
|
-
|
22
|
-
extern VALUE cNokogiriXmlDocument ;
|
23
|
-
#endif
|
data/ext/nokogiri/xml_dtd.h
DELETED
data/ext/nokogiri/xml_io.c
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
#include <xml_io.h>
|
2
|
-
|
3
|
-
static ID id_read, id_write;
|
4
|
-
|
5
|
-
VALUE read_check(VALUE val) {
|
6
|
-
VALUE *args = (VALUE *)val;
|
7
|
-
return rb_funcall(args[0], id_read, 1, args[1]);
|
8
|
-
}
|
9
|
-
|
10
|
-
VALUE read_failed(VALUE arg, VALUE exc) {
|
11
|
-
return Qundef;
|
12
|
-
}
|
13
|
-
|
14
|
-
int io_read_callback(void * ctx, char * buffer, int len) {
|
15
|
-
VALUE string, args[2];
|
16
|
-
size_t str_len, safe_len;
|
17
|
-
|
18
|
-
args[0] = (VALUE)ctx;
|
19
|
-
args[1] = INT2NUM(len);
|
20
|
-
|
21
|
-
string = rb_rescue(read_check, (VALUE)args, read_failed, 0);
|
22
|
-
|
23
|
-
if (NIL_P(string)) return 0;
|
24
|
-
if (string == Qundef) return -1;
|
25
|
-
if (TYPE(string) != T_STRING) return -1;
|
26
|
-
|
27
|
-
str_len = (size_t)RSTRING_LEN(string);
|
28
|
-
safe_len = str_len > (size_t)len ? (size_t)len : str_len;
|
29
|
-
memcpy(buffer, StringValuePtr(string), safe_len);
|
30
|
-
|
31
|
-
return (int)safe_len;
|
32
|
-
}
|
33
|
-
|
34
|
-
VALUE write_check(VALUE val) {
|
35
|
-
VALUE *args = (VALUE *)val;
|
36
|
-
return rb_funcall(args[0], id_write, 1, args[1]);
|
37
|
-
}
|
38
|
-
|
39
|
-
VALUE write_failed(VALUE arg, VALUE exc) {
|
40
|
-
return Qundef;
|
41
|
-
}
|
42
|
-
|
43
|
-
int io_write_callback(void * ctx, char * buffer, int len) {
|
44
|
-
VALUE args[2], size;
|
45
|
-
|
46
|
-
args[0] = (VALUE)ctx;
|
47
|
-
args[1] = rb_str_new(buffer, (long)len);
|
48
|
-
|
49
|
-
size = rb_rescue(write_check, (VALUE)args, write_failed, 0);
|
50
|
-
|
51
|
-
if (size == Qundef) return -1;
|
52
|
-
|
53
|
-
return NUM2INT(size);
|
54
|
-
}
|
55
|
-
|
56
|
-
int io_close_callback(void * ctx) {
|
57
|
-
return 0;
|
58
|
-
}
|
59
|
-
|
60
|
-
void init_nokogiri_io() {
|
61
|
-
id_read = rb_intern("read");
|
62
|
-
id_write = rb_intern("write");
|
63
|
-
}
|
data/ext/nokogiri/xml_io.h
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
#ifndef NOKOGIRI_XML_IO
|
2
|
-
#define NOKOGIRI_XML_IO
|
3
|
-
|
4
|
-
#include <nokogiri.h>
|
5
|
-
|
6
|
-
int io_read_callback(void * ctx, char * buffer, int len);
|
7
|
-
int io_write_callback(void * ctx, char * buffer, int len);
|
8
|
-
int io_close_callback(void * ctx);
|
9
|
-
void init_nokogiri_io();
|
10
|
-
|
11
|
-
#endif
|
@@ -1,112 +0,0 @@
|
|
1
|
-
#ifndef HAVE_XMLFIRSTELEMENTCHILD
|
2
|
-
#include <libxml/tree.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
|
-
xmlNodePtr cur = NULL;
|
17
|
-
|
18
|
-
if (parent == NULL)
|
19
|
-
return(NULL);
|
20
|
-
switch (parent->type) {
|
21
|
-
case XML_ELEMENT_NODE:
|
22
|
-
case XML_ENTITY_NODE:
|
23
|
-
case XML_DOCUMENT_NODE:
|
24
|
-
case XML_HTML_DOCUMENT_NODE:
|
25
|
-
cur = parent->children;
|
26
|
-
break;
|
27
|
-
default:
|
28
|
-
return(NULL);
|
29
|
-
}
|
30
|
-
while (cur != NULL) {
|
31
|
-
if (cur->type == XML_ELEMENT_NODE)
|
32
|
-
return(cur);
|
33
|
-
cur = cur->next;
|
34
|
-
}
|
35
|
-
return(NULL);
|
36
|
-
}
|
37
|
-
|
38
|
-
/**
|
39
|
-
* xmlNextElementSibling:
|
40
|
-
* @node: the current node
|
41
|
-
*
|
42
|
-
* Finds the first closest next sibling of the node which is an
|
43
|
-
* element node.
|
44
|
-
* Note the handling of entities references is different than in
|
45
|
-
* the W3C DOM element traversal spec since we don't have back reference
|
46
|
-
* from entities content to entities references.
|
47
|
-
*
|
48
|
-
* Returns the next element sibling or NULL if not available
|
49
|
-
*/
|
50
|
-
xmlNodePtr
|
51
|
-
xmlNextElementSibling(xmlNodePtr node) {
|
52
|
-
if (node == NULL)
|
53
|
-
return(NULL);
|
54
|
-
switch (node->type) {
|
55
|
-
case XML_ELEMENT_NODE:
|
56
|
-
case XML_TEXT_NODE:
|
57
|
-
case XML_CDATA_SECTION_NODE:
|
58
|
-
case XML_ENTITY_REF_NODE:
|
59
|
-
case XML_ENTITY_NODE:
|
60
|
-
case XML_PI_NODE:
|
61
|
-
case XML_COMMENT_NODE:
|
62
|
-
case XML_DTD_NODE:
|
63
|
-
case XML_XINCLUDE_START:
|
64
|
-
case XML_XINCLUDE_END:
|
65
|
-
node = node->next;
|
66
|
-
break;
|
67
|
-
default:
|
68
|
-
return(NULL);
|
69
|
-
}
|
70
|
-
while (node != NULL) {
|
71
|
-
if (node->type == XML_ELEMENT_NODE)
|
72
|
-
return(node);
|
73
|
-
node = node->next;
|
74
|
-
}
|
75
|
-
return(NULL);
|
76
|
-
}
|
77
|
-
|
78
|
-
/**
|
79
|
-
* xmlLastElementChild:
|
80
|
-
* @parent: the parent node
|
81
|
-
*
|
82
|
-
* Finds the last child node of that element which is a Element node
|
83
|
-
* Note the handling of entities references is different than in
|
84
|
-
* the W3C DOM element traversal spec since we don't have back reference
|
85
|
-
* from entities content to entities references.
|
86
|
-
*
|
87
|
-
* Returns the last element child or NULL if not available
|
88
|
-
*/
|
89
|
-
xmlNodePtr
|
90
|
-
xmlLastElementChild(xmlNodePtr parent) {
|
91
|
-
xmlNodePtr cur = NULL;
|
92
|
-
|
93
|
-
if (parent == NULL)
|
94
|
-
return(NULL);
|
95
|
-
switch (parent->type) {
|
96
|
-
case XML_ELEMENT_NODE:
|
97
|
-
case XML_ENTITY_NODE:
|
98
|
-
case XML_DOCUMENT_NODE:
|
99
|
-
case XML_HTML_DOCUMENT_NODE:
|
100
|
-
cur = parent->last;
|
101
|
-
break;
|
102
|
-
default:
|
103
|
-
return(NULL);
|
104
|
-
}
|
105
|
-
while (cur != NULL) {
|
106
|
-
if (cur->type == XML_ELEMENT_NODE)
|
107
|
-
return(cur);
|
108
|
-
cur = cur->prev;
|
109
|
-
}
|
110
|
-
return(NULL);
|
111
|
-
}
|
112
|
-
#endif
|