use of org.apache.geode.redis.internal.RegionProvider in project geode by apache.
the class ExpireExecutor method executeCommand.
@Override
public void executeCommand(Command command, ExecutionHandlerContext context) {
List<byte[]> commandElems = command.getProcessedCommand();
if (commandElems.size() < 3) {
command.setResponse(Coder.getErrorResponse(context.getByteBufAllocator(), getArgsError()));
return;
}
ByteArrayWrapper wKey = command.getKey();
RegionProvider rC = context.getRegionProvider();
byte[] delayByteArray = commandElems.get(SECONDS_INDEX);
long delay;
try {
delay = Coder.bytesToLong(delayByteArray);
} catch (NumberFormatException e) {
command.setResponse(Coder.getErrorResponse(context.getByteBufAllocator(), ERROR_SECONDS_NOT_USABLE));
return;
}
if (delay <= 0) {
command.setResponse(Coder.getIntegerResponse(context.getByteBufAllocator(), NOT_SET));
return;
}
// If time unit given is not in millis convert to millis
if (!timeUnitMillis())
delay = delay * millisInSecond;
boolean expirationSet = false;
if (rC.hasExpiration(wKey))
expirationSet = rC.modifyExpiration(wKey, delay);
else
expirationSet = rC.setExpiration(wKey, delay);
if (expirationSet)
command.setResponse(Coder.getIntegerResponse(context.getByteBufAllocator(), SET));
else
command.setResponse(Coder.getIntegerResponse(context.getByteBufAllocator(), NOT_SET));
}
Aggregations