/******************************************************************************* * This file is part of logisim-evolution. * * logisim-evolution 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. * * logisim-evolution 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 logisim-evolution. If not, see <http://www.gnu.org/licenses/>. * * Original code by Carl Burch (http://www.cburch.com), 2011. * Subsequent modifications by : * + Haute École Spécialisée Bernoise * http://www.bfh.ch * + Haute École du paysage, d'ingénierie et d'architecture de Genève * http://hepia.hesge.ch/ * + Haute École d'Ingénierie et de Gestion du Canton de Vaud * http://www.heig-vd.ch/ * The project is currently maintained by : * + REDS Institute - HEIG-VD * Yverdon-les-Bains, Switzerland * http://reds.heig-vd.ch *******************************************************************************/ /** * Simple XML parser, taken from * http://argonrain.wordpress.com/about/xml-java/ * * Example usage: * --[ config.xml ]-- * <config> * <title>test</title> * <version * major="1" * minor="2"/> * <roles> * <role name="admin"/> * <role name="user"/> * </roles> * <users> * <user name="joe" password="pass" role="admin"/> * <user name="harry" password="secret" role="user" email="harry@me.com"/> * </users> * <test/> * </config> * * --[ PARSER ]-- * ArgonXML config = new ArgonXML("config.xml","config"); * System.out.println("title: "+config.child("title").content()); * ArgonXML version = config.child("version"); * System.out.println("version: "+version.integer("major")+"."+version.integer("minor")); * for(ArgonXML role:config.child("roles").children("role")) * System.out.println("role: name: "+role.string("name")); * for(ArgonXML user:config.child("users").children("user")) { * String email = user.optString("email"); * System.out.println( * "user: name: "+user.string("name")+ * ", password: "+user.string("password")+ * ", role: "+user.string("role")+ * ", email: "+(email==null ? "-" : email)); * } * System.out.println("test: "+config.option("test")); * */ package com.cburch.logisim.util; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; 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.xml.sax.SAXException; public class ArgonXML { private static FileInputStream fileInputStream(String filename) { try { return new FileInputStream(filename); } catch (IOException exception) { throw new RuntimeException(exception); } } private static Element rootElement(InputStream inputStream, String rootName) { try { DocumentBuilderFactory builderFactory = DocumentBuilderFactory .newInstance(); DocumentBuilder builder = builderFactory.newDocumentBuilder(); Document document = builder.parse(inputStream); Element rootElement = document.getDocumentElement(); if (!rootElement.getNodeName().equals(rootName)) throw new RuntimeException("Could not find root node: " + rootName); return rootElement; } catch (IOException exception) { throw new RuntimeException(exception); } catch (ParserConfigurationException exception) { throw new RuntimeException(exception); } catch (SAXException exception) { throw new RuntimeException(exception); } finally { if (inputStream != null) { try { inputStream.close(); } catch (Exception exception) { throw new RuntimeException(exception); } } } } private String name; private String content; private Map<String, String> nameAttributes = new HashMap<String, String>(); private Map<String, ArrayList<ArgonXML>> nameChildren = new HashMap<String, ArrayList<ArgonXML>>(); private ArgonXML(Element element) { this.name = element.getNodeName(); this.content = element.getTextContent(); NamedNodeMap namedNodeMap = element.getAttributes(); int n = namedNodeMap.getLength(); for (int i = 0; i < n; i++) { Node node = namedNodeMap.item(i); String name = node.getNodeName(); addAttribute(name, node.getNodeValue()); } NodeList nodes = element.getChildNodes(); n = nodes.getLength(); for (int i = 0; i < n; i++) { Node node = nodes.item(i); int type = node.getNodeType(); if (type == Node.ELEMENT_NODE) { ArgonXML child = new ArgonXML((Element) node); addChild(node.getNodeName(), child); } } } public ArgonXML(InputStream inputStream, String rootName) { this(rootElement(inputStream, rootName)); } public ArgonXML(String rootName) { this.name = rootName; } public ArgonXML(String filename, String rootName) { this(fileInputStream(filename), rootName); } public void addAttribute(String name, String value) { nameAttributes.put(name, value); } public void addChild(ArgonXML xml) { addChild(xml.name(), xml); } private void addChild(String name, ArgonXML child) { ArrayList<ArgonXML> children = nameChildren.get(name); if (children == null) { children = new ArrayList<ArgonXML>(); nameChildren.put(name, children); } children.add(child); } public void addChildren(ArgonXML... xmls) { for (ArgonXML xml : xmls) addChild(xml.name(), xml); } public ArgonXML child(String name) { ArgonXML child = optChild(name); if (child == null) throw new RuntimeException("Could not find child node: " + name); return child; } public ArrayList<ArgonXML> children(String name) { ArrayList<ArgonXML> children = nameChildren.get(name); return children == null ? new ArrayList<ArgonXML>() : children; } public String content() { return content; } public double doubleValue(String name) { return Double.parseDouble(optString(name)); } public int integer(String name) { return Integer.parseInt(string(name)); } public String name() { return name; } public ArgonXML optChild(String name) { ArrayList<ArgonXML> children = children(name); int n = children.size(); if (n > 1) throw new RuntimeException("Could not find individual child node: " + name); return n == 0 ? null : children.get(0); } public Double optDouble(String name) { String string = optString(name); return string == null ? null : doubleValue(name); } public Integer optInteger(String name) { String string = optString(name); return string == null ? null : integer(name); } public boolean option(String name) { return optChild(name) != null; } public String optString(String name) { return nameAttributes.get(name); } public void setContent(String content) { this.content = content; } public String string(String name) { String value = optString(name); if (value == null) { throw new RuntimeException("Could not find attribute: " + name + ", in node: " + this.name); } return value; } }