CavalliumDBEngine/src/main/java/it/cavallium/dbengine/database/LLKeyValueDatabase.java

69 lines
2.4 KiB
Java
Raw Normal View History

2020-12-07 22:15:18 +01:00
package it.cavallium.dbengine.database;
import com.google.common.primitives.Ints;
import com.google.common.primitives.Longs;
import io.micrometer.core.instrument.MeterRegistry;
2022-03-16 13:47:56 +01:00
import io.netty5.buffer.api.BufferAllocator;
2022-01-15 20:00:10 +01:00
import it.cavallium.dbengine.client.MemoryStats;
import it.cavallium.dbengine.database.collections.DatabaseInt;
2021-02-05 20:34:58 +01:00
import it.cavallium.dbengine.database.collections.DatabaseLong;
2022-05-04 01:21:56 +02:00
import it.cavallium.dbengine.rpc.current.data.Column;
2020-12-07 22:15:18 +01:00
import java.nio.charset.StandardCharsets;
2022-05-04 01:21:56 +02:00
import java.util.Map;
2022-03-20 14:33:27 +01:00
import org.jetbrains.annotations.Nullable;
2022-04-09 02:45:42 +02:00
import reactor.core.publisher.Flux;
2021-01-31 15:47:48 +01:00
import reactor.core.publisher.Mono;
2020-12-07 22:15:18 +01:00
2022-05-04 01:21:56 +02:00
public interface LLKeyValueDatabase extends LLSnapshottable, LLKeyValueDatabaseStructure, DatabaseProperties {
2020-12-07 22:15:18 +01:00
2022-03-20 14:33:27 +01:00
Mono<? extends LLSingleton> getSingleton(byte[] singletonListColumnName, byte[] name, byte @Nullable[] defaultValue);
2020-12-07 22:15:18 +01:00
2021-02-13 01:31:24 +01:00
Mono<? extends LLDictionary> getDictionary(byte[] columnName, UpdateMode updateMode);
2020-12-07 22:15:18 +01:00
2021-01-31 15:47:48 +01:00
@Deprecated
2021-02-13 01:31:24 +01:00
default Mono<? extends LLDictionary> getDeprecatedSet(String name, UpdateMode updateMode) {
2022-03-02 12:34:30 +01:00
return getDictionary(ColumnUtils.deprecatedSet(name).name().getBytes(StandardCharsets.US_ASCII), updateMode);
2020-12-07 22:15:18 +01:00
}
2021-02-13 01:31:24 +01:00
default Mono<? extends LLDictionary> getDictionary(String name, UpdateMode updateMode) {
2022-03-02 12:34:30 +01:00
return getDictionary(ColumnUtils.dictionary(name).name().getBytes(StandardCharsets.US_ASCII), updateMode);
2020-12-07 22:15:18 +01:00
}
2022-03-20 14:33:27 +01:00
default Mono<? extends LLSingleton> getSingleton(String singletonListName, String name) {
return getSingleton(ColumnUtils.special(singletonListName).name().getBytes(StandardCharsets.US_ASCII),
name.getBytes(StandardCharsets.US_ASCII),
null
);
}
2021-01-31 15:47:48 +01:00
default Mono<DatabaseInt> getInteger(String singletonListName, String name, int defaultValue) {
return this
2022-03-02 12:34:30 +01:00
.getSingleton(ColumnUtils.special(singletonListName).name().getBytes(StandardCharsets.US_ASCII),
2021-01-31 15:47:48 +01:00
name.getBytes(StandardCharsets.US_ASCII),
Ints.toByteArray(defaultValue)
)
.map(DatabaseInt::new);
2020-12-07 22:15:18 +01:00
}
2021-02-05 20:34:58 +01:00
default Mono<DatabaseLong> getLong(String singletonListName, String name, long defaultValue) {
2021-01-31 15:47:48 +01:00
return this
2022-03-02 12:34:30 +01:00
.getSingleton(ColumnUtils.special(singletonListName).name().getBytes(StandardCharsets.US_ASCII),
2021-01-31 15:47:48 +01:00
name.getBytes(StandardCharsets.US_ASCII),
Longs.toByteArray(defaultValue)
)
2021-02-05 20:34:58 +01:00
.map(DatabaseLong::new);
2020-12-07 22:15:18 +01:00
}
2021-06-27 15:06:48 +02:00
Mono<Void> verifyChecksum();
Mono<Void> compact();
Mono<Void> flush();
2021-08-29 23:18:03 +02:00
BufferAllocator getAllocator();
2021-05-03 21:41:51 +02:00
MeterRegistry getMeterRegistry();
2021-01-31 19:52:47 +01:00
Mono<Void> close();
2020-12-07 22:15:18 +01:00
}