Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xtend/src/org/eclipse/xtend/expression/AbstractExpressionsUsingWorkflowComponent.java')
-rw-r--r--plugins/org.eclipse.xtend/src/org/eclipse/xtend/expression/AbstractExpressionsUsingWorkflowComponent.java240
1 files changed, 240 insertions, 0 deletions
diff --git a/plugins/org.eclipse.xtend/src/org/eclipse/xtend/expression/AbstractExpressionsUsingWorkflowComponent.java b/plugins/org.eclipse.xtend/src/org/eclipse/xtend/expression/AbstractExpressionsUsingWorkflowComponent.java
new file mode 100644
index 00000000..6bcb9fe3
--- /dev/null
+++ b/plugins/org.eclipse.xtend/src/org/eclipse/xtend/expression/AbstractExpressionsUsingWorkflowComponent.java
@@ -0,0 +1,240 @@
+/*******************************************************************************
+ * Copyright (c) 2005, 2006 committers of openArchitectureWare and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * committers of openArchitectureWare - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.xtend.expression;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.eclipse.emf.mwe.core.WorkflowContext;
+import org.eclipse.emf.mwe.core.WorkflowInterruptedException;
+import org.eclipse.emf.mwe.core.issues.Issues;
+import org.eclipse.emf.mwe.core.lib.AbstractWorkflowComponent;
+import org.eclipse.emf.mwe.core.monitor.ProgressMonitor;
+import org.eclipse.internal.xtend.expression.ast.SyntaxElement;
+import org.eclipse.internal.xtend.util.Pair;
+import org.eclipse.xtend.typesystem.MetaModel;
+
+public abstract class AbstractExpressionsUsingWorkflowComponent extends
+ AbstractWorkflowComponent {
+ protected final Log log = LogFactory.getLog(getClass());
+
+ protected final List<MetaModel> metaModels = new ArrayList<MetaModel>();
+
+ private List<GlobalVarDef> globalVarDefs = new ArrayList<GlobalVarDef>();
+
+ public void addMetaModel(final MetaModel metaModel) {
+ assert metaModel != null;
+ metaModels.add(metaModel);
+ }
+
+ public static class GlobalVarDef {
+ private String name;
+
+ private String value;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getValue() {
+ return value;
+ }
+
+ public void setValue(String value) {
+ this.value = value;
+ }
+ }
+
+ public void addGlobalVarDef(GlobalVarDef def) {
+ globalVarDefs.add(def);
+ }
+
+ protected Map<String, Variable> getGlobalVars(WorkflowContext ctx) {
+ final Map<String, Variable> result = new HashMap<String, Variable>();
+
+ ExecutionContextImpl ec = new ExecutionContextImpl();
+ for (String slot : ctx.getSlotNames()) {
+ ec = (ExecutionContextImpl) ec.cloneWithVariable(new Variable(slot,
+ ctx.get(slot)));
+ }
+ for (MetaModel mm : metaModels) {
+ ec.registerMetaModel(mm);
+ }
+
+ final ExpressionFacade ef = new ExpressionFacade(ec);
+ for (GlobalVarDef def : globalVarDefs) {
+ final Object value = ef.evaluate(def.getValue());
+ result.put(def.getName(), new Variable(def.getName(), value));
+ }
+
+ return result;
+ }
+
+ protected ExecutionContextImpl getExecutionContext(final WorkflowContext ctx) {
+ final ExecutionContextImpl executionContext = new ExecutionContextImpl(
+ new ResourceManagerDefaultImpl(), null, new TypeSystemImpl(),
+ new HashMap<String, Variable>(), getGlobalVars(ctx), null,
+ null, null, getNullEvaluationHandler(),null);
+ for (MetaModel mm : metaModels) {
+ executionContext.registerMetaModel(mm);
+ }
+ return executionContext;
+ }
+
+ public NullEvaluationHandler getNullEvaluationHandler() {
+ if (exceptionsOnNullEvaluation)
+ return new ExceptionRaisingNullEvaluationHandler();
+ return null;
+ }
+
+ public void checkConfiguration(Issues issues) {
+ if (metaModels.isEmpty()) {
+ issues
+ .addWarning("no metamodels specified (use 'metaModel' property)!");
+ }
+ }
+
+ private List<Debug> debugExpressions = new ArrayList<Debug>();
+
+ public void addDebug(Debug expr) {
+ this.debugExpressions.add(expr);
+ }
+
+ private boolean dumpContext = false;
+
+ public void setDumpContext(boolean dumpContext) {
+ this.dumpContext = dumpContext;
+ }
+
+ public static class Debug {
+ private String expression;
+
+ private boolean dumpContext = false;
+
+ public void setDumpContext(boolean dumpContext) {
+ this.dumpContext = dumpContext;
+ }
+
+ public boolean isDumpContext() {
+ return dumpContext;
+ }
+
+ public void setExpression(String expression) {
+ this.expression = expression;
+ }
+
+ public String getExpression() {
+ return expression;
+ }
+ }
+
+ @Override
+ protected void invokeInternal(WorkflowContext ctx, ProgressMonitor monitor,
+ Issues issues) {
+ try {
+ invokeInternal2(ctx, monitor, issues);
+ } catch (EvaluationException e) {
+ log.error("Error in Component" + (getId()==null?" ":" "+getId()) + " of type "
+ + getClass().getName() + ": \n\t" +
+ "" +toString(e, debugExpressions));
+ throw new WorkflowInterruptedException();
+ }
+ }
+
+ public String toString(EvaluationException ex, List<Debug> debugEntries) {
+ StringBuffer result = new StringBuffer("EvaluationException : "
+ + ex.getMessage() + "\n");
+ int widest = 0;
+ for (Pair<SyntaxElement, ExecutionContext> ele : ex.getXtendStackTrace()) {
+ int temp = EvaluationException.getLocationString(ele.getFirst())
+ .length();
+ if (temp > widest)
+ widest = temp;
+ }
+ String indent = "";
+ for (int l = 0; l < widest + 7; l++)
+ indent += " ";
+
+ for (int i = 0, x = ex.getXtendStackTrace().size(); i < x; i++) {
+ Pair<SyntaxElement, ExecutionContext> ele = ex.getXtendStackTrace()
+ .get(i);
+ StringBuffer msg = new StringBuffer(EvaluationException
+ .getLocationString(ele.getFirst()));
+ for (int j = msg.length(); j < widest; j++) {
+ msg.append(" ");
+ }
+ if (debugEntries.size() > i
+ && debugEntries.get(i).getExpression() != null) {
+ Debug d = debugEntries.get(i);
+ try {
+ msg.append(" -- debug '").append(d.getExpression()).append(
+ "' = ");
+ msg.append(new ExpressionFacade(ele.getSecond())
+ .evaluate("let x = " + d.getExpression()
+ + " : x!=null ? x.toString() : 'null'"));
+ } catch (Exception e) {
+ msg.append("Exception : ").append(e.getMessage());
+ }
+ msg.append("\n");
+ }
+ if (dumpContext || debugEntries.size() > i
+ && debugEntries.get(i).isDumpContext()) {
+ ExpressionFacade f = new ExpressionFacade(ele.getSecond());
+ msg.append(" -- context dump : ");
+
+ Iterator<String> iter = ele.getSecond().getVisibleVariables()
+ .keySet().iterator();
+ while (iter.hasNext()) {
+ String v = iter.next();
+ msg.append(v).append(" = ").append(
+ f
+ .evaluate(v + "!=null?" + v
+ + ".toString():'null'"));
+ if (iter.hasNext()) {
+ msg.append(", \n");
+ }
+ }
+ msg.append("\n");
+ }
+ // formatting
+ String[] evals = msg.toString().split("\n");
+ for (int j = 0; j < evals.length; j++) {
+ String string = evals[j];
+ result.append(string);
+ if (j + 1 < evals.length) {
+ result.append("\n").append(indent);
+ }
+ }
+ result.append("\n");
+ }
+ return result.toString();
+ }
+
+ protected void invokeInternal2(WorkflowContext ctx,
+ ProgressMonitor monitor, Issues issues) {
+ };
+
+ protected boolean exceptionsOnNullEvaluation = false;
+
+ public void setExceptionsOnNullEvaluation(boolean exceptionsOnNullEvaluation) {
+ this.exceptionsOnNullEvaluation = exceptionsOnNullEvaluation;
+ }
+
+}

Back to the top