You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
182 lines
5.7 KiB
182 lines
5.7 KiB
7 years ago
|
/**
|
||
7 years ago
|
* Copyright 2018 Nikita Koksharov
|
||
7 years ago
|
*
|
||
|
* 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.
|
||
|
*/
|
||
7 years ago
|
package com.fr.third.org.redisson;
|
||
7 years ago
|
|
||
|
import java.util.Collections;
|
||
|
|
||
7 years ago
|
import com.fr.third.org.redisson.api.RAtomicLong;
|
||
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.client.codec.LongCodec;
|
||
|
import com.fr.third.org.redisson.client.codec.StringCodec;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisCommands;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisStrictCommand;
|
||
|
import com.fr.third.org.redisson.client.protocol.convertor.SingleConvertor;
|
||
|
import com.fr.third.org.redisson.api.RAtomicLong;
|
||
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.client.codec.LongCodec;
|
||
|
import com.fr.third.org.redisson.client.codec.StringCodec;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisCommands;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisStrictCommand;
|
||
|
import com.fr.third.org.redisson.client.protocol.convertor.SingleConvertor;
|
||
|
import com.fr.third.org.redisson.command.CommandAsyncExecutor;
|
||
7 years ago
|
|
||
|
/**
|
||
|
* Distributed alternative to the {@link java.util.concurrent.atomic.AtomicLong}
|
||
|
*
|
||
|
* @author Nikita Koksharov
|
||
|
*
|
||
|
*/
|
||
|
public class RedissonAtomicLong extends RedissonExpirable implements RAtomicLong {
|
||
|
|
||
7 years ago
|
public RedissonAtomicLong(CommandAsyncExecutor commandExecutor, String name) {
|
||
7 years ago
|
super(commandExecutor, name);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long addAndGet(long delta) {
|
||
|
return get(addAndGetAsync(delta));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> addAndGetAsync(long delta) {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), StringCodec.INSTANCE, RedisCommands.INCRBY, getName(), delta);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean compareAndSet(long expect, long update) {
|
||
|
return get(compareAndSetAsync(expect, update));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Boolean> compareAndSetAsync(long expect, long update) {
|
||
7 years ago
|
return commandExecutor.evalWriteAsync(getName(), StringCodec.INSTANCE, RedisCommands.EVAL_BOOLEAN,
|
||
|
"local currValue = redis.call('get', KEYS[1]); "
|
||
|
+ "if currValue == ARGV[1] "
|
||
|
+ "or (tonumber(ARGV[1]) == 0 and currValue == false) then "
|
||
|
+ "redis.call('set', KEYS[1], ARGV[2]); "
|
||
|
+ "return 1 "
|
||
|
+ "else "
|
||
|
+ "return 0 "
|
||
|
+ "end",
|
||
|
Collections.<Object>singletonList(getName()), expect, update);
|
||
|
}
|
||
7 years ago
|
|
||
|
@Override
|
||
|
public long getAndDelete() {
|
||
|
return get(getAndDeleteAsync());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public RFuture<Long> getAndDeleteAsync() {
|
||
|
return commandExecutor.evalWriteAsync(getName(), StringCodec.INSTANCE, RedisCommands.EVAL_LONG_SAFE,
|
||
|
"local currValue = redis.call('get', KEYS[1]); "
|
||
|
+ "redis.call('del', KEYS[1]); "
|
||
|
+ "return currValue; ",
|
||
|
Collections.<Object>singletonList(getName()));
|
||
|
}
|
||
7 years ago
|
|
||
|
@Override
|
||
|
public long decrementAndGet() {
|
||
|
return get(decrementAndGetAsync());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> decrementAndGetAsync() {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), StringCodec.INSTANCE, RedisCommands.DECR, getName());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long get() {
|
||
7 years ago
|
return get(getAsync());
|
||
7 years ago
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> getAsync() {
|
||
|
return commandExecutor.writeAsync(getName(), StringCodec.INSTANCE, RedisCommands.GET_LONG, getName());
|
||
7 years ago
|
}
|
||
|
|
||
|
@Override
|
||
|
public long getAndAdd(long delta) {
|
||
|
return get(getAndAddAsync(delta));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> getAndAddAsync(final long delta) {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), StringCodec.INSTANCE, new RedisStrictCommand<Long>("INCRBY", new SingleConvertor<Long>() {
|
||
|
@Override
|
||
|
public Long convert(Object obj) {
|
||
|
return ((Long) obj) - delta;
|
||
|
}
|
||
|
}), getName(), delta);
|
||
|
}
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public long getAndSet(long newValue) {
|
||
|
return get(getAndSetAsync(newValue));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> getAndSetAsync(long newValue) {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), LongCodec.INSTANCE, RedisCommands.GETSET, getName(), newValue);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long incrementAndGet() {
|
||
|
return get(incrementAndGetAsync());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> incrementAndGetAsync() {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), StringCodec.INSTANCE, RedisCommands.INCR, getName());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long getAndIncrement() {
|
||
|
return getAndAdd(1);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> getAndIncrementAsync() {
|
||
7 years ago
|
return getAndAddAsync(1);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public long getAndDecrement() {
|
||
|
return getAndAdd(-1);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Long> getAndDecrementAsync() {
|
||
7 years ago
|
return getAndAddAsync(-1);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void set(long newValue) {
|
||
|
get(setAsync(newValue));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Void> setAsync(long newValue) {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), StringCodec.INSTANCE, RedisCommands.SET, getName(), newValue);
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
return Long.toString(get());
|
||
|
}
|
||
|
|
||
|
}
|