/************************************************************************ * * ConfigBase.java * * Copyright: 2002-2014 by Henrik Just * * This file is part of Writer2LaTeX. * * Writer2LaTeX 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. * * Writer2LaTeX 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 Writer2LaTeX. If not, see . * * Version 1.4 (2014-08-26) * */ package writer2latex.base; /** Base implementation of writer2latex.api.Config */ import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.io.IOException; import java.io.OutputStream; 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.Node; import org.w3c.dom.Element; import org.w3c.dom.DOMImplementation; import writer2latex.api.ComplexOption; public abstract class ConfigBase implements writer2latex.api.Config { protected abstract int getOptionCount(); protected abstract String getDefaultConfigPath(); protected Option[] options; protected Map optionGroups; public ConfigBase() { options = new Option[getOptionCount()]; optionGroups = new HashMap(); } public void setOption(String sName,String sValue) { if (sName!=null && sValue!=null) { for (int j=0; jRead configuration from a specified input stream

* @param is the input stream to read the configuration from */ public void read(InputStream is) throws IOException { DOMDocument doc = new DOMDocument("config",".xml"); doc.read(is); // may throw an IOException Document dom = doc.getContentDOM(); if (dom==null) { throw new IOException("Failed to parse configuration"); } Node root = dom.getDocumentElement(); Node child = root.getFirstChild(); while (child!=null) { if (child.getNodeType()==Node.ELEMENT_NODE) { Element elm = (Element)child; if (elm.getTagName().equals("option")) { String sName = elm.getAttribute("name"); String sValue = elm.getAttribute("value"); if (sName.length()>0) { setOption(sName,sValue); } } else { readInner(elm); } } child = child.getNextSibling(); } } public void read(File file) throws IOException { read(new FileInputStream(file)); } /** Read configuration information from an xml element. * The subclass must define this to read richer configuration data */ protected abstract void readInner(Element elm); public void write(OutputStream os) throws IOException { DOMDocument doc = new DOMDocument("config",".xml"); Document dom = null; try { DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = builderFactory.newDocumentBuilder(); DOMImplementation domImpl = builder.getDOMImplementation(); dom = domImpl.createDocument("","config",null); } catch (ParserConfigurationException e) { // This will not happen e.printStackTrace(); return; } Element rootElement = dom.getDocumentElement(); for (int i=0; i