/*
* License (BSD Style License):
* Copyright (c) 2011
* Software Engineering
* Department of Computer Science
* Technische Universität Darmstadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the Software Engineering Group or Technische
* Universität Darmstadt nor the names of its contributors may be used to
* endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package de.tud.cs.st.vespucci.vespucci_model.diagram.expressions;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Collections;
import java.util.Map;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EDataType;
import org.eclipse.emf.ecore.EEnum;
import org.eclipse.emf.ecore.EEnumLiteral;
import org.eclipse.emf.ecore.util.EcoreUtil;
/**
* @generated
*/
public abstract class VespucciAbstractExpression {
/**
* @generated
*/
private IStatus status = Status.OK_STATUS;
/**
* @generated
*/
protected void setStatus(int severity, String message, Throwable throwable) {
String pluginID = de.tud.cs.st.vespucci.vespucci_model.diagram.part.VespucciDiagramEditorPlugin.ID;
this.status = new Status(severity, pluginID, -1, (message != null) ? message : "", throwable); //$NON-NLS-1$
if (!this.status.isOK()) {
de.tud.cs.st.vespucci.vespucci_model.diagram.part.VespucciDiagramEditorPlugin.getInstance().logError(
"Expression problem:" + message + "body:" + body(), throwable); //$NON-NLS-1$ //$NON-NLS-2$
}
}
/**
* @generated
*/
public IStatus getStatus() {
return status;
}
/**
* @generated
*/
private final String myBody;
/**
* @generated
*/
public String body() {
return myBody;
}
/**
* @generated
*/
private final EClassifier myContext;
/**
* @generated
*/
public EClassifier context() {
return myContext;
}
/**
* @generated
*/
protected VespucciAbstractExpression(String body, EClassifier context) {
myBody = body;
myContext = context;
}
/**
* @generated
*/
@SuppressWarnings("rawtypes")
protected abstract Object doEvaluate(Object context, Map env);
/**
* @generated
*/
public Object evaluate(Object context) {
return evaluate(context, Collections.EMPTY_MAP);
}
/**
* @generated
*/
@SuppressWarnings("rawtypes")
public Object evaluate(Object context, Map env) {
if (context().isInstance(context)) {
try {
return doEvaluate(context, env);
} catch (Exception e) {
de.tud.cs.st.vespucci.vespucci_model.diagram.part.VespucciDiagramEditorPlugin.getInstance().logError(
"Expression evaluation failure: " + body(), e); //$NON-NLS-1$
}
}
return null;
}
/**
* Expression may return number value which is not directly compatible with feature type (e.g. Double when Integer is expected), or EEnumLiteral meta-object when literal instance is expected
* @generated
*/
public static Object performCast(Object value, EDataType targetType) {
if (targetType instanceof EEnum) {
if (value instanceof EEnumLiteral) {
EEnumLiteral literal = (EEnumLiteral) value;
return (literal.getInstance() != null) ? literal.getInstance() : literal;
}
}
if (false == value instanceof Number || targetType == null || targetType.getInstanceClass() == null) {
return value;
}
Class<?> targetClass = targetType.getInstanceClass();
Number num = (Number) value;
Class<?> valClass = value.getClass();
Class<?> targetWrapperClass = targetClass;
if (targetClass.isPrimitive()) {
targetWrapperClass = EcoreUtil.wrapperClassFor(targetClass);
}
if (valClass.equals(targetWrapperClass)) {
return value;
}
if (Number.class.isAssignableFrom(targetWrapperClass)) {
if (targetWrapperClass.equals(Byte.class))
return new Byte(num.byteValue());
if (targetWrapperClass.equals(Integer.class))
return new Integer(num.intValue());
if (targetWrapperClass.equals(Short.class))
return new Short(num.shortValue());
if (targetWrapperClass.equals(Long.class))
return new Long(num.longValue());
if (targetWrapperClass.equals(BigInteger.class))
return BigInteger.valueOf(num.longValue());
if (targetWrapperClass.equals(Float.class))
return new Float(num.floatValue());
if (targetWrapperClass.equals(Double.class))
return new Double(num.doubleValue());
if (targetWrapperClass.equals(BigDecimal.class))
return new BigDecimal(num.doubleValue());
}
return value;
}
}