/************************************************************************ * * ConfigBase.java * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Copyright: 2002-2012 by Henrik Just * * All Rights Reserved. * * Version 1.4 (2012-03-19) * */ 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 org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.Element; import org.w3c.dom.DOMImplementation; import writer2latex.api.ComplexOption; import writer2latex.xmerge.DOMDocument; 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!="") { 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 (Throwable t) { t.printStackTrace(); } Element rootElement = dom.getDocumentElement(); for (int i=0; i