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.

Files changed (187) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -0
  3. data/LICENSE-DEPENDENCIES.md +1015 -947
  4. data/LICENSE.md +1 -1
  5. data/README.md +168 -91
  6. data/dependencies.yml +12 -12
  7. data/ext/java/nokogiri/EncodingHandler.java +76 -89
  8. data/ext/java/nokogiri/HtmlDocument.java +135 -144
  9. data/ext/java/nokogiri/HtmlElementDescription.java +102 -117
  10. data/ext/java/nokogiri/HtmlEntityLookup.java +33 -60
  11. data/ext/java/nokogiri/HtmlSaxParserContext.java +218 -222
  12. data/ext/java/nokogiri/HtmlSaxPushParser.java +162 -169
  13. data/ext/java/nokogiri/NokogiriService.java +595 -556
  14. data/ext/java/nokogiri/XmlAttr.java +118 -126
  15. data/ext/java/nokogiri/XmlAttributeDecl.java +95 -106
  16. data/ext/java/nokogiri/XmlCdata.java +35 -58
  17. data/ext/java/nokogiri/XmlComment.java +46 -67
  18. data/ext/java/nokogiri/XmlDocument.java +645 -572
  19. data/ext/java/nokogiri/XmlDocumentFragment.java +125 -137
  20. data/ext/java/nokogiri/XmlDtd.java +448 -414
  21. data/ext/java/nokogiri/XmlElement.java +23 -48
  22. data/ext/java/nokogiri/XmlElementContent.java +343 -316
  23. data/ext/java/nokogiri/XmlElementDecl.java +124 -125
  24. data/ext/java/nokogiri/XmlEntityDecl.java +119 -127
  25. data/ext/java/nokogiri/XmlEntityReference.java +49 -72
  26. data/ext/java/nokogiri/XmlNamespace.java +175 -175
  27. data/ext/java/nokogiri/XmlNode.java +1843 -1622
  28. data/ext/java/nokogiri/XmlNodeSet.java +361 -331
  29. data/ext/java/nokogiri/XmlProcessingInstruction.java +47 -69
  30. data/ext/java/nokogiri/XmlReader.java +513 -450
  31. data/ext/java/nokogiri/XmlRelaxng.java +89 -101
  32. data/ext/java/nokogiri/XmlSaxParserContext.java +328 -310
  33. data/ext/java/nokogiri/XmlSaxPushParser.java +227 -220
  34. data/ext/java/nokogiri/XmlSchema.java +335 -242
  35. data/ext/java/nokogiri/XmlSyntaxError.java +113 -119
  36. data/ext/java/nokogiri/XmlText.java +55 -76
  37. data/ext/java/nokogiri/XmlXpathContext.java +242 -210
  38. data/ext/java/nokogiri/XsltStylesheet.java +280 -269
  39. data/ext/java/nokogiri/internals/ClosedStreamException.java +5 -2
  40. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +201 -190
  41. data/ext/java/nokogiri/internals/IgnoreSchemaErrorsErrorHandler.java +17 -10
  42. data/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +43 -16
  43. data/ext/java/nokogiri/internals/NokogiriDomParser.java +63 -80
  44. data/ext/java/nokogiri/internals/NokogiriEntityResolver.java +107 -88
  45. data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +27 -52
  46. data/ext/java/nokogiri/internals/NokogiriHandler.java +316 -286
  47. data/ext/java/nokogiri/internals/NokogiriHelpers.java +736 -652
  48. data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +184 -173
  49. data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +79 -89
  50. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +64 -79
  51. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +84 -99
  52. data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +48 -65
  53. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +119 -78
  54. data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +34 -54
  55. data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +23 -46
  56. data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +55 -72
  57. data/ext/java/nokogiri/internals/ParserContext.java +206 -211
  58. data/ext/java/nokogiri/internals/ReaderNode.java +478 -403
  59. data/ext/java/nokogiri/internals/SaveContextVisitor.java +822 -739
  60. data/ext/java/nokogiri/internals/SchemaErrorHandler.java +31 -54
  61. data/ext/java/nokogiri/internals/XalanDTMManagerPatch.java +129 -123
  62. data/ext/java/nokogiri/internals/XmlDeclHandler.java +3 -34
  63. data/ext/java/nokogiri/internals/XmlDomParserContext.java +206 -207
  64. data/ext/java/nokogiri/internals/XmlSaxParser.java +22 -47
  65. data/ext/java/nokogiri/internals/c14n/AttrCompare.java +71 -68
  66. data/ext/java/nokogiri/internals/c14n/C14nHelper.java +137 -118
  67. data/ext/java/nokogiri/internals/c14n/CanonicalFilter.java +27 -21
  68. data/ext/java/nokogiri/internals/c14n/CanonicalizationException.java +74 -61
  69. data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +230 -205
  70. data/ext/java/nokogiri/internals/c14n/Canonicalizer11.java +572 -547
  71. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_OmitComments.java +17 -10
  72. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_WithComments.java +17 -10
  73. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java +323 -302
  74. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315Excl.java +232 -219
  75. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclOmitComments.java +22 -15
  76. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclWithComments.java +23 -16
  77. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315OmitComments.java +23 -16
  78. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315WithComments.java +22 -15
  79. data/ext/java/nokogiri/internals/c14n/CanonicalizerBase.java +575 -545
  80. data/ext/java/nokogiri/internals/c14n/CanonicalizerPhysical.java +141 -120
  81. data/ext/java/nokogiri/internals/c14n/CanonicalizerSpi.java +39 -38
  82. data/ext/java/nokogiri/internals/c14n/Constants.java +13 -10
  83. data/ext/java/nokogiri/internals/c14n/ElementProxy.java +279 -247
  84. data/ext/java/nokogiri/internals/c14n/HelperNodeList.java +66 -53
  85. data/ext/java/nokogiri/internals/c14n/IgnoreAllErrorHandler.java +44 -37
  86. data/ext/java/nokogiri/internals/c14n/InclusiveNamespaces.java +135 -120
  87. data/ext/java/nokogiri/internals/c14n/InvalidCanonicalizerException.java +59 -48
  88. data/ext/java/nokogiri/internals/c14n/NameSpaceSymbTable.java +384 -334
  89. data/ext/java/nokogiri/internals/c14n/NodeFilter.java +25 -24
  90. data/ext/java/nokogiri/internals/c14n/UtfHelpper.java +151 -140
  91. data/ext/java/nokogiri/internals/c14n/XMLUtils.java +456 -423
  92. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +1466 -1500
  93. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java +626 -574
  94. data/ext/nokogiri/depend +37 -358
  95. data/ext/nokogiri/extconf.rb +581 -374
  96. data/ext/nokogiri/html_document.c +78 -82
  97. data/ext/nokogiri/html_element_description.c +84 -71
  98. data/ext/nokogiri/html_entity_lookup.c +21 -16
  99. data/ext/nokogiri/html_sax_parser_context.c +69 -66
  100. data/ext/nokogiri/html_sax_push_parser.c +42 -34
  101. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  102. data/ext/nokogiri/nokogiri.c +192 -93
  103. data/ext/nokogiri/test_global_handlers.c +40 -0
  104. data/ext/nokogiri/xml_attr.c +15 -15
  105. data/ext/nokogiri/xml_attribute_decl.c +18 -18
  106. data/ext/nokogiri/xml_cdata.c +13 -18
  107. data/ext/nokogiri/xml_comment.c +19 -26
  108. data/ext/nokogiri/xml_document.c +246 -188
  109. data/ext/nokogiri/xml_document_fragment.c +13 -15
  110. data/ext/nokogiri/xml_dtd.c +54 -48
  111. data/ext/nokogiri/xml_element_content.c +30 -27
  112. data/ext/nokogiri/xml_element_decl.c +22 -22
  113. data/ext/nokogiri/xml_encoding_handler.c +17 -11
  114. data/ext/nokogiri/xml_entity_decl.c +32 -30
  115. data/ext/nokogiri/xml_entity_reference.c +16 -18
  116. data/ext/nokogiri/xml_namespace.c +56 -49
  117. data/ext/nokogiri/xml_node.c +371 -320
  118. data/ext/nokogiri/xml_node_set.c +168 -156
  119. data/ext/nokogiri/xml_processing_instruction.c +17 -19
  120. data/ext/nokogiri/xml_reader.c +191 -157
  121. data/ext/nokogiri/xml_relax_ng.c +52 -28
  122. data/ext/nokogiri/xml_sax_parser.c +118 -118
  123. data/ext/nokogiri/xml_sax_parser_context.c +103 -86
  124. data/ext/nokogiri/xml_sax_push_parser.c +36 -27
  125. data/ext/nokogiri/xml_schema.c +95 -47
  126. data/ext/nokogiri/xml_syntax_error.c +42 -21
  127. data/ext/nokogiri/xml_text.c +13 -17
  128. data/ext/nokogiri/xml_xpath_context.c +206 -123
  129. data/ext/nokogiri/xslt_stylesheet.c +158 -161
  130. data/lib/nokogiri.rb +3 -7
  131. data/lib/nokogiri/css/parser.rb +3 -3
  132. data/lib/nokogiri/css/parser.y +2 -2
  133. data/lib/nokogiri/css/xpath_visitor.rb +70 -42
  134. data/lib/nokogiri/extension.rb +26 -0
  135. data/lib/nokogiri/html/document.rb +12 -26
  136. data/lib/nokogiri/html/document_fragment.rb +15 -15
  137. data/lib/nokogiri/nokogiri.jar +0 -0
  138. data/lib/nokogiri/version.rb +2 -149
  139. data/lib/nokogiri/version/constant.rb +5 -0
  140. data/lib/nokogiri/version/info.rb +205 -0
  141. data/lib/nokogiri/xml/document.rb +91 -35
  142. data/lib/nokogiri/xml/document_fragment.rb +4 -6
  143. data/lib/nokogiri/xml/node.rb +89 -69
  144. data/lib/nokogiri/xml/parse_options.rb +6 -0
  145. data/lib/nokogiri/xml/reader.rb +2 -9
  146. data/lib/nokogiri/xml/relax_ng.rb +6 -2
  147. data/lib/nokogiri/xml/schema.rb +12 -4
  148. data/lib/nokogiri/xml/searchable.rb +3 -1
  149. data/lib/nokogiri/xml/xpath.rb +1 -3
  150. data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
  151. metadata +86 -177
  152. data/ext/nokogiri/html_document.h +0 -10
  153. data/ext/nokogiri/html_element_description.h +0 -10
  154. data/ext/nokogiri/html_entity_lookup.h +0 -8
  155. data/ext/nokogiri/html_sax_parser_context.h +0 -11
  156. data/ext/nokogiri/html_sax_push_parser.h +0 -9
  157. data/ext/nokogiri/nokogiri.h +0 -134
  158. data/ext/nokogiri/xml_attr.h +0 -9
  159. data/ext/nokogiri/xml_attribute_decl.h +0 -9
  160. data/ext/nokogiri/xml_cdata.h +0 -9
  161. data/ext/nokogiri/xml_comment.h +0 -9
  162. data/ext/nokogiri/xml_document.h +0 -23
  163. data/ext/nokogiri/xml_document_fragment.h +0 -10
  164. data/ext/nokogiri/xml_dtd.h +0 -10
  165. data/ext/nokogiri/xml_element_content.h +0 -10
  166. data/ext/nokogiri/xml_element_decl.h +0 -9
  167. data/ext/nokogiri/xml_encoding_handler.h +0 -8
  168. data/ext/nokogiri/xml_entity_decl.h +0 -10
  169. data/ext/nokogiri/xml_entity_reference.h +0 -9
  170. data/ext/nokogiri/xml_io.c +0 -63
  171. data/ext/nokogiri/xml_io.h +0 -11
  172. data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
  173. data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
  174. data/ext/nokogiri/xml_namespace.h +0 -14
  175. data/ext/nokogiri/xml_node.h +0 -13
  176. data/ext/nokogiri/xml_node_set.h +0 -12
  177. data/ext/nokogiri/xml_processing_instruction.h +0 -9
  178. data/ext/nokogiri/xml_reader.h +0 -10
  179. data/ext/nokogiri/xml_relax_ng.h +0 -9
  180. data/ext/nokogiri/xml_sax_parser.h +0 -39
  181. data/ext/nokogiri/xml_sax_parser_context.h +0 -10
  182. data/ext/nokogiri/xml_sax_push_parser.h +0 -9
  183. data/ext/nokogiri/xml_schema.h +0 -9
  184. data/ext/nokogiri/xml_syntax_error.h +0 -13
  185. data/ext/nokogiri/xml_text.h +0 -9
  186. data/ext/nokogiri/xml_xpath_context.h +0 -10
  187. data/ext/nokogiri/xslt_stylesheet.h +0 -14
