Package io.permazen.kv.raft
Class RaftKVImplementation
java.lang.Object
io.permazen.kv.raft.RaftKVImplementation
- All Implemented Interfaces:
KVImplementation<RaftKVImplementation.Config>
public class RaftKVImplementation
extends Object
implements KVImplementation<RaftKVImplementation.Config>
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addOptions
(joptsimple.OptionParser parser) Add implementation-specific command line options.buildConfig
(joptsimple.OptionSet options) Build a configuration from implementation-specific command line options, if any were given.createKVDatabase
(RaftKVImplementation.Config config, KVDatabase kvdb, AtomicKVStore kvstore) Create anKVDatabase
using the specified configuration.Generate a short, human-readable description of theKVDatabase
instance configured as given.boolean
Determine whether thisKVImplementation
includes an implementation of theKVDatabase
interface.boolean
Determine whether this instance'sKVDatabase
implementation requires an underlyingAtomicKVStore
.boolean
Determine whether this instance'sKVDatabase
implementation requires some other underlyingKVDatabase
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.permazen.kv.KVImplementation
createAtomicKVStore, getConfigType, providesAtomicKVStore
-
Constructor Details
-
RaftKVImplementation
public RaftKVImplementation()
-
-
Method Details
-
addOptions
public void addOptions(joptsimple.OptionParser parser) Description copied from interface:KVImplementation
Add implementation-specific command line options.All of the added options must be optional, because multiple key/value implementations will be available when the command line is parsed, and the presence of implementation-specific options determines which one(s) are chosen.
- Specified by:
addOptions
in interfaceKVImplementation<RaftKVImplementation.Config>
- Parameters:
parser
- command line flag parser
-
buildConfig
Description copied from interface:KVImplementation
Build a configuration from implementation-specific command line options, if any were given.If none of this implementation's options were provided, then this method must return null.
- Specified by:
buildConfig
in interfaceKVImplementation<RaftKVImplementation.Config>
- Parameters:
options
- parsed command line options- Returns:
- corresponding configuration, or null if this implementation was not configured
-
providesKVDatabase
Description copied from interface:KVImplementation
Determine whether thisKVImplementation
includes an implementation of theKVDatabase
interface.The implementation in
KVImplementation
return false.- Specified by:
providesKVDatabase
in interfaceKVImplementation<RaftKVImplementation.Config>
- Parameters:
config
- implementation configuration returned bybuildConfig()
- Returns:
- true if this instance can create an
KVDatabase
-
createKVDatabase
public KVDatabase createKVDatabase(RaftKVImplementation.Config config, KVDatabase kvdb, AtomicKVStore kvstore) Description copied from interface:KVImplementation
Create anKVDatabase
using the specified configuration.The implementation in
KVImplementation
always throwsUnsupportedOperationException
.- Specified by:
createKVDatabase
in interfaceKVImplementation<RaftKVImplementation.Config>
- Parameters:
config
- implementation configuration returned bybuildConfig()
kvdb
- requiredKVDatabase
; will be null unlessKVImplementation.requiresKVDatabase(C)
returned truekvstore
- requiredAtomicKVStore
; will be null unlessKVImplementation.requiresAtomicKVStore(C)
returned true- Returns:
- new
KVDatabase
instance
-
requiresAtomicKVStore
Description copied from interface:KVImplementation
Determine whether this instance'sKVDatabase
implementation requires an underlyingAtomicKVStore
.This method and
requiresKVDatabase()
may not both return true.The implementation in
KVImplementation
return false.- Specified by:
requiresAtomicKVStore
in interfaceKVImplementation<RaftKVImplementation.Config>
- Parameters:
config
- implementation configuration returned bybuildConfig()
- Returns:
- true if the implementation relies on an underlying
AtomicKVStore
-
requiresKVDatabase
Description copied from interface:KVImplementation
Determine whether this instance'sKVDatabase
implementation requires some other underlyingKVDatabase
.This method and
requiresAtomicKVStore()
may not both return true.The implementation in
KVImplementation
return false.- Specified by:
requiresKVDatabase
in interfaceKVImplementation<RaftKVImplementation.Config>
- Parameters:
config
- implementation configuration returned bybuildConfig()
- Returns:
- true if the implementation relies on an underlying
KVDatabase
-
getDescription
Description copied from interface:KVImplementation
Generate a short, human-readable description of theKVDatabase
instance configured as given.- Specified by:
getDescription
in interfaceKVImplementation<RaftKVImplementation.Config>
- Parameters:
config
- implementation configuration returned bybuildConfig()
- Returns:
- human-readable description
-