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

com.bstek.urule.parse.decisiontree.ActionTreeNodeParser 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.parse.decisiontree;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.dom4j.Element;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

import com.bstek.urule.action.Action;
import com.bstek.urule.model.decisiontree.ActionTreeNode;
import com.bstek.urule.model.decisiontree.TreeNodeType;
import com.bstek.urule.parse.ActionParser;
import com.bstek.urule.parse.Parser;

/**
 * @author Jacky.gao
 * @since 2016年2月26日
 */
public class ActionTreeNodeParser implements Parser,ApplicationContextAware {
	private Collection actionParsers;
	@Override
	public ActionTreeNode parse(Element element,boolean withPermission) {
		ActionTreeNode node=new ActionTreeNode();
		node.setNodeType(TreeNodeType.action);
		List actions=new ArrayList();
		for(Object obj:element.elements()){
			if(obj==null || !(obj instanceof Element)){
				continue;
			}
			Element ele=(Element)obj;
			String name=ele.getName();
			
			for(ActionParser actionParser:actionParsers){
				if(actionParser.support(name)){
					actions.add(actionParser.parse(ele,withPermission));
					break;
				}
			}
		}
		node.setActions(actions);
		return node;
	}
	
	@Override
	public boolean support(String name) {
		return name.equals("action-tree-node");
	}
	public void setApplicationContext(ApplicationContext context) throws BeansException {
		actionParsers=context.getBeansOfType(ActionParser.class).values();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy