com.alogic.xscript.plugins.Switch Maven / Gradle / Ivy
package com.alogic.xscript.plugins;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import com.alogic.xscript.doc.XsObject;
import com.alogic.xscript.AbstractLogiclet;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.anysoft.util.Properties;
import com.anysoft.util.XmlElementProperties;
/**
* 条件语句
* @author duanyy
*
* @version 1.6.8.14 [20170509 duanyy]
* - 增加xscript的中间文档模型,以便支持多种报文协议
*
*/
public class Switch extends AbstractLogiclet{
/**
* 子语句
*/
protected Map children = new HashMap();
protected String pattern = "";
public Switch(String tag, Logiclet p) {
super(tag, p);
}
@Override
public void configure(Element element, Properties props) {
XmlElementProperties p = new XmlElementProperties(element, props);
NodeList nodeList = element.getChildNodes();
for (int i = 0 ; i < nodeList.getLength() ; i ++){
Node n = nodeList.item(i);
if (n.getNodeType() != Node.ELEMENT_NODE){
//只处理Element节点
continue;
}
Element e = (Element)n;
String caseValue = e.getAttribute(STMT_CASE);
if (StringUtils.isNotEmpty(caseValue)){
String xmlTag = e.getNodeName();
Logiclet statement = createLogiclet(xmlTag, this);
if (statement != null){
statement.configure(e, p);
children.put(caseValue, statement);
}
}
}
pattern = p.GetValue("value", "", false, true);
configure(p);
}
@Override
protected void onExecute(XsObject root,XsObject current, LogicletContext ctx,
ExecuteWatcher watcher) {
String caseValue = "default";
if (StringUtils.isNotEmpty(pattern)){
caseValue = ctx.transform(pattern);
}
Logiclet stmt = children.get(caseValue);
if (stmt == null){
if (!caseValue.equals(STMT_DEFAULT)){
stmt = children.get(STMT_DEFAULT);
}
}
if (stmt != null){
stmt.execute(root, current, ctx, watcher);
}
}
}