/* * Copyright 2010 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.core.base.mvel; import org.drools.core.common.InternalWorkingMemory; import org.drools.core.definitions.InternalKnowledgePackage; import org.drools.core.definitions.rule.impl.RuleImpl; import org.drools.core.rule.Declaration; import org.drools.core.rule.MVELDialectRuntimeData; import org.drools.core.spi.Tuple; import org.drools.core.util.MVELSafeHelper; import org.kie.api.definition.rule.Rule; import org.mvel2.integration.VariableResolverFactory; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.io.Serializable; public class MVELObjectExpression implements MVELCompileable, Externalizable { private static final long serialVersionUID = 510l; private MVELCompilationUnit unit; private String id; private Serializable expr; public MVELObjectExpression() { } public MVELObjectExpression(final MVELCompilationUnit unit, final String id) { this.unit = unit; this.id = id; } public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { unit = (MVELCompilationUnit) in.readObject(); id = in.readUTF(); } public void writeExternal(ObjectOutput out) throws IOException { out.writeObject( unit ); out.writeUTF( id ); } public MVELCompilationUnit getMVELCompilationUnit() { return this.unit; } public void compile(MVELDialectRuntimeData runtimeData) { expr = unit.getCompiledExpression( runtimeData ); } public void compile( MVELDialectRuntimeData runtimeData, RuleImpl rule ) { expr = unit.getCompiledExpression( runtimeData, rule.toRuleNameAndPathString() ); } public Object getValue(final Tuple leftTuple, final Declaration[] declrs, final Rule rule, final InternalWorkingMemory wm) { VariableResolverFactory factory = unit.getFactory( null, declrs, rule, null, leftTuple, null, wm, wm.getGlobalResolver() ); // do we have any functions for this namespace? InternalKnowledgePackage pkg = wm.getKnowledgeBase().getPackage( "MAIN" ); if ( pkg != null ) { MVELDialectRuntimeData data = (MVELDialectRuntimeData) pkg.getDialectRuntimeRegistry().getDialectData( this.id ); factory.setNextFactory( data.getFunctionFactory() ); } return MVELSafeHelper.getEvaluator().executeExpression(this.expr, factory); } public String toString() { return this.unit.getExpression(); } }