rxqlite 0.1.11

A secured distributed sqlite database built upon `openraft`, `sqlx` and `sqlite`.
Documentation
use std::sync::Arc;

use openraft::raft::AppendEntriesRequest;
use openraft::raft::AppendEntriesResponse;
use openraft::raft::InstallSnapshotRequest;
use openraft::raft::InstallSnapshotResponse;
use openraft::raft::VoteRequest;
use openraft::raft::VoteResponse;
use toy_rpc_ha421::macros::export_impl;

use crate::app::App;
use crate::TypeConfig;

/// Raft protocol service.
pub struct Raft {
    app: Arc<App>,
}

#[export_impl]
impl Raft {
    pub fn new(app: Arc<App>) -> Self {
        Self { app }
    }

    #[export_method]
    pub async fn vote(
        &self,
        vote: VoteRequest<u64>,
    ) -> Result<VoteResponse<u64>, toy_rpc_ha421::Error> {
        self.app
            .raft
            .vote(vote)
            .await
            .map_err(|e| toy_rpc_ha421::Error::Internal(Box::new(e)))
    }

    #[export_method]
    pub async fn append(
        &self,
        req: AppendEntriesRequest<TypeConfig>,
    ) -> Result<AppendEntriesResponse<u64>, toy_rpc_ha421::Error> {
        tracing::debug!("handle append");
        self.app
            .raft
            .append_entries(req)
            .await
            .map_err(|e| toy_rpc_ha421::Error::Internal(Box::new(e)))
    }

    #[export_method]
    pub async fn snapshot(
        &self,
        req: InstallSnapshotRequest<TypeConfig>,
    ) -> Result<InstallSnapshotResponse<u64>, toy_rpc_ha421::Error> {
        self.app
            .raft
            .install_snapshot(req)
            .await
            .map_err(|e| toy_rpc_ha421::Error::Internal(Box::new(e)))
    }
}