org.infinispan.server.resp.commands.hash.HGETALL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-resp Show documentation
Show all versions of infinispan-server-resp Show documentation
Infinispan Resp Protocol Server
The newest version!
package org.infinispan.server.resp.commands.hash;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletionStage;
import org.infinispan.multimap.impl.EmbeddedMultimapPairCache;
import org.infinispan.server.resp.ByteBufferUtils;
import org.infinispan.server.resp.Resp3Handler;
import org.infinispan.server.resp.RespCommand;
import org.infinispan.server.resp.RespRequestHandler;
import org.infinispan.server.resp.commands.Resp3Command;
import io.netty.channel.ChannelHandlerContext;
/**
* `HGETALL key
` command.
*
* Returns the key-value pairs in the hash map stored at the given key.
*
*
* @since 15.0
* @see Redis Documentation
* @author José Bolina
*/
public class HGETALL extends RespCommand implements Resp3Command {
public HGETALL() {
super(2, 1, 1, 1);
}
@Override
public CompletionStage perform(Resp3Handler handler, ChannelHandlerContext ctx, List arguments) {
EmbeddedMultimapPairCache hashMap = handler.getHashMapMultimap();
CompletionStage> cs = hashMap.get(arguments.get(0))
.thenApply(res -> {
if (res == null) return null;
List keyValues = new ArrayList<>(res.size() * 2);
for (Map.Entry entry : res.entrySet()) {
keyValues.add(entry.getKey());
keyValues.add(entry.getValue());
}
return keyValues;
});
return handler.stageToReturn(cs, ctx, ByteBufferUtils::bytesToResult);
}
}