com.alogic.cache.xscript.CacheSetExist Maven / Gradle / Ivy
package com.alogic.cache.xscript;
import java.util.Map;
import org.apache.commons.lang3.BooleanUtils;
import org.apache.commons.lang3.StringUtils;
import com.alogic.cache.CacheObject;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;
/**
* 查询Set中是否存在某成员
*
* @author yyduan
*
*/
public class CacheSetExist extends CacheObjectOperation{
/**
* 分组
*/
protected String $group = CacheObject.DEFAULT_GROUP;
/**
* 输出变量id
*/
protected String $id;
/**
* 成员
*/
protected String $member;
public CacheSetExist(String tag, Logiclet p) {
super(tag, p);
}
@Override
public void configure(Properties p){
super.configure(p);
$id = PropertiesConstants.getRaw(p, "id", "$" + getXmlTag());
$group = PropertiesConstants.getRaw(p, "group", $group);
$member = PropertiesConstants.getRaw(p, "member", $member);
}
@Override
protected void onExecute(CacheObject cache, Map root,
Map current, LogicletContext ctx,
ExecuteWatcher watcher) {
String id = PropertiesConstants.transform(ctx, $id, "$" + getXmlTag());
if (StringUtils.isNotEmpty(id)){
ctx.SetValue(id, BooleanUtils.toStringTrueFalse(cache.sExist(
PropertiesConstants.transform(ctx, $group, CacheObject.DEFAULT_GROUP),
PropertiesConstants.transform(ctx, $member, ""))));
}
}
}