nokogiri 1.11.0.rc3-java → 1.11.4-java
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +3 -0
- data/LICENSE-DEPENDENCIES.md +1015 -947
- data/LICENSE.md +1 -1
- data/README.md +168 -91
- data/dependencies.yml +12 -12
- data/ext/java/nokogiri/EncodingHandler.java +76 -89
- data/ext/java/nokogiri/HtmlDocument.java +135 -144
- data/ext/java/nokogiri/HtmlElementDescription.java +102 -117
- data/ext/java/nokogiri/HtmlEntityLookup.java +33 -60
- data/ext/java/nokogiri/HtmlSaxParserContext.java +218 -222
- data/ext/java/nokogiri/HtmlSaxPushParser.java +162 -169
- data/ext/java/nokogiri/NokogiriService.java +595 -556
- data/ext/java/nokogiri/XmlAttr.java +118 -126
- data/ext/java/nokogiri/XmlAttributeDecl.java +95 -106
- data/ext/java/nokogiri/XmlCdata.java +35 -58
- data/ext/java/nokogiri/XmlComment.java +46 -67
- data/ext/java/nokogiri/XmlDocument.java +645 -572
- data/ext/java/nokogiri/XmlDocumentFragment.java +125 -137
- data/ext/java/nokogiri/XmlDtd.java +448 -414
- data/ext/java/nokogiri/XmlElement.java +23 -48
- data/ext/java/nokogiri/XmlElementContent.java +343 -316
- data/ext/java/nokogiri/XmlElementDecl.java +124 -125
- data/ext/java/nokogiri/XmlEntityDecl.java +119 -127
- data/ext/java/nokogiri/XmlEntityReference.java +49 -72
- data/ext/java/nokogiri/XmlNamespace.java +175 -175
- data/ext/java/nokogiri/XmlNode.java +1843 -1622
- data/ext/java/nokogiri/XmlNodeSet.java +361 -331
- data/ext/java/nokogiri/XmlProcessingInstruction.java +47 -69
- data/ext/java/nokogiri/XmlReader.java +513 -450
- data/ext/java/nokogiri/XmlRelaxng.java +89 -101
- data/ext/java/nokogiri/XmlSaxParserContext.java +328 -310
- data/ext/java/nokogiri/XmlSaxPushParser.java +227 -220
- data/ext/java/nokogiri/XmlSchema.java +335 -242
- data/ext/java/nokogiri/XmlSyntaxError.java +113 -119
- data/ext/java/nokogiri/XmlText.java +55 -76
- data/ext/java/nokogiri/XmlXpathContext.java +242 -210
- data/ext/java/nokogiri/XsltStylesheet.java +280 -269
- data/ext/java/nokogiri/internals/ClosedStreamException.java +5 -2
- data/ext/java/nokogiri/internals/HtmlDomParserContext.java +201 -190
- data/ext/java/nokogiri/internals/IgnoreSchemaErrorsErrorHandler.java +17 -10
- data/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +43 -16
- data/ext/java/nokogiri/internals/NokogiriDomParser.java +63 -80
- data/ext/java/nokogiri/internals/NokogiriEntityResolver.java +107 -88
- data/ext/java/nokogiri/internals/NokogiriErrorHandler.java +27 -52
- data/ext/java/nokogiri/internals/NokogiriHandler.java +316 -286
- data/ext/java/nokogiri/internals/NokogiriHelpers.java +736 -652
- data/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +184 -173
- data/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +79 -89
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +64 -79
- data/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +84 -99
- data/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +48 -65
- data/ext/java/nokogiri/internals/NokogiriXPathFunction.java +119 -78
- data/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +34 -54
- data/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +23 -46
- data/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +55 -72
- data/ext/java/nokogiri/internals/ParserContext.java +206 -211
- data/ext/java/nokogiri/internals/ReaderNode.java +478 -403
- data/ext/java/nokogiri/internals/SaveContextVisitor.java +822 -739
- data/ext/java/nokogiri/internals/SchemaErrorHandler.java +31 -54
- data/ext/java/nokogiri/internals/XalanDTMManagerPatch.java +129 -123
- data/ext/java/nokogiri/internals/XmlDeclHandler.java +3 -34
- data/ext/java/nokogiri/internals/XmlDomParserContext.java +206 -207
- data/ext/java/nokogiri/internals/XmlSaxParser.java +22 -47
- data/ext/java/nokogiri/internals/c14n/AttrCompare.java +71 -68
- data/ext/java/nokogiri/internals/c14n/C14nHelper.java +137 -118
- data/ext/java/nokogiri/internals/c14n/CanonicalFilter.java +27 -21
- data/ext/java/nokogiri/internals/c14n/CanonicalizationException.java +74 -61
- data/ext/java/nokogiri/internals/c14n/Canonicalizer.java +230 -205
- data/ext/java/nokogiri/internals/c14n/Canonicalizer11.java +572 -547
- data/ext/java/nokogiri/internals/c14n/Canonicalizer11_OmitComments.java +17 -10
- data/ext/java/nokogiri/internals/c14n/Canonicalizer11_WithComments.java +17 -10
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315.java +323 -302
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315Excl.java +232 -219
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclOmitComments.java +22 -15
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315ExclWithComments.java +23 -16
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315OmitComments.java +23 -16
- data/ext/java/nokogiri/internals/c14n/Canonicalizer20010315WithComments.java +22 -15
- data/ext/java/nokogiri/internals/c14n/CanonicalizerBase.java +575 -545
- data/ext/java/nokogiri/internals/c14n/CanonicalizerPhysical.java +141 -120
- data/ext/java/nokogiri/internals/c14n/CanonicalizerSpi.java +39 -38
- data/ext/java/nokogiri/internals/c14n/Constants.java +13 -10
- data/ext/java/nokogiri/internals/c14n/ElementProxy.java +279 -247
- data/ext/java/nokogiri/internals/c14n/HelperNodeList.java +66 -53
- data/ext/java/nokogiri/internals/c14n/IgnoreAllErrorHandler.java +44 -37
- data/ext/java/nokogiri/internals/c14n/InclusiveNamespaces.java +135 -120
- data/ext/java/nokogiri/internals/c14n/InvalidCanonicalizerException.java +59 -48
- data/ext/java/nokogiri/internals/c14n/NameSpaceSymbTable.java +384 -334
- data/ext/java/nokogiri/internals/c14n/NodeFilter.java +25 -24
- data/ext/java/nokogiri/internals/c14n/UtfHelpper.java +151 -140
- data/ext/java/nokogiri/internals/c14n/XMLUtils.java +456 -423
- data/ext/java/nokogiri/internals/dom2dtm/DOM2DTM.java +1466 -1500
- data/ext/java/nokogiri/internals/dom2dtm/DOM2DTMdefaultNamespaceDeclarationNode.java +626 -574
- data/ext/nokogiri/depend +37 -358
- data/ext/nokogiri/extconf.rb +581 -374
- data/ext/nokogiri/html_document.c +78 -82
- data/ext/nokogiri/html_element_description.c +84 -71
- data/ext/nokogiri/html_entity_lookup.c +21 -16
- data/ext/nokogiri/html_sax_parser_context.c +69 -66
- data/ext/nokogiri/html_sax_push_parser.c +42 -34
- data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
- data/ext/nokogiri/nokogiri.c +192 -93
- data/ext/nokogiri/test_global_handlers.c +40 -0
- data/ext/nokogiri/xml_attr.c +15 -15
- data/ext/nokogiri/xml_attribute_decl.c +18 -18
- data/ext/nokogiri/xml_cdata.c +13 -18
- data/ext/nokogiri/xml_comment.c +19 -26
- data/ext/nokogiri/xml_document.c +246 -188
- data/ext/nokogiri/xml_document_fragment.c +13 -15
- data/ext/nokogiri/xml_dtd.c +54 -48
- data/ext/nokogiri/xml_element_content.c +30 -27
- data/ext/nokogiri/xml_element_decl.c +22 -22
- data/ext/nokogiri/xml_encoding_handler.c +17 -11
- data/ext/nokogiri/xml_entity_decl.c +32 -30
- data/ext/nokogiri/xml_entity_reference.c +16 -18
- data/ext/nokogiri/xml_namespace.c +56 -49
- data/ext/nokogiri/xml_node.c +371 -320
- data/ext/nokogiri/xml_node_set.c +168 -156
- data/ext/nokogiri/xml_processing_instruction.c +17 -19
- data/ext/nokogiri/xml_reader.c +191 -157
- data/ext/nokogiri/xml_relax_ng.c +52 -28
- data/ext/nokogiri/xml_sax_parser.c +118 -118
- data/ext/nokogiri/xml_sax_parser_context.c +103 -86
- data/ext/nokogiri/xml_sax_push_parser.c +36 -27
- data/ext/nokogiri/xml_schema.c +95 -47
- data/ext/nokogiri/xml_syntax_error.c +42 -21
- data/ext/nokogiri/xml_text.c +13 -17
- data/ext/nokogiri/xml_xpath_context.c +206 -123
- data/ext/nokogiri/xslt_stylesheet.c +158 -161
- data/lib/nokogiri.rb +3 -7
- data/lib/nokogiri/css/parser.rb +3 -3
- data/lib/nokogiri/css/parser.y +2 -2
- data/lib/nokogiri/css/xpath_visitor.rb +70 -42
- data/lib/nokogiri/extension.rb +26 -0
- data/lib/nokogiri/html/document.rb +12 -26
- data/lib/nokogiri/html/document_fragment.rb +15 -15
- data/lib/nokogiri/nokogiri.jar +0 -0
- data/lib/nokogiri/version.rb +2 -149
- data/lib/nokogiri/version/constant.rb +5 -0
- data/lib/nokogiri/version/info.rb +205 -0
- data/lib/nokogiri/xml/document.rb +91 -35
- data/lib/nokogiri/xml/document_fragment.rb +4 -6
- data/lib/nokogiri/xml/node.rb +89 -69
- data/lib/nokogiri/xml/parse_options.rb +6 -0
- data/lib/nokogiri/xml/reader.rb +2 -9
- data/lib/nokogiri/xml/relax_ng.rb +6 -2
- data/lib/nokogiri/xml/schema.rb +12 -4
- data/lib/nokogiri/xml/searchable.rb +3 -1
- data/lib/nokogiri/xml/xpath.rb +1 -3
- data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
- metadata +86 -177
- data/ext/nokogiri/html_document.h +0 -10
- data/ext/nokogiri/html_element_description.h +0 -10
- data/ext/nokogiri/html_entity_lookup.h +0 -8
- data/ext/nokogiri/html_sax_parser_context.h +0 -11
- data/ext/nokogiri/html_sax_push_parser.h +0 -9
- data/ext/nokogiri/nokogiri.h +0 -134
- data/ext/nokogiri/xml_attr.h +0 -9
- data/ext/nokogiri/xml_attribute_decl.h +0 -9
- data/ext/nokogiri/xml_cdata.h +0 -9
- data/ext/nokogiri/xml_comment.h +0 -9
- data/ext/nokogiri/xml_document.h +0 -23
- data/ext/nokogiri/xml_document_fragment.h +0 -10
- data/ext/nokogiri/xml_dtd.h +0 -10
- data/ext/nokogiri/xml_element_content.h +0 -10
- data/ext/nokogiri/xml_element_decl.h +0 -9
- data/ext/nokogiri/xml_encoding_handler.h +0 -8
- data/ext/nokogiri/xml_entity_decl.h +0 -10
- data/ext/nokogiri/xml_entity_reference.h +0 -9
- data/ext/nokogiri/xml_io.c +0 -63
- data/ext/nokogiri/xml_io.h +0 -11
- data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
- data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
- data/ext/nokogiri/xml_namespace.h +0 -14
- data/ext/nokogiri/xml_node.h +0 -13
- data/ext/nokogiri/xml_node_set.h +0 -12
- data/ext/nokogiri/xml_processing_instruction.h +0 -9
- data/ext/nokogiri/xml_reader.h +0 -10
- data/ext/nokogiri/xml_relax_ng.h +0 -9
- data/ext/nokogiri/xml_sax_parser.h +0 -39
- data/ext/nokogiri/xml_sax_parser_context.h +0 -10
- data/ext/nokogiri/xml_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_schema.h +0 -9
- data/ext/nokogiri/xml_syntax_error.h +0 -13
- data/ext/nokogiri/xml_text.h +0 -9
- data/ext/nokogiri/xml_xpath_context.h +0 -10
- data/ext/nokogiri/xslt_stylesheet.h +0 -14
@@ -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
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
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
|
-
|
64
|
-
|
65
|
-
|
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
|
-
|
69
|
-
|
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
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
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
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
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
|
-
|
138
|
+
}
|
89
139
|
}
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
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
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
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
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
CacheKey
|
121
|
-
|
122
|
-
|
123
|
-
|
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
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
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
|
-
|
135
|
-
|
190
|
+
@Override
|
191
|
+
public String
|
192
|
+
toString()
|
193
|
+
{
|
194
|
+
return '[' + prefix + ']' + href;
|
136
195
|
}
|
196
|
+
}
|
137
197
|
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
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
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
}
|
158
|
-
}
|
203
|
+
CacheEntry(XmlNamespace namespace, Node ownerNode)
|
204
|
+
{
|
205
|
+
this.namespace = namespace;
|
206
|
+
this.ownerNode = ownerNode;
|
159
207
|
}
|
160
208
|
|
161
|
-
|
162
|
-
|
163
|
-
|
209
|
+
boolean
|
210
|
+
isOwner(Node node)
|
211
|
+
{
|
212
|
+
return ownerNode.isSameNode(node);
|
164
213
|
}
|
165
214
|
|
166
|
-
|
167
|
-
|
168
|
-
|
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
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
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,77 +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
|
19
|
+
public final class NokogiriNamespaceContext implements NamespaceContext
|
20
|
+
{
|
52
21
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
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";
|
58
28
|
|
59
|
-
|
60
|
-
|
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();
|
61
55
|
}
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
register.put(NOKOGIRI_PREFIX, NOKOGIRI_URI);
|
66
|
-
register.put("xml", "http://www.w3.org/XML/1998/namespace");
|
67
|
-
register.put("xhtml", "http://www.w3.org/1999/xhtml");
|
56
|
+
String uri = this.register.get(prefix);
|
57
|
+
if (uri != null) {
|
58
|
+
return uri;
|
68
59
|
}
|
69
60
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
}
|
74
|
-
String uri = this.register.get(prefix);
|
75
|
-
if (uri != null) {
|
76
|
-
return uri;
|
77
|
-
}
|
78
|
-
|
79
|
-
if (prefix.equals(XMLConstants.XMLNS_ATTRIBUTE)) {
|
80
|
-
uri = this.register.get(XMLConstants.XMLNS_ATTRIBUTE);
|
81
|
-
return (uri == null) ? XMLConstants.XMLNS_ATTRIBUTE_NS_URI : uri;
|
82
|
-
}
|
83
|
-
|
84
|
-
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;
|
85
64
|
}
|
86
65
|
|
87
|
-
|
88
|
-
|
89
|
-
throw new IllegalArgumentException("uri is null");
|
90
|
-
}
|
91
|
-
Set<Entry<String, String>> entries = register.entrySet();
|
92
|
-
for (Entry<String, String> entry : entries) {
|
93
|
-
if (uri.equals(entry.getValue())) {
|
94
|
-
return entry.getKey();
|
95
|
-
}
|
96
|
-
}
|
97
|
-
return null;
|
98
|
-
}
|
66
|
+
return XMLConstants.NULL_NS_URI;
|
67
|
+
}
|
99
68
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
list.add(entry.getKey());
|
106
|
-
}
|
107
|
-
}
|
108
|
-
return list.iterator();
|
69
|
+
public String
|
70
|
+
getPrefix(String uri)
|
71
|
+
{
|
72
|
+
if (uri == null) {
|
73
|
+
throw new IllegalArgumentException("uri is null");
|
109
74
|
}
|
110
|
-
|
111
|
-
|
112
|
-
|
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
|
+
}
|
113
80
|
}
|
81
|
+
return null;
|
82
|
+
}
|
114
83
|
|
115
|
-
|
116
|
-
|
117
|
-
|
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
|
+
}
|
118
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
|
+
}
|
119
109
|
|
120
110
|
}
|