kg.apc.jmeter.functions.FifoPut Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-standard Show documentation
Show all versions of jmeter-plugins-standard Show documentation
Custom plugins set for Apache JMeter
package kg.apc.jmeter.functions;
import kg.apc.jmeter.modifiers.FifoMap;
import org.apache.jmeter.engine.util.CompoundVariable;
import org.apache.jmeter.functions.AbstractFunction;
import org.apache.jmeter.functions.InvalidVariableException;
import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.samplers.Sampler;
import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
public class FifoPut extends AbstractFunction {
private static final List desc = new LinkedList();
private static final String KEY = "__fifoPut";
static {
desc.add("Queue name to put value");
desc.add("String value to put into FIFO queue");
}
private Object[] values;
public FifoPut() {
FifoMap.getInstance().clear();
}
@Override
public synchronized String execute(SampleResult previousResult, Sampler currentSampler)
throws InvalidVariableException {
String fifoName = ((CompoundVariable) values[0]).execute();
String value = ((CompoundVariable) values[1]).execute();
try {
FifoMap.getInstance().put(fifoName, value);
} catch (InterruptedException ex) {
value = "INTERRUPTED";
}
return value;
}
@Override
public synchronized void setParameters(Collection parameters) throws InvalidVariableException {
checkMinParameterCount(parameters, 2);
values = parameters.toArray();
}
@Override
public String getReferenceKey() {
return KEY;
}
@Override
public List getArgumentDesc() {
return desc;
}
}