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.
172 lines
5.0 KiB
172 lines
5.0 KiB
// Copyright (c) 2022-2023 Niko Bonnieure, Par le Peuple, NextGraph.org developers
|
|
// All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0
|
|
// <LICENSE-APACHE2 or http://www.apache.org/licenses/LICENSE-2.0>
|
|
// 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.
|
|
|
|
//! Peer
|
|
|
|
use p2p_net::types::*;
|
|
use p2p_repo::kcv_store::KCVStore;
|
|
use p2p_repo::store::*;
|
|
use p2p_repo::types::*;
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_bare::{from_slice, to_vec};
|
|
|
|
pub struct Peer<'a> {
|
|
/// Topic ID
|
|
id: PeerId,
|
|
store: &'a dyn KCVStore,
|
|
}
|
|
|
|
impl<'a> Peer<'a> {
|
|
const PREFIX: u8 = b"p"[0];
|
|
|
|
// propertie's suffixes
|
|
const VERSION: u8 = b"v"[0];
|
|
const ADVERT: u8 = b"a"[0];
|
|
|
|
const ALL_PROPERTIES: [u8; 2] = [Self::VERSION, Self::ADVERT];
|
|
|
|
const SUFFIX_FOR_EXIST_CHECK: u8 = Self::VERSION;
|
|
|
|
pub fn open(id: &PeerId, store: &'a dyn KCVStore) -> Result<Peer<'a>, StorageError> {
|
|
let opening = Peer {
|
|
id: id.clone(),
|
|
store,
|
|
};
|
|
if !opening.exists() {
|
|
return Err(StorageError::NotFound);
|
|
}
|
|
Ok(opening)
|
|
}
|
|
pub fn update_or_create(
|
|
advert: &PeerAdvert,
|
|
store: &'a dyn KCVStore,
|
|
) -> Result<Peer<'a>, StorageError> {
|
|
let id = advert.peer();
|
|
match Self::open(id, store) {
|
|
Err(e) => {
|
|
if e == StorageError::NotFound {
|
|
Self::create(advert, store)
|
|
} else {
|
|
Err(StorageError::BackendError)
|
|
}
|
|
}
|
|
Ok(p) => {
|
|
p.update_advert(advert)?;
|
|
Ok(p)
|
|
}
|
|
}
|
|
}
|
|
pub fn create(advert: &PeerAdvert, store: &'a dyn KCVStore) -> Result<Peer<'a>, StorageError> {
|
|
let id = advert.peer();
|
|
let acc = Peer {
|
|
id: id.clone(),
|
|
store,
|
|
};
|
|
if acc.exists() {
|
|
return Err(StorageError::BackendError);
|
|
}
|
|
store.write_transaction(&mut |tx| {
|
|
tx.put(
|
|
Self::PREFIX,
|
|
&to_vec(&id)?,
|
|
Some(Self::VERSION),
|
|
&to_vec(&advert.version())?,
|
|
)?;
|
|
tx.put(
|
|
Self::PREFIX,
|
|
&to_vec(&id)?,
|
|
Some(Self::ADVERT),
|
|
&to_vec(&advert)?,
|
|
)?;
|
|
Ok(())
|
|
})?;
|
|
Ok(acc)
|
|
}
|
|
pub fn exists(&self) -> bool {
|
|
self.store
|
|
.get(
|
|
Self::PREFIX,
|
|
&to_vec(&self.id).unwrap(),
|
|
Some(Self::SUFFIX_FOR_EXIST_CHECK),
|
|
)
|
|
.is_ok()
|
|
}
|
|
pub fn id(&self) -> PeerId {
|
|
self.id
|
|
}
|
|
pub fn version(&self) -> Result<u32, StorageError> {
|
|
match self
|
|
.store
|
|
.get(Self::PREFIX, &to_vec(&self.id)?, Some(Self::VERSION))
|
|
{
|
|
Ok(ver) => Ok(from_slice::<u32>(&ver)?),
|
|
Err(e) => Err(e),
|
|
}
|
|
}
|
|
pub fn set_version(&self, version: u32) -> Result<(), StorageError> {
|
|
if !self.exists() {
|
|
return Err(StorageError::BackendError);
|
|
}
|
|
self.store.replace(
|
|
Self::PREFIX,
|
|
&to_vec(&self.id)?,
|
|
Some(Self::VERSION),
|
|
to_vec(&version)?,
|
|
)
|
|
}
|
|
pub fn update_advert(&self, advert: &PeerAdvert) -> Result<(), StorageError> {
|
|
if advert.peer() != &self.id {
|
|
return Err(StorageError::InvalidValue);
|
|
}
|
|
let current_advert = self.advert().map_err(|e| StorageError::BackendError)?;
|
|
if current_advert.version() >= advert.version() {
|
|
return Ok(());
|
|
}
|
|
self.store.write_transaction(&mut |tx| {
|
|
tx.replace(
|
|
Self::PREFIX,
|
|
&to_vec(&self.id)?,
|
|
Some(Self::VERSION),
|
|
&to_vec(&advert.version())?,
|
|
)?;
|
|
tx.replace(
|
|
Self::PREFIX,
|
|
&to_vec(&self.id)?,
|
|
Some(Self::ADVERT),
|
|
&to_vec(&advert)?,
|
|
)?;
|
|
Ok(())
|
|
})
|
|
}
|
|
pub fn advert(&self) -> Result<PeerAdvert, StorageError> {
|
|
match self
|
|
.store
|
|
.get(Self::PREFIX, &to_vec(&self.id)?, Some(Self::ADVERT))
|
|
{
|
|
Ok(advert) => Ok(from_slice::<PeerAdvert>(&advert)?),
|
|
Err(e) => Err(e),
|
|
}
|
|
}
|
|
pub fn set_advert(&self, advert: &PeerAdvert) -> Result<(), StorageError> {
|
|
if !self.exists() {
|
|
return Err(StorageError::BackendError);
|
|
}
|
|
self.store.replace(
|
|
Self::PREFIX,
|
|
&to_vec(&self.id)?,
|
|
Some(Self::ADVERT),
|
|
to_vec(advert)?,
|
|
)
|
|
}
|
|
|
|
pub fn del(&self) -> Result<(), StorageError> {
|
|
self.store
|
|
.del_all(Self::PREFIX, &to_vec(&self.id)?, &Self::ALL_PROPERTIES)
|
|
}
|
|
}
|
|
|