com.scudata.expression.mfn.sequence.FieldName 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.dm.DataStruct;
import com.scudata.dm.Sequence;
import com.scudata.expression.SequenceFunction;
import com.scudata.resources.EngineMessage;
/**
* ???????ָ???ֶλ??????ֶε??ֶ???
* T.fname(i) T.fname()
* @author RunQian
*
*/
public class FieldName extends SequenceFunction {
public Object calculate(Context ctx) {
if (param == null) {
DataStruct ds = srcSequence.dataStruct();
if (ds == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("fname: " + mm.getMessage("engine.needPurePmt"));
}
return new Sequence(ds.getFieldNames());
} else if (param.isLeaf()) {
Object indexObj = param.getLeafExpression().calculate(ctx);
if (!(indexObj instanceof Number)) {
MessageManager mm = EngineMessage.get();
throw new RQException("fname" + mm.getMessage("function.paramTypeError"));
}
// ?ֶδ?0??ʼ????
int findex = ((Number)indexObj).intValue() - 1;
if (findex < 0) {
MessageManager mm = EngineMessage.get();
throw new RQException(findex + mm.getMessage("ds.fieldNotExist"));
}
DataStruct ds = srcSequence.dataStruct();
if (ds == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("fname: " + mm.getMessage("engine.needPurePmt"));
}
return ds.getFieldName(findex);
} else {
MessageManager mm = EngineMessage.get();
throw new RQException("fname" + mm.getMessage("function.invalidParam"));
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy