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

com.bstek.urule.builder.table.CellContentBuilder 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.builder.table;

import java.util.List;

import com.bstek.urule.model.rule.lhs.And;
import com.bstek.urule.model.rule.lhs.Criteria;
import com.bstek.urule.model.rule.lhs.Criterion;
import com.bstek.urule.model.rule.lhs.Junction;
import com.bstek.urule.model.rule.lhs.Left;
import com.bstek.urule.model.rule.lhs.LeftType;
import com.bstek.urule.model.rule.lhs.Or;
import com.bstek.urule.model.rule.lhs.VariableLeftPart;
import com.bstek.urule.model.table.Cell;
import com.bstek.urule.model.table.Column;
import com.bstek.urule.model.table.Condition;
import com.bstek.urule.model.table.Joint;
import com.bstek.urule.model.table.JointType;

/**
 * @author Jacky.gao
 * @since 2015年1月20日
 */
public class CellContentBuilder {
	public Criterion buildCriterion(Cell cell,Column col){
		Joint joint=cell.getJoint();
		if(joint==null){
			return null;
		}
		List conditions=joint.getConditions();
		List joints=joint.getJoints();
		if((conditions==null || conditions.size()==0) && (joints==null || joints.size()==0)){
			return null;
		}
		Junction topJunction=null;
		if(conditions.size()==1){
			return newCriteria(col, conditions.get(0));
		}else{
			if(joint.getType().equals(JointType.and)){
				topJunction=new And();
			}else{
				topJunction=new Or();
			}
			buildConditionsCriterion(conditions, topJunction, col);
			buildJointsCriterion(joints, col, topJunction);
			return topJunction;
		}
	}
	private void buildJointsCriterion(List joints,Column col,Junction parentJunction){
		if(joints==null || joints.size()==0){
			return;
		}
		for(Joint joint:joints){
			Junction junction=joint.getJunction();
			List conditions=joint.getConditions();
			buildConditionsCriterion(conditions,junction,col);
			List children=joint.getJoints();
			buildJointsCriterion(children,col,junction);
			parentJunction.addCriterion(junction);
		}
	}
	private void buildConditionsCriterion(List conditions,Junction junction,Column col){
		if(conditions==null || conditions.size()==0){
			return;
		}
		for(Condition condition:conditions){
			Criteria criteria = newCriteria(col, condition);
			junction.addCriterion(criteria);
		}
	}
	private Criteria newCriteria(Column col, Condition condition) {
		Criteria criteria=new Criteria();
		Left left=new Left();
		VariableLeftPart part=new VariableLeftPart();
		part.setVariableCategory(col.getVariableCategory());
		part.setVariableName(col.getVariableName());
		part.setVariableLabel(col.getVariableLabel());
		part.setDatatype(col.getDatatype());
		left.setLeftPart(part);
		left.setType(LeftType.variable);
		criteria.setLeft(left);
		criteria.setOp(condition.getOp());
		criteria.setValue(condition.getValue());
		return criteria;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy