com.github.lontime.shaded.org.redisson.remote.BaseRemoteProxy Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2013-2021 Nikita Koksharov
*
* 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.github.lontime.shaded.org.redisson.remote;
import io.netty.util.concurrent.ScheduledFuture;
import com.github.lontime.shaded.org.redisson.RedissonBlockingQueue;
import com.github.lontime.shaded.org.redisson.RedissonShutdownException;
import com.github.lontime.shaded.org.redisson.api.RBlockingQueue;
import com.github.lontime.shaded.org.redisson.api.RFuture;
import com.github.lontime.shaded.org.redisson.api.RemoteInvocationOptions;
import com.github.lontime.shaded.org.redisson.client.codec.Codec;
import com.github.lontime.shaded.org.redisson.client.codec.LongCodec;
import com.github.lontime.shaded.org.redisson.client.protocol.RedisCommands;
import com.github.lontime.shaded.org.redisson.command.CommandAsyncExecutor;
import com.github.lontime.shaded.org.redisson.remote.ResponseEntry.Result;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.*;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit;
import java.util.function.BiConsumer;
/**
*
* @author Nikita Koksharov
*
*/
public abstract class BaseRemoteProxy {
private final Logger log = LoggerFactory.getLogger(getClass());
final CommandAsyncExecutor commandExecutor;
private final String name;
final String responseQueueName;
private final Map responses;
final Codec codec;
final String executorId;
final BaseRemoteService remoteService;
BaseRemoteProxy(CommandAsyncExecutor commandExecutor, String name, String responseQueueName,
Map responses, Codec codec, String executorId, BaseRemoteService remoteService) {
super();
this.commandExecutor = commandExecutor;
this.name = name;
this.responseQueueName = responseQueueName;
this.responses = responses;
this.codec = codec;
this.executorId = executorId;
this.remoteService = remoteService;
}
private final Map, String> requestQueueNameCache = new ConcurrentHashMap<>();
public String getRequestQueueName(Class> remoteInterface) {
return requestQueueNameCache.computeIfAbsent(remoteInterface, k -> "{" + name + ":" + k.getName() + "}");
}
protected CompletionStage tryPollAckAgainAsync(RemoteInvocationOptions optionsCopy,
String ackName, String requestId) {
RFuture ackClientsFuture = commandExecutor.evalWriteNoRetryAsync(ackName, LongCodec.INSTANCE, RedisCommands.EVAL_BOOLEAN,
"if redis.call('setnx', KEYS[1], 1) == 1 then "
+ "redis.call('pexpire', KEYS[1], ARGV[1]);"
+ "return 0;"
+ "end;"
+ "redis.call('del', KEYS[1]);"
+ "return 1;",
Arrays.asList(ackName), optionsCopy.getAckTimeoutInMillis());
return ackClientsFuture.thenCompose(res -> {
if (res) {
return pollResponse(commandExecutor.getConnectionManager().getConfig().getTimeout(), requestId, true);
}
return CompletableFuture.completedFuture(null);
});
}
protected final CompletableFuture pollResponse(long timeout,
String requestId, boolean insertFirst) {
CompletableFuture responseFuture = new CompletableFuture();
ResponseEntry entry;
synchronized (responses) {
entry = responses.computeIfAbsent(responseQueueName, k -> new ResponseEntry());
addCancelHandling(requestId, responseFuture);
ScheduledFuture> responseTimeoutFuture = createResponseTimeout(timeout, requestId, responseFuture);
Map> entryResponses = entry.getResponses();
List list = entryResponses.computeIfAbsent(requestId, k -> new ArrayList<>(3));
Result res = new Result(responseFuture, responseTimeoutFuture);
if (insertFirst) {
list.add(0, res);
} else {
list.add(res);
}
}
if (entry.getStarted().compareAndSet(false, true)) {
pollResponse();
}
return responseFuture;
}
private ScheduledFuture> createResponseTimeout(long timeout, String requestId, CompletableFuture responseFuture) {
return commandExecutor.getConnectionManager().getGroup().schedule(new Runnable() {
@Override
public void run() {
synchronized (responses) {
ResponseEntry entry = responses.get(responseQueueName);
if (entry == null) {
return;
}
RemoteServiceTimeoutException ex = new RemoteServiceTimeoutException("No response after " + timeout + "ms");
if (!responseFuture.completeExceptionally(ex)) {
return;
}
List list = entry.getResponses().get(requestId);
list.remove(0);
if (list.isEmpty()) {
entry.getResponses().remove(requestId);
}
if (entry.getResponses().isEmpty()) {
responses.remove(responseQueueName, entry);
}
}
}
}, timeout, TimeUnit.MILLISECONDS);
}
private void addCancelHandling(String requestId, CompletableFuture responseFuture) {
responseFuture.whenComplete((res, ex) -> {
if (!responseFuture.isCancelled()) {
return;
}
synchronized (responses) {
ResponseEntry e = responses.get(responseQueueName);
List list = e.getResponses().get(requestId);
if (list == null) {
return;
}
for (Iterator iterator = list.iterator(); iterator.hasNext();) {
Result result = iterator.next();
if (result.getPromise() == responseFuture) {
result.getResponseTimeoutFuture().cancel(true);
iterator.remove();
}
}
if (list.isEmpty()) {
e.getResponses().remove(requestId);
}
if (e.getResponses().isEmpty()) {
responses.remove(responseQueueName, e);
}
}
});
}
private void pollResponse() {
RBlockingQueue queue = new RedissonBlockingQueue<>(codec, commandExecutor, responseQueueName);
RFuture future = queue.pollAsync(60, TimeUnit.SECONDS);
future.whenComplete(createResponseListener());
}
private BiConsumer createResponseListener() {
return (response, e) -> {
if (e != null) {
if (e instanceof RedissonShutdownException) {
return;
}
log.error("Can't get response from " + responseQueueName, e);
return;
}
CompletableFuture promise;
synchronized (responses) {
ResponseEntry entry = responses.get(responseQueueName);
if (entry == null) {
return;
}
if (response == null) {
pollResponse();
return;
}
String key = response.getId();
List list = entry.getResponses().get(key);
if (list == null) {
pollResponse();
return;
}
Result res = list.remove(0);
if (list.isEmpty()) {
entry.getResponses().remove(key);
}
promise = res.getPromise();
res.getResponseTimeoutFuture().cancel(true);
if (entry.getResponses().isEmpty()) {
responses.remove(responseQueueName, entry);
} else {
pollResponse();
}
}
if (promise != null) {
promise.complete(response);
}
};
}
}