org.infinispan.server.resp.commands.connection.SELECT 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.connection;
import java.nio.charset.StandardCharsets;
import java.util.List;
import java.util.concurrent.CompletionStage;
import org.infinispan.Cache;
import org.infinispan.commons.CacheException;
import org.infinispan.commons.dataconversion.MediaType;
import org.infinispan.server.core.transport.ConnectionMetadata;
import org.infinispan.server.resp.ByteBufferUtils;
import org.infinispan.server.resp.Consumers;
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;
/**
* @link SELECT
* @since 14.0
*/
public class SELECT extends RespCommand implements Resp3Command {
public SELECT() {
super(-1, 0, 0, 0);
}
@Override
public CompletionStage perform(Resp3Handler handler,
ChannelHandlerContext ctx,
List arguments) {
String db = new String(arguments.get(0), StandardCharsets.US_ASCII);
try {
Cache cache = handler.respServer().getCacheManager().getCache(db);
ConnectionMetadata metadata = ConnectionMetadata.getInstance(ctx.channel());
handler.setCache(cache.getAdvancedCache().withSubject(metadata.subject()).withMediaType(MediaType.APPLICATION_OCTET_STREAM, MediaType.APPLICATION_OCTET_STREAM));
metadata.cache(cache.getName());
Consumers.OK_BICONSUMER.accept(null, handler.allocator());
} catch (CacheException e) {
ByteBufferUtils.stringToByteBuf("-ERR DB index is out of range\r\n", handler.allocator());
}
return handler.myStage();
}
}