@@ -1,35 +1,3 @@
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
1
  package nokogiri;
34
2
 
35
3
  import org.jruby.Ruby;
@@ -44,25 +12,32 @@ import nokogiri.internals.SaveContextVisitor;
44
12
 
45
13
  /**
46
14
  * Class for Nokogiri::XML::Element
47
- *
15
+ *
48
16
  * @author sergio
49
17
  * @author Yoko Harada <yokolet@gamil.com>
50
18
  */
51
- @JRubyClass(name="Nokogiri::XML::Element", parent="Nokogiri::XML::Node")
52
- public class XmlElement extends XmlNode {
19
+ @JRubyClass(name = "Nokogiri::XML::Element", parent = "Nokogiri::XML::Node")
20
+ public class XmlElement extends XmlNode
21
+ {
22
+
23
+ public
24
+ XmlElement(Ruby runtime, RubyClass klazz)
25
+ {
26
+ super(runtime, klazz);
27
+ }
53
28
 
54
- public XmlElement(Ruby runtime, RubyClass klazz) {
55
- super(runtime, klazz);
56
- }
29
+ public
30
+ XmlElement(Ruby runtime, RubyClass klazz, Node element)
31
+ {
32
+ super(runtime, klazz, element);
33
+ }
57
34
 
58
- public XmlElement(Ruby runtime, RubyClass klazz, Node element) {
59
- super(runtime, klazz, element);
60
- }
61
-
62
- @Override
63
- public void accept(ThreadContext context, SaveContextVisitor visitor) {
64
- visitor.enter((Element) node);
65
- acceptChildren(context, getChildren(), visitor);
66
- visitor.leave((Element) node);
67
- }
35
+ @Override
36
+ public void
37
+ accept(ThreadContext context, SaveContextVisitor visitor)
38
+ {
39
+ visitor.enter((Element) node);
40
+ acceptChildren(context, getChildren(), visitor);
41
+ visitor.leave((Element) node);
42
+ }
68
43
  }
@@ -1,35 +1,3 @@
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
1
  package nokogiri;
34
2
 
35
3
  import static nokogiri.internals.NokogiriHelpers.getLocalPart;
@@ -55,328 +23,387 @@ import org.w3c.dom.Node;
55
23
  *
56
24
  * @author Patrick Mahoney <pat@polycrystal.org>
57
25
  */
58
- @JRubyClass(name="Nokogiri::XML::ElementContent")
59
- public class XmlElementContent extends RubyObject {
60
- protected String element_name = null;
61
-
62
- protected String name;
63
- protected Type type;
64
- protected Occur occur;
65
- protected IRubyObject left;
66
- protected IRubyObject right;
67
-
68
- /** values hardcoded from nokogiri/xml/element_content.rb; this
69
- * makes me uneasy, but it works */
70
- public enum Type {
71
- PCDATA (1),
72
- ELEMENT (2),
73
- SEQ (3),
74
- OR (4);
75
-
76
- private final int value;
77
- Type(int value) {
78
- this.value = value;
79
- }
80
- public IRubyObject value(Ruby runtime) {
81
- return runtime.newFixnum(value);
82
- }
26
+ @JRubyClass(name = "Nokogiri::XML::ElementContent")
27
+ public class XmlElementContent extends RubyObject
28
+ {
29
+ protected String element_name = null;
30
+
31
+ protected String name;
32
+ protected Type type;
33
+ protected Occur occur;
34
+ protected IRubyObject left;
35
+ protected IRubyObject right;
36
+
37
+ /** values hardcoded from nokogiri/xml/element_content.rb; this
38
+ * makes me uneasy, but it works */
39
+ public enum Type {
40
+ PCDATA(1),
41
+ ELEMENT(2),
42
+ SEQ(3),
43
+ OR(4);
44
+
45
+ private final int value;
46
+ Type(int value)
47
+ {
48
+ this.value = value;
83
49
  }
84
-
85
- public enum Occur {
86
- ONCE (1),
87
- OPT (2),
88
- MULT (3),
89
- PLUS (4);
90
-
91
- private final int value;
92
- Occur(int value) {
93
- this.value = value;
94
- }
95
- public IRubyObject value(Ruby runtime) {
96
- return runtime.newFixnum(value);
97
- }
50
+ public IRubyObject value(Ruby runtime)
51
+ {
52
+ return runtime.newFixnum(value);
98
53
  }
99
-
100
- public XmlElementContent(Ruby runtime, RubyClass klass,
101
- XmlDocument document, Node node) {
102
- this(runtime, klass, document, new NodeIter(node));
103
- element_name = ((Element)node).getAttribute("ename");
104
-
105
- /*
106
- * This is a bit of a hack to match libxml behavior.
107
- *
108
- * If the tree contains but a single group with a single
109
- * element, we can simply return the bare element without the
110
- * surrounding group.
111
- *
112
- * TODO: is SEQ/ONCE with a single child the only case for
113
- * reduction?
114
- *
115
- * - pmahoney
116
- */
117
- if (!this.left.isNil()) {
118
- XmlElementContent left = (XmlElementContent) this.left;
119
- if (type == Type.SEQ &&
120
- occur == Occur.ONCE &&
121
- left.type == Type.ELEMENT &&
122
- right.isNil()) {
123
- this.name = left.name;
124
- this.type = left.type;
125
- this.occur = left.occur;
126
- this.left = this.right; // both nil
127
- }
128
- }
54
+ }
55
+
56
+ public enum Occur {
57
+ ONCE(1),
58
+ OPT(2),
59
+ MULT(3),
60
+ PLUS(4);
61
+
62
+ private final int value;
63
+ Occur(int value)
64
+ {
65
+ this.value = value;
129
66
  }
130
-
131
- public XmlElementContent(Ruby runtime, XmlDocument document, Node node) {
132
- this(runtime, getNokogiriClass(runtime, "Nokogiri::XML::ElementContent"), document, node);
67
+ public IRubyObject value(Ruby runtime)
68
+ {
69
+ return runtime.newFixnum(value);
133
70
  }
134
-
135
- public XmlElementContent(Ruby runtime, RubyClass klass,
136
- XmlDocument doc, NodeIter iter) {
137
- super(runtime, klass);
138
-
139
- setInstanceVariable("@document", doc);
140
-
141
- name = null;
142
- type = Type.SEQ;
143
- occur = Occur.ONCE;
144
- left = runtime.getNil();
145
- right = runtime.getNil();
146
-
147
- apply(runtime, klass, doc, iter);
71
+ }
72
+
73
+ public
74
+ XmlElementContent(Ruby runtime, RubyClass klass,
75
+ XmlDocument document, Node node)
76
+ {
77
+ this(runtime, klass, document, new NodeIter(node));
78
+ element_name = ((Element)node).getAttribute("ename");
79
+
80
+ /*
81
+ * This is a bit of a hack to match libxml behavior.
82
+ *
83
+ * If the tree contains but a single group with a single
84
+ * element, we can simply return the bare element without the
85
+ * surrounding group.
86
+ *
87
+ * TODO: is SEQ/ONCE with a single child the only case for
88
+ * reduction?
89
+ *
90
+ * - pmahoney
91
+ */
92
+ if (!this.left.isNil()) {
93
+ XmlElementContent left = (XmlElementContent) this.left;
94
+ if (type == Type.SEQ &&
95
+ occur == Occur.ONCE &&
96
+ left.type == Type.ELEMENT &&
97
+ right.isNil()) {
98
+ this.name = left.name;
99
+ this.type = left.type;
100
+ this.occur = left.occur;
101
+ this.left = this.right; // both nil
102
+ }
148
103
  }
149
-
150
- protected XmlElementContent(Ruby runtime, RubyClass klass,
151
- Type type, XmlDocument doc, NodeIter iter,
152
- XmlElementContent left) {
153
- super(runtime, klass);
154
-
155
- setInstanceVariable("@document", doc);
156
-
157
- name = null;
158
- this.type = type;
159
- occur = Occur.ONCE;
160
- this.left = left;
161
- right = runtime.getNil();
162
-
163
- switch (type) {
164
- case SEQ:
165
- case OR:
166
- applyGroup(runtime, klass, doc, iter);
167
- default:
168
- // noop
169
- }
104
+ }
105
+
106
+ public
107
+ XmlElementContent(Ruby runtime, XmlDocument document, Node node)
108
+ {
109
+ this(runtime, getNokogiriClass(runtime, "Nokogiri::XML::ElementContent"), document, node);
110
+ }
111
+
112
+ public
113
+ XmlElementContent(Ruby runtime, RubyClass klass,
114
+ XmlDocument doc, NodeIter iter)
115
+ {
116
+ super(runtime, klass);
117
+
118
+ setInstanceVariable("@document", doc);
119
+
120
+ name = null;
121
+ type = Type.SEQ;
122
+ occur = Occur.ONCE;
123
+ left = runtime.getNil();
124
+ right = runtime.getNil();
125
+
126
+ apply(runtime, klass, doc, iter);
127
+ }
128
+
129
+ protected
130
+ XmlElementContent(Ruby runtime, RubyClass klass,
131
+ Type type, XmlDocument doc, NodeIter iter,
132
+ XmlElementContent left)
133
+ {
134
+ super(runtime, klass);
135
+
136
+ setInstanceVariable("@document", doc);
137
+
138
+ name = null;
139
+ this.type = type;
140
+ occur = Occur.ONCE;
141
+ this.left = left;
142
+ right = runtime.getNil();
143
+
144
+ switch (type) {
145
+ case SEQ:
146
+ case OR:
147
+ applyGroup(runtime, klass, doc, iter);
148
+ default:
149
+ // noop
170
150
  }
171
-
172
- /**
173
- * Applies the current node in <code>iter</code> to this content
174
- * model. When finished, <code>iter</code> will point to the last
175
- * processed node.
176
- */
177
- protected void apply(Ruby runtime, RubyClass klass,
178
- XmlDocument doc,
179
- NodeIter iter) {
180
- if (iter.isNull()) return;
181
-
182
- Element elem = (Element) iter.current();
183
-
184
- if (isGroup(elem) && iter.hasChildren()) {
185
- iter.firstChild();
186
- applyGroup(runtime, klass, doc, iter);
187
- iter.parent();
188
- } else if (isElement(elem)) {
189
- name = elem.getAttribute("name");
190
- type = Type.ELEMENT;
191
- }
192
-
193
- iter.nextSibling();
194
- if (iter.isNull()) return;
195
- if (isOccurrence(iter.current())) {
196
- setOccur(((Element)iter.current()).getAttribute("type"));
197
- iter.nextSibling();
198
- }
151
+ }
152
+
153
+ /**
154
+ * Applies the current node in <code>iter</code> to this content
155
+ * model. When finished, <code>iter</code> will point to the last
156
+ * processed node.
157
+ */
158
+ protected void
159
+ apply(Ruby runtime, RubyClass klass,
160
+ XmlDocument doc,
161
+ NodeIter iter)
162
+ {
163
+ if (iter.isNull()) { return; }
164
+
165
+ Element elem = (Element) iter.current();
166
+
167
+ if (isGroup(elem) && iter.hasChildren()) {
168
+ iter.firstChild();
169
+ applyGroup(runtime, klass, doc, iter);
170
+ iter.parent();
171
+ } else if (isElement(elem)) {
172
+ name = elem.getAttribute("name");
173
+ type = Type.ELEMENT;
199
174
  }
200
175
 
201
- protected void applyGroup(Ruby runtime, RubyClass klass,
202
- XmlDocument doc, NodeIter iter) {
203
- // LEFT branch
176
+ iter.nextSibling();
177
+ if (iter.isNull()) { return; }
178
+ if (isOccurrence(iter.current())) {
179
+ setOccur(((Element)iter.current()).getAttribute("type"));
180
+ iter.nextSibling();
181
+ }
182
+ }
204
183
 
205
- if (iter.isNull()) return;
184
+ protected void
185
+ applyGroup(Ruby runtime, RubyClass klass,
186
+ XmlDocument doc, NodeIter iter)
187
+ {
188
+ // LEFT branch
206
189
 
207
- if (left.isNil()) {
208
- left = new XmlElementContent(runtime, klass, doc, iter);
190
+ if (iter.isNull()) { return; }
209
191
 
210
- if (iter.isNull()) return;
192
+ if (left.isNil()) {
193
+ left = new XmlElementContent(runtime, klass, doc, iter);
211
194
 
212
- if (isSeparator(iter.current())) {
213
- setType(((Element)iter.current()).getAttribute("type"));
214
- iter.nextSibling(); // skip separator
215
- }
216
- }
195
+ if (iter.isNull()) { return; }
217
196
 
218
- // RIGHT branch
197
+ if (isSeparator(iter.current())) {
198
+ setType(((Element)iter.current()).getAttribute("type"));
199
+ iter.nextSibling(); // skip separator
200
+ }
201
+ }
219
202
 
220
- if (iter.isNull()) return;
203
+ // RIGHT branch
221
204
 
222
- right = new XmlElementContent(runtime, klass, doc, iter);
205
+ if (iter.isNull()) { return; }
223
206
 
224
- if (iter.isNull()) return;
225
- if (isSeparator(iter.current()))
226
- iter.nextSibling(); // skip separator
227
- if (iter.isNull()) return;
207
+ right = new XmlElementContent(runtime, klass, doc, iter);
228
208
 
229
- // binary tree can only hold two children. If we have more,
230
- // the right child is another tree with the same sequence
231
- // "type". The "left" of the new tree is what we've
232
- // currently consumed as our "right" branch of this tree.
233
- right = new XmlElementContent(runtime, klass, type, doc, iter,
234
- (XmlElementContent) right);
209
+ if (iter.isNull()) { return; }
210
+ if (isSeparator(iter.current())) {
211
+ iter.nextSibling(); // skip separator
235
212
  }
213
+ if (iter.isNull()) { return; }
214
+
215
+ // binary tree can only hold two children. If we have more,
216
+ // the right child is another tree with the same sequence
217
+ // "type". The "left" of the new tree is what we've
218
+ // currently consumed as our "right" branch of this tree.
219
+ right = new XmlElementContent(runtime, klass, type, doc, iter,
220
+ (XmlElementContent) right);
221
+ }
222
+
223
+ /**
224
+ * Set the type based on the separator node type string.
225
+ */
226
+ protected void
227
+ setType(String type)
228
+ {
229
+ if ("|".equals(type)) { this.type = Type.OR; }
230
+ else if (",".equals(type)) { this.type = Type.SEQ; }
231
+ }
232
+
233
+ protected void
234
+ setOccur(String type)
235
+ {
236
+ if ("*".equals(type)) { this.occur = Occur.MULT; }
237
+ else if ("+".equals(type)) { this.occur = Occur.PLUS; }
238
+ }
239
+
240
+ public static boolean
241
+ isGroup(Node node)
242
+ {
243
+ return XmlDtd.nameEquals(node, DTDConfiguration.E_GROUP);
244
+ }
245
+
246
+ // content model element, not Element node type
247
+ public static boolean
248
+ isElement(Node node)
249
+ {
250
+ return XmlDtd.nameEquals(node, DTDConfiguration.E_ELEMENT);
251
+ }
252
+
253
+ public static boolean
254
+ isSeparator(Node node)
255
+ {
256
+ return XmlDtd.nameEquals(node, DTDConfiguration.E_SEPARATOR);
257
+ }
258
+
259
+ public static boolean
260
+ isOccurrence(Node node)
261
+ {
262
+ return XmlDtd.nameEquals(node, DTDConfiguration.E_OCCURRENCE);
263
+ }
264
+
265
+ /**
266
+ * Return the name of the element to which this content model
267
+ * applies. Only works for the root of the tree.
268
+ */
269
+ public IRubyObject
270
+ element_name(ThreadContext context)
271
+ {
272
+ return nonEmptyStringOrNil(context.getRuntime(), element_name);
273
+ }
274
+
275
+ @JRubyMethod
276
+ public IRubyObject
277
+ prefix(ThreadContext context)
278
+ {
279
+ return nonEmptyStringOrNil(context.getRuntime(), getPrefix(name));
280
+ }
281
+
282
+ @JRubyMethod
283
+ public IRubyObject
284
+ name(ThreadContext context)
285
+ {
286
+ return nonEmptyStringOrNil(context.getRuntime(), getLocalPart(name));
287
+ }
288
+
289
+ @JRubyMethod
290
+ public IRubyObject
291
+ type(ThreadContext context)
292
+ {
293
+ return type.value(context.getRuntime());
294
+ }
295
+
296
+ @JRubyMethod
297
+ public IRubyObject
298
+ occur(ThreadContext context)
299
+ {
300
+ return occur.value(context.getRuntime());
301
+ }
302
+
303
+ @JRubyMethod
304
+ public IRubyObject
305
+ c1(ThreadContext context)
306
+ {
307
+ return left;
308
+ }
309
+
310
+ @JRubyMethod
311
+ public IRubyObject
312
+ c2(ThreadContext context)
313
+ {
314
+ return right;
315
+ }
316
+
317
+ /**
318
+ * Iterator for a tree of Nodes. Has a current position that
319
+ * points to a given node. Calling nextSibling() on the last
320
+ * sibling results in a current position of null. This position
321
+ * is not fatal and can be escaped by calling parent() (which
322
+ * moves to the parent of previous sibling). The null position is
323
+ * used to indicate the end of a list.
324
+ */
325
+ protected static class NodeIter
326
+ {
327
+ protected Node pre;
328
+ protected Node cur;
236
329
 
237
330
  /**
238
- * Set the type based on the separator node type string.
331
+ * The first time, we fake a previous sibling element. Thus,
332
+ * initially, current() is null, and the first call should be
333
+ * nextSibling().
239
334
  */
240
- protected void setType(String type) {
241
- if ("|".equals(type)) this.type = Type.OR;
242
- else if (",".equals(type)) this.type = Type.SEQ;
335
+ public
336
+ NodeIter(Node node)
337
+ {
338
+ pre = null;
339
+ cur = node.getFirstChild(); // skip root contentModel node
243
340
  }
244
341
 
245
- protected void setOccur(String type) {
246
- if ("*".equals(type)) this.occur = Occur.MULT;
247
- else if ("+".equals(type)) this.occur = Occur.PLUS;
342
+ public Node
343
+ current()
344
+ {
345
+ return cur;
248
346
  }
249
347
 
250
- public static boolean isGroup(Node node) {
251
- return XmlDtd.nameEquals(node, DTDConfiguration.E_GROUP);
348
+ public boolean
349
+ isNull()
350
+ {
351
+ return (cur == null);
252
352
  }
253
353
 
254
- // content model element, not Element node type
255
- public static boolean isElement(Node node) {
256
- return XmlDtd.nameEquals(node, DTDConfiguration.E_ELEMENT);
257
- }
258
-
259
- public static boolean isSeparator(Node node) {
260
- return XmlDtd.nameEquals(node, DTDConfiguration.E_SEPARATOR);
261
- }
262
-
263
- public static boolean isOccurrence(Node node) {
264
- return XmlDtd.nameEquals(node, DTDConfiguration.E_OCCURRENCE);
354
+ public boolean
355
+ hasChildren()
356
+ {
357
+ return (cur != null && cur.hasChildNodes());
265
358
  }
266
359
 
267
360
  /**
268
- * Return the name of the element to which this content model
269
- * applies. Only works for the root of the tree.
361
+ * Descend to the first child.
270
362
  */
271
- public IRubyObject element_name(ThreadContext context) {
272
- return nonEmptyStringOrNil(context.getRuntime(), element_name);
273
- }
274
-
275
- @JRubyMethod
276
- public IRubyObject prefix(ThreadContext context) {
277
- return nonEmptyStringOrNil(context.getRuntime(), getPrefix(name));
278
- }
279
-
280
- @JRubyMethod
281
- public IRubyObject name(ThreadContext context) {
282
- return nonEmptyStringOrNil(context.getRuntime(), getLocalPart(name));
283
- }
284
-
285
- @JRubyMethod
286
- public IRubyObject type(ThreadContext context) {
287
- return type.value(context.getRuntime());
288
- }
289
-
290
- @JRubyMethod
291
- public IRubyObject occur(ThreadContext context) {
292
- return occur.value(context.getRuntime());
293
- }
294
-
295
- @JRubyMethod
296
- public IRubyObject c1(ThreadContext context) {
297
- return left;
298
- }
299
-
300
- @JRubyMethod
301
- public IRubyObject c2(ThreadContext context) {
302
- return right;
363
+ public Node
364
+ firstChild()
365
+ {
366
+ if (cur == null) { throw new RuntimeException("no children"); }
367
+ Node ch = cur.getFirstChild();
368
+ if (ch == null) { throw new RuntimeException("no children"); }
369
+
370
+ cur = ch;
371
+ return cur;
303
372
  }
304
373
 
305
374
  /**
306
- * Iterator for a tree of Nodes. Has a current position that
307
- * points to a given node. Calling nextSibling() on the last
308
- * sibling results in a current position of null. This position
309
- * is not fatal and can be escaped by calling parent() (which
310
- * moves to the parent of previous sibling). The null position is
311
- * used to indicate the end of a list.
375
+ * Move to the next sibling
312
376
  */
313
- protected static class NodeIter {
314
- protected Node pre;
315
- protected Node cur;
316
-
317
- /**
318
- * The first time, we fake a previous sibling element. Thus,
319
- * initially, current() is null, and the first call should be
320
- * nextSibling().
321
- */
322
- public NodeIter(Node node) {
323
- pre = null;
324
- cur = node.getFirstChild(); // skip root contentModel node
325
- }
326
-
327
- public Node current() {
328
- return cur;
329
- }
330
-
331
- public boolean isNull() {
332
- return (cur == null);
333
- }
334
-
335
- public boolean hasChildren() {
336
- return (cur != null && cur.hasChildNodes());
337
- }
338
-
339
- /**
340
- * Descend to the first child.
341
- */
342
- public Node firstChild() {
343
- if (cur == null) throw new RuntimeException("no children");
344
- Node ch = cur.getFirstChild();
345
- if (ch == null) throw new RuntimeException("no children");
346
-
347
- cur = ch;
348
- return cur;
349
- }
350
-
351
- /**
352
- * Move to the next sibling
353
- */
354
- public Node nextSibling() {
355
- if (cur == null) {
356
- throw new RuntimeException("no next sibling");
357
- } else {
358
- Node ns = cur.getNextSibling();
359
- if (ns == null) {
360
- pre = cur;
361
- cur = null;
362
- } else {
363
- cur = ns;
364
- }
365
- return cur;
366
- }
377
+ public Node
378
+ nextSibling()
379
+ {
380
+ if (cur == null) {
381
+ throw new RuntimeException("no next sibling");
382
+ } else {
383
+ Node ns = cur.getNextSibling();
384
+ if (ns == null) {
385
+ pre = cur;
386
+ cur = null;
387
+ } else {
388
+ cur = ns;
367
389
  }
390
+ return cur;
391
+ }
392
+ }
368
393
 
369
- /**
370
- * Move to the parent.
371
- */
372
- public Node parent() {
373
- if (cur == null) cur = pre;
394
+ /**
395
+ * Move to the parent.
396
+ */
397
+ public Node
398
+ parent()
399
+ {
400
+ if (cur == null) { cur = pre; }
374
401
 
375
- Node p = cur.getParentNode();
376
- if (p == null) throw new RuntimeException("no parent");
402
+ Node p = cur.getParentNode();
403
+ if (p == null) { throw new RuntimeException("no parent"); }
377
404
 
378
- cur = p;
379
- return cur;
380
- }
405
+ cur = p;
406
+ return cur;
381
407
  }
408
+ }
382
409
  }