org.databene.formats.script.ScriptedDocumentWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databene-formats Show documentation
Show all versions of databene-formats Show documentation
'Databene Formats' is an open source software library for supporting
data file and other formats like CSV, fixed width files, XLS, Properties and Regex.
It is designed for multithreaded use and high performance.
The newest version!
/*
* Copyright (C) 2011-2015 Volker Bergmann ([email protected]).
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.databene.formats.script;
import org.databene.commons.Context;
import org.databene.commons.DocumentWriter;
import org.databene.commons.context.DefaultContext;
import java.io.Writer;
import java.io.IOException;
import java.util.Map;
import java.util.HashMap;
/**
* A DocumentWriter that uses {@link Script}s for rendering head, body parts and footer.
* Created: 07.06.2007 11:32:09
* @param the type of objects to write
* @author Volker Bergmann
*/
public class ScriptedDocumentWriter implements DocumentWriter {
private Writer out;
private Map vars;
private Script headerScript;
private Script bodyPartScript;
private Script footerScript;
private boolean writeHeader;
public ScriptedDocumentWriter(Writer out, String headerScriptUrl, String bodyPartScriptUrl, String footerScriptUrl)
throws IOException {
this( out,
(headerScriptUrl != null ? ScriptUtil.readFile(headerScriptUrl) : null),
(bodyPartScriptUrl != null ? ScriptUtil.readFile(bodyPartScriptUrl) : null),
(footerScriptUrl != null ? ScriptUtil.readFile(footerScriptUrl) : null)
);
}
public ScriptedDocumentWriter(Writer out, Script headerScript, Script bodyPartScript, Script footerScript) {
this.out = out;
this.headerScript = headerScript;
this.bodyPartScript = bodyPartScript;
this.footerScript = footerScript;
this.vars = new HashMap();
this.writeHeader = true;
}
public Script getHeaderScript() {
return headerScript;
}
public void setHeaderScript(Script headerScript) {
this.headerScript = headerScript;
}
public Script getFooterScript() {
return footerScript;
}
public void setFooterScript(Script footerScript) {
this.footerScript = footerScript;
}
public void setWriteHeader(boolean writeHeader) {
this.writeHeader = writeHeader;
}
// Script interface implementation ---------------------------------------------------------------------------------
@Override
public void setVariable(String name, Object value) {
vars.put(name, value);
}
@Override
public void writeElement(E part) throws IOException {
if (writeHeader) {
writeHeader();
writeHeader = false;
}
if (bodyPartScript != null) {
Context context = new DefaultContext();
context.set("var", vars);
context.set("part", part);
bodyPartScript.execute(context, out);
}
}
@Override
public void close() throws IOException {
writeFooter();
out.close();
}
// helpers ---------------------------------------------------------------------------------------------------------
protected void writeHeader() throws IOException {
if (headerScript != null) {
Context context = new DefaultContext();
context.set("var", vars);
headerScript.execute(context, out);
}
}
protected void writeFooter() throws IOException {
if (footerScript != null) {
Context context = new DefaultContext();
context.set("var", vars);
footerScript.execute(context, out);
}
}
}