Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.2 KiB
112 lines
3.2 KiB
2 years ago
|
// Copyright (c) 2022-2023 Niko Bonnieure, Par le Peuple, NextGraph.org developers
|
||
|
// Licensed under the Apache License, Version 2.0
|
||
2 years ago
|
// <LICENSE-APACHE2 or http://www.apache.org/licenses/LICENSE-2.0>
|
||
2 years ago
|
// or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
|
||
|
// at your option. All files in the project carrying such
|
||
|
// notice may not be copied, modified, or distributed except
|
||
|
// according to those terms.
|
||
|
|
||
2 years ago
|
use crate::store::StorageError;
|
||
2 years ago
|
|
||
2 years ago
|
pub trait WriteTransaction: ReadTransaction {
|
||
2 years ago
|
/// Save a property value to the store.
|
||
|
fn put(
|
||
|
&mut self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
value: &Vec<u8>,
|
||
|
) -> Result<(), StorageError>;
|
||
|
|
||
|
/// Replace the property of a key (single value) to the store.
|
||
|
fn replace(
|
||
|
&mut self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
value: &Vec<u8>,
|
||
|
) -> Result<(), StorageError>;
|
||
|
|
||
|
/// Delete a property from the store.
|
||
|
fn del(&mut self, prefix: u8, key: &Vec<u8>, suffix: Option<u8>) -> Result<(), StorageError>;
|
||
|
|
||
|
/// Delete all properties of a key from the store.
|
||
2 years ago
|
fn del_all(
|
||
|
&mut self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
all_suffixes: &[u8],
|
||
|
) -> Result<(), StorageError>;
|
||
2 years ago
|
|
||
|
/// Delete a specific value for a property from the store.
|
||
|
fn del_property_value(
|
||
|
&mut self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
value: &Vec<u8>,
|
||
|
) -> Result<(), StorageError>;
|
||
|
}
|
||
|
|
||
|
pub trait ReadTransaction {
|
||
2 years ago
|
/// Load a property from the store.
|
||
|
fn get(&self, prefix: u8, key: &Vec<u8>, suffix: Option<u8>) -> Result<Vec<u8>, StorageError>;
|
||
|
|
||
|
/// Load all the values of a property from the store.
|
||
|
fn get_all(
|
||
|
&self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
) -> Result<Vec<Vec<u8>>, StorageError>;
|
||
|
|
||
|
/// Check if a specific value exists for a property from the store.
|
||
|
fn has_property_value(
|
||
|
&self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
value: Vec<u8>,
|
||
|
) -> Result<(), StorageError>;
|
||
2 years ago
|
}
|
||
|
|
||
2 years ago
|
pub trait KCVStore: ReadTransaction {
|
||
|
fn write_transaction(
|
||
|
&self,
|
||
|
method: &dyn Fn(&mut dyn WriteTransaction) -> Result<(), StorageError>,
|
||
|
) -> Result<(), StorageError>;
|
||
2 years ago
|
|
||
2 years ago
|
/// Save a property value to the store.
|
||
|
fn put(
|
||
|
&self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
value: Vec<u8>,
|
||
|
) -> Result<(), StorageError>;
|
||
|
|
||
|
/// Replace the property of a key (single value) to the store.
|
||
|
fn replace(
|
||
|
&self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
value: Vec<u8>,
|
||
|
) -> Result<(), StorageError>;
|
||
|
|
||
|
/// Delete a property from the store.
|
||
|
fn del(&self, prefix: u8, key: &Vec<u8>, suffix: Option<u8>) -> Result<(), StorageError>;
|
||
|
|
||
|
/// Delete all properties of a key from the store.
|
||
|
fn del_all(&self, prefix: u8, key: &Vec<u8>, all_suffixes: &[u8]) -> Result<(), StorageError>;
|
||
|
|
||
|
/// Delete a specific value for a property from the store.
|
||
|
fn del_property_value(
|
||
|
&self,
|
||
|
prefix: u8,
|
||
|
key: &Vec<u8>,
|
||
|
suffix: Option<u8>,
|
||
|
value: Vec<u8>,
|
||
|
) -> Result<(), StorageError>;
|
||
|
}
|