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.
com.github.lontime.shaded.org.redisson.RedissonKeys Maven / Gradle / Ivy
/**
* 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;
import com.github.lontime.shaded.org.redisson.api.RFuture;
import com.github.lontime.shaded.org.redisson.api.RKeys;
import com.github.lontime.shaded.org.redisson.api.RObject;
import com.github.lontime.shaded.org.redisson.api.RType;
import com.github.lontime.shaded.org.redisson.client.RedisClient;
import com.github.lontime.shaded.org.redisson.client.RedisException;
import com.github.lontime.shaded.org.redisson.client.codec.StringCodec;
import com.github.lontime.shaded.org.redisson.client.protocol.RedisCommand;
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.command.CommandBatchService;
import com.github.lontime.shaded.org.redisson.connection.ConnectionManager;
import com.github.lontime.shaded.org.redisson.connection.MasterSlaveEntry;
import com.github.lontime.shaded.org.redisson.iterator.RedissonBaseIterator;
import com.github.lontime.shaded.org.redisson.misc.CompletableFutureWrapper;
import com.github.lontime.shaded.org.redisson.misc.CompositeIterable;
import com.github.lontime.shaded.org.redisson.reactive.CommandReactiveBatchService;
import com.github.lontime.shaded.org.redisson.rx.CommandRxBatchService;
import java.util.*;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
/**
*
* @author Nikita Koksharov
*
*/
public class RedissonKeys implements RKeys {
private final CommandAsyncExecutor commandExecutor;
public RedissonKeys(CommandAsyncExecutor commandExecutor) {
super();
this.commandExecutor = commandExecutor;
}
public CommandAsyncExecutor getCommandExecutor() {
return commandExecutor;
}
public ConnectionManager getConnectionManager() {
return commandExecutor.getConnectionManager();
}
@Override
public RType getType(String key) {
return commandExecutor.get(getTypeAsync(key));
}
@Override
public RFuture getTypeAsync(String key) {
return commandExecutor.readAsync(key, RedisCommands.TYPE, key);
}
@Override
public int getSlot(String key) {
return commandExecutor.get(getSlotAsync(key));
}
@Override
public RFuture getSlotAsync(String key) {
return commandExecutor.readAsync(null, RedisCommands.KEYSLOT, key);
}
@Override
public Iterable getKeysByPattern(String pattern) {
return getKeysByPattern(pattern, 10);
}
@Override
public Iterable getKeysByPattern(String pattern, int count) {
return getKeysByPattern(RedisCommands.SCAN, pattern, 0, count);
}
public Iterable getKeysByPattern(RedisCommand> command, String pattern, int limit, int count) {
List> iterables = new ArrayList<>();
for (MasterSlaveEntry entry : commandExecutor.getConnectionManager().getEntrySet()) {
Iterable iterable = new Iterable() {
@Override
public Iterator iterator() {
return createKeysIterator(entry, command, pattern, count);
}
};
iterables.add(iterable);
}
return new CompositeIterable(iterables, limit);
}
@Override
public Iterable getKeysWithLimit(int limit) {
return getKeysWithLimit(null, limit);
}
@Override
public Iterable getKeysWithLimit(String pattern, int limit) {
return getKeysByPattern(RedisCommands.SCAN, pattern, limit, limit);
}
@Override
public Iterable getKeys() {
return getKeysByPattern(null);
}
@Override
public Iterable getKeys(int count) {
return getKeysByPattern(null, count);
}
public RFuture> scanIteratorAsync(RedisClient client, MasterSlaveEntry entry, RedisCommand> command, long startPos,
String pattern, int count) {
if (pattern == null) {
return commandExecutor.readAsync(client, entry, StringCodec.INSTANCE, command, startPos, "COUNT",
count);
}
return commandExecutor.readAsync(client, entry, StringCodec.INSTANCE, command, startPos, "MATCH",
pattern, "COUNT", count);
}
public RFuture> scanIteratorAsync(RedisClient client, MasterSlaveEntry entry, long startPos,
String pattern, int count) {
return scanIteratorAsync(client, entry, RedisCommands.SCAN, startPos, pattern, count);
}
private Iterator createKeysIterator(MasterSlaveEntry entry, RedisCommand> command, String pattern, int count) {
return new RedissonBaseIterator() {
@Override
protected ScanResult iterator(RedisClient client, long nextIterPos) {
return commandExecutor
.get(RedissonKeys.this.scanIteratorAsync(client, entry, command, nextIterPos, pattern, count));
}
@Override
protected void remove(Object value) {
RedissonKeys.this.delete((String) value);
}
};
}
@Override
public long touch(String... names) {
return commandExecutor.get(touchAsync(names));
}
@Override
public RFuture touchAsync(String... names) {
if (names.length == 0) {
return new CompletableFutureWrapper<>(0L);
}
return commandExecutor.writeBatchedAsync(null, RedisCommands.TOUCH_LONG, new SlotCallback() {
AtomicLong results = new AtomicLong();
@Override
public void onSlotResult(Long result) {
results.addAndGet(result);
}
@Override
public Long onFinish() {
return results.get();
}
}, names);
}
@Override
public long countExists(String... names) {
return commandExecutor.get(countExistsAsync(names));
}
@Override
public RFuture countExistsAsync(String... names) {
List> futures = commandExecutor.readAllAsync(RedisCommands.EXISTS_LONG, names);
CompletableFuture f = CompletableFuture.allOf(futures.toArray(new CompletableFuture[0]));
CompletableFuture s = f.thenApply(r -> futures.stream().mapToLong(v -> v.getNow(0L)).sum());
return new CompletableFutureWrapper<>(s);
}
@Override
public String randomKey() {
return commandExecutor.get(randomKeyAsync());
}
@Override
public RFuture randomKeyAsync() {
return commandExecutor.readRandomAsync(StringCodec.INSTANCE, RedisCommands.RANDOM_KEY);
}
@Override
public long deleteByPattern(String pattern) {
return commandExecutor.get(deleteByPatternAsync(pattern));
}
@Override
public RFuture deleteByPatternAsync(String pattern) {
if (commandExecutor instanceof CommandBatchService
|| commandExecutor instanceof CommandReactiveBatchService
|| commandExecutor instanceof CommandRxBatchService) {
if (getConnectionManager().isClusterMode()) {
throw new IllegalStateException("This method doesn't work in batch for Redis cluster mode. For Redis cluster execute it as non-batch method");
}
return commandExecutor.evalWriteAsync((String) null, null, RedisCommands.EVAL_LONG,
"local keys = redis.call('keys', ARGV[1]) "
+ "local n = 0 "
+ "for i=1, #keys,5000 do "
+ "n = n + redis.call('del', unpack(keys, i, math.min(i+4999, table.getn(keys)))) "
+ "end "
+ "return n;", Collections.emptyList(), pattern);
}
int batchSize = 500;
List> futures = new ArrayList<>();
for (MasterSlaveEntry entry : commandExecutor.getConnectionManager().getEntrySet()) {
CompletableFuture future = new CompletableFuture<>();
futures.add(future);
commandExecutor.getConnectionManager().getExecutor().execute(() -> {
long count = 0;
try {
Iterator keysIterator = createKeysIterator(entry, RedisCommands.SCAN, pattern, batchSize);
List keys = new ArrayList<>();
while (keysIterator.hasNext()) {
String key = keysIterator.next();
keys.add(key);
if (keys.size() % batchSize == 0) {
count += delete(keys.toArray(new String[0]));
keys.clear();
}
}
if (!keys.isEmpty()) {
count += delete(keys.toArray(new String[0]));
keys.clear();
}
future.complete(count);
} catch (Exception e) {
future.completeExceptionally(e);
}
});
}
CompletableFuture future = CompletableFuture.allOf(futures.toArray(new CompletableFuture[0]));
CompletableFuture res = future.handle((r, e) -> {
long cc = futures.stream()
.filter(f -> f.isDone())
.mapToLong(f -> f.getNow(0L))
.sum();
if (e != null) {
if (cc > 0) {
RedisException ex = new RedisException(
cc + " keys have been deleted. But one or more nodes has an error", e);
throw new CompletionException(ex);
} else {
throw new CompletionException(e);
}
}
return cc;
});
return new CompletableFutureWrapper<>(res);
}
@Override
public long delete(String... keys) {
return commandExecutor.get(deleteAsync(keys));
}
@Override
public long delete(RObject... objects) {
return commandExecutor.get(deleteAsync(objects));
}
@Override
public RFuture deleteAsync(RObject... objects) {
List keys = new ArrayList();
for (RObject obj : objects) {
keys.add(((RedissonObject) obj).getRawName());
}
return deleteAsync(keys.toArray(new String[keys.size()]));
}
@Override
public long unlink(String... keys) {
return commandExecutor.get(unlinkAsync(keys));
}
@Override
public RFuture unlinkAsync(String... keys) {
if (keys.length == 0) {
return new CompletableFutureWrapper<>(0L);
}
return commandExecutor.writeBatchedAsync(null, RedisCommands.UNLINK, new SlotCallback() {
AtomicLong results = new AtomicLong();
@Override
public void onSlotResult(Long result) {
results.addAndGet(result);
}
@Override
public Long onFinish() {
return results.get();
}
}, keys);
}
@Override
public RFuture deleteAsync(String... keys) {
if (keys.length == 0) {
return new CompletableFutureWrapper<>(0L);
}
return commandExecutor.writeBatchedAsync(null, RedisCommands.DEL, new SlotCallback() {
AtomicLong results = new AtomicLong();
@Override
public void onSlotResult(Long result) {
results.addAndGet(result);
}
@Override
public Long onFinish() {
return results.get();
}
}, keys);
}
@Override
public long count() {
return commandExecutor.get(countAsync());
}
@Override
public RFuture countAsync() {
List> futures = commandExecutor.readAllAsync(RedisCommands.DBSIZE);
CompletableFuture f = CompletableFuture.allOf(futures.toArray(new CompletableFuture[0]));
CompletableFuture s = f.thenApply(r -> futures.stream().mapToLong(v -> v.getNow(0L)).sum());
return new CompletableFutureWrapper<>(s);
}
@Override
public void flushdbParallel() {
commandExecutor.get(flushdbParallelAsync());
}
@Override
public RFuture flushdbParallelAsync() {
return commandExecutor.writeAllVoidAsync(RedisCommands.FLUSHDB_ASYNC);
}
@Override
public void flushallParallel() {
commandExecutor.get(flushallParallelAsync());
}
@Override
public RFuture flushallParallelAsync() {
return commandExecutor.writeAllVoidAsync(RedisCommands.FLUSHALL_ASYNC);
}
@Override
public void flushdb() {
commandExecutor.get(flushdbAsync());
}
@Override
public RFuture flushdbAsync() {
return commandExecutor.writeAllVoidAsync(RedisCommands.FLUSHDB);
}
@Override
public void flushall() {
commandExecutor.get(flushallAsync());
}
@Override
public RFuture flushallAsync() {
return commandExecutor.writeAllVoidAsync(RedisCommands.FLUSHALL);
}
@Override
public long remainTimeToLive(String name) {
return commandExecutor.get(remainTimeToLiveAsync(name));
}
@Override
public RFuture remainTimeToLiveAsync(String name) {
return commandExecutor.readAsync(name, StringCodec.INSTANCE, RedisCommands.PTTL, name);
}
@Override
public void rename(String currentName, String newName) {
commandExecutor.get(renameAsync(currentName, newName));
}
@Override
public RFuture renameAsync(String currentName, String newName) {
return commandExecutor.writeAsync(currentName, RedisCommands.RENAME, currentName, newName);
}
@Override
public boolean renamenx(String oldName, String newName) {
return commandExecutor.get(renamenxAsync(oldName, newName));
}
@Override
public RFuture renamenxAsync(String oldName, String newName) {
return commandExecutor.writeAsync(oldName, RedisCommands.RENAMENX, oldName, newName);
}
@Override
public boolean clearExpire(String name) {
return commandExecutor.get(clearExpireAsync(name));
}
@Override
public RFuture clearExpireAsync(String name) {
return commandExecutor.writeAsync(name, StringCodec.INSTANCE, RedisCommands.PERSIST, name);
}
@Override
public boolean expireAt(String name, long timestamp) {
return commandExecutor.get(expireAtAsync(name, timestamp));
}
@Override
public RFuture expireAtAsync(String name, long timestamp) {
return commandExecutor.writeAsync(name, StringCodec.INSTANCE, RedisCommands.PEXPIREAT, name, timestamp);
}
@Override
public boolean expire(String name, long timeToLive, TimeUnit timeUnit) {
return commandExecutor.get(expireAsync(name, timeToLive, timeUnit));
}
@Override
public RFuture expireAsync(String name, long timeToLive, TimeUnit timeUnit) {
return commandExecutor.writeAsync(name, StringCodec.INSTANCE, RedisCommands.PEXPIRE, name,
timeUnit.toMillis(timeToLive));
}
@Override
public void migrate(String name, String host, int port, int database, long timeout) {
commandExecutor.get(migrateAsync(name, host, port, database, timeout));
}
@Override
public RFuture migrateAsync(String name, String host, int port, int database, long timeout) {
return commandExecutor.writeAsync(name, RedisCommands.MIGRATE, host, port, name, database, timeout);
}
@Override
public void copy(String name, String host, int port, int database, long timeout) {
commandExecutor.get(copyAsync(name, host, port, database, timeout));
}
@Override
public RFuture copyAsync(String name, String host, int port, int database, long timeout) {
return commandExecutor.writeAsync(name, RedisCommands.MIGRATE, host, port, name, database, timeout, "COPY");
}
@Override
public boolean move(String name, int database) {
return commandExecutor.get(moveAsync(name, database));
}
@Override
public RFuture moveAsync(String name, int database) {
return commandExecutor.writeAsync(name, RedisCommands.MOVE, name, database);
}
@Override
public Stream getKeysStreamByPattern(String pattern) {
return toStream(getKeysByPattern(pattern).iterator());
}
protected Stream toStream(Iterator iterator) {
Spliterator spliterator = Spliterators.spliteratorUnknownSize(iterator, Spliterator.NONNULL);
return StreamSupport.stream(spliterator, false);
}
@Override
public Stream getKeysStreamByPattern(String pattern, int count) {
return toStream(getKeysByPattern(pattern, count).iterator());
}
@Override
public Stream getKeysStream() {
return toStream(getKeys().iterator());
}
@Override
public Stream getKeysStream(int count) {
return toStream(getKeys(count).iterator());
}
@Override
public void swapdb(int db1, int db2) {
commandExecutor.get(swapdbAsync(db1, db2));
}
@Override
public RFuture swapdbAsync(int db1, int db2) {
return commandExecutor.writeAsync(null, RedisCommands.SWAPDB, db1, db2);
}
}