org.jsimpledb.kv.util.UnmodifiableKVStore Maven / Gradle / Ivy
Show all versions of jsimpledb-kv Show documentation
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.kv.util;
import com.google.common.base.Preconditions;
import org.jsimpledb.kv.KVStore;
/**
* Provides a read-only view of an underlying {@link KVStore}.
*
*
* Attempts to invoke any of the mutating {@link KVStore} methods result in an {@link UnsupportedOperationException}.
*/
public class UnmodifiableKVStore extends ForwardingKVStore {
private final KVStore kvstore;
/**
* Constructor.
*
* @param kvstore the underlying {@link KVStore}
* @throws IllegalArgumentException if {@code kvstore} is null
*/
public UnmodifiableKVStore(KVStore kvstore) {
Preconditions.checkArgument(kvstore != null, "null kvstore");
this.kvstore = kvstore;
}
@Override
protected KVStore delegate() {
return this.kvstore;
}
// KVStore
@Override
public void put(byte[] key, byte[] value) {
throw new UnsupportedOperationException("KVStore is read-only");
}
@Override
public void remove(byte[] key) {
throw new UnsupportedOperationException("KVStore is read-only");
}
@Override
public void removeRange(byte[] minKey, byte[] maxKey) {
throw new UnsupportedOperationException("KVStore is read-only");
}
@Override
public void adjustCounter(byte[] key, long amount) {
throw new UnsupportedOperationException("KVStore is read-only");
}
}