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

47 lines
1.7 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 it.cavallium.dbengine.database.collections.DatabaseInt;
2021-02-05 20:34:58 +01:00
import it.cavallium.dbengine.database.collections.DatabaseLong;
2020-12-07 22:15:18 +01:00
import java.nio.charset.StandardCharsets;
2021-01-31 15:47:48 +01:00
import reactor.core.publisher.Mono;
2020-12-07 22:15:18 +01:00
2021-01-31 19:52:47 +01:00
public interface LLKeyValueDatabase extends LLSnapshottable, LLKeyValueDatabaseStructure {
2020-12-07 22:15:18 +01:00
2021-01-31 15:47:48 +01:00
Mono<? extends LLSingleton> getSingleton(byte[] singletonListColumnName, byte[] name, byte[] 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) {
return getDictionary(Column.deprecatedSet(name).getName().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) {
return getDictionary(Column.dictionary(name).getName().getBytes(StandardCharsets.US_ASCII), updateMode);
2020-12-07 22:15:18 +01:00
}
2021-01-31 15:47:48 +01:00
default Mono<DatabaseInt> getInteger(String singletonListName, String name, int defaultValue) {
return this
.getSingleton(Column.special(singletonListName).getName().getBytes(StandardCharsets.US_ASCII),
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
.getSingleton(Column.special(singletonListName).getName().getBytes(StandardCharsets.US_ASCII),
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-01-31 15:47:48 +01:00
Mono<Long> getProperty(String propertyName);
2021-01-31 19:52:47 +01:00
Mono<Void> close();
2020-12-07 22:15:18 +01:00
}