2021-01-30 22:14:48 +01:00
|
|
|
package it.cavallium.dbengine.database.collections;
|
2020-12-07 22:15:18 +01:00
|
|
|
|
|
|
|
import com.google.common.primitives.Ints;
|
|
|
|
import it.cavallium.dbengine.database.LLKeyValueDatabaseStructure;
|
|
|
|
import it.cavallium.dbengine.database.LLSingleton;
|
|
|
|
import it.cavallium.dbengine.database.LLSnapshot;
|
2022-03-20 14:33:27 +01:00
|
|
|
import it.cavallium.dbengine.database.serialization.SerializationException;
|
|
|
|
import it.cavallium.dbengine.database.serialization.SerializerFixedBinaryLength;
|
2020-12-07 22:15:18 +01:00
|
|
|
import org.jetbrains.annotations.Nullable;
|
2021-01-30 10:52:14 +01:00
|
|
|
import reactor.core.publisher.Mono;
|
2020-12-07 22:15:18 +01:00
|
|
|
|
2021-01-31 00:36:21 +01:00
|
|
|
public class DatabaseInt implements LLKeyValueDatabaseStructure {
|
2020-12-07 22:15:18 +01:00
|
|
|
|
|
|
|
private final LLSingleton singleton;
|
2022-03-20 14:33:27 +01:00
|
|
|
private final SerializerFixedBinaryLength<Integer> serializer;
|
2020-12-07 22:15:18 +01:00
|
|
|
|
2021-01-31 00:36:21 +01:00
|
|
|
public DatabaseInt(LLSingleton singleton) {
|
2020-12-07 22:15:18 +01:00
|
|
|
this.singleton = singleton;
|
2022-03-20 14:33:27 +01:00
|
|
|
this.serializer = SerializerFixedBinaryLength.intSerializer(singleton.getAllocator());
|
2020-12-07 22:15:18 +01:00
|
|
|
}
|
|
|
|
|
2021-01-30 10:52:14 +01:00
|
|
|
public Mono<Integer> get(@Nullable LLSnapshot snapshot) {
|
2022-03-20 14:33:27 +01:00
|
|
|
return singleton.get(snapshot).handle((dataSend, sink) -> {
|
|
|
|
try (var data = dataSend.receive()) {
|
|
|
|
sink.next(serializer.deserialize(data));
|
|
|
|
} catch (SerializationException e) {
|
|
|
|
sink.error(e);
|
|
|
|
}
|
|
|
|
});
|
2020-12-07 22:15:18 +01:00
|
|
|
}
|
|
|
|
|
2021-01-30 10:52:14 +01:00
|
|
|
public Mono<Void> set(int value) {
|
2022-03-20 14:33:27 +01:00
|
|
|
return singleton.set(Mono.fromCallable(() -> {
|
|
|
|
try (var buf = singleton.getAllocator().allocate(Integer.BYTES)) {
|
|
|
|
serializer.serialize(value, buf);
|
|
|
|
return buf.send();
|
|
|
|
}
|
|
|
|
}));
|
2020-12-07 22:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getDatabaseName() {
|
|
|
|
return singleton.getDatabaseName();
|
|
|
|
}
|
|
|
|
}
|