All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.lightlink.excel.CopyingTemplateHandler Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package io.lightlink.excel;

/*
 * #%L
 * LightLink Core
 * %%
 * Copyright (C) 2015 - 2016 Vitaliy Shevchuk
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program 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 Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */


import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

import java.io.IOException;
import java.io.Writer;
import java.util.Map;

public class CopyingTemplateHandler extends DefaultHandler {
    protected Writer out;
    StringBuffer textBuffer = new StringBuffer();

    public CopyingTemplateHandler(Writer out) {
        this.out = out;
    }

    public void startDocument() throws SAXException {
        emit("");
    }

    public void endDocument() throws SAXException {

        try {
            out.flush();
        } catch (IOException e) {
            throw new SAXException("I/O error", e);
        }
    }

    public void characters(char[] buf, int offset, int len)
            throws SAXException {
        String s = new String(buf, offset, len);

        if (textBuffer == null) {
            textBuffer = new StringBuffer(s);
        } else {
            textBuffer.append(s);
        }
    }

    protected void emit(String s) {
        try {
            out.write(s);
            out.flush();
        } catch (IOException e) {
            throw new RuntimeException(e.toString(), e);
        }
    }

    public void startElement(String namespaceURI, String sName, // simple name
                             String qName, // qualified name
                             Attributes attrs) throws SAXException {
        echoText();

        String eName = sName; // element name

        if ("".equals(eName)) {
            eName = qName; // not namespaceAware
        }

        printElementStart(eName, attrs);

    }

    public void endElement(String namespaceURI, String sName, // simple name
                           String qName // qualified name
    ) throws SAXException {

        String eName = sName; // element name

        if ("".equals(eName)) {
            eName = qName; // not namespaceAware
        }


        echoText();
        emit("\n");


        textBuffer.setLength(0);

    }

    protected void printElementStart(String eName, Attributes attrs) throws SAXException {
        emit("\n<" + eName);

        if (attrs != null) {
            for (int i = 0; i < attrs.getLength(); i++) {
                String aName = attrs.getLocalName(i); // Attr name

                if ("".equals(aName)) {
                    aName = attrs.getQName(i);
                }

                emit(" " + aName + "=\"" + attrs.getValue(i) + "\"");
            }
        }

        emit(">");
    }

    protected void printEmptyElement(String eName, Map attrs) {
        printElementNameAndAttributes(eName, attrs);
        emit("/>");

    }

    protected void printElementStart(String eName, Map attrs) {
        printElementNameAndAttributes(eName, attrs);
        emit(">");
    }

    protected void printElementNameAndAttributes(String eName, Map attrs) {
        emit("\n<" + eName);
        for (Map.Entry entry : attrs.entrySet()) {
            String key = entry.getKey();
            Object value = entry.getValue();
            if (!key.startsWith("!"))
                emit(" " + key + "=\"" + value + "\"");
        }
    }

    protected void echoText() throws SAXException {
        emit(textBuffer.toString());
        textBuffer.setLength(0);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy