nokogiri-fitzsimmons 1.5.5.3-java
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +26 -0
- data/.gemtest +0 -0
- data/CHANGELOG.ja.rdoc +666 -0
- data/CHANGELOG.rdoc +659 -0
- data/C_CODING_STYLE.rdoc +33 -0
- data/Manifest.txt +295 -0
- data/README.ja.rdoc +106 -0
- data/README.rdoc +178 -0
- data/ROADMAP.md +86 -0
- data/Rakefile +194 -0
- data/STANDARD_RESPONSES.md +47 -0
- data/Y_U_NO_GEMSPEC.md +155 -0
- data/bin/nokogiri +63 -0
- data/build_all +58 -0
- data/ext/java/nokogiri/EncodingHandler.java +124 -0
- data/ext/java/nokogiri/HtmlDocument.java +163 -0
- data/ext/java/nokogiri/HtmlElementDescription.java +145 -0
- data/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
- data/ext/java/nokogiri/HtmlSaxParserContext.java +259 -0
- data/ext/java/nokogiri/NokogiriService.java +598 -0
- data/ext/java/nokogiri/XmlAttr.java +190 -0
- data/ext/java/nokogiri/XmlAttributeDecl.java +130 -0
- data/ext/java/nokogiri/XmlCdata.java +84 -0
- data/ext/java/nokogiri/XmlComment.java +95 -0
- data/ext/java/nokogiri/XmlDocument.java +580 -0
- data/ext/java/nokogiri/XmlDocumentFragment.java +234 -0
- data/ext/java/nokogiri/XmlDtd.java +469 -0
- data/ext/java/nokogiri/XmlElement.java +97 -0
- data/ext/java/nokogiri/XmlElementContent.java +382 -0
- data/ext/java/nokogiri/XmlElementDecl.java +152 -0
- data/ext/java/nokogiri/XmlEntityDecl.java +162 -0
- data/ext/java/nokogiri/XmlEntityReference.java +97 -0
- data/ext/java/nokogiri/XmlNamespace.java +215 -0
- data/ext/java/nokogiri/XmlNode.java +1534 -0
- data/ext/java/nokogiri/XmlNodeSet.java +270 -0
- data/ext/java/nokogiri/XmlProcessingInstruction.java +99 -0
- data/ext/java/nokogiri/XmlReader.java +456 -0
- data/ext/java/nokogiri/XmlRelaxng.java +144 -0
- data/ext/java/nokogiri/XmlSaxParserContext.java +356 -0
- data/ext/java/nokogiri/XmlSaxPushParser.java +215 -0
- data/ext/java/nokogiri/XmlSchema.java +324 -0
- data/ext/java/nokogiri/XmlSyntaxError.java +136 -0
- data/ext/java/nokogiri/XmlText.java +119 -0
- data/ext/java/nokogiri/XmlXpathContext.java +203 -0
- data/ext/java/nokogiri/XsltStylesheet.java +360 -0
- data/ext/java/nokogiri/internals/HtmlDomParserContext.java +243 -0
- data/ext/java/nokogiri/internals/NokogiriDocumentCache.java +73 -0
- data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +86 -0
- data/ext/java/nokogiri/internals/NokogiriHandler.java +333 -0
- data/ext/java/nokogiri/internals/NokogiriHelpers.java +800 -0
- data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +163 -0
- data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +130 -0
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +74 -0
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
- data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +79 -0
- data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +141 -0
- data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +73 -0
- data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +67 -0
- data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +87 -0
- data/ext/java/nokogiri/internals/ParserContext.java +288 -0
- data/ext/java/nokogiri/internals/ReaderNode.java +531 -0
- data/ext/java/nokogiri/internals/SaveContextVisitor.java +775 -0
- data/ext/java/nokogiri/internals/SchemaErrorHandler.java +76 -0
- data/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
- data/ext/java/nokogiri/internals/XmlDomParser.java +105 -0
- data/ext/java/nokogiri/internals/XmlDomParserContext.java +266 -0
- data/ext/java/nokogiri/internals/XmlSaxParser.java +65 -0
- data/ext/java/nokogiri/internals/XsltExtensionFunction.java +72 -0
- data/ext/nokogiri/depend +358 -0
- data/ext/nokogiri/extconf.rb +142 -0
- data/ext/nokogiri/html_document.c +170 -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 +116 -0
- data/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/ext/nokogiri/html_sax_push_parser.c +87 -0
- data/ext/nokogiri/html_sax_push_parser.h +9 -0
- data/ext/nokogiri/nokogiri.c +133 -0
- data/ext/nokogiri/nokogiri.h +160 -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 +576 -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 +56 -0
- data/ext/nokogiri/xml_io.h +11 -0
- data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
- data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
- data/ext/nokogiri/xml_namespace.c +78 -0
- data/ext/nokogiri/xml_namespace.h +13 -0
- data/ext/nokogiri/xml_node.c +1480 -0
- data/ext/nokogiri/xml_node.h +13 -0
- data/ext/nokogiri/xml_node_set.c +467 -0
- data/ext/nokogiri/xml_node_set.h +14 -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 +684 -0
- data/ext/nokogiri/xml_reader.h +10 -0
- data/ext/nokogiri/xml_relax_ng.c +161 -0
- data/ext/nokogiri/xml_relax_ng.h +9 -0
- data/ext/nokogiri/xml_sax_parser.c +293 -0
- data/ext/nokogiri/xml_sax_parser.h +39 -0
- data/ext/nokogiri/xml_sax_parser_context.c +222 -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 +52 -0
- data/ext/nokogiri/xml_text.h +9 -0
- data/ext/nokogiri/xml_xpath_context.c +319 -0
- data/ext/nokogiri/xml_xpath_context.h +10 -0
- data/ext/nokogiri/xslt_stylesheet.c +270 -0
- data/ext/nokogiri/xslt_stylesheet.h +14 -0
- data/lib/isorelax.jar +0 -0
- data/lib/jing.jar +0 -0
- data/lib/nekodtd.jar +0 -0
- data/lib/nekohtml.jar +0 -0
- data/lib/nokogiri.rb +127 -0
- data/lib/nokogiri/css.rb +27 -0
- data/lib/nokogiri/css/node.rb +102 -0
- data/lib/nokogiri/css/parser.rb +720 -0
- data/lib/nokogiri/css/parser.y +258 -0
- data/lib/nokogiri/css/parser_extras.rb +91 -0
- data/lib/nokogiri/css/syntax_error.rb +7 -0
- data/lib/nokogiri/css/tokenizer.rb +152 -0
- data/lib/nokogiri/css/tokenizer.rex +55 -0
- data/lib/nokogiri/css/xpath_visitor.rb +171 -0
- data/lib/nokogiri/decorators/slop.rb +35 -0
- data/lib/nokogiri/html.rb +37 -0
- data/lib/nokogiri/html/builder.rb +35 -0
- data/lib/nokogiri/html/document.rb +254 -0
- data/lib/nokogiri/html/document_fragment.rb +41 -0
- data/lib/nokogiri/html/element_description.rb +23 -0
- data/lib/nokogiri/html/element_description_defaults.rb +671 -0
- data/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/lib/nokogiri/html/sax/parser.rb +52 -0
- data/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/lib/nokogiri/html/sax/push_parser.rb +16 -0
- data/lib/nokogiri/nokogiri.jar +0 -0
- data/lib/nokogiri/syntax_error.rb +4 -0
- data/lib/nokogiri/version.rb +88 -0
- data/lib/nokogiri/xml.rb +73 -0
- data/lib/nokogiri/xml/attr.rb +14 -0
- data/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/lib/nokogiri/xml/builder.rb +431 -0
- data/lib/nokogiri/xml/cdata.rb +11 -0
- data/lib/nokogiri/xml/character_data.rb +7 -0
- data/lib/nokogiri/xml/document.rb +267 -0
- data/lib/nokogiri/xml/document_fragment.rb +103 -0
- data/lib/nokogiri/xml/dtd.rb +22 -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 +946 -0
- data/lib/nokogiri/xml/node/save_options.rb +61 -0
- data/lib/nokogiri/xml/node_set.rb +357 -0
- data/lib/nokogiri/xml/notation.rb +6 -0
- data/lib/nokogiri/xml/parse_options.rb +98 -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 +112 -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 +164 -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 +63 -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 +56 -0
- data/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/lib/xercesImpl.jar +0 -0
- data/lib/xsd/xmlparser/nokogiri.rb +90 -0
- data/tasks/cross_compile.rb +153 -0
- data/tasks/nokogiri.org.rb +24 -0
- data/tasks/test.rb +95 -0
- data/test/css/test_nthiness.rb +159 -0
- data/test/css/test_parser.rb +341 -0
- data/test/css/test_tokenizer.rb +198 -0
- data/test/css/test_xpath_visitor.rb +91 -0
- data/test/decorators/test_slop.rb +16 -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/encoding.html +82 -0
- data/test/files/encoding.xhtml +84 -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/metacharset.html +10 -0
- data/test/files/noencoding.html +47 -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/to_be_xincluded.xml +2 -0
- data/test/files/valid_bar.xml +2 -0
- data/test/files/xinclude.xml +4 -0
- data/test/helper.rb +147 -0
- data/test/html/sax/test_parser.rb +138 -0
- data/test/html/sax/test_parser_context.rb +46 -0
- data/test/html/test_builder.rb +164 -0
- data/test/html/test_document.rb +529 -0
- data/test/html/test_document_encoding.rb +138 -0
- data/test/html/test_document_fragment.rb +254 -0
- data/test/html/test_element_description.rb +100 -0
- data/test/html/test_named_characters.rb +14 -0
- data/test/html/test_node.rb +188 -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 +152 -0
- data/test/test_nokogiri.rb +132 -0
- data/test/test_reader.rb +488 -0
- data/test/test_soap4r_sax.rb +52 -0
- data/test/test_xslt_transforms.rb +254 -0
- data/test/xml/node/test_save_options.rb +28 -0
- data/test/xml/node/test_subclass.rb +44 -0
- data/test/xml/sax/test_parser.rb +338 -0
- data/test/xml/sax/test_parser_context.rb +106 -0
- data/test/xml/sax/test_push_parser.rb +157 -0
- data/test/xml/test_attr.rb +64 -0
- data/test/xml/test_attribute_decl.rb +86 -0
- data/test/xml/test_builder.rb +248 -0
- data/test/xml/test_c14n.rb +151 -0
- data/test/xml/test_cdata.rb +48 -0
- data/test/xml/test_comment.rb +29 -0
- data/test/xml/test_document.rb +742 -0
- data/test/xml/test_document_encoding.rb +28 -0
- data/test/xml/test_document_fragment.rb +216 -0
- data/test/xml/test_dtd.rb +103 -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 +122 -0
- data/test/xml/test_entity_reference.rb +235 -0
- data/test/xml/test_namespace.rb +75 -0
- data/test/xml/test_node.rb +1029 -0
- data/test/xml/test_node_attributes.rb +53 -0
- data/test/xml/test_node_encoding.rb +107 -0
- data/test/xml/test_node_inheritance.rb +32 -0
- data/test/xml/test_node_reparenting.rb +374 -0
- data/test/xml/test_node_set.rb +755 -0
- data/test/xml/test_parse_options.rb +64 -0
- data/test/xml/test_processing_instruction.rb +30 -0
- data/test/xml/test_reader_encoding.rb +142 -0
- data/test/xml/test_relax_ng.rb +60 -0
- data/test/xml/test_schema.rb +94 -0
- data/test/xml/test_syntax_error.rb +12 -0
- data/test/xml/test_text.rb +45 -0
- data/test/xml/test_unparented_node.rb +413 -0
- data/test/xml/test_xinclude.rb +83 -0
- data/test/xml/test_xpath.rb +295 -0
- data/test/xslt/test_custom_functions.rb +129 -0
- data/test/xslt/test_exception_handling.rb +37 -0
- data/test_all +84 -0
- metadata +571 -0
@@ -0,0 +1,288 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2012:
|
5
|
+
*
|
6
|
+
* * {Aaron Patterson}[http://tenderlovemaking.com]
|
7
|
+
* * {Mike Dalessio}[http://mike.daless.io]
|
8
|
+
* * {Charles Nutter}[http://blog.headius.com]
|
9
|
+
* * {Sergio Arbeo}[http://www.serabe.com]
|
10
|
+
* * {Patrick Mahoney}[http://polycrystal.org]
|
11
|
+
* * {Yoko Harada}[http://yokolet.blogspot.com]
|
12
|
+
*
|
13
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
* a copy of this software and associated documentation files (the
|
15
|
+
* 'Software'), to deal in the Software without restriction, including
|
16
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
* the following conditions:
|
20
|
+
*
|
21
|
+
* The above copyright notice and this permission notice shall be
|
22
|
+
* included in all copies or substantial portions of the Software.
|
23
|
+
*
|
24
|
+
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
27
|
+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
28
|
+
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
29
|
+
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
30
|
+
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
package nokogiri.internals;
|
34
|
+
|
35
|
+
import static nokogiri.internals.NokogiriHelpers.rubyStringToString;
|
36
|
+
import static org.jruby.javasupport.util.RuntimeHelpers.invoke;
|
37
|
+
|
38
|
+
import java.io.ByteArrayInputStream;
|
39
|
+
import java.io.File;
|
40
|
+
import java.io.IOException;
|
41
|
+
import java.io.InputStream;
|
42
|
+
import java.io.StringReader;
|
43
|
+
import java.net.URI;
|
44
|
+
import java.nio.charset.Charset;
|
45
|
+
import java.nio.charset.UnsupportedCharsetException;
|
46
|
+
|
47
|
+
import org.jruby.Ruby;
|
48
|
+
import org.jruby.RubyClass;
|
49
|
+
import org.jruby.RubyFixnum;
|
50
|
+
import org.jruby.RubyIO;
|
51
|
+
import org.jruby.RubyObject;
|
52
|
+
import org.jruby.RubyString;
|
53
|
+
import org.jruby.RubyStringIO;
|
54
|
+
import org.jruby.exceptions.RaiseException;
|
55
|
+
import org.jruby.runtime.ThreadContext;
|
56
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
57
|
+
import org.jruby.util.ByteList;
|
58
|
+
import org.jruby.util.TypeConverter;
|
59
|
+
import org.xml.sax.InputSource;
|
60
|
+
import org.xml.sax.SAXException;
|
61
|
+
|
62
|
+
/**
|
63
|
+
* Base class for the various parser contexts. Handles converting
|
64
|
+
* Ruby objects to InputSource objects.
|
65
|
+
*
|
66
|
+
* @author Patrick Mahoney <pat@polycrystal.org>
|
67
|
+
* @author Yoko Harada <yokolet@gmail.com>
|
68
|
+
*/
|
69
|
+
public class ParserContext extends RubyObject {
|
70
|
+
protected InputSource source = null;
|
71
|
+
protected IRubyObject detected_encoding = null;
|
72
|
+
protected int stringDataSize = -1;
|
73
|
+
|
74
|
+
public ParserContext(Ruby runtime) {
|
75
|
+
// default to class 'Object' because this class isn't exposed to Ruby
|
76
|
+
super(runtime, runtime.getObject());
|
77
|
+
}
|
78
|
+
|
79
|
+
public ParserContext(Ruby runtime, RubyClass klass) {
|
80
|
+
super(runtime, klass);
|
81
|
+
}
|
82
|
+
|
83
|
+
protected InputSource getInputSource() {
|
84
|
+
return source;
|
85
|
+
}
|
86
|
+
|
87
|
+
/**
|
88
|
+
* Set the InputSource from <code>url</code> or <code>data</code>,
|
89
|
+
* which may be an IO object, a String, or a StringIO.
|
90
|
+
*/
|
91
|
+
public void setInputSource(ThreadContext context, IRubyObject data, IRubyObject url) {
|
92
|
+
source = new InputSource();
|
93
|
+
|
94
|
+
Ruby ruby = context.getRuntime();
|
95
|
+
|
96
|
+
ParserContext.setUrl(context, source, url);
|
97
|
+
|
98
|
+
// if setEncoding returned true, then the stream is set
|
99
|
+
// to the EncodingReaderInputStream
|
100
|
+
if (setEncoding(context, data))
|
101
|
+
return;
|
102
|
+
|
103
|
+
RubyString stringData = null;
|
104
|
+
if (invoke(context, data, "respond_to?",
|
105
|
+
ruby.newSymbol("to_io").to_sym()).isTrue()) {
|
106
|
+
/* IO or other object that responds to :to_io */
|
107
|
+
RubyIO io =
|
108
|
+
(RubyIO) TypeConverter.convertToType(data,
|
109
|
+
ruby.getIO(),
|
110
|
+
"to_io");
|
111
|
+
source.setByteStream(io.getInStream());
|
112
|
+
} else {
|
113
|
+
if (invoke(context, data, "respond_to?",
|
114
|
+
ruby.newSymbol("string").to_sym()).isTrue()) {
|
115
|
+
/* StringIO or other object that responds to :string */
|
116
|
+
stringData = invoke(context, data, "string").convertToString();
|
117
|
+
} else if (data instanceof RubyString) {
|
118
|
+
stringData = (RubyString) data;
|
119
|
+
} else {
|
120
|
+
throw ruby.newArgumentError(
|
121
|
+
"must be kind_of String or respond to :to_io or :string");
|
122
|
+
}
|
123
|
+
}
|
124
|
+
if (stringData != null) {
|
125
|
+
String encName = null;
|
126
|
+
if (stringData.encoding(context) != null) {
|
127
|
+
encName = stringData.encoding(context).toString();
|
128
|
+
}
|
129
|
+
Charset charset = null;
|
130
|
+
if (encName != null) {
|
131
|
+
try {
|
132
|
+
charset = Charset.forName(encName);
|
133
|
+
} catch (UnsupportedCharsetException e) {
|
134
|
+
// do nothing;
|
135
|
+
}
|
136
|
+
}
|
137
|
+
ByteList bytes = stringData.getByteList();
|
138
|
+
if (charset != null) {
|
139
|
+
StringReader reader = new StringReader(new String(bytes.unsafeBytes(), bytes.begin(), bytes.length(), charset));
|
140
|
+
source.setCharacterStream(reader);
|
141
|
+
source.setEncoding(charset.name());
|
142
|
+
} else {
|
143
|
+
stringDataSize = bytes.length() - bytes.begin();
|
144
|
+
ByteArrayInputStream stream = new ByteArrayInputStream(bytes.unsafeBytes(), bytes.begin(), bytes.length());
|
145
|
+
source.setByteStream(stream);
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
public static void setUrl(ThreadContext context, InputSource source, IRubyObject url) {
|
151
|
+
String path = rubyStringToString(url);
|
152
|
+
// Dir.chdir might be called at some point before this.
|
153
|
+
if (path != null) {
|
154
|
+
try {
|
155
|
+
URI uri = URI.create(path);
|
156
|
+
source.setSystemId(uri.toURL().toString());
|
157
|
+
} catch (Exception ex) {
|
158
|
+
// fallback to the old behavior
|
159
|
+
File file = new File(path);
|
160
|
+
if (file.isAbsolute()) {
|
161
|
+
source.setSystemId(path);
|
162
|
+
} else {
|
163
|
+
String pwd = context.getRuntime().getCurrentDirectory();
|
164
|
+
String absolutePath;
|
165
|
+
try {
|
166
|
+
absolutePath = new File(pwd, path).getCanonicalPath();
|
167
|
+
} catch (IOException e) {
|
168
|
+
absolutePath = new File(pwd, path).getAbsolutePath();
|
169
|
+
}
|
170
|
+
source.setSystemId(absolutePath);
|
171
|
+
}
|
172
|
+
}
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
private boolean setEncoding(ThreadContext context, IRubyObject data) {
|
177
|
+
if (data.getType().respondsTo("detect_encoding")) {
|
178
|
+
// in case of EncodingReader is used
|
179
|
+
// since EncodingReader won't respond to :to_io
|
180
|
+
NokogiriEncodingReaderWrapper reader = new NokogiriEncodingReaderWrapper(context, (RubyObject) data);
|
181
|
+
source.setByteStream(reader);
|
182
|
+
// data is EnocodingReader
|
183
|
+
if(reader.detectEncoding()) {
|
184
|
+
detected_encoding = reader.getEncoding();
|
185
|
+
source.setEncoding(detected_encoding.asJavaString());
|
186
|
+
}
|
187
|
+
return true;
|
188
|
+
}
|
189
|
+
return false;
|
190
|
+
}
|
191
|
+
|
192
|
+
/**
|
193
|
+
* Set the InputSource to read from <code>file</code>, a String filename.
|
194
|
+
*/
|
195
|
+
public void setInputSourceFile(ThreadContext context, IRubyObject file) {
|
196
|
+
source = new InputSource();
|
197
|
+
ParserContext.setUrl(context, source, file);
|
198
|
+
}
|
199
|
+
|
200
|
+
/**
|
201
|
+
* Set the InputSource from <code>stream</code>.
|
202
|
+
*/
|
203
|
+
public void setInputSource(InputStream stream) {
|
204
|
+
source = new InputSource(stream);
|
205
|
+
}
|
206
|
+
|
207
|
+
/**
|
208
|
+
* Wrap Nokogiri parser options in a utility class. This is
|
209
|
+
* read-only.
|
210
|
+
*/
|
211
|
+
public static class Options {
|
212
|
+
protected static final long STRICT = 0;
|
213
|
+
protected static final long RECOVER = 1;
|
214
|
+
protected static final long NOENT = 2;
|
215
|
+
protected static final long DTDLOAD = 4;
|
216
|
+
protected static final long DTDATTR = 8;
|
217
|
+
protected static final long DTDVALID = 16;
|
218
|
+
protected static final long NOERROR = 32;
|
219
|
+
protected static final long NOWARNING = 64;
|
220
|
+
protected static final long PEDANTIC = 128;
|
221
|
+
protected static final long NOBLANKS = 256;
|
222
|
+
protected static final long SAX1 = 512;
|
223
|
+
protected static final long XINCLUDE = 1024;
|
224
|
+
protected static final long NONET = 2048;
|
225
|
+
protected static final long NODICT = 4096;
|
226
|
+
protected static final long NSCLEAN = 8192;
|
227
|
+
protected static final long NOCDATA = 16384;
|
228
|
+
protected static final long NOXINCNODE = 32768;
|
229
|
+
|
230
|
+
public boolean strict;
|
231
|
+
public boolean recover;
|
232
|
+
public boolean noEnt;
|
233
|
+
public boolean dtdLoad;
|
234
|
+
public boolean dtdAttr;
|
235
|
+
public boolean dtdValid;
|
236
|
+
public boolean noError;
|
237
|
+
public boolean noWarning;
|
238
|
+
public boolean pedantic;
|
239
|
+
public boolean noBlanks;
|
240
|
+
public boolean sax1;
|
241
|
+
public boolean xInclude;
|
242
|
+
public boolean noNet;
|
243
|
+
public boolean noDict;
|
244
|
+
public boolean nsClean;
|
245
|
+
public boolean noCdata;
|
246
|
+
public boolean noXIncNode;
|
247
|
+
|
248
|
+
protected static boolean test(long options, long mask) {
|
249
|
+
return ((options & mask) == mask);
|
250
|
+
}
|
251
|
+
|
252
|
+
public Options(long options) {
|
253
|
+
strict = ((options & RECOVER) == STRICT);
|
254
|
+
recover = test(options, RECOVER);
|
255
|
+
noEnt = test(options, NOENT);
|
256
|
+
dtdLoad = test(options, DTDLOAD);
|
257
|
+
dtdAttr = test(options, DTDATTR);
|
258
|
+
dtdValid = test(options, DTDVALID);
|
259
|
+
noError = test(options, NOERROR);
|
260
|
+
noWarning = test(options, NOWARNING);
|
261
|
+
pedantic = test(options, PEDANTIC);
|
262
|
+
noBlanks = test(options, NOBLANKS);
|
263
|
+
sax1 = test(options, SAX1);
|
264
|
+
xInclude = test(options, XINCLUDE);
|
265
|
+
noNet = test(options, NONET);
|
266
|
+
noDict = test(options, NODICT);
|
267
|
+
nsClean = test(options, NSCLEAN);
|
268
|
+
noCdata = test(options, NOCDATA);
|
269
|
+
noXIncNode = test(options, NOXINCNODE);
|
270
|
+
}
|
271
|
+
}
|
272
|
+
|
273
|
+
public static class NokogiriXInlcudeEntityResolver implements org.xml.sax.EntityResolver {
|
274
|
+
InputSource source;
|
275
|
+
public NokogiriXInlcudeEntityResolver(InputSource source) {
|
276
|
+
this.source = source;
|
277
|
+
}
|
278
|
+
|
279
|
+
@Override
|
280
|
+
public InputSource resolveEntity(String publicId, String systemId)
|
281
|
+
throws SAXException, IOException {
|
282
|
+
if (systemId != null) source.setSystemId(systemId);
|
283
|
+
if (publicId != null) source.setPublicId(publicId);
|
284
|
+
return source;
|
285
|
+
}
|
286
|
+
}
|
287
|
+
|
288
|
+
}
|
@@ -0,0 +1,531 @@
|
|
1
|
+
/**
|
2
|
+
* (The MIT License)
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008 - 2011:
|
5
|
+
*
|
6
|
+
* * {Aaron Patterson}[http://tenderlovemaking.com]
|
7
|
+
* * {Mike Dalessio}[http://mike.daless.io]
|
8
|
+
* * {Charles Nutter}[http://blog.headius.com]
|
9
|
+
* * {Sergio Arbeo}[http://www.serabe.com]
|
10
|
+
* * {Patrick Mahoney}[http://polycrystal.org]
|
11
|
+
* * {Yoko Harada}[http://yokolet.blogspot.com]
|
12
|
+
*
|
13
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
14
|
+
* a copy of this software and associated documentation files (the
|
15
|
+
* 'Software'), to deal in the Software without restriction, including
|
16
|
+
* without limitation the rights to use, copy, modify, merge, publish,
|
17
|
+
* distribute, sublicense, and/or sell copies of the Software, and to
|
18
|
+
* permit persons to whom the Software is furnished to do so, subject to
|
19
|
+
* the following conditions:
|
20
|
+
*
|
21
|
+
* The above copyright notice and this permission notice shall be
|
22
|
+
* included in all copies or substantial portions of the Software.
|
23
|
+
*
|
24
|
+
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
25
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
26
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
27
|
+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
28
|
+
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
29
|
+
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
30
|
+
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
package nokogiri.internals;
|
34
|
+
|
35
|
+
import static nokogiri.internals.NokogiriHelpers.getNokogiriClass;
|
36
|
+
import static nokogiri.internals.NokogiriHelpers.isNamespace;
|
37
|
+
import static nokogiri.internals.NokogiriHelpers.isXmlBase;
|
38
|
+
import static nokogiri.internals.NokogiriHelpers.rubyStringToString;
|
39
|
+
import static nokogiri.internals.NokogiriHelpers.stringOrBlank;
|
40
|
+
import static nokogiri.internals.NokogiriHelpers.stringOrNil;
|
41
|
+
|
42
|
+
import java.util.ArrayList;
|
43
|
+
import java.util.HashMap;
|
44
|
+
import java.util.List;
|
45
|
+
import java.util.Map;
|
46
|
+
import java.util.Set;
|
47
|
+
import java.util.Stack;
|
48
|
+
|
49
|
+
import nokogiri.NokogiriService;
|
50
|
+
import nokogiri.XmlAttr;
|
51
|
+
import nokogiri.XmlDocument;
|
52
|
+
import nokogiri.XmlSyntaxError;
|
53
|
+
|
54
|
+
import org.jruby.Ruby;
|
55
|
+
import org.jruby.RubyArray;
|
56
|
+
import org.jruby.RubyBoolean;
|
57
|
+
import org.jruby.RubyHash;
|
58
|
+
import org.jruby.runtime.ThreadContext;
|
59
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
60
|
+
import org.w3c.dom.Attr;
|
61
|
+
import org.w3c.dom.Document;
|
62
|
+
import org.xml.sax.Attributes;
|
63
|
+
import org.xml.sax.SAXParseException;
|
64
|
+
|
65
|
+
/**
|
66
|
+
* Abstract class of Node for XmlReader.
|
67
|
+
*
|
68
|
+
* @author Yoko Harada <yokolet@gmail.com>
|
69
|
+
*
|
70
|
+
*/
|
71
|
+
public abstract class ReaderNode {
|
72
|
+
|
73
|
+
Ruby ruby;
|
74
|
+
public ReaderAttributeList attributeList;
|
75
|
+
public Map<String, String> namespaces;
|
76
|
+
public int depth, nodeType;
|
77
|
+
public String lang, localName, xmlBase, prefix, name, uri, value, xmlVersion = "1.0";
|
78
|
+
public boolean hasChildren = false;
|
79
|
+
public abstract String getString();
|
80
|
+
private Document document = null;
|
81
|
+
|
82
|
+
private static ElementNode elementNode = null;
|
83
|
+
private static ClosingNode closingNode = null;
|
84
|
+
private static TextNode textNode = null;
|
85
|
+
|
86
|
+
public IRubyObject getAttributeByIndex(IRubyObject index){
|
87
|
+
if(index.isNil()) return index;
|
88
|
+
|
89
|
+
long i = index.convertToInteger().getLongValue();
|
90
|
+
if(i > Integer.MAX_VALUE) {
|
91
|
+
throw ruby.newArgumentError("value too long to be an array index");
|
92
|
+
}
|
93
|
+
|
94
|
+
if (attributeList == null) return ruby.getNil();
|
95
|
+
if (i<0 || attributeList.length <= i) return ruby.getNil();
|
96
|
+
return stringOrBlank(ruby, attributeList.values.get(((Long)i).intValue()));
|
97
|
+
}
|
98
|
+
|
99
|
+
public IRubyObject getAttributeByName(IRubyObject name){
|
100
|
+
if(attributeList == null) return ruby.getNil();
|
101
|
+
String value = attributeList.getByName(rubyStringToString(name));
|
102
|
+
return stringOrNil(ruby, value);
|
103
|
+
}
|
104
|
+
|
105
|
+
public IRubyObject getAttributeByName(String name){
|
106
|
+
if(attributeList == null) return ruby.getNil();
|
107
|
+
String value = attributeList.getByName(name);
|
108
|
+
return stringOrNil(ruby, value);
|
109
|
+
}
|
110
|
+
|
111
|
+
public IRubyObject getAttributeCount(){
|
112
|
+
if(attributeList == null) return ruby.newFixnum(0);
|
113
|
+
return ruby.newFixnum(attributeList.length);
|
114
|
+
}
|
115
|
+
|
116
|
+
public IRubyObject getAttributesNodes() {
|
117
|
+
RubyArray array = RubyArray.newArray(ruby);
|
118
|
+
if (attributeList != null && attributeList.length > 0) {
|
119
|
+
if (document == null) {
|
120
|
+
document = ((XmlDocument) NokogiriService.XML_DOCUMENT_ALLOCATOR.allocate(ruby, getNokogiriClass(ruby, "Nokogiri::XML::Document"))).getDocument();
|
121
|
+
}
|
122
|
+
for (int i=0; i<attributeList.length; i++) {
|
123
|
+
if (!isNamespace(attributeList.names.get(i))) {
|
124
|
+
Attr attr = document.createAttributeNS(attributeList.namespaces.get(i), attributeList.names.get(i));
|
125
|
+
attr.setValue(attributeList.values.get(i));
|
126
|
+
XmlAttr xmlAttr = (XmlAttr) NokogiriService.XML_ATTR_ALLOCATOR.allocate(ruby, getNokogiriClass(ruby, "Nokogiri::XML::Attr"));
|
127
|
+
xmlAttr.setNode(ruby.getCurrentContext(), attr);
|
128
|
+
array.append(xmlAttr);
|
129
|
+
}
|
130
|
+
}
|
131
|
+
}
|
132
|
+
return array;
|
133
|
+
}
|
134
|
+
|
135
|
+
public IRubyObject getAttributes(ThreadContext context) {
|
136
|
+
if(attributeList == null) return context.getRuntime().getNil();
|
137
|
+
RubyHash hash = RubyHash.newHash(context.getRuntime());
|
138
|
+
for (int i=0; i<attributeList.length; i++) {
|
139
|
+
IRubyObject k = stringOrBlank(context.getRuntime(), attributeList.names.get(i));
|
140
|
+
IRubyObject v = stringOrBlank(context.getRuntime(), attributeList.values.get(i));
|
141
|
+
if (context.getRuntime().is1_9()) hash.op_aset19(context, k, v);
|
142
|
+
else hash.op_aset(context, k, v);
|
143
|
+
}
|
144
|
+
return hash;
|
145
|
+
}
|
146
|
+
|
147
|
+
public IRubyObject getDepth() {
|
148
|
+
return ruby.newFixnum(depth);
|
149
|
+
}
|
150
|
+
|
151
|
+
public IRubyObject getLang() {
|
152
|
+
return stringOrNil(ruby, lang);
|
153
|
+
}
|
154
|
+
|
155
|
+
public IRubyObject getLocalName() {
|
156
|
+
return stringOrNil(ruby, localName);
|
157
|
+
}
|
158
|
+
|
159
|
+
public IRubyObject getName() {
|
160
|
+
return stringOrNil(ruby, name);
|
161
|
+
}
|
162
|
+
|
163
|
+
public IRubyObject getNamespaces(ThreadContext context) {
|
164
|
+
if(namespaces == null) return ruby.getNil();
|
165
|
+
RubyHash hash = RubyHash.newHash(ruby);
|
166
|
+
Set<String> keys = namespaces.keySet();
|
167
|
+
for (String key : keys) {
|
168
|
+
String stringValue = namespaces.get(key);
|
169
|
+
IRubyObject k = stringOrBlank(context.getRuntime(), key);
|
170
|
+
IRubyObject v = stringOrBlank(context.getRuntime(), stringValue);
|
171
|
+
if (context.getRuntime().is1_9()) hash.op_aset19(context, k, v);
|
172
|
+
else hash.op_aset(context, k, v);
|
173
|
+
}
|
174
|
+
return hash;
|
175
|
+
}
|
176
|
+
|
177
|
+
public IRubyObject getXmlBase() {
|
178
|
+
return stringOrNil(ruby, xmlBase);
|
179
|
+
}
|
180
|
+
|
181
|
+
public IRubyObject getPrefix() {
|
182
|
+
return stringOrNil(ruby, prefix);
|
183
|
+
}
|
184
|
+
|
185
|
+
public IRubyObject getUri() {
|
186
|
+
return stringOrNil(ruby, uri);
|
187
|
+
}
|
188
|
+
|
189
|
+
public IRubyObject getValue() {
|
190
|
+
return stringOrNil(ruby, value);
|
191
|
+
}
|
192
|
+
|
193
|
+
public IRubyObject getXmlVersion() {
|
194
|
+
return ruby.newString(xmlVersion);
|
195
|
+
}
|
196
|
+
|
197
|
+
public RubyBoolean hasAttributes() {
|
198
|
+
if (attributeList == null || attributeList.length == 0) return ruby.getFalse();
|
199
|
+
return ruby.getTrue();
|
200
|
+
}
|
201
|
+
|
202
|
+
public abstract RubyBoolean hasValue();
|
203
|
+
|
204
|
+
public RubyBoolean isDefault(){
|
205
|
+
// TODO Implement.
|
206
|
+
return ruby.getFalse();
|
207
|
+
}
|
208
|
+
|
209
|
+
public boolean isError() { return false; }
|
210
|
+
|
211
|
+
protected void parsePrefix(String qName) {
|
212
|
+
int index = qName.indexOf(':');
|
213
|
+
if(index != -1) prefix = qName.substring(0, index);
|
214
|
+
}
|
215
|
+
|
216
|
+
public void setLang(String lang) {
|
217
|
+
lang = (lang != null) ? lang : null;
|
218
|
+
}
|
219
|
+
|
220
|
+
public IRubyObject toSyntaxError() { return ruby.getNil(); }
|
221
|
+
|
222
|
+
public IRubyObject getNodeType() { return ruby.newFixnum(nodeType); }
|
223
|
+
|
224
|
+
public static enum ReaderNodeType {
|
225
|
+
NODE(0),
|
226
|
+
ELEMENT(1),
|
227
|
+
ATTRIBUTE(2),
|
228
|
+
TEXT(3),
|
229
|
+
CDATA(4),
|
230
|
+
ENTITY_REFERENCE(5),
|
231
|
+
ENTITY(6),
|
232
|
+
PROCESSING_INSTRUCTION(7),
|
233
|
+
COMMENT(8),
|
234
|
+
DOCUMENT(9),
|
235
|
+
DOCUMENT_TYPE(10),
|
236
|
+
DOCUMENTFRAGMENT(11),
|
237
|
+
NOTATION(12),
|
238
|
+
WHITESPACE(13),
|
239
|
+
SIGNIFICANT_WHITESPACE(14),
|
240
|
+
END_ELEMENT(15),
|
241
|
+
END_ENTITY(16),
|
242
|
+
XML_DECLARATION(17);
|
243
|
+
|
244
|
+
private final int value;
|
245
|
+
ReaderNodeType(int value) {
|
246
|
+
this.value = value;
|
247
|
+
}
|
248
|
+
|
249
|
+
public int getValue() {
|
250
|
+
return value;
|
251
|
+
}
|
252
|
+
}
|
253
|
+
|
254
|
+
public static ClosingNode createClosingNode(Ruby ruby, String uri, String localName, String qName, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
255
|
+
if (closingNode == null) closingNode = new ClosingNode();
|
256
|
+
ClosingNode clone;
|
257
|
+
try {
|
258
|
+
clone = (ClosingNode) closingNode.clone();
|
259
|
+
} catch (CloneNotSupportedException e) {
|
260
|
+
clone = new ClosingNode();
|
261
|
+
}
|
262
|
+
clone.init(ruby, uri, localName, qName, depth, langStack, xmlBaseStack);
|
263
|
+
return clone;
|
264
|
+
}
|
265
|
+
|
266
|
+
public static class ClosingNode extends ReaderNode {
|
267
|
+
|
268
|
+
public ClosingNode() {}
|
269
|
+
|
270
|
+
public ClosingNode(Ruby ruby, String uri, String localName, String qName, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
271
|
+
init(ruby, uri, localName, qName, depth, langStack, xmlBaseStack);
|
272
|
+
}
|
273
|
+
|
274
|
+
public void init(Ruby ruby, String uri, String localName, String qName, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
275
|
+
this.ruby = ruby;
|
276
|
+
nodeType = ReaderNodeType.END_ELEMENT.getValue();
|
277
|
+
this.uri = "".equals(uri) ? null : uri;
|
278
|
+
this.localName = localName.trim().length() > 0 ? localName : qName;
|
279
|
+
this.name = qName;
|
280
|
+
parsePrefix(qName);
|
281
|
+
this.depth = depth;
|
282
|
+
if (!langStack.isEmpty()) this.lang = langStack.peek();
|
283
|
+
if (!xmlBaseStack.isEmpty()) this.xmlBase = xmlBaseStack.peek();
|
284
|
+
}
|
285
|
+
|
286
|
+
@Override
|
287
|
+
public IRubyObject getAttributeCount() {
|
288
|
+
return ruby.newFixnum(0);
|
289
|
+
}
|
290
|
+
|
291
|
+
@Override
|
292
|
+
public RubyBoolean hasValue() {
|
293
|
+
return ruby.getFalse();
|
294
|
+
}
|
295
|
+
|
296
|
+
@Override
|
297
|
+
public String getString() {
|
298
|
+
StringBuffer sb = new StringBuffer();
|
299
|
+
sb.append("</").append(name).append(">");
|
300
|
+
return new String(sb);
|
301
|
+
}
|
302
|
+
}
|
303
|
+
|
304
|
+
public static ElementNode createElementNode(Ruby ruby, String uri, String localName, String qName, Attributes attrs, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
305
|
+
if (elementNode == null) elementNode = new ElementNode();
|
306
|
+
ElementNode clone;
|
307
|
+
try {
|
308
|
+
clone = (ElementNode) elementNode.clone();
|
309
|
+
} catch (CloneNotSupportedException e) {
|
310
|
+
clone = new ElementNode();
|
311
|
+
}
|
312
|
+
clone.init(ruby, uri, localName, qName, attrs, depth, langStack, xmlBaseStack);
|
313
|
+
return clone;
|
314
|
+
}
|
315
|
+
|
316
|
+
public static class ElementNode extends ReaderNode {
|
317
|
+
private List<String> attributeStrings = new ArrayList<String>();
|
318
|
+
|
319
|
+
public ElementNode() {}
|
320
|
+
|
321
|
+
public ElementNode(Ruby ruby, String uri, String localName, String qName, Attributes attrs, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
322
|
+
init(ruby, uri, localName, qName, attrs, depth, langStack, xmlBaseStack);
|
323
|
+
}
|
324
|
+
|
325
|
+
public void init(Ruby ruby, String uri, String localName, String qName, Attributes attrs, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
326
|
+
this.ruby = ruby;
|
327
|
+
this.nodeType = ReaderNodeType.ELEMENT.getValue();
|
328
|
+
this.uri = "".equals(uri) ? null : uri;
|
329
|
+
this.localName = localName.trim().length() > 0 ? localName : qName;
|
330
|
+
this.name = qName;
|
331
|
+
parsePrefix(qName);
|
332
|
+
this.depth = depth;
|
333
|
+
hasChildren = true;
|
334
|
+
parseAttributes(attrs, langStack, xmlBaseStack);
|
335
|
+
}
|
336
|
+
|
337
|
+
@Override
|
338
|
+
public RubyBoolean hasValue() {
|
339
|
+
return ruby.getFalse();
|
340
|
+
}
|
341
|
+
|
342
|
+
private void parseAttributes(Attributes attrs, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
343
|
+
if (attrs.getLength() > 0) attributeList = new ReaderAttributeList();
|
344
|
+
String u, n, v;
|
345
|
+
for (int i = 0; i < attrs.getLength(); i++) {
|
346
|
+
u = attrs.getURI(i);
|
347
|
+
n = attrs.getQName(i);
|
348
|
+
v = attrs.getValue(i);
|
349
|
+
if (isNamespace(n)) {
|
350
|
+
if (namespaces == null) namespaces = new HashMap<String, String>();
|
351
|
+
namespaces.put(n, v);
|
352
|
+
} else {
|
353
|
+
if (lang == null) lang = resolveLang(n, v, langStack);
|
354
|
+
if (xmlBase == null) xmlBase = resolveXmlBase(n, v, xmlBaseStack);
|
355
|
+
}
|
356
|
+
attributeList.add(u, n, v);
|
357
|
+
attributeStrings.add(n + "=\"" + v + "\"");
|
358
|
+
}
|
359
|
+
}
|
360
|
+
|
361
|
+
private String resolveLang(String n, String v, Stack<String> langStack) {
|
362
|
+
if ("xml:lang".equals(n)) {
|
363
|
+
return v;
|
364
|
+
} else if (!langStack.isEmpty()) {
|
365
|
+
return langStack.peek();
|
366
|
+
} else {
|
367
|
+
return null;
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
private String resolveXmlBase(String n, String v, Stack<String> xmlBaseStack) {
|
372
|
+
if (isXmlBase(n)) {
|
373
|
+
return getXmlBaseUri(n, v, xmlBaseStack);
|
374
|
+
} else if (!xmlBaseStack.isEmpty()) {
|
375
|
+
return xmlBaseStack.peek();
|
376
|
+
} else {
|
377
|
+
return null;
|
378
|
+
}
|
379
|
+
}
|
380
|
+
|
381
|
+
private String getXmlBaseUri(String n, String v, Stack<String> xmlBaseStack) {
|
382
|
+
if ("xml:base".equals(n)) {
|
383
|
+
if (v.startsWith("http://")) {
|
384
|
+
return v;
|
385
|
+
} else if (v.startsWith("/") && v.endsWith("/")) {
|
386
|
+
String sub = v.substring(1, v.length() - 2);
|
387
|
+
String base = xmlBaseStack.peek();
|
388
|
+
if (base.endsWith("/")) {
|
389
|
+
base = base.substring(0, base.length() - 1);
|
390
|
+
}
|
391
|
+
int pos = base.lastIndexOf("/");
|
392
|
+
return base.substring(0, pos).concat(sub);
|
393
|
+
} else {
|
394
|
+
String base = xmlBaseStack.peek();
|
395
|
+
if (base.endsWith("/")) return base.concat(v);
|
396
|
+
else return base.concat("/").concat(v);
|
397
|
+
}
|
398
|
+
} else if ("xlink:href".equals(n)) {
|
399
|
+
String base = xmlBaseStack.peek();
|
400
|
+
if (base.endsWith("/")) return base.concat(v);
|
401
|
+
else return base.concat("/").concat(v);
|
402
|
+
}
|
403
|
+
return null;
|
404
|
+
}
|
405
|
+
|
406
|
+
@Override
|
407
|
+
public String getString() {
|
408
|
+
StringBuffer sb = new StringBuffer();
|
409
|
+
sb.append("<").append(name);
|
410
|
+
if (attributeList != null) {
|
411
|
+
for (int i=0; i<attributeList.length; i++) {
|
412
|
+
sb.append(" ").append(attributeStrings.get(i));
|
413
|
+
}
|
414
|
+
}
|
415
|
+
if (hasChildren) sb.append(">");
|
416
|
+
else sb.append("/>");
|
417
|
+
return new String(sb);
|
418
|
+
}
|
419
|
+
}
|
420
|
+
|
421
|
+
public static class ReaderAttributeList {
|
422
|
+
List<String> namespaces = new ArrayList<String>();
|
423
|
+
List<String> names = new ArrayList<String>();
|
424
|
+
List<String> values = new ArrayList<String>();
|
425
|
+
int length = 0;
|
426
|
+
|
427
|
+
void add(String namespace, String name, String value) {
|
428
|
+
namespace = namespace != null ? namespace : "";
|
429
|
+
namespaces.add(namespace);
|
430
|
+
name = name != null ? name : "";
|
431
|
+
names.add(name);
|
432
|
+
value = value != null ? value : "";
|
433
|
+
values.add(value);
|
434
|
+
length++;
|
435
|
+
}
|
436
|
+
|
437
|
+
String getByName(String name) {
|
438
|
+
for (int i=0; i<names.size(); i++) {
|
439
|
+
if (name.equals(names.get(i))) {
|
440
|
+
return values.get(i);
|
441
|
+
}
|
442
|
+
}
|
443
|
+
return null;
|
444
|
+
}
|
445
|
+
}
|
446
|
+
|
447
|
+
public static class EmptyNode extends ReaderNode {
|
448
|
+
|
449
|
+
public EmptyNode(Ruby ruby) {
|
450
|
+
this.ruby = ruby;
|
451
|
+
this.nodeType = ReaderNodeType.NODE.getValue();
|
452
|
+
}
|
453
|
+
|
454
|
+
@Override
|
455
|
+
public IRubyObject getXmlVersion() {
|
456
|
+
return this.ruby.getNil();
|
457
|
+
}
|
458
|
+
|
459
|
+
@Override
|
460
|
+
public RubyBoolean hasValue() {
|
461
|
+
return ruby.getFalse();
|
462
|
+
}
|
463
|
+
|
464
|
+
@Override
|
465
|
+
public String getString() {
|
466
|
+
return null;
|
467
|
+
}
|
468
|
+
}
|
469
|
+
|
470
|
+
public static class ExceptionNode extends EmptyNode {
|
471
|
+
private final XmlSyntaxError exception;
|
472
|
+
|
473
|
+
// Still don't know what to do with ex.
|
474
|
+
public ExceptionNode(Ruby runtime, SAXParseException ex) {
|
475
|
+
super(runtime);
|
476
|
+
exception = (XmlSyntaxError) NokogiriService.XML_SYNTAXERROR_ALLOCATOR.allocate(runtime, getNokogiriClass(ruby, "Nokogiri::XML::SyntaxError"));
|
477
|
+
}
|
478
|
+
|
479
|
+
@Override
|
480
|
+
public boolean isError() {
|
481
|
+
return true;
|
482
|
+
}
|
483
|
+
|
484
|
+
@Override
|
485
|
+
public IRubyObject toSyntaxError() {
|
486
|
+
return this.exception;
|
487
|
+
}
|
488
|
+
}
|
489
|
+
|
490
|
+
public static TextNode createTextNode(Ruby ruby, String content, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
491
|
+
if (textNode == null) textNode = new TextNode();
|
492
|
+
TextNode clone;
|
493
|
+
try {
|
494
|
+
clone = (TextNode) textNode.clone();
|
495
|
+
} catch (CloneNotSupportedException e) {
|
496
|
+
clone = new TextNode();
|
497
|
+
}
|
498
|
+
clone.init(ruby, content, depth, langStack, xmlBaseStack);
|
499
|
+
return clone;
|
500
|
+
}
|
501
|
+
|
502
|
+
public static class TextNode extends ReaderNode {
|
503
|
+
public TextNode() {}
|
504
|
+
|
505
|
+
public TextNode(Ruby ruby, String content, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
506
|
+
init(ruby, content, depth, langStack, xmlBaseStack);
|
507
|
+
}
|
508
|
+
|
509
|
+
public void init(Ruby ruby, String content, int depth, Stack<String> langStack, Stack<String> xmlBaseStack) {
|
510
|
+
this.ruby = ruby;
|
511
|
+
this.value = content;
|
512
|
+
this.localName = "#text";
|
513
|
+
this.name = "#text";
|
514
|
+
this.depth = depth;
|
515
|
+
if (content.trim().length() > 0) nodeType = ReaderNodeType.TEXT.getValue();
|
516
|
+
else nodeType = ReaderNodeType.SIGNIFICANT_WHITESPACE.getValue();
|
517
|
+
if (!langStack.isEmpty()) this.lang = langStack.peek();
|
518
|
+
if (!xmlBaseStack.isEmpty()) this.xmlBase = xmlBaseStack.peek();
|
519
|
+
}
|
520
|
+
|
521
|
+
@Override
|
522
|
+
public RubyBoolean hasValue() {
|
523
|
+
return ruby.getTrue();
|
524
|
+
}
|
525
|
+
|
526
|
+
@Override
|
527
|
+
public String getString() {
|
528
|
+
return value;
|
529
|
+
}
|
530
|
+
}
|
531
|
+
}
|