blob: 20bfd5f90779165954d816e9e729e6777c92d155 [file] [log] [blame]
/*
* Copyright 2015 Open Networking Laboratory
*
* 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 org.onosproject.store.consistent.impl;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import org.onosproject.store.service.AsyncAtomicValue;
import org.onosproject.store.service.AtomicValue;
import org.onosproject.store.service.AtomicValueEventListener;
import org.onosproject.store.service.StorageException;
import com.google.common.util.concurrent.Futures;
/**
* Default implementation of {@link AtomicValue}.
*
* @param <V> value type
*/
public class DefaultAtomicValue<V> implements AtomicValue<V> {
private static final int OPERATION_TIMEOUT_MILLIS = 5000;
private final AsyncAtomicValue<V> asyncValue;
public DefaultAtomicValue(AsyncAtomicValue<V> asyncValue) {
this.asyncValue = asyncValue;
}
@Override
public boolean compareAndSet(V expect, V update) {
return complete(asyncValue.compareAndSet(expect, update));
}
@Override
public V get() {
return complete(asyncValue.get());
}
@Override
public V getAndSet(V value) {
return complete(asyncValue.getAndSet(value));
}
@Override
public void set(V value) {
complete(asyncValue.set(value));
}
@Override
public void addListener(AtomicValueEventListener<V> listener) {
complete(asyncValue.addListener(listener));
}
@Override
public void removeListener(AtomicValueEventListener<V> listener) {
complete(asyncValue.removeListener(listener));
}
private static <V> V complete(CompletableFuture<V> future) {
return Futures.getChecked(future, StorageException.class, OPERATION_TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
}
}