com.scudata.expression.mfn.sequence.PMax 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.mfn.sequence;
import com.scudata.common.MessageManager;
import com.scudata.common.RQException;
import com.scudata.dm.Context;
import com.scudata.expression.Expression;
import com.scudata.expression.IParam;
import com.scudata.expression.SequenceFunction;
import com.scudata.resources.EngineMessage;
/**
* ȡ????????Ԫ?ص????
* A.pmax() A.pmax(x)
* @author RunQian
*
*/
public class PMax extends SequenceFunction {
public Object calculate(Context ctx) {
if (param == null) {
return srcSequence.pmax(null, option, ctx);
} else if (param.isLeaf()) {
return srcSequence.pmax(param.getLeafExpression(), option, ctx);
} else {
if (param.getSubSize() != 2) {
MessageManager mm = EngineMessage.get();
throw new RQException("pmax" + mm.getMessage("function.invalidParam"));
}
IParam sub1 = param.getSub(1);
if (sub1 == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("pmax" + mm.getMessage("function.invalidParam"));
}
Object val = sub1.getLeafExpression().calculate(ctx);
if (!(val instanceof Number)) {
MessageManager mm = EngineMessage.get();
throw new RQException("pmax" + mm.getMessage("function.paramTypeError"));
}
IParam sub0 = param.getSub(0);
Expression exp = null;
if (sub0 != null) {
exp = sub0.getLeafExpression();
}
int pos = ((Number)val).intValue();
return srcSequence.pmax(exp, pos, option, ctx);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy