blob: 2db0b0cda113f0602ff439e200bf295116153b5a [file] [log] [blame]
package sample.lib;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.egf.model.fcore.Activity;
import org.eclipse.egf.model.fcore.FactoryComponent;
import org.eclipse.egf.model.fprod.ProductionPlan;
import org.eclipse.egf.model.pattern.PatternContext;
import org.eclipse.egf.pattern.execution.InternalPatternContext;
import org.eclipse.egf.pattern.query.IQuery;
import org.eclipse.egf.portfolio.genchain.generationChain.GenerationElement;
import org.eclipse.egf.portfolio.genchain.tools.FcoreBuilderConstants;
import org.eclipse.egf.portfolio.genchain.tools.utils.ActivityInvocationHelper;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.ResourceSet;
public class SampleElementPattern {
public SampleElementPattern() {
// Here is the constructor
// add initialisation of the pattern variables (declaration has been
// already done).
}
public void generate(Object argument) throws Exception {
InternalPatternContext ctx = (InternalPatternContext) argument;
IQuery.ParameterDescription paramDesc = null;
Map<String, String> queryCtx = null;
List<Object> parameterList = null;
// this pattern can only be called by another (i.e. it's not an entry
// point in execution)
for (Object parameterParameter : parameterList) {
this.parameter = (org.eclipse.egf.portfolio.genchain.extension.SampleExtension.SampleElement) parameterParameter;
if (preCondition())
orchestration((PatternContext) argument);
}
if (ctx.useReporter()) {
ctx.getReporter().executionFinished(ctx.getExecutionBuffer().toString(), ctx);
ctx.clearBuffer();
}
}
public String orchestration(PatternContext ctx) throws Exception {
InternalPatternContext ictx = (InternalPatternContext) ctx;
int executionIndex = ictx.getExecutionBuffer().length();
method_body(ictx.getBuffer(), ictx);
String loop = ictx.getBuffer().toString();
if (ictx.useReporter()) {
ictx.getExecutionBuffer().append(ictx.getBuffer().substring(ictx.getExecutionCurrentIndex()));
ictx.setExecutionCurrentIndex(0);
Map<String, Object> parameterValues = new HashMap<String, Object>();
parameterValues.put("parameter", this.parameter);
String outputWithCallBack = ictx.getExecutionBuffer().substring(executionIndex);
ictx.getReporter().loopFinished(loop, outputWithCallBack, ictx, parameterValues);
ictx.clearBuffer();
}
return loop;
}
protected void method_body(final StringBuffer out, final PatternContext ctx) throws Exception {
Map<GenerationElement, FactoryComponent> fcs = (Map<GenerationElement, FactoryComponent>) ctx.getValue(FcoreBuilderConstants.CURRENT_FCORE);
FactoryComponent fc = fcs.get((GenerationElement) (parameter.eContainer()));
ResourceSet resourceSet = fc.eResource().getResourceSet();
ProductionPlan pp = (ProductionPlan) fc.getOrchestration();
URI uri = URI.createURI("platform:/plugin/org.eclipse.egf.portfolio.genchain.extension/egf/sampleExtension.fcore#_ZPAkkaYjEd-c68Bv_MO43Q", false);
ActivityInvocationHelper.addInvocation(pp, (Activity) resourceSet.getEObject(uri, true));
}
public boolean preCondition() throws Exception {
return true;
}
protected org.eclipse.egf.portfolio.genchain.extension.SampleExtension.SampleElement parameter;
public void set_parameter(org.eclipse.egf.portfolio.genchain.extension.SampleExtension.SampleElement parameter) {
this.parameter = parameter;
}
public Map<String, Object> getParameters() {
Map<String, Object> parameters = new HashMap<String, Object>();
parameters.put("parameter", this.parameter);
return parameters;
}
}