use of lucee.runtime.interpreter.ref.Ref in project Lucee by lucee.
the class CFMLExpressionInterpreter method newOp.
private Ref newOp() throws PageException {
int start = cfml.getPos();
String name = null;
cfml.removeSpace();
// first identifier
name = identifier(true);
Ref refName = null;
if (name != null) {
StringBuilder fullName = new StringBuilder();
fullName.append(name);
// Loop over addional identifier
while (cfml.isValidIndex()) {
if (cfml.forwardIfCurrent('.')) {
cfml.removeSpace();
name = identifier(true);
if (name == null)
throw new InterpreterException("invalid Component declaration");
cfml.removeSpace();
fullName.append('.');
fullName.append(name);
} else
break;
}
refName = new LString(fullName.toString());
} else {
if (cfml.isCurrentQuoter())
refName = string();
if (refName == null) {
cfml.setPos(start);
return null;
}
}
cfml.removeSpace();
if (cfml.isCurrent('(')) {
FunctionLibFunction function = fld.getFunction("_createComponent");
Ref[] arguments = functionArg("_createComponent", true, function, ')');
Ref[] args = new Ref[arguments.length + 1];
for (int i = 0; i < arguments.length; i++) {
args[i] = arguments[i];
}
args[args.length - 1] = refName;
BIFCall bif = new BIFCall(function, args);
cfml.removeSpace();
return bif;
}
throw new InterpreterException("invalid Component declaration ");
}
use of lucee.runtime.interpreter.ref.Ref in project Lucee by lucee.
the class CFMLExpressionInterpreter method contOp.
private Ref contOp() throws PageException {
Ref ref = impOp();
while (cfml.forwardIfCurrent('?')) {
cfml.removeSpace();
if (cfml.forwardIfCurrent(':')) {
cfml.removeSpace();
Ref right = assignOp();
ref = new Elvis(ref, right, limited);
} else {
Ref left = assignOp();
if (!cfml.forwardIfCurrent(':'))
throw new InterpreterException("Syntax Error, invalid conditional operator [" + cfml.toString() + "]");
cfml.removeSpace();
Ref right = assignOp();
ref = new Cont(ref, left, right, limited);
}
}
return ref;
}
use of lucee.runtime.interpreter.ref.Ref in project Lucee by lucee.
the class CFMLExpressionInterpreter method _div.
private Ref _div(Ref ref) throws PageException {
// /=
if (cfml.forwardIfCurrent('=')) {
cfml.removeSpace();
Ref right = assignOp();
Ref res = preciseMath ? new BigDiv(ref, right, limited) : new Div(ref, right, limited);
ref = new Assign(ref, res, limited);
} else {
cfml.removeSpace();
ref = preciseMath ? new BigDiv(ref, expoOp(), limited) : new Div(ref, expoOp(), limited);
}
return ref;
}
use of lucee.runtime.interpreter.ref.Ref in project Lucee by lucee.
the class MemberUtil method callWithNamedValues.
public static Object callWithNamedValues(PageContext pc, Object coll, Collection.Key methodName, Struct args, short type, String strType) throws PageException {
Map<Key, FunctionLibFunction> members = getMembers(pc, type);
FunctionLibFunction member = members.get(methodName);
if (member != null) {
List<FunctionLibFunctionArg> _args = member.getArg();
FunctionLibFunctionArg arg;
if (args.size() < _args.size()) {
Object val;
ArrayList<Ref> refs = new ArrayList<Ref>();
arg = _args.get(0);
refs.add(new Casting(arg.getTypeAsString(), arg.getType(), new LFunctionValue(new LString(arg.getName()), coll)));
for (int y = 1; y < _args.size(); y++) {
arg = _args.get(y);
// match by name
val = args.get(arg.getName(), null);
// match by alias
if (val == null) {
String alias = arg.getAlias();
if (!StringUtil.isEmpty(alias, true)) {
String[] aliases = lucee.runtime.type.util.ListUtil.trimItems(lucee.runtime.type.util.ListUtil.listToStringArray(alias, ','));
for (int x = 0; x < aliases.length; x++) {
val = args.get(aliases[x], null);
if (val != null)
break;
}
}
}
if (val == null) {
if (arg.getRequired()) {
String[] names = member.getMemberNames();
String n = ArrayUtil.isEmpty(names) ? "" : names[0];
throw new ExpressionException("missing required argument [" + arg.getName() + "] for member function call [" + n + "]");
}
} else {
refs.add(new Casting(arg.getTypeAsString(), arg.getType(), new LFunctionValue(new LString(arg.getName()), val)));
// refs.add(new LFunctionValue(new LString(arg.getName()),new Casting(pc,arg.getTypeAsString(),arg.getType(),val)));
}
}
return new BIFCall(coll, member, refs.toArray(new Ref[refs.size()])).getValue(pc);
}
}
throw new ExpressionException("No matching function member [" + methodName + "] for call with named arguments found, available function members are [" + lucee.runtime.type.util.ListUtil.sort(CollectionUtil.getKeyList(members.keySet().iterator(), ","), "textnocase", "asc", ",") + "]");
}
use of lucee.runtime.interpreter.ref.Ref in project Lucee by lucee.
the class BIF method call.
@Override
public Object call(PageContext pageContext, Object[] args, boolean doIncludePath) throws PageException {
ArrayList<FunctionLibFunctionArg> flfas = flf.getArg();
FunctionLibFunctionArg flfa;
List<Ref> refs = new ArrayList<Ref>();
for (int i = 0; i < args.length; i++) {
if (i >= flfas.size())
throw new ApplicationException("too many Attributes in function call [" + flf.getName() + "]");
flfa = flfas.get(i);
refs.add(new Casting(flfa.getTypeAsString(), flfa.getType(), args[i]));
}
BIFCall call = new BIFCall(flf, refs.toArray(new Ref[refs.size()]));
return call.getValue(pageContext);
}
Aggregations