com.logicbus.kvalue.xscript.hash.KVHExist Maven / Gradle / Ivy
package com.logicbus.kvalue.xscript.hash;
import java.util.Map;
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;
import com.logicbus.kvalue.core.HashRow;
import com.logicbus.kvalue.core.KeyValueRow;
import com.logicbus.kvalue.xscript.KVRowOperation;
public class KVHExist extends KVRowOperation {
protected String key = "";
public KVHExist(String tag, Logiclet p) {
super(tag, p);
}
@Override
public void configure(Properties p){
super.configure(p);
key = PropertiesConstants.getRaw(p,"key",key);
}
@Override
protected void onExecute(KeyValueRow row, Map root, Map current,
LogicletContext ctx, ExecuteWatcher watcher) {
String keyList = ctx.transform(key);
if (row instanceof HashRow) {
HashRow r = (HashRow) row;
ctx.SetValue(id, String.valueOf(r.exists(keyList)));
}
}
}