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

com.alogic.xscript.plugins.Formula Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.xscript.plugins;

import java.util.Map;

import org.apache.commons.lang3.StringUtils;

import com.alogic.xscript.util.MapProperties;
import com.alogic.xscript.AbstractLogiclet;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.anysoft.formula.DefaultFunctionHelper;
import com.anysoft.formula.Expression;
import com.anysoft.formula.Parser;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;

/**
 * 将指定公式的计算值设置到指定上下文变量
 * 
 * @author duanyy
 *
 */
public class Formula extends AbstractLogiclet {
	protected String id;
	protected Expression expr = null;
	protected String dftValue = "";
	
	public Formula(String tag, Logiclet p) {
		super(tag, p);
	}

	public void configure(Properties p){
		super.configure(p);
		
		id = PropertiesConstants.getString(p,"id","",true);
		
		String formula = PropertiesConstants.getString(p,"expr","",true);
		if (StringUtils.isNotEmpty(formula)){
			Parser parser = new Parser(new DefaultFunctionHelper(null));			
			expr = parser.parse(formula);
		}
	}

	@Override
	protected void onExecute(Map root,
			Map current, LogicletContext ctx, ExecuteWatcher watcher) {
		if (expr != null){
			MapProperties p = new MapProperties(current,ctx);
			try {
				String value = expr.getValue(p).toString();
				ctx.SetValue(id, value);
			}catch (Exception ex){
				
			}
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy