blob: 870bfe2267b06a19e0693930412955cc02ef2826 [file] [log] [blame]
package org.eclipse.egf.emf.pattern.base;
import org.eclipse.egf.common.helper.*;
import java.util.*;
import org.eclipse.emf.ecore.*;
import org.eclipse.egf.model.pattern.*;
import org.eclipse.egf.pattern.execution.*;
import org.eclipse.egf.pattern.query.*;
public class GenAbstract {
protected static String nl;
public static synchronized GenAbstract create(String lineSeparator) {
nl = lineSeparator;
GenAbstract result = new GenAbstract();
nl = null;
return result;
}
public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
protected final String TEXT_1 = "";
protected final String TEXT_2 = NL;
public GenAbstract() {
//Here is the constructor
StringBuffer stringBuffer = new StringBuffer();
// add initialisation of the pattern variables (declaration has been already done).
}
public String generate(Object argument) throws Exception {
final StringBuffer stringBuffer = new StringBuffer();
InternalPatternContext ctx = (InternalPatternContext) argument;
Map<String, String> queryCtx = null;
IQuery.ParameterDescription paramDesc = null;
if (preCondition())
orchestration(ctx);
if (ctx.useReporter()) {
ctx.getReporter().executionFinished(ctx.getExecutionBuffer().toString(), ctx);
ctx.clearBuffer();
}
stringBuffer.append(TEXT_1);
stringBuffer.append(TEXT_2);
return stringBuffer.toString();
}
public String orchestration(PatternContext ctx) throws Exception {
InternalPatternContext ictx = (InternalPatternContext) ctx;
int executionIndex = ictx.getExecutionBuffer().length();
method_setGenModel(ictx.getBuffer(), ictx);
method_putGenModelInContext(ictx.getBuffer(), ictx);
method_setChildVariables(ictx.getBuffer(), ictx);
method_setReporterVariables(ictx.getBuffer(), ictx);
method_putReporterVariablesInContext(ictx.getBuffer(), ictx);
method_putContentTypeInContext(ictx.getBuffer(), ictx);
method_setArgument(ictx.getBuffer(), ictx);
method_ensureProjectExists(ictx.getBuffer(), ictx);
String loop = ictx.getBuffer().toString();
if (ictx.useReporter()) {
ictx.getExecutionBuffer().append(ictx.getBuffer().substring(ictx.getExecutionCurrentIndex()));
ictx.setExecutionCurrentIndex(0);
ictx.clearBuffer();
}
return loop;
}
protected org.eclipse.emf.codegen.ecore.genmodel.GenModel genModel = null;
public void set_genModel(org.eclipse.emf.codegen.ecore.genmodel.GenModel object) {
this.genModel = object;
}
protected java.lang.Object argument = null;
public void set_argument(java.lang.Object object) {
this.argument = object;
}
public Map<String, Object> getParameters() {
final Map<String, Object> parameters = new HashMap<String, Object>();
return parameters;
}
protected void method_setGenModel(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_putGenModelInContext(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
ctx.setValue("genModel", genModel);
}
protected void method_setChildVariables(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_setReporterVariables(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_putReporterVariablesInContext(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_putContentTypeInContext(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
ctx.setValue("contentType", ContentType.Undefined);
}
protected void method_setArgument(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_ensureProjectExists(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_preGenerate(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_doGenerate(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
protected void method_postGenerate(final StringBuffer stringBuffer, final PatternContext ctx) throws Exception {
}
public boolean preCondition() throws Exception {
return true;
}
}