com.scudata.expression.fn.XJoinx 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.dm.KeyWord;
import com.scudata.dm.Sequence;
import com.scudata.dm.cursor.ICursor;
import com.scudata.dm.cursor.MemoryCursor;
import com.scudata.dm.cursor.XJoinxCursor;
import com.scudata.expression.Expression;
import com.scudata.expression.Function;
import com.scudata.expression.IParam;
import com.scudata.expression.Node;
import com.scudata.resources.EngineMessage;
/**
* xjoinx(csi:Fi,xi;??)
* ???α?csi?Ľ?????????????????????????Fi??Ϊ?ֶε??α꣬ÿ??Fi????ԭ?α?csi??һ????Ա????˹????У?
* ???˳?csi??????????xi?ij?Ա??csi????Ϊ?ɻ?ת?ĵ?·?α꣬csiҲ???????????
* @author runqian
*
*/
public class XJoinx extends Function {
public Node optimize(Context ctx) {
param.optimize(ctx);
return this;
}
/**
* ??????ʽ????Ч?ԣ???Ч???׳??쳣
*/
public void checkValidity() {
if (param == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.missingParam"));
} else if (param.getType() != IParam.Semicolon) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
}
}
public Object calculate(Context ctx) {
int count = param.getSubSize();
ICursor []cursors = new ICursor[count];
String []names = new String[count];
Expression []exps = new Expression[count];
for (int i = 0; i < count; ++i) {
IParam sub = param.getSub(i);
if (sub == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
} else if (sub.isLeaf()) { // Ai
Object obj = sub.getLeafExpression().calculate(ctx);
if (obj instanceof ICursor) {
cursors[i] = (ICursor)obj;
} else if (obj instanceof Sequence) {
cursors[i] = new MemoryCursor((Sequence)obj);
} else {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.paramTypeError"));
}
} else if (sub.getType() == IParam.Colon) { // Ai:Fi
if (sub.getSubSize() != 2) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
}
IParam sub0 = sub.getSub(0);
if (sub0 == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
}
Object obj = sub0.getLeafExpression().calculate(ctx);
if (obj instanceof ICursor) {
cursors[i] = (ICursor)obj;
} else if (obj instanceof Sequence) {
cursors[i] = new MemoryCursor((Sequence)obj);
} else {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.paramTypeError"));
}
IParam sub1 = sub.getSub(1);
if (sub1 != null) {
names[i] = sub1.getLeafExpression().getIdentifierName();
}
} else { // Ai:Fi,xi
if (sub.getSubSize() != 2) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
}
IParam seqParam = sub.getSub(0);
if (seqParam == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
} else if (seqParam.isLeaf()) {
Object obj = seqParam.getLeafExpression().calculate(ctx);
if (obj instanceof ICursor) {
cursors[i] = (ICursor)obj;
} else if (obj instanceof Sequence) {
cursors[i] = new MemoryCursor((Sequence)obj);
} else {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.paramTypeError"));
}
} else {
if (seqParam.getSubSize() != 2) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
}
IParam sub0 = seqParam.getSub(0);
if (sub0 == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
}
Object obj = sub0.getLeafExpression().calculate(ctx);
if (obj instanceof ICursor) {
cursors[i] = (ICursor)obj;
} else if (obj instanceof Sequence) {
cursors[i] = new MemoryCursor((Sequence)obj);
} else {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.paramTypeError"));
}
IParam sub1 = seqParam.getSub(1);
if (sub1 != null) {
names[i] = sub1.getLeafExpression().getIdentifierName();
}
}
IParam expParam = sub.getSub(1);
if (expParam == null || !expParam.isLeaf()) {
MessageManager mm = EngineMessage.get();
throw new RQException("xjoinx" + mm.getMessage("function.invalidParam"));
}
exps[i] = expParam.getLeafExpression();
}
}
String []opts = KeyWord.parseStringOptions(names);
return new XJoinxCursor(cursors, exps, names, opts, option, ctx);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy