com.scudata.expression.fn.math.Pow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.expression.fn.math;
import com.scudata.common.MessageManager;
import com.scudata.common.RQException;
import com.scudata.dm.Context;
import com.scudata.expression.Function;
import com.scudata.expression.IParam;
import com.scudata.resources.EngineMessage;
import com.scudata.util.Variant;
public class Pow extends Function {
/**
* ??????ʽ????Ч?ԣ???Ч???׳??쳣
*/
public void checkValidity() {
if (param == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("power" + mm.getMessage("function.missingParam"));
}
}
public Object calculate(Context ctx) {
if (param.isLeaf()) {
Object val = param.getLeafExpression().calculate(ctx);
return Variant.square(val);
}
if (param.getSubSize() != 2) {
MessageManager mm = EngineMessage.get();
throw new RQException("power" + mm.getMessage("function.invalidParam"));
}
IParam sub1 = param.getSub(0);
IParam sub2 = param.getSub(1);
if (sub1 == null || sub2 == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("power" + mm.getMessage("function.invalidParam"));
}
Object result1 = sub1.getLeafExpression().calculate(ctx);
if (result1 == null) {
return null;
} else if (!(result1 instanceof Number)) {
MessageManager mm = EngineMessage.get();
throw new RQException("power" + mm.getMessage("function.paramTypeError"));
}
Object result2 = sub2.getLeafExpression().calculate(ctx);
if (result2 == null) {
return null;
} else if (!(result2 instanceof Number)) {
MessageManager mm = EngineMessage.get();
throw new RQException("power" + mm.getMessage("function.paramTypeError"));
}
return new Double(Math.pow(Variant.doubleValue(result1),
Variant.doubleValue(result2)));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy