nokogiri 1.11.1-java → 1.11.6-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 (143) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE-DEPENDENCIES.md +12 -12
  3. data/LICENSE.md +1 -1
  4. data/README.md +21 -16
  5. data/dependencies.yml +12 -12
  6. data/ext/java/nokogiri/EncodingHandler.java +76 -89
  7. data/ext/java/nokogiri/HtmlDocument.java +135 -144
  8. data/ext/java/nokogiri/HtmlElementDescription.java +102 -117
  9. data/ext/java/nokogiri/HtmlEntityLookup.java +33 -60
  10. data/ext/java/nokogiri/HtmlSaxParserContext.java +218 -222
  11. data/ext/java/nokogiri/HtmlSaxPushParser.java +162 -169
  12. data/ext/java/nokogiri/NokogiriService.java +595 -556
  13. data/ext/java/nokogiri/XmlAttr.java +118 -126
  14. data/ext/java/nokogiri/XmlAttributeDecl.java +95 -106
  15. data/ext/java/nokogiri/XmlCdata.java +35 -58
  16. data/ext/java/nokogiri/XmlComment.java +46 -67
  17. data/ext/java/nokogiri/XmlDocument.java +645 -572
  18. data/ext/java/nokogiri/XmlDocumentFragment.java +125 -137
  19. data/ext/java/nokogiri/XmlDtd.java +448 -414
  20. data/ext/java/nokogiri/XmlElement.java +23 -48
  21. data/ext/java/nokogiri/XmlElementContent.java +343 -316
  22. data/ext/java/nokogiri/XmlElementDecl.java +124 -125
  23. data/ext/java/nokogiri/XmlEntityDecl.java +119 -127
  24. data/ext/java/nokogiri/XmlEntityReference.java +49 -72
  25. data/ext/java/nokogiri/XmlNamespace.java +175 -175
  26. data/ext/java/nokogiri/XmlNode.java +1843 -1620
  27. data/ext/java/nokogiri/XmlNodeSet.java +361 -331
  28. data/ext/java/nokogiri/XmlProcessingInstruction.java +47 -69
  29. data/ext/java/nokogiri/XmlReader.java +513 -450
  30. data/ext/java/nokogiri/XmlRelaxng.java +85 -104
  31. data/ext/java/nokogiri/XmlSaxParserContext.java +328 -315
  32. data/ext/java/nokogiri/XmlSaxPushParser.java +227 -220
  33. data/ext/java/nokogiri/XmlSchema.java +328 -295
  34. data/ext/java/nokogiri/XmlSyntaxError.java +113 -115
  35. data/ext/java/nokogiri/XmlText.java +55 -76
  36. data/ext/java/nokogiri/XmlXpathContext.java +240 -238
  37. data/ext/java/nokogiri/XsltStylesheet.java +280 -269
  38. data/ext/java/nokogiri/internals/ClosedStreamException.java +5 -2
  39. data/ext/java/nokogiri/internals/HtmlDomParserContext.java +201 -202
  40. data/ext/java/nokogiri/internals/IgnoreSchemaErrorsErrorHandler.java +17 -10
  41. data/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +43 -16
  42. data/ext/java/nokogiri/internals/NokogiriDomParser.java +63 -80
  43. data/ext/java/nokogiri/internals/NokogiriEntityResolver.java +107 -88
  44. data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +27 -52
  45. data/ext/java/nokogiri/internals/NokogiriHandler.java +316 -286
  46. data/ext/java/nokogiri/internals/NokogiriHelpers.java +736 -652
  47. data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +184 -173
  48. data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +81 -98
  49. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +64 -79
  50. data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +84 -99
  51. data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +48 -65
  52. data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +116 -131
  53. data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +34 -56
  54. data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +23 -46
  55. data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +55 -72
  56. data/ext/java/nokogiri/internals/ParserContext.java +206 -211
  57. data/ext/java/nokogiri/internals/ReaderNode.java +478 -403
  58. data/ext/java/nokogiri/internals/SaveContextVisitor.java +822 -739
  59. data/ext/java/nokogiri/internals/SchemaErrorHandler.java +31 -54
  60. data/ext/java/nokogiri/internals/XalanDTMManagerPatch.java +129 -123
  61. data/ext/java/nokogiri/internals/XmlDeclHandler.java +3 -34
  62. data/ext/java/nokogiri/internals/XmlDomParserContext.java +206 -207
  63. data/ext/java/nokogiri/internals/XmlSaxParser.java +22 -47
  64. data/ext/java/nokogiri/internals/c14n/AttrCompare.java +71 -68
  65. data/ext/java/nokogiri/internals/c14n/C14nHelper.java +137 -118
  66. data/ext/java/nokogiri/internals/c14n/CanonicalFilter.java +27 -21
  67. data/ext/java/nokogiri/internals/c14n/CanonicalizationException.java +74 -61
  68. data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +230 -205
  69. data/ext/java/nokogiri/internals/c14n/Canonicalizer11.java +572 -547
  70. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_OmitComments.java +17 -10
  71. data/ext/java/nokogiri/internals/c14n/Canonicalizer11_WithComments.java +17 -10
  72. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java +323 -302
  73. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315Excl.java +232 -219
  74. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclOmitComments.java +22 -15
  75. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclWithComments.java +23 -16
  76. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315OmitComments.java +23 -16
  77. data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315WithComments.java +22 -15
  78. data/ext/java/nokogiri/internals/c14n/CanonicalizerBase.java +575 -545
  79. data/ext/java/nokogiri/internals/c14n/CanonicalizerPhysical.java +141 -120
  80. data/ext/java/nokogiri/internals/c14n/CanonicalizerSpi.java +39 -38
  81. data/ext/java/nokogiri/internals/c14n/Constants.java +13 -10
  82. data/ext/java/nokogiri/internals/c14n/ElementProxy.java +279 -247
  83. data/ext/java/nokogiri/internals/c14n/HelperNodeList.java +66 -53
  84. data/ext/java/nokogiri/internals/c14n/IgnoreAllErrorHandler.java +44 -37
  85. data/ext/java/nokogiri/internals/c14n/InclusiveNamespaces.java +135 -120
  86. data/ext/java/nokogiri/internals/c14n/InvalidCanonicalizerException.java +59 -48
  87. data/ext/java/nokogiri/internals/c14n/NameSpaceSymbTable.java +384 -334
  88. data/ext/java/nokogiri/internals/c14n/NodeFilter.java +25 -24
  89. data/ext/java/nokogiri/internals/c14n/UtfHelpper.java +151 -140
  90. data/ext/java/nokogiri/internals/c14n/XMLUtils.java +456 -423
  91. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +1466 -1500
  92. data/ext/java/nokogiri/internals/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java +626 -574
  93. data/ext/nokogiri/depend +34 -474
  94. data/ext/nokogiri/extconf.rb +253 -183
  95. data/ext/nokogiri/html_document.c +10 -15
  96. data/ext/nokogiri/html_element_description.c +84 -71
  97. data/ext/nokogiri/html_entity_lookup.c +21 -16
  98. data/ext/nokogiri/html_sax_parser_context.c +66 -65
  99. data/ext/nokogiri/html_sax_push_parser.c +29 -27
  100. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  101. data/ext/nokogiri/nokogiri.c +190 -63
  102. data/ext/nokogiri/test_global_handlers.c +3 -4
  103. data/ext/nokogiri/xml_attr.c +15 -15
  104. data/ext/nokogiri/xml_attribute_decl.c +18 -18
  105. data/ext/nokogiri/xml_cdata.c +13 -18
  106. data/ext/nokogiri/xml_comment.c +19 -26
  107. data/ext/nokogiri/xml_document.c +246 -188
  108. data/ext/nokogiri/xml_document_fragment.c +13 -15
  109. data/ext/nokogiri/xml_dtd.c +54 -48
  110. data/ext/nokogiri/xml_element_content.c +30 -27
  111. data/ext/nokogiri/xml_element_decl.c +22 -22
  112. data/ext/nokogiri/xml_encoding_handler.c +17 -11
  113. data/ext/nokogiri/xml_entity_decl.c +32 -30
  114. data/ext/nokogiri/xml_entity_reference.c +16 -18
  115. data/ext/nokogiri/xml_namespace.c +56 -49
  116. data/ext/nokogiri/xml_node.c +385 -326
  117. data/ext/nokogiri/xml_node_set.c +168 -156
  118. data/ext/nokogiri/xml_processing_instruction.c +17 -19
  119. data/ext/nokogiri/xml_reader.c +191 -157
  120. data/ext/nokogiri/xml_relax_ng.c +29 -23
  121. data/ext/nokogiri/xml_sax_parser.c +117 -112
  122. data/ext/nokogiri/xml_sax_parser_context.c +100 -85
  123. data/ext/nokogiri/xml_sax_push_parser.c +34 -27
  124. data/ext/nokogiri/xml_schema.c +48 -42
  125. data/ext/nokogiri/xml_syntax_error.c +21 -23
  126. data/ext/nokogiri/xml_text.c +13 -17
  127. data/ext/nokogiri/xml_xpath_context.c +134 -127
  128. data/ext/nokogiri/xslt_stylesheet.c +157 -157
  129. data/lib/nokogiri.rb +1 -22
  130. data/lib/nokogiri/css/parser.rb +1 -1
  131. data/lib/nokogiri/extension.rb +26 -0
  132. data/lib/nokogiri/html/document_fragment.rb +15 -15
  133. data/lib/nokogiri/nokogiri.jar +0 -0
  134. data/lib/nokogiri/version/constant.rb +1 -1
  135. data/lib/nokogiri/version/info.rb +32 -8
  136. data/lib/nokogiri/xml/document.rb +74 -28
  137. data/lib/nokogiri/xml/node.rb +39 -42
  138. data/lib/nokogiri/xml/reader.rb +2 -9
  139. data/lib/nokogiri/xml/xpath.rb +1 -3
  140. data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
  141. metadata +7 -8
  142. data/ext/nokogiri/xml_io.c +0 -63
  143. data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
