1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
/*
* Copyright (C) 2001-2013 Michael Fuchs
*
* This file is part of herold.
*
* herold 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 3 of the License, or
* (at your option) any later version.
*
* herold 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 Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with herold. If not, see <http://www.gnu.org/licenses/>.
*/
package org.dbdoclet.trafo;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.io.Writer;
import java.util.List;
import org.antlr.v4.runtime.ANTLRFileStream;
import org.antlr.v4.runtime.ANTLRInputStream;
import org.antlr.v4.runtime.CommonTokenStream;
import org.antlr.v4.runtime.RecognitionException;
import org.antlr.v4.runtime.tree.ParseTree;
import org.antlr.v4.runtime.tree.ParseTreeWalker;
import org.dbdoclet.trafo.param.Param;
import org.dbdoclet.trafo.script.AttributeRule;
import org.dbdoclet.trafo.script.Namespace;
import org.dbdoclet.trafo.script.NodeRule;
import org.dbdoclet.trafo.script.Script;
import org.dbdoclet.trafo.script.Section;
import org.dbdoclet.trafo.script.parser.TrafoScriptLexer;
import org.dbdoclet.trafo.script.parser.TrafoScriptListener;
import org.dbdoclet.trafo.script.parser.TrafoScriptListenerImpl;
import org.dbdoclet.trafo.script.parser.TrafoScriptParser;
import org.dbdoclet.trafo.script.parser.TrafoScriptParserErrorListener;
public class TrafoScriptManager {
/**
* Parsen einer Skript-Datei.
*
* @param scriptFile
* @return Script
* @throws TrafoException
*/
public Script parseScript(File scriptFile) throws TrafoException {
Script script = new Script();
parseScript(script, scriptFile, "");
return script;
}
public void parseScript(Script script, File scriptFile)
throws TrafoException {
parseScript(script, scriptFile, "");
}
public void parseScript(Script script, File scriptFile, String namespace)
throws TrafoException {
try {
TrafoScriptLexer lex = new TrafoScriptLexer(new ANTLRFileStream(
scriptFile.getAbsolutePath(), "UTF8"));
parseScript(script, lex, namespace);
} catch (Exception oops) {
throw new TrafoException(oops);
}
}
public void parseScript(Script script, InputStream instr, String namespace)
throws TrafoException {
try {
TrafoScriptLexer lex = new TrafoScriptLexer(new ANTLRInputStream(
instr));
parseScript(script, lex, namespace);
} catch (Exception oops) {
throw new TrafoException(oops);
}
}
/**
* Parsen eines Skript-Puffers.
*
* @param scriptBuffer
* @return Script
* @throws IOException
* @throws RecognitionException
* @throws TrafoException
*/
public Script parseScript(String scriptBuffer) throws IOException,
RecognitionException, TrafoException {
TrafoScriptLexer lex = new TrafoScriptLexer(new ANTLRInputStream(scriptBuffer));
Script script = new Script();
parseScript(script, lex, "");
return script;
}
private Script parseScript(Script script, TrafoScriptLexer lex,
String namespace) throws RecognitionException, TrafoException {
CommonTokenStream tokens = new CommonTokenStream(lex);
TrafoScriptParser parser = new TrafoScriptParser(tokens);
parser.removeErrorListeners();
TrafoScriptParserErrorListener errorListener = new TrafoScriptParserErrorListener();
parser.addErrorListener(errorListener);
ParseTree parserTree = parser.parse();
List<String> errors = errorListener.getErrors();
if (errors != null && errors.size() > 0) {
throw new TrafoException(errors.get(0));
}
ParseTreeWalker walker = new ParseTreeWalker();
TrafoScriptListener listener = new TrafoScriptListenerImpl(script, namespace);
walker.walk(listener, parserTree);
return script;
}
public void parseScript(Script script, String scriptBuffer)
throws TrafoException {
try {
TrafoScriptLexer lex = new TrafoScriptLexer(new ANTLRInputStream(
scriptBuffer));
parseScript(script, lex, "");
} catch (Exception oops) {
throw new TrafoException(oops);
}
}
public void writeScript(Script script, File file) throws IOException {
writeScript(Script.DEFAULT_NAMESPACE, script, file);
}
public void writeScript(String namespace, Script script, File file)
throws IOException {
writeScript(namespace, script, new FileWriter(file));
}
public void writeScript(Script script, Writer writer) throws IOException {
writeScript(Script.DEFAULT_NAMESPACE, script, writer);
}
public void writeScript(String namespaceName, Script script, Writer writer)
throws IOException {
PrintWriter printWriter = null;
try {
printWriter = new PrintWriter(writer);
String transformationName = "trafo";
Param<?> sysparam = script.getSystemParameter(namespaceName,
Script.SYSPARAM_TRANSFORMATION_NAME);
if (sysparam != null) {
transformationName = (String) sysparam.getValue();
}
printWriter.println(String.format("transformation %s;",
transformationName));
Namespace namespace = script.getNamespace(namespaceName);
if (namespace == null) {
return;
}
for (Section section: namespace.getSections()) {
if (section.getName().startsWith("SYS ")) {
continue;
}
printWriter.println(String.format("%nsection %s {",
section.getName()));
for (Param<?> param : section.getParameters()) {
printWriter.println(String.format("\t%s;",
param.toString()));
}
printWriter.println("}");
}
for (NodeRule nodeRule : namespace.getNodeRules()) {
printWriter.println(String.format("%nnode %s {",
nodeRule.getName()));
for (Param<?> param : nodeRule.getParameters()) {
printWriter.println(String.format("\t%s;",
param.toString()));
}
printWriter.println("}");
}
for (AttributeRule attributeRule : namespace.getAttributeRules()) {
printWriter.println(String.format("%nattribute %s {",
attributeRule.getName()));
for (Param<?> param : attributeRule.getParameters()) {
printWriter.println(String.format("\t%s;",
param.toString()));
}
printWriter.println("}");
}
} finally {
printWriter.close();
}
}
public void mergeNamespaces(Script script) {
script.mergeNamespaces();
}
}
|