/* * Copyright 2012 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.drools.workbench.screens.guided.rule.client.widget; import org.drools.workbench.models.datamodel.oracle.DataType; import org.drools.workbench.models.datamodel.oracle.MethodInfo; import org.drools.workbench.models.datamodel.oracle.ModelField; import org.drools.workbench.models.datamodel.rule.ExpressionCollection; import org.drools.workbench.models.datamodel.rule.ExpressionField; import org.drools.workbench.models.datamodel.rule.ExpressionFormLine; import org.drools.workbench.models.datamodel.rule.ExpressionGlobalVariable; import org.drools.workbench.models.datamodel.rule.ExpressionMethod; import org.drools.workbench.models.datamodel.rule.ExpressionMethodParameter; import org.drools.workbench.models.datamodel.rule.ExpressionPart; import org.kie.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle; import org.uberfire.client.callbacks.Callback; public class ExpressionPartHelper { public static void getExpressionPartForMethod( final AsyncPackageDataModelOracle oracle, final String factName, final String methodNameWithParams, final Callback<ExpressionPart> callback ) { //Ensure MethodInfo details for type have been loaded oracle.getMethodInfo( factName, methodNameWithParams, new Callback<MethodInfo>() { @Override public void callback( final MethodInfo mi ) { if ( DataType.TYPE_COLLECTION.equals( mi.getGenericType() ) ) { callback.callback( new ExpressionCollection( mi.getName(), mi.getReturnClassType(), mi.getGenericType(), mi.getParametricReturnType() ) ); } else { final ExpressionMethod em = new ExpressionMethod( mi.getName(), mi.getReturnClassType(), mi.getGenericType(), mi.getParametricReturnType() ); //Add applicable parameters for ( int index = 0; index < mi.getParams().size(); index++ ) { final String paramDataType = mi.getParams().get( index ); final ExpressionFormLine param = new ExpressionFormLine( index ); param.appendPart( new ExpressionMethodParameter( "", paramDataType, paramDataType ) ); em.putParam( paramDataType, param ); } callback.callback( em ); } } } ); } public static void getExpressionPartForField( final AsyncPackageDataModelOracle oracle, final String factName, final String fieldName, final Callback<ExpressionPart> callback ) { final String fieldClassName = oracle.getFieldClassName( factName, fieldName ); final String fieldGenericType = oracle.getFieldType( factName, fieldName ); //Ensure ModelField details for type have been loaded oracle.getFieldCompletions( fieldClassName, new Callback<ModelField[]>() { @Override public void callback( final ModelField[] result ) { if ( DataType.TYPE_COLLECTION.equals( fieldGenericType ) ) { String fieldParametricType = oracle.getParametricFieldType( factName, fieldName ); callback.callback( new ExpressionCollection( fieldName, fieldClassName, fieldGenericType, fieldParametricType ) ); } else { callback.callback( new ExpressionField( fieldName, fieldClassName, fieldGenericType ) ); } } } ); } public static void getExpressionPartForGlobalVariable( final AsyncPackageDataModelOracle oracle, final String varName, final Callback<ExpressionPart> callback ) { final String globalVarType = oracle.getGlobalVariable( varName ); //Ensure ModelField details for Global type have been loaded oracle.getFieldCompletions( globalVarType, new Callback<ModelField[]>() { @Override public void callback( final ModelField[] result ) { callback.callback( new ExpressionGlobalVariable( varName, globalVarType, globalVarType ) ); } } ); } }