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.
125 lines
3.4 KiB
125 lines
3.4 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.NoSuchElementException;
|
||
7 years ago
|
import java.util.concurrent.TimeUnit;
|
||
|
|
||
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.api.RQueue;
|
||
|
import com.fr.third.org.redisson.api.RedissonClient;
|
||
|
import com.fr.third.org.redisson.client.codec.Codec;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisCommands;
|
||
|
import com.fr.third.org.redisson.api.RFuture;
|
||
|
import com.fr.third.org.redisson.api.RQueue;
|
||
|
import com.fr.third.org.redisson.api.RedissonClient;
|
||
|
import com.fr.third.org.redisson.client.codec.Codec;
|
||
|
import com.fr.third.org.redisson.client.protocol.RedisCommands;
|
||
|
import com.fr.third.org.redisson.command.CommandAsyncExecutor;
|
||
7 years ago
|
|
||
|
/**
|
||
|
* Distributed and concurrent implementation of {@link java.util.Queue}
|
||
|
*
|
||
|
* @author Nikita Koksharov
|
||
|
*
|
||
|
* @param <V> the type of elements held in this collection
|
||
|
*/
|
||
|
public class RedissonQueue<V> extends RedissonList<V> implements RQueue<V> {
|
||
|
|
||
7 years ago
|
protected RedissonQueue(CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson) {
|
||
|
super(commandExecutor, name, redisson);
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
protected RedissonQueue(Codec codec, CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson) {
|
||
|
super(codec, commandExecutor, name, redisson);
|
||
7 years ago
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean offer(V e) {
|
||
7 years ago
|
return get(offerAsync(e));
|
||
7 years ago
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<Boolean> offerAsync(V e) {
|
||
7 years ago
|
return addAsync(e);
|
||
|
}
|
||
|
|
||
|
public V getFirst() {
|
||
|
V value = getValue(0);
|
||
|
if (value == null) {
|
||
|
throw new NoSuchElementException();
|
||
|
}
|
||
|
return value;
|
||
|
}
|
||
|
|
||
|
public V removeFirst() {
|
||
|
V value = poll();
|
||
|
if (value == null) {
|
||
|
throw new NoSuchElementException();
|
||
|
}
|
||
|
return value;
|
||
|
}
|
||
7 years ago
|
|
||
|
protected long toSeconds(long timeout, TimeUnit unit) {
|
||
|
long seconds = unit.toSeconds(timeout);
|
||
|
if (timeout != 0 && seconds == 0) {
|
||
|
seconds = 1;
|
||
|
}
|
||
|
return seconds;
|
||
|
}
|
||
|
|
||
7 years ago
|
@Override
|
||
|
public V remove() {
|
||
|
return removeFirst();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<V> pollAsync() {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), codec, RedisCommands.LPOP, getName());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public V poll() {
|
||
|
return get(pollAsync());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public V element() {
|
||
|
return getFirst();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<V> peekAsync() {
|
||
7 years ago
|
return getAsync(0);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public V peek() {
|
||
|
return getValue(0);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public V pollLastAndOfferFirstTo(String queueName) {
|
||
|
return get(pollLastAndOfferFirstToAsync(queueName));
|
||
|
}
|
||
|
|
||
|
@Override
|
||
7 years ago
|
public RFuture<V> pollLastAndOfferFirstToAsync(String queueName) {
|
||
7 years ago
|
return commandExecutor.writeAsync(getName(), codec, RedisCommands.RPOPLPUSH, getName(), queueName);
|
||
|
}
|
||
|
|
||
|
}
|