Search in sources :

Example 1 with InvokeJavaClassMethod

use of org.whole.lang.workflows.model.InvokeJavaClassMethod in project whole by wholeplatform.

the class WorkflowsDynamicCompilerVisitor method visit.

@Override
public void visit(InvokeJavaClassMethod entity) {
    final Variable resultVariable = entity.getResult();
    Expressions arguments = entity.getArguments();
    int size = arguments.wSize();
    IEntityIterator<?>[] runnableIterators = new IEntityIterator<?>[2 + size];
    entity.getClassName().accept(this);
    runnableIterators[0] = getResultIterator();
    entity.getMethod().accept(this);
    runnableIterators[1] = getResultIterator();
    for (int i = 0; i < size; i++) {
        arguments.get(i).accept(this);
        runnableIterators[2 + i] = getResultIterator();
    }
    setResultIterator(IteratorFactory.multiValuedRunnableIterator(new AbstractWorkflowsRunnable() {

        public void run(IEntity selfEntity, IBindingManager bm, IEntity... argsEntities) {
            String className = argsEntities[0].wStringValue();
            IEntity methodData = argsEntities[1];
            Method method;
            if (DataTypeUtils.getDataKind(methodData).isString())
                method = JavaReflectUtils.getMethod(className, methodData.wStringValue(), ReflectionFactory.getClassLoader(bm));
            else
                method = (Method) methodData.wGetValue();
            Object[] arguments = toArguments(method.getParameterTypes(), method.isVarArgs(), argsEntities);
            Object resultValue = JavaReflectUtils.invokeMethod(null, method, arguments);
            setResult(bm, resultVariable, resultValue, method.getReturnType());
        }
    }, runnableIterators).withSourceEntity(entity));
}
Also used : Variable(org.whole.lang.workflows.model.Variable) IEntity(org.whole.lang.model.IEntity) IBindingManager(org.whole.lang.bindings.IBindingManager) Expressions(org.whole.lang.workflows.model.Expressions) InvokeJavaClassMethod(org.whole.lang.workflows.model.InvokeJavaClassMethod) InvokeJavaInstanceMethod(org.whole.lang.workflows.model.InvokeJavaInstanceMethod) Method(java.lang.reflect.Method) IEntityIterator(org.whole.lang.iterators.IEntityIterator)

Example 2 with InvokeJavaClassMethod

use of org.whole.lang.workflows.model.InvokeJavaClassMethod in project whole by wholeplatform.

the class WorkflowsInterpreterVisitor method visit.

@Override
public void visit(InvokeJavaClassMethod entity) {
    try {
        entity.getClassName().accept(this);
        String className = getResultString();
        entity.getMethod().accept(this);
        IEntity methodData = getResult();
        Method method;
        if (DataTypeUtils.getDataKind(methodData).isString())
            method = JavaReflectUtils.getMethod(className, methodData.wStringValue(), ReflectionFactory.getClassLoader(getBindings()));
        else
            method = (Method) methodData.wGetValue();
        Object[] arguments = toArguments(method.getParameterTypes(), method.isVarArgs(), entity.getArguments());
        Object resultValue = JavaReflectUtils.invokeMethod(null, method, arguments);
        setResult(entity.getResult(), resultValue, method.getReturnType());
    } catch (Exception e) {
        throw IWholeRuntimeException.asWholeException(e, entity, getBindings());
    }
}
Also used : IEntity(org.whole.lang.model.IEntity) InvokeJavaClassMethod(org.whole.lang.workflows.model.InvokeJavaClassMethod) InvokeJavaInstanceMethod(org.whole.lang.workflows.model.InvokeJavaInstanceMethod) Method(java.lang.reflect.Method) MissingVariableException(org.whole.lang.visitors.MissingVariableException) IOException(java.io.IOException) IWholeRuntimeException(org.whole.lang.exceptions.IWholeRuntimeException) VisitException(org.whole.lang.visitors.VisitException) ParseException(org.whole.lang.parsers.ParseException) WholeIllegalArgumentException(org.whole.lang.exceptions.WholeIllegalArgumentException)

Example 3 with InvokeJavaClassMethod

use of org.whole.lang.workflows.model.InvokeJavaClassMethod in project whole by wholeplatform.

the class InvokeJavaClassMethodPart method refreshVisuals.

@Override
protected void refreshVisuals() {
    InvokeJavaClassMethod entity = getModelEntity();
    Expression e = entity.getMethod();
    String name = Matcher.matchImpl(WorkflowsEntityDescriptorEnum.StringLiteral, e) ? e.wStringValue() : "?";
    int endIndex = name.indexOf('(');
    if (endIndex > 0)
        name = name.substring(0, endIndex);
    getFigure().setMethodName(name);
    super.refreshVisuals();
}
Also used : InvokeJavaClassMethod(org.whole.lang.workflows.model.InvokeJavaClassMethod) Expression(org.whole.lang.workflows.model.Expression)

Example 4 with InvokeJavaClassMethod

use of org.whole.lang.workflows.model.InvokeJavaClassMethod in project whole by wholeplatform.

the class InvokeJavaClassMethodPart method getModelSpecificChildren.

protected List<IEntity> getModelSpecificChildren() {
    InvokeJavaClassMethod entity = getModelEntity();
    List<IEntity> children = new ArrayList<IEntity>(6);
    children.add(entity.getLabel());
    children.add(entity.getClassName());
    children.add(entity.getMethod());
    // children.add(entity.getTypeArguments());
    children.add(entity.getArguments());
    children.add(entity.getResult());
    return children;
}
Also used : InvokeJavaClassMethod(org.whole.lang.workflows.model.InvokeJavaClassMethod) IEntity(org.whole.lang.model.IEntity) ArrayList(java.util.ArrayList)

Aggregations

InvokeJavaClassMethod (org.whole.lang.workflows.model.InvokeJavaClassMethod)4 IEntity (org.whole.lang.model.IEntity)3 Method (java.lang.reflect.Method)2 InvokeJavaInstanceMethod (org.whole.lang.workflows.model.InvokeJavaInstanceMethod)2 IOException (java.io.IOException)1 ArrayList (java.util.ArrayList)1 IBindingManager (org.whole.lang.bindings.IBindingManager)1 IWholeRuntimeException (org.whole.lang.exceptions.IWholeRuntimeException)1 WholeIllegalArgumentException (org.whole.lang.exceptions.WholeIllegalArgumentException)1 IEntityIterator (org.whole.lang.iterators.IEntityIterator)1 ParseException (org.whole.lang.parsers.ParseException)1 MissingVariableException (org.whole.lang.visitors.MissingVariableException)1 VisitException (org.whole.lang.visitors.VisitException)1 Expression (org.whole.lang.workflows.model.Expression)1 Expressions (org.whole.lang.workflows.model.Expressions)1 Variable (org.whole.lang.workflows.model.Variable)1