-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathXmlUtils.java
134 lines (122 loc) · 4.62 KB
/
XmlUtils.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/****************************************************************************
**
** This demo file is part of yFiles for JavaFX 3.6.
**
** Copyright (c) 2000-2023 by yWorks GmbH, Vor dem Kreuzberg 28,
** 72070 Tuebingen, Germany. All rights reserved.
**
** yFiles demo files exhibit yFiles for JavaFX functionalities. Any redistribution
** of demo files in source code or binary form, with or without
** modification, is not permitted.
**
** Owners of a valid software license for a yFiles for JavaFX version that this
** demo is shipped with are allowed to use the demo source code as basis
** for their own yFiles for JavaFX powered applications. Use of such programs is
** governed by the rights and conditions as set out in the yFiles for JavaFX
** license agreement.
**
** THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESS OR IMPLIED
** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
** NO EVENT SHALL yWorks BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
** TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
***************************************************************************/
package builder.graphbuilder;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import java.io.InputStream;
import java.net.URL;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.function.Predicate;
/**
* Provides utility methods for parsing and processing XML data.
*/
class XmlUtils {
private XmlUtils() {
}
/**
* Parses the content of the given resource as an XML document.
*/
static Document parse(URL resource) {
try {
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
try (InputStream is = resource.openStream()) {
Document document = db.parse(is);
return document;
}
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
/**
* Returns the direct child elements with the given name.
*/
static Iterable<Element> getChildrenByTagName(Element parent, String name) {
return new DescendantsIterable(parent, name, true, element -> true);
}
/**
* Returns all descendant elements with the given name.
*/
static Iterable<Element> getDescendantsByTagName(Element parent, String name) {
return new DescendantsIterable(parent, name, false, element -> true);
}
/**
* Returns all descendant elements with the given name.
*/
static Iterable<Element> getDescendantsByTagName(Element parent, String name, Predicate<Element> predicate) {
return new DescendantsIterable(parent, name, false, predicate);
}
/**
* Adapts low-level element traversal idoms to {@link Iterable}.
*/
private static final class DescendantsIterable implements Iterable<Element> {
final Element parent;
final String name;
final boolean childrenOnly;
final Predicate<Element> predicate;
DescendantsIterable(
Element parent, String name, boolean childrenOnly, Predicate<Element> predicate
) {
this.parent = parent;
this.name = name;
this.childrenOnly = childrenOnly;
this.predicate = predicate;
}
@Override
public Iterator<Element> iterator() {
if (childrenOnly) {
ArrayList<Element> children = new ArrayList<>();
for (Node child = parent.getFirstChild(); child != null; child = child.getNextSibling()) {
if (Node.ELEMENT_NODE == child.getNodeType() &&
name.equals(child.getNodeName()) &&
predicate.test((Element) child)) {
children.add((Element) child);
}
}
return children.iterator();
} else {
ArrayList<Element> elements = new ArrayList<>();
NodeList elementsByTagName = parent.getElementsByTagName(name);
for (int i = 0; i < elementsByTagName.getLength(); i++) {
Element element = (Element) elementsByTagName.item(i);
if (predicate.test(element)) {
elements.add(element);
}
}
return elements.iterator();
}
}
}
}