com.scudata.expression.fn.ZSeq 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;
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;
/**
* ????ij????Ա?ֵ??ĸ??Ӽ???
* z(i,n) ??Ȼ?????Ϸֳ??Ӽ??ϳ???Ϊk?ļ??ݣ??????i????Ա?ڵڼ????Ӽ?????
* @author runqian
*
*/
public class ZSeq extends Function {
/**
* ??????ʽ????Ч?ԣ???Ч???׳??쳣
*/
public void checkValidity() {
if (param == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("z" + mm.getMessage("function.missingParam"));
}
}
public Object calculate(Context ctx) {
int size = param.getSubSize();
if (size == 2) {
IParam sub0 = param.getSub(0);
IParam sub1 = param.getSub(1);
if (sub0 == null || sub1 == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("z" + mm.getMessage("function.invalidParam"));
}
Object i = sub0.getLeafExpression().calculate(ctx);
Object k = sub1.getLeafExpression().calculate(ctx);
if (!(i instanceof Number) || !(k instanceof Number)) {
MessageManager mm = EngineMessage.get();
throw new RQException("z" + mm.getMessage("function.paramTypeError"));
}
int g = (((Number)i).intValue() - 1) / ((Number)k).intValue() + 1;
return new Integer(g);
} else if (size == 3) {
IParam sub0 = param.getSub(0);
IParam sub1 = param.getSub(1);
IParam sub2 = param.getSub(2);
if (sub0 == null || sub1 == null || sub2 == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("z" + mm.getMessage("function.invalidParam"));
}
Object io = sub0.getLeafExpression().calculate(ctx);
Object ko = sub1.getLeafExpression().calculate(ctx);
Object no = sub2.getLeafExpression().calculate(ctx);
if (!(io instanceof Number) || !(ko instanceof Number) || !(no instanceof Number)) {
MessageManager mm = EngineMessage.get();
throw new RQException("z" + mm.getMessage("function.paramTypeError"));
}
int i = ((Number)io).intValue();
int k = ((Number)ko).intValue();
int n = ((Number)no).intValue();
int count = n / k;
if (count == 0) {
return i;
}
int mod = n % k;
if (mod == 0) {
return new Integer((i - 1) / count + 1);
} else {
int n1 = count * mod + mod;
if (i > n1) {
return new Integer((i - n1 - 1) / count + 1 + mod);
} else {
return new Integer((i - 1) / (count + 1) + 1);
}
}
} else {
MessageManager mm = EngineMessage.get();
throw new RQException("z" + mm.getMessage("function.invalidParam"));
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy