Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.rapiddweller.common.collection.TreeBuilder Maven / Gradle / Ivy
Go to download
'rapiddweller Common' is an open source Java library
forked from Databene Commons by Volker Bergmann.
It provides extensions to the Java core library by utility classes, abstract concepts
and concrete implementations.
/*
* Copyright (C) 2004-2015 Volker Bergmann ([email protected] ).
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.rapiddweller.common.collection;
import com.rapiddweller.common.Assert;
import com.rapiddweller.common.CollectionUtil;
import com.rapiddweller.common.NullSafeComparator;
import com.rapiddweller.common.StringUtil;
import com.rapiddweller.common.xml.SimpleXMLWriter;
import com.rapiddweller.common.xml.XMLUtil;
import org.w3c.dom.Element;
import org.xml.sax.SAXException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Collection;
import java.util.Map;
import java.util.Properties;
import java.util.Stack;
/**
* Allows for recursive and absolute tree construction and navigation
* as well for loading from and writing to XML and properties files.
* Created: 17.02.2014 12:05:14
*
* @author Volker Bergmann
* @since 0.5.26
*/
public class TreeBuilder {
// attributes ------------------------------------------------------------------------------------------------------
private final boolean namedRoot;
private String rootName;
private OrderedNameMap rootMap;
private final Stack> currentPath;
// constructor -----------------------------------------------------------------------------------------------------
/**
* Instantiates a new Tree builder.
*
* @param namedRoot the named root
*/
public TreeBuilder(boolean namedRoot) {
this.namedRoot = namedRoot;
this.rootName = null;
this.currentPath = new Stack<>();
}
// properties ------------------------------------------------------------------------------------------------------
/**
* Gets root name.
*
* @return the root name
*/
public String getRootName() {
return rootName;
}
/**
* Gets root node.
*
* @return the root node
*/
public Map getRootNode() {
return rootMap;
}
// operational interface -------------------------------------------------------------------------------------------
/**
* Open group node.
*
* @param nodeName the node name
*/
@SuppressWarnings({"rawtypes", "unchecked"})
public void openGroupNode(String nodeName) {
if (this.rootMap == null) {
this.rootMap = new OrderedNameMap<>();
this.currentPath.push(rootMap);
if (this.namedRoot) {
this.rootName = nodeName;
} else {
OrderedNameMap node = new OrderedNameMap<>();
this.rootMap.put(nodeName, node);
this.currentPath.push(node);
}
} else {
OrderedNameMap parent = this.currentPath.peek();
OrderedNameMap node;
Object formerContent = parent.get(nodeName);
if (formerContent == null) {
parent.put(nodeName, node = new OrderedNameMap<>());
} else if (formerContent instanceof Collection) {
((Collection) formerContent).add(node = new OrderedNameMap<>());
} else {
parent.put(nodeName, CollectionUtil.toList(formerContent, node = new OrderedNameMap<>()));
}
this.currentPath.push(node);
}
}
/**
* Add leaf at current path.
*
* @param nodeName the node name
* @param content the content
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public void addLeafAtCurrentPath(String nodeName, String content) {
OrderedNameMap parent = this.currentPath.peek();
Object formerContent = parent.get(nodeName);
if (formerContent == null) {
parent.put(nodeName, content);
} else if (formerContent instanceof Collection) {
((Collection) formerContent).add(content);
} else {
parent.put(nodeName, CollectionUtil.toList(formerContent, content));
}
}
/**
* Close group node.
*/
public void closeGroupNode() {
this.currentPath.pop();
}
/**
* Add leaf at absolute path.
*
* @param path the path
* @param value the value
*/
@SuppressWarnings("unchecked")
public void addLeafAtAbsolutePath(String path, String value) {
String[] pathComponents = path.split("/");
if (this.rootMap == null) {
this.rootMap = new OrderedNameMap<>();
if (this.namedRoot) {
this.rootName = pathComponents[0];
} else {
OrderedNameMap node = new OrderedNameMap<>();
this.rootMap.put(pathComponents[0], node);
this.currentPath.push(node);
}
}
if (this.namedRoot) {
Assert.equals(rootName, pathComponents[0], "Illegal path: " + path);
}
Map node = rootMap;
for (int i = (namedRoot ? 1 : 0); i < pathComponents.length - 1; i++) {
String subNodeName = pathComponents[i];
Map subNode = (Map) node.get(subNodeName);
if (subNode == null) {
node.put(subNodeName, subNode = new OrderedNameMap<>());
}
node = subNode;
}
node.put(pathComponents[pathComponents.length - 1], value);
}
/**
* Gets node value.
*
* @param path the path
* @return the node value
*/
@SuppressWarnings("unchecked")
public Object getNodeValue(String path) {
String[] pathComponents = path.split("/");
if (namedRoot) {
Assert.equals(rootName, pathComponents[0], "Illegal path: " + path);
}
Map node = rootMap;
for (int i = (namedRoot ? 1 : 0); i < pathComponents.length - 1; i++) {
String subNodeName = pathComponents[i];
Map subNode = (Map) node.get(subNodeName);
if (subNode == null) {
return null;
}
node = subNode;
}
return node.get(pathComponents[pathComponents.length - 1]);
}
/**
* Load from stream tree builder.
*
* @param in the in
* @param sourceFileName the source file name
* @return the tree builder
* @throws IOException the io exception
*/
public static TreeBuilder loadFromStream(InputStream in, String sourceFileName) throws IOException {
if (sourceFileName.toLowerCase().endsWith(".properties")) {
return TreeBuilder.parseProperties(in);
} else if (sourceFileName.toLowerCase().endsWith(".xml")) {
return TreeBuilder.parseXML(in);
} else {
throw new UnsupportedOperationException("Not a supported file format: " + sourceFileName);
}
}
/**
* Parse properties tree builder.
*
* @param in the in
* @return the tree builder
* @throws IOException the io exception
*/
public static TreeBuilder parseProperties(InputStream in) throws IOException {
try (in) {
Properties props = new Properties();
props.load(in);
TreeBuilder builder = new TreeBuilder(false);
for (Map.Entry, ?> entry : props.entrySet()) {
String path = entry.getKey().toString().replace('.', '/');
builder.addLeafAtAbsolutePath(path, entry.getValue().toString());
}
return builder;
}
}
/**
* Parse xml tree builder.
*
* @param in the in
* @return the tree builder
* @throws IOException the io exception
*/
public static TreeBuilder parseXML(InputStream in) throws IOException {
try (in) {
Element root = XMLUtil.parse(in).getDocumentElement();
TreeBuilder builder = new TreeBuilder(true);
parseXMLElement(root, builder);
return builder;
}
}
/**
* Save as xml.
*
* @param out the out
* @param encoding the encoding
* @throws IOException the io exception
*/
public void saveAsXML(OutputStream out, String encoding) throws IOException {
try {
SimpleXMLWriter writer = new SimpleXMLWriter(out, encoding, true);
writer.startDocument();
saveNodeAsXml(rootMap, rootName, writer);
writer.endDocument();
} catch (SAXException e) {
throw new IOException("Error storing tree as XML", e);
}
}
/**
* Save as properties.
*
* @param out the out
* @throws IOException the io exception
*/
public void saveAsProperties(OutputStream out) throws IOException {
Properties properties = new Properties();
saveNodeAsProperty(rootMap, "", properties);
properties.store(out, null);
}
// private helper methods ------------------------------------------------------------------------------------------
private static void parseXMLElement(Element element, TreeBuilder builder) {
Element[] childElements = XMLUtil.getChildElements(element);
String nodeName = element.getNodeName();
if (childElements.length > 0) {
builder.openGroupNode(nodeName);
for (Element childElement : childElements) {
parseXMLElement(childElement, builder);
}
builder.closeGroupNode();
} else {
String text = StringUtil.nullToEmpty(XMLUtil.getText(element));
builder.addLeafAtCurrentPath(nodeName, text);
}
}
@SuppressWarnings("unchecked")
private void saveNodeAsXml(Object node, String nodeName, SimpleXMLWriter writer) throws SAXException {
if (node instanceof Map) {
writer.startElement(nodeName);
for (Map.Entry entry : ((Map) node).entrySet()) {
saveNodeAsXml(entry.getValue(), entry.getKey(), writer);
}
writer.endElement(nodeName);
} else if (node instanceof Collection) {
for (Object child : (Collection>) node) {
saveNodeAsXml(child, nodeName, writer);
}
} else {
writer.startElement(nodeName);
writer.text(String.valueOf(node));
writer.endElement(nodeName);
}
}
@SuppressWarnings("unchecked")
private void saveNodeAsProperty(Object node, String path, Properties props) {
if (node instanceof Map) {
for (Map.Entry entry : ((Map) node).entrySet()) {
saveNodeAsProperty(entry.getValue(), subPath(path, entry.getKey(), '.'), props);
}
} else if (node instanceof Collection) {
for (Object child : (Collection>) node) {
saveNodeAsProperty(child, path, props);
}
} else {
props.put(path, String.valueOf(node));
}
}
private static String subPath(String parentPath, String childName, char separator) {
return (StringUtil.isEmpty(parentPath) ? "" : parentPath + separator) + childName;
}
// java.lang.Object overrides --------------------------------------------------------------------------------------
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((rootMap == null) ? 0 : rootMap.hashCode());
result = prime * result + ((rootName == null) ? 0 : rootName.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
TreeBuilder that = (TreeBuilder) obj;
return (NullSafeComparator.equals(this.rootName, that.rootName) &&
NullSafeComparator.equals(this.rootMap, that.rootMap));
}
@Override
public String toString() {
return "{" + rootName + "=" + rootMap + "}";
}
}