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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
/*
* Copyright (C) 2001-2013 Michael Fuchs
*
* This file is part of herold.
*
* herold is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* herold is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with herold. If not, see <http://www.gnu.org/licenses/>.
*/
package org.dbdoclet.xiphias;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.Text;
public class W3cServices {
public static Element getChildElement(Element parent, String childName) {
if (parent == null) {
throw new IllegalArgumentException("The argument parent may not be null!");
}
if (childName == null) {
throw new IllegalArgumentException("The argument childName may not be null!");
}
Element element = null;
String nodeName = null;
NodeList childNodes = parent.getChildNodes();
for (int i = 0; i < childNodes.getLength(); i++) {
if (childNodes.item(i) instanceof Element) {
element = (Element) childNodes.item(i);
nodeName = element.getNodeName();
if (nodeName != null && nodeName.equals(childName)) {
return element;
}
}
}
return null;
}
public static List<Element> getChildElements(Element parent, String childName) {
if (parent == null) {
throw new IllegalArgumentException("The argument parent may not be null!");
}
if (childName == null) {
throw new IllegalArgumentException("The argument childName may not be null!");
}
Element element = null;
String nodeName = null;
ArrayList<Element> children = new ArrayList<Element>();
NodeList childNodes = parent.getChildNodes();
for (int i = 0; i < childNodes.getLength(); i++) {
if (childNodes.item(i) instanceof Element) {
element = (Element) childNodes.item(i);
nodeName = element.getNodeName();
if (nodeName != null && nodeName.equals(childName)) {
children.add(element);
}
}
}
return children;
}
public static Element[] getElementPath(Element elem) {
if (elem == null) {
throw new IllegalArgumentException("The argument elem must not be null!");
}
ArrayList<Node> elementList = new ArrayList<Node>();
elementList.add(elem);
Node parent = elem.getParentNode();
while (parent != null) {
if (parent instanceof Element) {
elementList.add(parent);
}
parent = parent.getParentNode();
}
Collections.reverse(elementList);
Element[] path = new Element[elementList.size()];
for (int i = 0; i < elementList.size(); i++) {
elem = (Element) elementList.get(i);
path[i] = elem;
}
return path;
}
public static Element getFirstElement(Element parent) {
if (parent == null) {
throw new IllegalArgumentException("The argument parent may not be null!");
}
NodeList childNodes = parent.getChildNodes();
for (int i = 0; i < childNodes.getLength(); i++) {
if (childNodes.item(i) instanceof Element) {
return (Element) childNodes.item(i);
}
}
return null;
}
public static void setText(Element parent, String text) {
if (parent == null) {
throw new IllegalArgumentException("The argument parent must not be null!");
}
NodeList childNodes = parent.getChildNodes();
if (childNodes != null && childNodes.getLength() > 0) {
Node childNode;
for (int i = 0; i < childNodes.getLength(); i++) {
childNode = childNodes.item(i);
parent.removeChild(childNode);
}
}
Document doc = parent.getOwnerDocument();
if (doc == null) {
throw new NullPointerException("Owner document of element must not be null!");
}
Text textNode = doc.createTextNode(XmlServices.textToXml(text));
parent.appendChild(textNode);
}
public static String getText(Node parent) {
if (parent == null) {
throw new IllegalArgumentException("The argument parent must not be null!");
}
String buffer = "";
NodeList childNodes = parent.getChildNodes();
if (childNodes == null || childNodes.getLength() == 0) {
return buffer;
}
Node childNode;
Text textNode;
for (int i = 0; i < childNodes.getLength(); i++) {
childNode = childNodes.item(i);
if (childNode instanceof Text) {
textNode = (Text) childNode;
buffer += textNode.getNodeValue();
} else if (childNode instanceof Element) {
buffer += W3cServices.getText(childNode);
}
}
return buffer;
}
/**
* Die Methode <code>insertAfter</code> fügt ein neues Element nach dem
* angegebenen Referenzelement ein.
*
* @param node <code>Element</code>
* @param refNode <code>Element</code>
*/
public static void insertElementAfter(Element newNode, Element refNode) {
if (newNode == null) {
throw new IllegalArgumentException("The argument newNode must not be null!");
}
if (refNode == null) {
throw new IllegalArgumentException("The argument refNode must not be null!");
}
Element parentNode = (Element) refNode.getParentNode();
if (parentNode == null) {
throw new IllegalStateException("The parent node of the destination node must not be null!");
}
Element siblingNode = null;
Node node = refNode.getNextSibling();
while (node != null && node instanceof Element == false) {
node = node.getNextSibling();
}
if (node != null && node instanceof Element) {
siblingNode = (Element) node;
}
if (siblingNode != null) {
parentNode.insertBefore(newNode, siblingNode);
} else {
parentNode.appendChild(newNode);
}
}
public static void setElementText(Element elem, String text) {
if (elem == null) {
throw new IllegalArgumentException("The argument elem must not be null!");
}
if (text == null) {
text = "";
}
Document doc = elem.getOwnerDocument();
if (doc == null) {
return;
}
if (elem.hasChildNodes()) {
Node childNode;
NodeList childNodes = elem.getChildNodes();
for (int i = 0; i < childNodes.getLength(); i++) {
childNode = childNodes.item(i);
elem.removeChild(childNode);
}
}
Text textNode = doc.createTextNode(text);
elem.appendChild(textNode);
}
/**
* Die Methode <code>copyNode</code> kopiert den Baum mit dem Wurzelelement
* <code>oNode</code> in den Kontext des Dokumentes <code>doc</code> und
* gibt den Wurzelknoten des neu erzeugten Baumes <code>nNode</code> zurück.
* Diese Methode wird benötigt um Knoten aus einem Dokument in den Baum
* eines anderen Dokumentes zu kopieren.
*
* <p>Wird versucht Knoten eines Dokumentes in ein zweites zu einzuhängen,
* erhält man die Fehlermeldung : <code>WRONG_DOCUMENT_ERR: A node is used
* in a different document than the one that created it.</code></p>
*
* <p>Beispiel:</p>
* <pre>
* Document resourceDoc = XmlServices.parse(file);
* elem = resourceDoc.getDocumentElement();
* parent.appendChild(W3cServices.copyNode(manifestDoc, elem));
* </pre>
*
* @param doc <code>Document</code>
* @param oNode <code>Node</code>
* @return <code>Node</code>
*/
public static Node copyNode(Document doc, Node oNode) {
if (doc == null) {
throw new IllegalArgumentException("The argument doc must not be null!");
}
if (oNode == null) {
throw new IllegalArgumentException("The argument oNode must not be null!");
}
Node nNode = null;
Node nChild;
int nodeType;
switch (oNode.getNodeType()) {
case Node.ELEMENT_NODE:
nNode = doc.createElement(oNode.getNodeName());
NamedNodeMap attrMap = oNode.getAttributes();
Node attrNode;
for (int i = 0; i < attrMap.getLength(); i++) {
attrNode = attrMap.item(i);
((Element) nNode).setAttribute(attrNode.getNodeName(), attrNode.getNodeValue());
}
break;
case Node.TEXT_NODE:
nNode = doc.createTextNode(oNode.getNodeValue());
break;
case Node.ENTITY_NODE:
nNode = doc.createTextNode(oNode.getNodeName());
break;
case Node.ENTITY_REFERENCE_NODE:
nNode = doc.createEntityReference(oNode.getNodeName());
break;
case Node.COMMENT_NODE:
nNode = doc.createComment(oNode.getNodeValue());
break;
case Node.CDATA_SECTION_NODE:
nNode = doc.createCDATASection(oNode.getNodeValue());
break;
case Node.PROCESSING_INSTRUCTION_NODE:
nNode = doc.createProcessingInstruction(oNode.getNodeName(), oNode.getNodeValue());
break;
}
if (nNode == null) {
return null;
}
NodeList childNodes = oNode.getChildNodes();
if (childNodes != null && childNodes.getLength() > 0) {
for (int i = 0; i < childNodes.getLength(); i++) {
nodeType = childNodes.item(i).getNodeType();
if (nodeType != Node.ATTRIBUTE_NODE) {
nChild = copyNode(doc, childNodes.item(i));
if (nChild != null) {
nNode.appendChild(nChild);
}
}
}
}
return nNode;
}
public static String getAttributesAsText(Element elem) {
String buffer = "";
NamedNodeMap attributes = elem.getAttributes();
if (attributes != null) {
for (int i = 0; i < attributes.getLength(); i++) {
Node attr = attributes.item(i);
buffer += " " + attr.getNodeName() + "=\"" + XmlServices.textToXml(attr.getNodeValue()) + "\"";
}
}
return buffer;
}
public static void setAttribute(Node node, String attr, String namespace) {
if (node instanceof Element) {
Element elem = (Element) node;
elem.setAttribute(attr, namespace);
}
}
public static boolean hasNamespace(Element element,
String namespace) {
NamedNodeMap attrMap = element.getAttributes();
for (int i = 0; i < attrMap.getLength(); i++) {
Node item = attrMap.item(i);
if (item.getNodeName() != null && item.getNodeName().startsWith("xmlns")) {
if (namespace.equals(item.getNodeValue())) {
return true;
}
}
}
return false;
}
public static void copyNamespaces(Element documentElement, Element element) {
NamedNodeMap attrMap = documentElement.getAttributes();
for (int i = 0; i < attrMap.getLength(); i++) {
Node item = attrMap.item(i);
if (item.getNodeName() != null && item.getNodeName().startsWith("xmlns")) {
element.setAttribute(item.getNodeName(), item.getNodeValue());
}
}
}
}
|