com.scudata.expression.mfn.vdb.Retrive 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.vdb;
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.ParamInfo2;
import com.scudata.expression.VSFunction;
import com.scudata.resources.EngineMessage;
/**
* ????????????????
* h.retrieve(F:v,??;F??,??;w??)
* @author RunQian
*
*/
public class Retrive extends VSFunction {
public Object calculate(Context ctx) {
if (param == null) {
return vs.retrieve(null, null, null, null, null, option, ctx);
}
IParam dirParam;
String []selFields = null;
Expression filter = null;
if (param.getType() == IParam.Semicolon) {
int size = param.getSubSize();
if (size > 3) {
MessageManager mm = EngineMessage.get();
throw new RQException("retrieve" + mm.getMessage("function.invalidParam"));
}
dirParam = param.getSub(0);
IParam sub = param.getSub(1);
if (sub == null) {
} else if (sub.isLeaf()) {
selFields = new String[]{sub.getLeafExpression().getIdentifierName()};
} else {
int fsize = sub.getSubSize();
selFields = new String[fsize];
for (int i = 0; i < fsize; ++i) {
IParam p = sub.getSub(i);
if (p == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("retrieve" + mm.getMessage("function.invalidParam"));
}
selFields[i] = p.getLeafExpression().getIdentifierName();
}
}
if (size > 2) {
sub = param.getSub(2);
if (sub == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("retrieve" + mm.getMessage("function.invalidParam"));
}
filter = sub.getLeafExpression();
}
} else {
dirParam = param;
}
String []dirNames = null;
Object []dirValues = null;
boolean []valueSigns = null;
if (dirParam != null) {
ParamInfo2 pi = ParamInfo2.parse(dirParam, "retrieve", false, false);
dirNames = pi.getExpressionStrs1();
Expression []exps = pi.getExpressions2();
int size = exps.length;
dirValues = new Object[size];
valueSigns = new boolean[size];
for (int i = 0; i < size; ++i) {
if (exps[i] != null) {
dirValues[i] = exps[i].calculate(ctx);
valueSigns[i] = true; // û??ʡ??Ŀ¼ֵ????
}
}
}
return vs.retrieve(dirNames, dirValues, valueSigns, selFields, filter, option, ctx);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy