Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.infinispan.server.resp.commands.connection.MEMORY Maven / Gradle / Ivy
package org.infinispan.server.resp.commands.connection;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletionStage;
import org.infinispan.security.AuthorizationPermission;
import org.infinispan.server.resp.Resp3Handler;
import org.infinispan.server.resp.RespCommand;
import org.infinispan.server.resp.RespErrorUtil;
import org.infinispan.server.resp.RespRequestHandler;
import org.infinispan.server.resp.commands.Resp3Command;
import org.infinispan.server.resp.serialization.ByteBufferUtils;
import org.infinispan.server.resp.serialization.JavaObjectSerializer;
import org.infinispan.server.resp.serialization.Resp3Response;
import org.infinispan.server.resp.serialization.RespConstants;
import io.netty.channel.ChannelHandlerContext;
/**
* MEMORY
*
* @since 15.0
*/
public class MEMORY extends RespCommand implements Resp3Command {
private static final JavaObjectSerializer> SERIALIZER = (res, alloc) -> {
ByteBufferUtils.writeNumericPrefix(RespConstants.MAP, res.size(), alloc);
for (Map.Entry entry : res.entrySet()) {
Resp3Response.simpleString(entry.getKey(), alloc);
Number v = entry.getValue();
if (v instanceof Double) {
Resp3Response.doubles(v, alloc);
} else {
Resp3Response.integers(v, alloc);
}
}
};
public MEMORY() {
super(-2, 0, 0, 0);
}
@Override
public CompletionStage perform(Resp3Handler handler, ChannelHandlerContext ctx,
List arguments) {
handler.checkPermission(AuthorizationPermission.ADMIN);
String subcommand = new String(arguments.get(0), StandardCharsets.US_ASCII).toUpperCase();
switch (subcommand) {
case "STATS":
// Map mixes integer and double values.
Resp3Response.write(generateMemoryStats(), handler.allocator(), SERIALIZER);
break;
case "USAGE":
if (arguments.size() < 2) {
RespErrorUtil.wrongArgumentCount(this, handler.allocator());
return handler.myStage();
} else {
byte[] key = arguments.get(1);
return handler.stageToReturn(handler.cache().getAsync(key).thenApply(v ->
v == null ? null : (long) (key.length + v.length + 14) / 8 * 8),
ctx, Resp3Response.INTEGER);
}
case "DOCTOR":
case "MALLOC-STATS":
case "PURGE":
RespErrorUtil.customError("module loading/unloading unsupported", handler.allocator());
break;
}
return handler.myStage();
}
private static Map generateMemoryStats() {
Map collector = new HashMap<>();
collector.put("peak.allocated", 0);
collector.put("total.allocated", 0);
collector.put("startup.allocated", 0);
collector.put("replication.backlog", 0);
collector.put("clients.slaves", 0);
collector.put("clients.normal", 0);
collector.put("cluster.links", 0);
collector.put("aof.buffer", 0);
collector.put("lua.caches", 0);
collector.put("functions.caches", 0);
collector.put("overhead.total", 0);
collector.put("keys.count", 0);
collector.put("keys.bytes-per-key", 0);
collector.put("dataset.bytes", 0);
collector.put("dataset.percentage", 0d);
collector.put("peak.percentage", 0d);
collector.put("allocator.allocated", 0);
collector.put("allocator.active", 0);
collector.put("allocator.resident", 0);
collector.put("allocator-fragmentation.ratio", 0d);
collector.put("allocator-fragmentation.bytes", 0);
collector.put("allocator-rss.ratio", 0d);
collector.put("allocator-rss.bytes", 0);
collector.put("rss-overhead.ratio", 0d);
collector.put("rss-overhead.bytes", 0);
collector.put("fragmentation", 0d);
collector.put("fragmentation.bytes", 0);
return collector;
}
}