use of net.sourceforge.processdash.data.compiler.ListStack in project processdash by dtuma.
the class CompiledFunction method recalc.
protected void recalc() {
if (isDisposed())
// we have been disposed. Don't try to recalc.
return;
Set calcNameSet = (Set) CURRENTLY_CALCULATING.get();
if (calcNameSet.contains(name)) {
logger.warning("Encountered recursively defined data " + "when calculating " + name + " - ABORTING");
// break out of infinite loops.
return;
}
SimpleData oldValue = value;
SimpleData newValue = null;
String newAlias = null;
SubscribingExpressionContext context = null;
// attempt to perform the calculation up to 10 times. (This should
// be more than generous - even one retry should be rare.)
int retryCount = 10;
while (retryCount-- > 0 && extChanges.isDirty()) {
context = new SubscribingExpressionContext(data, prefix, this, name, currentSubscriptions);
ListStack stack = new ListStack();
int changeCount = -1;
try {
calcNameSet.add(name);
changeCount = extChanges.getUnhandledChangeCount();
script.run(stack, context);
newAlias = (String) stack.peekDescriptor();
newValue = (SimpleData) stack.pop();
if (newValue != null && newAlias == null)
newValue = (SimpleData) newValue.getEditable(false);
} catch (ExecutionException e) {
logger.warning("Error executing " + name + ": " + e);
newValue = null;
} finally {
calcNameSet.remove(name);
}
if (extChanges.maybeClearDirty(changeCount, newValue, newAlias))
break;
else if (retryCount > 0)
logger.finer("Retrying calculating " + name);
}
if (context == null)
// of the loop above. Nothing needs to be done.
return;
if (retryCount <= 0)
logger.warning("Ran out of retries while calculating " + name);
context.removeOldSubscriptions();
currentSubscriptions.trimToSize();
if (oldValue != VALUE_NEVER_QUERIED && !eq(oldValue, value))
data.valueRecalculated(name, this);
}
use of net.sourceforge.processdash.data.compiler.ListStack in project processdash by dtuma.
the class DataRepository method evaluate.
public SimpleData evaluate(CompiledScript script, String prefix) throws ExecutionException {
ListStack stack = new ListStack();
ExpressionContext context = new SimpleExpressionContext(prefix);
script.run(stack, context);
SimpleData value = (SimpleData) stack.pop();
if (value != null)
value = (SimpleData) value.getEditable(false);
return value;
}
use of net.sourceforge.processdash.data.compiler.ListStack in project processdash by dtuma.
the class Nvl method call.
/** Perform a procedure call.
*
* This method <b>must</b> be thread-safe.
*/
public Object call(List arguments, ExpressionContext context) {
ListStack stack = null;
for (Iterator iter = arguments.iterator(); iter.hasNext(); ) {
Object arg = iter.next();
if (arg instanceof CompiledScript) {
try {
CompiledScript script = (CompiledScript) arg;
if (stack == null)
stack = new ListStack();
else
stack.clear();
script.run(stack, context);
arg = stack.pop();
} catch (Exception e) {
}
}
if (arg instanceof SimpleData && !isBadValue((SimpleData) arg))
return arg;
}
return null;
}
use of net.sourceforge.processdash.data.compiler.ListStack in project processdash by dtuma.
the class Eval method call.
/** Perform a procedure call.
*
* This method <b>must</b> be thread-safe.
*/
public Object call(List arguments, ExpressionContext context) {
String expression = asString(getArg(arguments, 0));
if (expression == null || expression.length() == 0)
return null;
String prefix = asString(getArg(arguments, 1));
CompiledScript script = Compiler.compile(expression);
try {
Stack stack = new ListStack();
if (prefix != null)
context = new RelativeExpressionContext(context, prefix);
script.run(stack, context);
return stack.pop();
} catch (ExecutionException ee) {
return null;
}
}
use of net.sourceforge.processdash.data.compiler.ListStack in project processdash by dtuma.
the class Filter method call.
/** Perform a procedure call.
*
* This method <b>must</b> be thread-safe.
*/
public Object call(List arguments, ExpressionContext context) {
CompiledScript script = null;
try {
script = (CompiledScript) arguments.get(0);
} catch (ClassCastException cce) {
}
if (script == null)
return null;
ListData result = new ListData();
LocalExpressionContext lContext = new LocalExpressionContext(context);
ListStack stack = new ListStack();
Iterator i = collapseLists(arguments, 1).iterator();
Object item;
while (i.hasNext()) try {
lContext.setLocalValue(item = i.next());
stack.clear();
script.run(stack, lContext);
handleItem(result, item, stack.pop());
} catch (Exception e) {
}
return result;
}
Aggregations