com.scudata.expression.fn.convert.Parse 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.convert;
import com.scudata.common.MessageManager;
import com.scudata.common.RQException;
import com.scudata.common.Sentence;
import com.scudata.common.StringUtils;
import com.scudata.dm.Context;
import com.scudata.expression.Function;
import com.scudata.resources.EngineMessage;
import com.scudata.util.Variant;
/**
* parse(s) ?????ַ???s???ַ???????????Ӧ?????????͡?
* @author runqian
*
*/
public class Parse extends Function {
/**
* ??????ʽ????Ч?ԣ???Ч???׳??쳣
*/
public void checkValidity() {
if (param == null) {
MessageManager mm = EngineMessage.get();
throw new RQException("parse" + mm.getMessage("function.missingParam"));
} else if (!param.isLeaf()) {
MessageManager mm = EngineMessage.get();
throw new RQException("parse" + mm.getMessage("function.invalidParam"));
}
}
public Object calculate(Context ctx) {
Object obj = param.getLeafExpression().calculate(ctx);
if (!(obj instanceof String)) {
return obj;
}
String str = (String)obj;
if (option != null) {
if (option.indexOf('q') != -1) {
int start = 0; // ??ʼλ?ã????˿հ????Dz????????ſ?ͷ
int len = str.length();
for (; start < len; ++start) {
char c = str.charAt(start);
if (c == '"' || c == '\'') {
int match = Sentence.scanQuotation(str, start);
if (match > 0) {
if (option.indexOf('e') != -1) {
return StringUtils.unicode(str.substring(start + 1, match));
} else {
return str.substring(start, match + 1);
}
}
} else if (!Character.isWhitespace(c)) {
break;
}
}
}
if (option.indexOf('e') != -1) {
str = StringUtils.unicode(str);
int last = str.length() - 1;
if (last > 0) {
char s = str.charAt(0);
char e = str.charAt(last);
if (s == e && (s == '"'|| s == '\'')) {
return str.substring(1, last);
} else {
return Variant.parse(str, true);
}
}
} else if (option.indexOf('n') != -1) {
int start = 0; // ??ʼλ?ã?ǰ??????пհ???֧????.??-??ʼ
int len = str.length();
for (; start < len; ++start) {
char c = str.charAt(start);
if (!Character.isWhitespace(c)) {
if ((c >= '0' && c <= '9') || c == '-' || c == '.') {
break;
} else {
return null;
}
}
}
if (start == len) {
return null;
}
int end = start + 1;
for (; end < len; ++end) {
char c = str.charAt(end);
if ((c < '0' || c > '9') && c != '.') {
break;
}
}
if (start != 0 || end != len) {
return Variant.parseNumber(str.substring(start, end));
} else {
return Variant.parseNumber(str);
}
}
}
return Variant.parse(str, false);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy