All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bstek.urule.model.flow.Connection Maven / Gradle / Ivy

There is a newer version: 2.1.7
Show newest version
/*******************************************************************************
 * Copyright 2017 Bstek
 * 
 * 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 com.bstek.urule.model.flow;

import java.util.List;

import org.codehaus.jackson.annotate.JsonIgnore;

import com.bstek.urule.model.flow.ins.FlowContext;
import com.bstek.urule.model.flow.ins.FlowInstance;
import com.bstek.urule.model.rule.Library;
import com.bstek.urule.model.rule.LibraryType;
import com.bstek.urule.runtime.KnowledgePackageWrapper;
import com.bstek.urule.runtime.KnowledgeSession;
import com.bstek.urule.runtime.KnowledgeSessionFactory;

/**
 * @author Jacky.gao
 * @since 2015年2月28日
 */
public class Connection {
	public static final String RETURN_VALUE_KEY="return_value__";
	private String name;
	private String toName;
	private String script;
	private String g;
	private KnowledgePackageWrapper knowledgePackageWrapper;
	@JsonIgnore
	private FlowNode to;
	public boolean evaluate(FlowContext context){
		if(knowledgePackageWrapper==null){
			return true;
		}
		KnowledgeSession parentSession=(KnowledgeSession)context.getWorkingMemory();
		List facts=parentSession.getAllFacts();
		KnowledgeSession session=KnowledgeSessionFactory.newKnowledgeSession(knowledgePackageWrapper.getKnowledgePackage(),context.getDebugMessageItems());
		for(Object fact:facts){
			session.insert(fact);
		}
		session.fireRules(context.getVariables());
		Object result=session.getParameter(Connection.RETURN_VALUE_KEY);
		if(result==null){
			return false;
		}
		return Boolean.valueOf(result.toString());
	}
	
	public void buildDeserialize(){
		if(knowledgePackageWrapper!=null){
			knowledgePackageWrapper.buildDeserialize();
		}
	}
	
	public void execute(FlowContext context,FlowInstance instance){
		to.enter(context, instance);
	}
	
	public String buildDSLScript(List libraries){
		StringBuffer sb=new StringBuffer();
		if(libraries!=null){
			for(Library lib:libraries){
				String path=lib.getPath();
				if(lib.getVersion()!=null){
					path+=":"+lib.getVersion();
				}
				LibraryType type=lib.getType();
				switch(type){
				case Action:
					sb.append("importActionLibrary \""+path+"\"");
					sb.append("\r\n");
					break;
				case Constant:
					sb.append("importConstantLibrary \""+path+"\"");
					sb.append("\r\n");
					break;
				case Parameter:
					sb.append("importParameterLibrary \""+path+"\"");
					sb.append("\r\n");
					break;
				case Variable:
					sb.append("importVariableLibrary \""+path+"\"");
					sb.append("\r\n");
					break;
				}
			}
		}
		sb.append("rule \"conn\"");
		sb.append("\r\n");
		sb.append("if");
		sb.append("\r\n");
		sb.append(script);
		sb.append("\r\n");
		sb.append("then");
		sb.append("\r\n");
		sb.append("parameter."+RETURN_VALUE_KEY+"=true");
		sb.append("\r\n");
		sb.append("end");
		return sb.toString();
	}
	
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}

	public String getToName() {
		return toName;
	}

	public void setToName(String toName) {
		this.toName = toName;
	}

	public FlowNode getTo() {
		return to;
	}

	public void setTo(FlowNode to) {
		this.to = to;
	}

	public String getScript() {
		return script;
	}

	public void setScript(String script) {
		this.script = script;
	}

	public KnowledgePackageWrapper getKnowledgePackageWrapper() {
		return knowledgePackageWrapper;
	}
	public void setKnowledgePackageWrapper(KnowledgePackageWrapper knowledgePackageWrapper) {
		this.knowledgePackageWrapper = knowledgePackageWrapper;
	}

	public String getG() {
		return g;
	}

	public void setG(String g) {
		this.g = g;
	}
}