@@ -1,35 +1,3 @@
1
- /**
2
- * (The MIT License)
3
- *
4
- * Copyright (c) 2008 - 2014:
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.internals;
34
2
 
35
3
  import static nokogiri.internals.NokogiriHelpers.isNamespace;
@@ -47,171 +15,214 @@ import org.w3c.dom.Node;
47
15
 
48
16
  /**
49
17
  * Cache of namespaces of each node. XmlDocument has one cache of this class.
50
- *
18
+ *
51
19
  * @author sergio
52
20
  * @author Yoko Harada <yokolet@gmail.com>
53
21
  */
54
- public class NokogiriNamespaceCache {
55
-
56
- private final Map<CacheKey, CacheEntry> cache; // pair of the index of a given key and entry
57
- private XmlNamespace defaultNamespace = null;
58
-
59
- public NokogiriNamespaceCache() {
60
- this.cache = new LinkedHashMap<CacheKey, CacheEntry>(4);
22
+ public class NokogiriNamespaceCache
23
+ {
24
+
25
+ private final Map<CacheKey, CacheEntry> cache; // pair of the index of a given key and entry
26
+ private XmlNamespace defaultNamespace = null;
27
+
28
+ public
29
+ NokogiriNamespaceCache()
30
+ {
31
+ this.cache = new LinkedHashMap<CacheKey, CacheEntry>(4);
32
+ }
33
+
34
+ public
35
+ NokogiriNamespaceCache(NokogiriNamespaceCache cache)
36
+ {
37
+ this.cache = new LinkedHashMap<CacheKey, CacheEntry>(cache.size() + 2);
38
+ this.cache.putAll(cache.cache);
39
+ }
40
+
41
+ public XmlNamespace
42
+ getDefault()
43
+ {
44
+ return defaultNamespace;
45
+ }
46
+
47
+ public XmlNamespace
48
+ get(String prefix, String href)
49
+ {
50
+ if (href == null) { return null; }
51
+
52
+ CacheEntry value = cache.get(new CacheKey(prefix, href));
53
+ return value == null ? null : value.namespace;
54
+ }
55
+
56
+ public XmlNamespace
57
+ get(Node node, String prefix)
58
+ {
59
+ if (prefix == null) { return defaultNamespace; }
60
+ for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
61
+ if (entry.getKey().prefix.equals(prefix)) {
62
+ if (entry.getValue().isOwner(node)) {
63
+ return entry.getValue().namespace;
64
+ }
65
+ }
61
66
  }
62
-
63
- public NokogiriNamespaceCache(NokogiriNamespaceCache cache) {
64
- this.cache = new LinkedHashMap<CacheKey, CacheEntry>(cache.size() + 2);
65
- this.cache.putAll(cache.cache);
67
+ return null;
68
+ }
69
+
70
+ public List<XmlNamespace>
71
+ get(String prefix)
72
+ {
73
+ List<XmlNamespace> namespaces = new ArrayList<XmlNamespace>();
74
+ if (prefix == null) {
75
+ namespaces.add(defaultNamespace);
76
+ return namespaces;
66
77
  }
67
-
68
- public XmlNamespace getDefault() {
69
- return defaultNamespace;
78
+ for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
79
+ if (entry.getKey().prefix.equals(prefix)) {
80
+ namespaces.add(entry.getValue().namespace);
81
+ }
70
82
  }
71
-
72
- public XmlNamespace get(String prefix, String href) {
73
- if (href == null) return null;
74
-
75
- CacheEntry value = cache.get(new CacheKey(prefix, href));
76
- return value == null ? null : value.namespace;
83
+ return namespaces;
84
+ }
85
+
86
+ public List<XmlNamespace>
87
+ get(Node node)
88
+ {
89
+ List<XmlNamespace> namespaces = new ArrayList<XmlNamespace>();
90
+ for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
91
+ if (entry.getValue().isOwner(node)) {
92
+ namespaces.add(entry.getValue().namespace);
93
+ }
77
94
  }
78
-
79
- public XmlNamespace get(Node node, String prefix) {
80
- if (prefix == null) return defaultNamespace;
81
- for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
82
- if (entry.getKey().prefix.equals(prefix)) {
83
- if (entry.getValue().isOwner(node)) {
84
- return entry.getValue().namespace;
85
- }
86
- }
95
+ return namespaces;
96
+ }
97
+
98
+ public void
99
+ put(XmlNamespace namespace, Node ownerNode)
100
+ {
101
+ String prefix = namespace.getPrefix();
102
+ String href = namespace.getHref();
103
+ if (href == null) { return; }
104
+
105
+ CacheKey key = new CacheKey(prefix, href);
106
+ if (cache.get(key) != null) { return; }
107
+ cache.put(key, new CacheEntry(namespace, ownerNode));
108
+ if ("".equals(prefix)) { defaultNamespace = namespace; }
109
+ }
110
+
111
+ public void
112
+ remove(Node ownerNode)
113
+ {
114
+ String prefix = ownerNode.getPrefix();
115
+ String href = ownerNode.getNamespaceURI();
116
+ if (href == null) { return; }
117
+
118
+ cache.remove(new CacheKey(prefix, href));
119
+ }
120
+
121
+ public int
122
+ size()
123
+ {
124
+ return cache.size();
125
+ }
126
+
127
+ public void
128
+ clear()
129
+ {
130
+ // removes namespace declarations from node
131
+ for (CacheEntry entry : cache.values()) {
132
+ NamedNodeMap attributes = entry.ownerNode.getAttributes();
133
+ for (int j = 0; j < attributes.getLength(); j++) {
134
+ String name = ((Attr) attributes.item(j)).getName();
135
+ if (isNamespace(name)) {
136
+ attributes.removeNamedItem(name);
87
137
  }
88
- return null;
138
+ }
89
139
  }
90
-
91
- public List<XmlNamespace> get(String prefix) {
92
- List<XmlNamespace> namespaces = new ArrayList<XmlNamespace>();
93
- if (prefix == null) {
94
- namespaces.add(defaultNamespace);
95
- return namespaces;
96
- }
97
- for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
98
- if (entry.getKey().prefix.equals(prefix)) {
99
- namespaces.add(entry.getValue().namespace);
100
- }
101
- }
102
- return namespaces;
140
+ cache.clear();
141
+ defaultNamespace = null;
142
+ }
143
+
144
+ public void
145
+ replaceNode(Node oldNode, Node newNode)
146
+ {
147
+ for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
148
+ if (entry.getValue().isOwner(oldNode)) {
149
+ entry.getValue().replaceOwner(newNode);
150
+ }
103
151
  }
104
-
105
- public List<XmlNamespace> get(Node node) {
106
- List<XmlNamespace> namespaces = new ArrayList<XmlNamespace>();
107
- for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
108
- if (entry.getValue().isOwner(node)) {
109
- namespaces.add(entry.getValue().namespace);
110
- }
111
- }
112
- return namespaces;
152
+ }
153
+
154
+ @Override
155
+ public String
156
+ toString()
157
+ {
158
+ return getClass().getName() + '@' + Integer.toHexString(hashCode()) + '(' + cache + "default=" + defaultNamespace + ')';
159
+ }
160
+
161
+ private static class CacheKey
162
+ {
163
+ final String prefix;
164
+ final String href;
165
+
166
+ CacheKey(String prefix, String href)
167
+ {
168
+ this.prefix = prefix;
169
+ this.href = href;
113
170
  }
114
171
 
115
- public void put(XmlNamespace namespace, Node ownerNode) {
116
- String prefix = namespace.getPrefix();
117
- String href = namespace.getHref();
118
- if (href == null) return;
119
-
120
- CacheKey key = new CacheKey(prefix, href);
121
- if (cache.get(key) != null) return;
122
- cache.put(key, new CacheEntry(namespace, ownerNode));
123
- if ("".equals(prefix)) defaultNamespace = namespace;
172
+ @Override
173
+ public boolean
174
+ equals(final Object obj)
175
+ {
176
+ if (obj instanceof CacheKey) {
177
+ CacheKey that = (CacheKey) obj;
178
+ return prefix == null ? that.prefix == null : prefix.equals(that.prefix) && href.equals(that.href);
179
+ }
180
+ return false;
124
181
  }
125
182
 
126
- public void remove(Node ownerNode) {
127
- String prefix = ownerNode.getPrefix();
128
- String href = ownerNode.getNamespaceURI();
129
- if (href == null) return;
130
-
131
- cache.remove(new CacheKey(prefix, href));
183
+ @Override
184
+ public int
185
+ hashCode()
186
+ {
187
+ return (prefix == null ? 0 : prefix.hashCode()) + 37 * href.hashCode();
132
188
  }
133
189
 
134
- public int size() {
135
- return cache.size();
190
+ @Override
191
+ public String
192
+ toString()
193
+ {
194
+ return '[' + prefix + ']' + href;
136
195
  }
196
+ }
137
197
 
138
- public void clear() {
139
- // removes namespace declarations from node
140
- for (CacheEntry entry : cache.values()) {
141
- NamedNodeMap attributes = entry.ownerNode.getAttributes();
142
- for (int j=0; j<attributes.getLength(); j++) {
143
- String name = ((Attr) attributes.item(j)).getName();
144
- if (isNamespace(name)) {
145
- attributes.removeNamedItem(name);
146
- }
147
- }
148
- }
149
- cache.clear();
150
- defaultNamespace = null;
151
- }
198
+ private static class CacheEntry
199
+ {
200
+ final XmlNamespace namespace;
201
+ private Node ownerNode;
152
202
 
153
- public void replaceNode(Node oldNode, Node newNode) {
154
- for (Map.Entry<CacheKey, CacheEntry> entry : cache.entrySet()) {
155
- if (entry.getValue().isOwner(oldNode)) {
156
- entry.getValue().replaceOwner(newNode);
157
- }
158
- }
203
+ CacheEntry(XmlNamespace namespace, Node ownerNode)
204
+ {
205
+ this.namespace = namespace;
206
+ this.ownerNode = ownerNode;
159
207
  }
160
208
 
161
- @Override
162
- public String toString() {
163
- return getClass().getName() + '@' + Integer.toHexString(hashCode()) + '(' + cache + "default=" + defaultNamespace + ')';
209
+ boolean
210
+ isOwner(Node node)
211
+ {
212
+ return ownerNode.isSameNode(node);
164
213
  }
165
214
 
166
- private static class CacheKey {
167
- final String prefix;
168
- final String href;
169
-
170
- CacheKey(String prefix, String href) {
171
- this.prefix = prefix;
172
- this.href = href;
173
- }
174
-
175
- @Override
176
- public boolean equals(final Object obj) {
177
- if (obj instanceof CacheKey) {
178
- CacheKey that = (CacheKey) obj;
179
- return prefix == null ? that.prefix == null : prefix.equals(that.prefix) && href.equals(that.href);
180
- }
181
- return false;
182
- }
183
-
184
- @Override
185
- public int hashCode() {
186
- return (prefix == null ? 0 : prefix.hashCode()) + 37 * href.hashCode();
187
- }
188
-
189
- @Override
190
- public String toString() {
191
- return '[' + prefix + ']' + href;
192
- }
215
+ void
216
+ replaceOwner(Node newNode)
217
+ {
218
+ this.ownerNode = newNode;
193
219
  }
194
220
 
195
- private static class CacheEntry {
196
- final XmlNamespace namespace;
197
- private Node ownerNode;
198
-
199
- CacheEntry(XmlNamespace namespace, Node ownerNode) {
200
- this.namespace = namespace;
201
- this.ownerNode = ownerNode;
202
- }
203
-
204
- boolean isOwner(Node node) {
205
- return ownerNode.isSameNode(node);
206
- }
207
-
208
- void replaceOwner(Node newNode) {
209
- this.ownerNode = newNode;
210
- }
211
-
212
- @Override
213
- public String toString() {
214
- return namespace.toString();
215
- }
221
+ @Override
222
+ public String
223
+ toString()
224
+ {
225
+ return namespace.toString();
216
226
  }
227
+ }
217
228
  }
@@ -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.internals;
34
2
 
35
3
  import java.util.ArrayList;
@@ -44,84 +12,99 @@ import javax.xml.namespace.NamespaceContext;
44
12
 
45
13
  /**
46
14
  * Holder of each node's namespace.
47
- *
15
+ *
48
16
  * @author Yoko Harada <yokolet@gmail.com>
49
17
  *
50
18
  */
51
- public final class NokogiriNamespaceContext implements NamespaceContext {
52
-
53
- /*
54
- * these constants have matching declarations in
55
- * ext/nokogiri/xml_xpath_context.c
56
- */
57
- public static final String NOKOGIRI_PREFIX = "nokogiri";
58
- public static final String NOKOGIRI_URI = "http://www.nokogiri.org/default_ns/ruby/extensions_functions";
59
-
60
- public static final String NOKOGIRI_BUILTIN_PREFIX = "nokogiri-builtin";
61
- public static final String NOKOGIRI_BUILTIN_URI = "https://www.nokogiri.org/default_ns/ruby/builtins";
62
-
63
- private final Map<String,String> register;
64
-
65
- public static NokogiriNamespaceContext create() {
66
- return new NokogiriNamespaceContext();
19
+ public final class NokogiriNamespaceContext implements NamespaceContext
20
+ {
21
+
22
+ /*
23
+ * these constants have matching declarations in
24
+ * ext/nokogiri/xml_xpath_context.c
25
+ */
26
+ public static final String NOKOGIRI_PREFIX = "nokogiri";
27
+ public static final String NOKOGIRI_URI = "http://www.nokogiri.org/default_ns/ruby/extensions_functions";
28
+
29
+ public static final String NOKOGIRI_BUILTIN_PREFIX = "nokogiri-builtin";
30
+ public static final String NOKOGIRI_BUILTIN_URI = "https://www.nokogiri.org/default_ns/ruby/builtins";
31
+
32
+ private final Map<String, String> register;
33
+
34
+ public static NokogiriNamespaceContext
35
+ create()
36
+ {
37
+ return new NokogiriNamespaceContext();
38
+ }
39
+
40
+ private
41
+ NokogiriNamespaceContext()
42
+ {
43
+ register = new HashMap<String, String>(6, 1);
44
+ register.put(NOKOGIRI_PREFIX, NOKOGIRI_URI);
45
+ register.put(NOKOGIRI_BUILTIN_PREFIX, NOKOGIRI_BUILTIN_URI);
46
+ register.put("xml", "http://www.w3.org/XML/1998/namespace");
47
+ register.put("xhtml", "http://www.w3.org/1999/xhtml");
48
+ }
49
+
50
+ public String
51
+ getNamespaceURI(String prefix)
52
+ {
53
+ if (prefix == null) {
54
+ throw new IllegalArgumentException();
67
55
  }
68
-
69
- private NokogiriNamespaceContext() {
70
- register = new HashMap<String, String>(6, 1);
71
- register.put(NOKOGIRI_PREFIX, NOKOGIRI_URI);
72
- register.put(NOKOGIRI_BUILTIN_PREFIX, NOKOGIRI_BUILTIN_URI);
73
- register.put("xml", "http://www.w3.org/XML/1998/namespace");
74
- register.put("xhtml", "http://www.w3.org/1999/xhtml");
56
+ String uri = this.register.get(prefix);
57
+ if (uri != null) {
58
+ return uri;
75
59
  }
76
60
 
77
- public String getNamespaceURI(String prefix) {
78
- if (prefix == null) {
79
- throw new IllegalArgumentException();
80
- }
81
- String uri = this.register.get(prefix);
82
- if (uri != null) {
83
- return uri;
84
- }
85
-
86
- if (prefix.equals(XMLConstants.XMLNS_ATTRIBUTE)) {
87
- uri = this.register.get(XMLConstants.XMLNS_ATTRIBUTE);
88
- return (uri == null) ? XMLConstants.XMLNS_ATTRIBUTE_NS_URI : uri;
89
- }
90
-
91
- return XMLConstants.NULL_NS_URI;
61
+ if (prefix.equals(XMLConstants.XMLNS_ATTRIBUTE)) {
62
+ uri = this.register.get(XMLConstants.XMLNS_ATTRIBUTE);
63
+ return (uri == null) ? XMLConstants.XMLNS_ATTRIBUTE_NS_URI : uri;
92
64
  }
93
65
 
94
- public String getPrefix(String uri) {
95
- if (uri == null) {
96
- throw new IllegalArgumentException("uri is null");
97
- }
98
- Set<Entry<String, String>> entries = register.entrySet();
99
- for (Entry<String, String> entry : entries) {
100
- if (uri.equals(entry.getValue())) {
101
- return entry.getKey();
102
- }
103
- }
104
- return null;
105
- }
66
+ return XMLConstants.NULL_NS_URI;
67
+ }
106
68
 
107
- public Iterator<String> getPrefixes(String uri) {
108
- Set<Entry<String, String>> entries = register.entrySet();
109
- ArrayList<String> list = new ArrayList<String>(entries.size());
110
- for (Entry<String, String> entry : entries) {
111
- if (uri.equals(entry.getValue())) {
112
- list.add(entry.getKey());
113
- }
114
- }
115
- return list.iterator();
69
+ public String
70
+ getPrefix(String uri)
71
+ {
72
+ if (uri == null) {
73
+ throw new IllegalArgumentException("uri is null");
116
74
  }
117
-
118
- public Set<String> getAllPrefixes() {
119
- return register.keySet();
75
+ Set<Entry<String, String>> entries = register.entrySet();
76
+ for (Entry<String, String> entry : entries) {
77
+ if (uri.equals(entry.getValue())) {
78
+ return entry.getKey();
79
+ }
120
80
  }
81
+ return null;
82
+ }
121
83
 
122
- public void registerNamespace(String prefix, String uri) {
123
- if ("xmlns".equals(prefix)) prefix = "";
124
- register.put(prefix, uri);
84
+ public Iterator<String>
85
+ getPrefixes(String uri)
86
+ {
87
+ Set<Entry<String, String>> entries = register.entrySet();
88
+ ArrayList<String> list = new ArrayList<String>(entries.size());
89
+ for (Entry<String, String> entry : entries) {
90
+ if (uri.equals(entry.getValue())) {
91
+ list.add(entry.getKey());
92
+ }
125
93
  }
94
+ return list.iterator();
95
+ }
96
+
97
+ public Set<String>
98
+ getAllPrefixes()
99
+ {
100
+ return register.keySet();
101
+ }
102
+
103
+ public void
104
+ registerNamespace(String prefix, String uri)
105
+ {
106
+ if ("xmlns".equals(prefix)) { prefix = ""; }
107
+ register.put(prefix, uri);
108
+ }
126
109
 
127
110
  }