
com.lambdaworks.redis.cluster.ClusterCommand 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.cluster;
import com.lambdaworks.redis.RedisChannelWriter;
import com.lambdaworks.redis.protocol.CommandArgs;
import com.lambdaworks.redis.protocol.CommandKeyword;
import com.lambdaworks.redis.protocol.CommandWrapper;
import com.lambdaworks.redis.protocol.ProtocolKeyword;
import com.lambdaworks.redis.protocol.RedisCommand;
import io.netty.buffer.ByteBuf;
/**
* @author Mark Paluch
* @since 3.0
*/
class ClusterCommand extends CommandWrapper implements RedisCommand {
private int redirections;
private final int maxRedirections;
private final RedisChannelWriter retry;
private boolean completed;
/**
*
* @param command
* @param retry
* @param maxRedirections
*/
ClusterCommand(RedisCommand command, RedisChannelWriter retry, int maxRedirections) {
super(command);
this.retry = retry;
this.maxRedirections = maxRedirections;
}
@Override
public void complete() {
if (isMoved() || isAsk()) {
boolean retryCommand = maxRedirections > redirections;
redirections++;
if(retryCommand) {
try {
retry.write(this);
} catch (Exception e) {
completeExceptionally(e);
}
return;
}
}
super.complete();
completed = true;
}
public boolean isMoved() {
if (command.getOutput() != null && command.getOutput().getError() != null
&& command.getOutput().getError().startsWith(CommandKeyword.MOVED.name())) {
return true;
}
return false;
}
public boolean isAsk() {
if (getError() != null && getError().startsWith(CommandKeyword.ASK.name())) {
return true;
}
return false;
}
@Override
public CommandArgs getArgs() {
return command.getArgs();
}
@Override
public void encode(ByteBuf buf) {
command.encode(buf);
}
@Override
public boolean completeExceptionally(Throwable ex) {
boolean result = command.completeExceptionally(ex);
completed = true;
return result;
}
@Override
public ProtocolKeyword getType() {
return command.getType();
}
public boolean isCompleted() {
return completed;
}
@Override
public boolean isDone() {
return isCompleted();
}
public String getError() {
if (command.getOutput() != null) {
return command.getOutput().getError();
}
return null;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [command=").append(command);
sb.append(", redirections=").append(redirections);
sb.append(", maxRedirections=").append(maxRedirections);
sb.append(']');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy