use of com.dexels.navajo.document.Operand in project navajo by Dexels.
the class ASTReactiveScriptNode method interpretToLambda.
@Override
public ContextExpression interpretToLambda(List<String> problems, String originalExpression, Function<String, FunctionClassification> functionClassifier, Function<String, Optional<Node>> mapResolver) {
int start = hasHeader ? headers : 0;
if (hasHeader) {
for (int i = 0; i < headers; i++) {
ASTKeyValueNode hdr = (ASTKeyValueNode) jjtGetChild(i);
NamedExpression ne = (NamedExpression) hdr.interpretToLambda(problems, originalExpression, functionClassifier, mapResolver);
String key = ne.name;
headerMap.put(key, ne.apply());
}
}
int count = jjtGetNumChildren();
List<Node> unnamedPipes = new ArrayList<>();
Map<String, Node> namedPipes = new HashMap<>();
for (int i = start; i < count; i++) {
Node child = jjtGetChild(i);
// ASTReactivePipe pipe = null;
if (child instanceof ASTPipeDefinition) {
unnamedPipes.add((ASTPipeDefinition) child);
} else if (child instanceof ASTKeyValueNode) {
ASTKeyValueNode kvNode = (ASTKeyValueNode) child;
String streamName = kvNode.val;
Node namedPipe = kvNode.jjtGetChild(0);
// assert value types perhaps? TODO
namedPipes.put(streamName, namedPipe);
}
}
List<ReactivePipeNode> pipes = unnamedPipes.stream().map(p -> (ReactivePipeNode) p.interpretToLambda(problems, originalExpression, functionClassifier, name -> {
Optional<Node> initial = Optional.ofNullable(namedPipes.get(name));
if (initial.isPresent()) {
return initial;
} else {
return mapResolver.apply(name);
}
})).collect(Collectors.toList());
return new ContextExpression() {
@Override
public Optional<String> returnType() {
return Optional.of(Reactive.ReactiveItemType.REACTIVE_SCRIPT.toString());
}
@Override
public boolean isLiteral() {
return true;
}
@Override
public String expression() {
return "";
}
@Override
public Operand apply(Navajo doc, Message parentMsg, Message parentParamMsg, Selection parentSel, MappableTreeNode mapNode, TipiLink tipiLink, Access access, Optional<ImmutableMessage> immutableMessage, Optional<ImmutableMessage> paramMessage) {
return Operand.ofCustom(pipes, Reactive.ReactiveItemType.REACTIVE_SCRIPT.toString());
}
};
}
use of com.dexels.navajo.document.Operand in project navajo by Dexels.
the class ASTForAllNode method interpret.
/**
* FORALL(<EXPRESSION>, `[$x] <EXPRESSION>`) E.G.
* FORALL([/ClubMembership/ClubMemberships/ClubIdentifier],
* `CheckRelatieCode([$x])`)
*
* @return
*/
private final Operand interpret(Navajo doc, Message parentMsg, Message parentParamMsg, Selection parentSel, MappableTreeNode mapNode, TipiLink tipiLink, Access access, Optional<ImmutableMessage> immutableMessage, Optional<ImmutableMessage> paramMessage, ContextExpression a, ContextExpression b) {
boolean matchAll = true;
if (functionName.equals("FORALL"))
matchAll = true;
else
matchAll = false;
String msgList = (String) a.apply(doc, parentMsg, parentParamMsg, parentSel, mapNode, tipiLink, access, immutableMessage, paramMessage).value;
try {
List<Message> list = null;
if (parentMsg == null) {
list = doc.getMessages(msgList);
} else {
list = parentMsg.getMessages(msgList);
}
for (int i = 0; i < list.size(); i++) {
Object o = list.get(i);
parentMsg = (Message) o;
// ignore definition messages in the evaluation
if (parentMsg.getType().equals(Message.MSG_TYPE_DEFINITION))
continue;
Operand apply = b.apply(doc, parentMsg, parentParamMsg, parentSel, mapNode, tipiLink, access, immutableMessage, paramMessage);
boolean result = (Boolean) apply.value;
if ((!(result)) && matchAll)
return Operand.ofBoolean(false);
if ((result) && !matchAll)
return Operand.ofBoolean(true);
}
} catch (NavajoException ne) {
throw new TMLExpressionException("Invalid expression in FORALL construct: \n" + ne.getMessage());
}
return Operand.ofBoolean(matchAll);
}
use of com.dexels.navajo.document.Operand in project navajo by Dexels.
the class Expression method match.
public static final Message match(String matchString, Navajo inMessage, MappableTreeNode o, Message parent) throws SystemException {
try {
StringTokenizer tokens = new StringTokenizer(matchString, ";");
String matchSet = tokens.nextToken();
if (matchSet == null)
throw new TMLExpressionException("Invalid usage of match: match=\"[match set];[match value]\"");
String matchValue = tokens.nextToken();
if (matchValue == null)
throw new TMLExpressionException("Invalid usage of match: match=\"[match set];[match value]\"");
Operand value = evaluate(matchValue, inMessage, o, parent, null, null, null, null);
List<Property> properties;
if (parent == null)
properties = inMessage.getProperties(matchSet);
else
properties = parent.getProperties(matchSet);
for (int i = 0; i < properties.size(); i++) {
Property prop = properties.get(i);
Message parentMsg = prop.getParentMessage();
if (prop.getValue().equals(value.value))
return parentMsg;
}
} catch (NavajoException e) {
throw new SystemException(-1, e.getMessage(), e);
}
return null;
}
use of com.dexels.navajo.document.Operand in project navajo by Dexels.
the class Switch method testDirectUnicodeExpressionFunction.
@Test
public void testDirectUnicodeExpressionFunction() throws Exception {
Operand result = Expression.evaluate("'€2,29'", null, null, null);
System.err.println("Result:" + result.value);
}
use of com.dexels.navajo.document.Operand in project navajo by Dexels.
the class TestCompiledExpression method parseFunction.
@Test
public void parseFunction() throws TMLExpressionException {
Operand o = ExpressionCache.getInstance().evaluate("ToUpper('ble')", input, (Message) null, (Message) null, (Selection) null, null, null, null, Optional.<ImmutableMessage>empty(), Optional.<ImmutableMessage>empty());
System.err.println(": " + o);
Assert.assertEquals("BLE", o.value);
}
Aggregations