blob: 3f206215aaaa7f6b5b3f7d397255c2b51c7fb892 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.tuweni.kv
import kotlinx.coroutines.CoroutineScope
import org.apache.tuweni.concurrent.AsyncCompletion
import org.apache.tuweni.concurrent.AsyncResult
import org.apache.tuweni.concurrent.coroutines.asyncCompletion
import org.apache.tuweni.concurrent.coroutines.asyncResult
import java.io.Closeable
/**
* A key-value store.
*/
interface KeyValueStore<K, V> : Closeable, CoroutineScope {
/**
* Retrieves data from the store.
*
* @param key The key for the content.
* @return The stored data, or null if no data was stored under the specified key.
*/
suspend fun get(key: K): V?
/**
* Retrieves data from the store.
*
* @param key The key for the content.
* @return An [AsyncResult] that will complete with the stored content,
* or an empty optional if no content was available.
*/
fun getAsync(key: K): AsyncResult<V?> = asyncResult { get(key) }
/**
* Puts data into the store.
*
* @param key The key to associate with the data, for use when retrieving.
* @param value The data to store.
*/
suspend fun put(key: K, value: V)
/**
* Puts data into the store.
*
* Note: if the storage implementation already contains content for the given key, it does not need to replace the
* existing content.
*
* @param key The key to associate with the data, for use when retrieving.
* @param value The data to store.
* @return An [AsyncCompletion] that will complete when the content is stored.
*/
fun putAsync(key: K, value: V): AsyncCompletion = asyncCompletion { put(key, value) }
/**
* Provides an iterator over the keys of the store.
*
* @return An [Iterable] allowing to iterate over the set of keys.
*/
suspend fun keys(): Iterable<K>
/**
* Provides an iterator over the keys of the store.
*
* @return An [Iterable] allowing to iterate over the set of keys.
*/
fun keysAsync(): AsyncResult<Iterable<K>> = asyncResult { keys() }
/**
* Clears the contents of the store.
*/
suspend fun clear()
/**
* Clears the contents of the store.
* @return An [AsyncCompletion] that will complete when the content is cleared.
*/
fun clearAsync() = asyncCompletion { clear() }
}