org.vfny.geoserver.global.xml.WriterHelper Maven / Gradle / Ivy
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
* This code is licensed under the GPL 2.0 license, availible at the root
* application directory.
*/
package org.vfny.geoserver.global.xml;
import org.vfny.geoserver.global.ConfigurationException;
import java.io.IOException;
import java.io.Writer;
import java.util.Collections;
import java.util.Iterator;
import java.util.Map;
import java.util.logging.Logger;
/**
* WriterUtils purpose.
*
*
* Used to provide assitance writing xml to a Writer.
*
*
*
*
* @author dzwiers, Refractions Research, Inc.
* @version $Id: WriterHelper.java 8482 2008-02-29 04:59:42Z arneke $
*/
public class WriterHelper {
/** Used internally to create log information to detect errors. */
private static final Logger LOGGER = org.geotools.util.logging.Logging.getLogger("org.vfny.geoserver.global");
/** The output writer. */
protected Writer writer;
protected int indent;
protected StringBuffer indentBuffer = new StringBuffer();
/**
* WriterUtils constructor.
*
*
* Should never be called.
*
*/
protected WriterHelper() {
}
/**
* WriterUtils constructor.
*
*
* Stores the specified writer to use for output.
*
*
* @param writer the writer which will be used for outputing the xml.
*/
public WriterHelper(Writer writer) {
this.writer = writer;
}
/**
* writeln purpose.
*
*
* Writes the String specified to the stored output writer.
*
*
* @param s The String to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void writeln(String s) throws ConfigurationException {
try {
writer.write(indentBuffer.subSequence(0, indent) + s + "\n");
writer.flush();
} catch (IOException e) {
throw new ConfigurationException("Writeln" + writer, e);
}
}
private void increaseIndent() {
indent += 2;
indentBuffer.append(" ");
}
private void decreaseIndent() {
if (indent > 0) {
indent -= 2;
indentBuffer.setLength(indentBuffer.length() - 2);
}
}
/**
* openTag purpose.
*
*
* Writes an open xml tag with the name specified to the stored output
* writer.
*
*
* @param tagName The tag name to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void openTag(String tagName) throws ConfigurationException {
openTag(tagName, Collections.EMPTY_MAP);
}
/**
* openTag purpose.
*
*
* Writes an open xml tag with the name and attributes specified to the
* stored output writer.
*
*
* @param tagName The tag name to write.
* @param attributes The tag attributes to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void openTag(String tagName, Map attributes)
throws ConfigurationException {
StringBuffer sb = new StringBuffer();
sb.append("<" + tagName + " ");
Iterator i = attributes.keySet().iterator();
while (i.hasNext()) {
String s = (String) i.next();
if (attributes.get(s) != null) {
sb.append(s + " = " + "\"" + escape((attributes.get(s)).toString()) + "\" ");
}
}
sb.append(">");
writeln(sb.toString());
increaseIndent();
}
/**
* closeTag purpose.
*
*
* Writes an close xml tag with the name specified to the stored output
* writer.
*
*
* @param tagName The tag name to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void closeTag(String tagName) throws ConfigurationException {
decreaseIndent();
writeln("" + tagName + ">");
}
/**
* valueTag purpose.
*
*
* Writes an xml tag with the name and value specified to the stored output
* writer.
*
*
* @param tagName The tag name to write.
* @param value The text data to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void valueTag(String tagName, String value)
throws ConfigurationException {
writeln("<" + tagName + " value = \"" + escape(value) + "\" />");
}
/**
* attrTag purpose.
*
*
* Writes an xml tag with the name and attributes specified to the stored
* output writer.
*
*
* @param tagName The tag name to write.
* @param attributes The tag attributes to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void attrTag(String tagName, Map attributes)
throws ConfigurationException {
StringBuffer sb = new StringBuffer();
sb.append("<" + tagName + " ");
Iterator i = attributes.keySet().iterator();
while (i.hasNext()) {
String s = (String) i.next();
if (attributes.get(s) != null) {
sb.append(s + " = " + "\"" + escape((attributes.get(s)).toString()) + "\" ");
}
}
sb.append("/>");
writeln(sb.toString());
}
/**
* textTag purpose.
*
*
* Writes a text xml tag with the name and text specified to the stored
* output writer.
*
*
* @param tagName The tag name to write.
* @param data The text data to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void textTag(String tagName, String data) throws ConfigurationException {
textTag(tagName, Collections.EMPTY_MAP, data);
}
/**
* textTag purpose.
*
*
* Writes an xml tag with the name, text and attributes specified to the
* stored output writer.
*
*
* @param tagName The tag name to write.
* @param attributes The tag attributes to write.
* @param data The tag text to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void textTag(String tagName, Map attributes, String data)
throws ConfigurationException {
StringBuffer sb = new StringBuffer();
sb.append("<" + tagName + ((attributes.size() > 0) ? " " : ""));
Iterator i = attributes.keySet().iterator();
while (i.hasNext()) {
String s = (String) i.next();
if (attributes.get(s) != null) {
sb.append(s + " = " + "\"" + escape((attributes.get(s)).toString()) + "\" ");
}
}
String escapedData = "";
if(data != null)
escapedData = escape(data);
sb.append(">" + escapedData + "" + tagName + ">");
writeln(sb.toString());
}
/**
* comment purpose.
*
*
* Writes an xml comment with the text specified to the stored output
* writer.
*
*
* @param comment The comment text to write.
*
* @throws ConfigurationException When an IO exception occurs.
*/
public void comment(String comment) throws ConfigurationException {
writeln("");
}
/**
* Escapes the provided text with XML entities,
* see (http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Character_entities_in_XML)
* @param text
* @return
*/
private String escape(String text) {
String s = new String(text);
// All redundant carriage returns should already have been stripped.
s = s.replaceAll("\r\n", "\n");
if(s.matches("(.*)[\"&'<>]*(.*)(\\n)*")) {
s = s.replaceAll("\"", """);
s = s.replaceAll("&", "&");
s = s.replaceAll("'", "'");
s = s.replaceAll("<", "<");
s = s.replaceAll(">", ">");
}
return s;
}
}