/*
* Tiled Map Editor, (c) 2004-2006
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* Adam Turk <aturk@biggeruniverse.com>
* Bjorn Lindeijer <bjorn@lindeijer.nl>
*/
package tiled.io.xml;
import java.io.IOException;
import java.io.Writer;
import java.util.Stack;
/**
* A simple helper class to write an XML file, based on
* http://www.xmlsoft.org/html/libxml-xmlwriter.html
*
* @version $Id$
*/
public class XMLWriter
{
private boolean bIndent = true;
private String indentString = " ";
private String newLine = "\n";
private final Writer w;
private final Stack<String> openElements;
private boolean bStartTagOpen;
private boolean bDocumentOpen;
public XMLWriter(Writer writer) {
openElements = new Stack<String>();
w = writer;
}
public void setIndent(boolean bIndent) {
this.bIndent = bIndent;
newLine = bIndent ? "\n" : "";
}
public void setIndentString(String indentString) {
this.indentString = indentString;
}
public void startDocument() throws IOException {
startDocument("1.0");
}
public void startDocument(String version) throws IOException {
w.write("<?xml version=\"" + version + "\" encoding=\"UTF-8\"?>"
+ newLine);
bDocumentOpen = true;
}
public void writeDocType(String name, String pubId, String sysId)
throws IOException, XMLWriterException {
if (!bDocumentOpen) {
throw new XMLWriterException(
"Can't write DocType, no open document.");
} else if (!openElements.isEmpty()) {
throw new XMLWriterException(
"Can't write DocType, open elements exist.");
}
w.write("<!DOCTYPE " + name + " ");
if (pubId != null) {
w.write("PUBLIC \"" + pubId + "\"");
if (sysId != null) {
w.write(" \"" + sysId + "\"");
}
} else if (sysId != null) {
w.write("SYSTEM \"" + sysId + "\"");
}
w.write(">" + newLine);
}
public void startElement(String name)
throws IOException, XMLWriterException {
if (!bDocumentOpen) {
throw new XMLWriterException(
"Can't start new element, no open document.");
}
if (bStartTagOpen) {
w.write(">" + newLine);
}
writeIndent();
w.write("<" + name);
openElements.push(name);
bStartTagOpen = true;
}
public void endDocument() throws IOException {
// End all open elements.
while (!openElements.isEmpty()) {
endElement();
}
w.flush(); //writers do not always flush automatically...
}
public void endElement() throws IOException {
String name = openElements.pop();
// If start tag still open, end with />, else with </name>.
if (bStartTagOpen) {
w.write("/>" + newLine);
bStartTagOpen = false;
} else {
writeIndent();
w.write("</" + name + ">" + newLine);
}
// Set document closed when last element is closed
if (openElements.isEmpty()) {
bDocumentOpen = false;
}
}
public void writeAttribute(String name, String content)
throws IOException, XMLWriterException {
if (bStartTagOpen) {
String escapedContent = (content != null) ?
content.replaceAll("\"", """) : "";
w.write(" " + name + "=\"" + escapedContent + "\"");
} else {
throw new XMLWriterException(
"Can't write attribute without open start tag.");
}
}
public void writeAttribute(String name, int content)
throws IOException, XMLWriterException {
writeAttribute(name, String.valueOf(content));
}
public void writeAttribute(String name, float content)
throws IOException, XMLWriterException {
writeAttribute(name, String.valueOf(content));
}
public void writeCDATA(String content) throws IOException {
if (bStartTagOpen) {
w.write(">" + newLine);
bStartTagOpen = false;
}
writeIndent();
w.write(content + newLine);
}
public void writeComment(String content) throws IOException {
if (bStartTagOpen) {
w.write(">" + newLine);
bStartTagOpen = false;
}
writeIndent();
w.write("<!-- " + content + " -->" + newLine);
}
public void writeElement(String name, String content)
throws IOException, XMLWriterException {
startElement(name);
writeCDATA(content);
endElement();
}
private void writeIndent() throws IOException {
if (bIndent) {
for (int i = 0; i < openElements.size(); i++) {
w.write(indentString);
}
}
}
}