blob: a9b54abdbb8892755cfadcae9835bb6547ada5ad [file] [log] [blame]
/*
* Copyright (c) 2006, 2007 Borland Software Corporation.
* 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:
* Richard Gronback (Borland) - initial API and implementation
*/
package org.eclipse.gmf.examples.mindmap.rcp.expressions;
import java.lang.ref.WeakReference;
import java.util.Collections;
import java.util.Iterator;
import java.util.Map;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EEnum;
import org.eclipse.emf.ecore.EEnumLiteral;
import org.eclipse.emf.ecore.ETypedElement;
import org.eclipse.ocl.Environment;
import org.eclipse.ocl.EvaluationEnvironment;
import org.eclipse.ocl.ParserException;
import org.eclipse.ocl.Query;
import org.eclipse.ocl.ecore.EcoreFactory;
import org.eclipse.ocl.expressions.OCLExpression;
import org.eclipse.ocl.expressions.OperationCallExp;
import org.eclipse.ocl.expressions.Variable;
import org.eclipse.ocl.helper.OCLHelper;
import org.eclipse.ocl.utilities.AbstractVisitor;
import org.eclipse.ocl.utilities.PredefinedType;
/**
* @generated
*/
public class MindmapOCLFactory {
/**
* @generated
*/
private MindmapOCLFactory() {
}
/**
* @generated
*/
public static MindmapAbstractExpression getExpression(String body,
EClassifier context, Map environment) {
return new Expression(body, context, environment);
}
/**
* @generated
*/
public static MindmapAbstractExpression getExpression(String body,
EClassifier context) {
return getExpression(body, context, Collections.EMPTY_MAP);
}
/**
* @generated
*/
private static class Expression extends MindmapAbstractExpression {
/**
* @generated
*/
private final org.eclipse.ocl.ecore.OCL oclInstance;
/**
* @generated
*/
public Expression(String body, EClassifier context, Map environment) {
super(body, context);
oclInstance = org.eclipse.ocl.ecore.OCL.newInstance();
initCustomEnv(oclInstance.getEnvironment(), environment);
}
/**
* @generated
*/
private WeakReference queryRef;
/**
* @generated
*/
protected Query getQuery() {
Query oclQuery = null;
if (this.queryRef != null) {
oclQuery = (Query) this.queryRef.get();
}
if (oclQuery == null) {
OCLHelper oclHelper = oclInstance.createOCLHelper();
oclHelper.setContext(context());
try {
OCLExpression oclExpression = oclHelper.createQuery(body());
oclQuery = oclInstance.createQuery(oclExpression);
this.queryRef = new WeakReference(oclQuery);
setStatus(IStatus.OK, null, null);
} catch (ParserException e) {
setStatus(IStatus.ERROR, e.getMessage(), e);
}
}
return oclQuery;
}
/**
* @generated
*/
protected Object doEvaluate(Object context, Map env) {
Query oclQuery = getQuery();
if (oclQuery == null) {
return null;
}
EvaluationEnvironment evalEnv = oclQuery.getEvaluationEnvironment();
// init environment
for (Iterator it = env.entrySet().iterator(); it.hasNext();) {
Map.Entry nextEntry = (Map.Entry) it.next();
evalEnv.replace((String) nextEntry.getKey(), nextEntry
.getValue());
}
try {
initExtentMap(context);
Object result = oclQuery.evaluate(context);
return (result != oclInstance.getEnvironment()
.getOCLStandardLibrary().getOclInvalid()) ? result
: null;
} finally {
evalEnv.clear();
oclQuery.getExtentMap().clear();
}
}
/**
* @generated
*/
protected Object performCast(Object value, ETypedElement targetType) {
if (targetType.getEType() instanceof EEnum) {
if (value instanceof EEnumLiteral) {
EEnumLiteral literal = (EEnumLiteral) value;
return (literal.getInstance() != null) ? literal
.getInstance() : literal;
}
}
return super.performCast(value, targetType);
}
/**
* @generated
*/
private void initExtentMap(Object context) {
if (!getStatus().isOK() || context == null) {
return;
}
final Query queryToInit = getQuery();
final Object extentContext = context;
queryToInit.getExtentMap().clear();
if (queryToInit.queryText() != null
&& queryToInit.queryText().indexOf(
PredefinedType.ALL_INSTANCES_NAME) >= 0) {
AbstractVisitor visitior = new AbstractVisitor() {
private boolean usesAllInstances = false;
public Object visitOperationCallExp(OperationCallExp oc) {
if (!usesAllInstances) {
usesAllInstances = PredefinedType.ALL_INSTANCES == oc
.getOperationCode();
if (usesAllInstances) {
queryToInit
.getExtentMap()
.putAll(
oclInstance
.getEvaluationEnvironment()
.createExtentMap(
extentContext));
}
}
return super.visitOperationCallExp(oc);
}
};
queryToInit.getExpression().accept(visitior);
}
}
/**
* @generated
*/
private static void initCustomEnv(Environment ecoreEnv, Map environment) {
for (Iterator it = environment.keySet().iterator(); it.hasNext();) {
String varName = (String) it.next();
EClassifier varType = (EClassifier) environment.get(varName);
ecoreEnv.addElement(varName, createVar(ecoreEnv, varName,
varType), false);
}
}
/**
* @generated
*/
private static Variable createVar(Environment ecoreEnv, String name,
EClassifier type) {
Variable var = EcoreFactory.eINSTANCE.createVariable(); // or ecoreEnv.getOCLFactory().createVariable()?
var.setName(name);
var.setType(ecoreEnv.getUMLReflection().getOCLType(type));
return var;
}
}
}