blob: 8e8717c8e0447f96634e6b4c9e0e4e2164ae3d2c [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 io.lettuce.core.RedisClient
import io.lettuce.core.RedisURI
import io.lettuce.core.api.StatefulRedisConnection
import io.lettuce.core.api.async.RedisAsyncCommands
import io.lettuce.core.codec.RedisCodec
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.future.await
import org.apache.tuweni.bytes.Bytes
import java.net.InetAddress
import java.util.concurrent.CompletionStage
import kotlin.coroutines.CoroutineContext
/**
* A key-value store backed by Redis.
*
* @param uri The uri to the Redis store.
* @constructor Open a Redis-backed key-value store.
*/
class RedisKeyValueStore(
uri: String,
override val coroutineContext: CoroutineContext = Dispatchers.IO
) : KeyValueStore {
companion object {
/**
* Open a Redis-backed key-value store.
*
* @param uri The uri to the Redis store.
* @return A key-value store.
*/
@JvmStatic
fun open(uri: String) = RedisKeyValueStore(uri)
/**
* Open a Redis-backed key-value store.
*
* @param port The port for the Redis store.
* @return A key-value store.
*/
@JvmStatic
fun open(port: Int) = RedisKeyValueStore(port)
/**
* Open a Redis-backed key-value store.
*
* @param address The address for the Redis store.
* @return A key-value store.
*/
@JvmStatic
fun open(address: InetAddress) = RedisKeyValueStore(6379, address)
/**
* Open a Redis-backed key-value store.
*
* @param port The port for the Redis store.
* @param address The address for the Redis store.
* @return A key-value store.
*/
@JvmStatic
fun open(port: Int, address: InetAddress) = RedisKeyValueStore(port, address)
/**
* A [RedisCodec] for working with Bytes classes.
*
* @return A [RedisCodec] for working with Bytes classes.
*/
@JvmStatic
fun codec(): RedisCodec<Bytes, Bytes> = RedisBytesCodec()
}
private val conn: StatefulRedisConnection<Bytes, Bytes>
private val asyncCommands: RedisAsyncCommands<Bytes, Bytes>
/**
* Open a Redis-backed key-value store.
*
* @param port The port for the Redis store.
* @param address The address for the Redis store.
*/
@JvmOverloads
constructor(
port: Int = 6379,
address: InetAddress = InetAddress.getLoopbackAddress()
) : this(RedisURI.create(address.hostAddress, port).toURI().toString())
init {
val redisClient = RedisClient.create(uri)
conn = redisClient.connect(codec())
asyncCommands = conn.async()
}
override suspend fun get(key: Bytes): Bytes? = asyncCommands.get(key).await()
override suspend fun put(key: Bytes, value: Bytes) {
val future: CompletionStage<String> = asyncCommands.set(key, value)
future.await()
}
override suspend fun keys(): Iterable<Bytes> = asyncCommands.keys(Bytes.EMPTY).await()
override fun close() {
conn.close()
}
}