
com.lambdaworks.redis.models.command.CommandDetailParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lettuce Show documentation
Show all versions of lettuce Show documentation
Advanced and thread-safe Java Redis client for synchronous, asynchronous, and
reactive usage. Supports Cluster, Sentinel, Pipelining, Auto-Reconnect, Codecs
and much more.
The newest version!
/*
* Copyright 2011-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.lambdaworks.redis.models.command;
import java.util.*;
import com.lambdaworks.redis.internal.LettuceAssert;
/**
* Parser for redis COMMAND/COMMAND INFOcommand output.
*
* @author Mark Paluch
* @since 3.0
*/
@SuppressWarnings("serial")
public class CommandDetailParser {
/**
* Number of array elements for a specific command.
*/
public static final int COMMAND_INFO_SIZE = 6;
@SuppressWarnings("serial")
protected static final Map FLAG_MAPPING;
static {
Map flagMap = new HashMap<>();
flagMap.put("admin", CommandDetail.Flag.ADMIN);
flagMap.put("asking", CommandDetail.Flag.ASKING);
flagMap.put("denyoom", CommandDetail.Flag.DENYOOM);
flagMap.put("fast", CommandDetail.Flag.FAST);
flagMap.put("loading", CommandDetail.Flag.LOADING);
flagMap.put("noscript", CommandDetail.Flag.NOSCRIPT);
flagMap.put("movablekeys", CommandDetail.Flag.MOVABLEKEYS);
flagMap.put("pubsub", CommandDetail.Flag.PUBSUB);
flagMap.put("random", CommandDetail.Flag.RANDOM);
flagMap.put("readonly", CommandDetail.Flag.READONLY);
flagMap.put("skip_monitor", CommandDetail.Flag.SKIP_MONITOR);
flagMap.put("sort_for_script", CommandDetail.Flag.SORT_FOR_SCRIPT);
flagMap.put("stale", CommandDetail.Flag.STALE);
flagMap.put("write", CommandDetail.Flag.WRITE);
FLAG_MAPPING = Collections.unmodifiableMap(flagMap);
}
private CommandDetailParser() {
}
/**
* Parse the output of the redis COMMAND/COMMAND INFO command and convert to a list of {@link CommandDetail}.
*
* @param commandOutput the command output, must not be {@literal null}
* @return RedisInstance
*/
public static List parse(List> commandOutput) {
LettuceAssert.notNull(commandOutput, "CommandOutput must not be null");
List result = new ArrayList<>();
for (Object o : commandOutput) {
if (!(o instanceof Collection>)) {
continue;
}
Collection> collection = (Collection>) o;
if (collection.size() != COMMAND_INFO_SIZE) {
continue;
}
CommandDetail commandDetail = parseCommandDetail(collection);
result.add(commandDetail);
}
return Collections.unmodifiableList(result);
}
private static CommandDetail parseCommandDetail(Collection> collection) {
Iterator> iterator = collection.iterator();
String name = (String) iterator.next();
int arity = Math.toIntExact(getLongFromIterator(iterator, 0));
Object flags = iterator.next();
int firstKey = Math.toIntExact(getLongFromIterator(iterator, 0));
int lastKey = Math.toIntExact(getLongFromIterator(iterator, 0));
int keyStepCount = Math.toIntExact(getLongFromIterator(iterator, 0));
Set parsedFlags = parseFlags(flags);
return new CommandDetail(name, arity, parsedFlags, firstKey, lastKey, keyStepCount);
}
private static Set parseFlags(Object flags) {
Set result = new HashSet<>();
if (flags instanceof Collection>) {
Collection> collection = (Collection>) flags;
for (Object o : collection) {
CommandDetail.Flag flag = FLAG_MAPPING.get(o);
if (flag != null) {
result.add(flag);
}
}
}
return Collections.unmodifiableSet(result);
}
private static long getLongFromIterator(Iterator> iterator, long defaultValue) {
if (iterator.hasNext()) {
Object object = iterator.next();
if (object instanceof String) {
return Long.parseLong((String) object);
}
if (object instanceof Number) {
return ((Number) object).longValue();
}
}
return defaultValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy