alexandria 0.2.0

An encrypted document-oriented database with tag based query support
Documentation
//! Clear-text data record representation
//!
//! All data in alexandria is encrypted.  However, at the stage of
//! interacting with a `Record` object in your code you no longer have
//! to worry about encryption, because your request has already been
//! authenticated.
//!
//! A record can be one of two mappings: a strongly typed key-value
//! store, commonly named `Kv`, or a raw binary object lazily loaded
//! from disk, called `Bin`.
//!
//! Shared between them is a Header which contains search tags, record
//! IDs and secret metadata.

pub mod bin;
pub mod kv;

use self::{bin::Bin, kv::Kv};
use crate::{
    crypto::{asym::KeyPair, DetachedKey, Encrypted},
    error::Result,
    utils::{Diff, DiffExt, Id, TagSet},
};

use async_std::sync::Arc;
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

/// A record header
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Header {
    /// A unique record ID
    pub id: Id,
    /// Public set of search tags
    pub tags: TagSet, // TODO: can we move this into the secheader?
    /// The encrypted header
    sec: Encrypted<SecHeader, KeyPair>,
}

/// Distinguishes between the type of records
#[derive(Clone, Debug, Serialize, Deserialize)]
pub(crate) enum Type {
    /// Key-value mapped store
    Kv,
    /// Large binary object
    Bin,
}

/// A record's creation and update times
#[derive(Clone, Debug, Serialize, Deserialize)]
pub(crate) struct Timestamp {
    pub(crate) created: DateTime<Utc>,
    pub(crate) updated: DateTime<Utc>,
}

impl Timestamp {
    pub(crate) fn create() -> Self {
        let now = Utc::now();
        Self {
            created: now,
            updated: now,
        }
    }

    pub(crate) fn update(&mut self) {
        self.updated = Utc::now();
    }
}

/// The secret header is encrypted
#[derive(Clone, Debug, Serialize, Deserialize)]
pub(crate) struct SecHeader {
    /// Record type
    pub(crate) t: Type,
    /// Timestamp information
    time: Timestamp,
    /// Total payload size
    pub(crate) size: u64,
    /// Beginning chunk markers
    pub(crate) chunks: Vec<u32>,
}

impl DetachedKey<KeyPair> for SecHeader {}

/// A record data body
#[derive(Clone, Debug, Serialize, Deserialize)]
pub(crate) enum Body {
    Kv(Kv),
    Bin(Bin),
}

impl Body {
    fn apply(&mut self, d: Diff) -> Result<()> {
        match self {
            Self::Kv(ref mut kv) => kv.apply(d),
            Self::Bin(_) => unimplemented!(),
        }
    }
}

impl DetachedKey<KeyPair> for Body {}

/// A garbage-collected reference to a Record
pub type RecordRef = Arc<Record>;

/// A single record in alexandria, defined by a header and body
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Record {
    /// The clear record header
    pub header: Header,
    /// A handle to the data body
    body: Encrypted<Body, KeyPair>,
}

impl Record {
    pub(crate) fn create(tags: TagSet, diff: Diff) -> Result<Self> {
        // Create the body from the diff
        let (t, mut body) = match diff {
            Diff::Map(_) => (Type::Kv, Body::Kv(Kv::new())),
            Diff::Binary(_) => unimplemented!(),
        };
        body.apply(diff)?;
        let body = Encrypted::new(body);

        // Secret header with no disk info present
        let sec = Encrypted::new(SecHeader {
            t,
            time: Timestamp::create(),
            size: 0,
            chunks: vec![],
        });

        // Primary search header
        let header = Header {
            id: Id::random(),
            tags: tags.into(),
            sec,
        };

        Ok(Self { header, body })
    }

    /// Apply a diff to a record
    pub(crate) fn apply(&mut self, diff: Diff) -> Result<()> {
        match self.body.deref_mut()? {
            Body::Kv(kv) => kv
                .apply(diff)
                .map(|_| self.header.sec.deref_mut().unwrap().time.update()),
            Body::Bin(_) => unimplemented!(),
        }
    }

    pub fn kv(&self) -> &Kv {
        match self.body.deref() {
            Ok(Body::Kv(ref kv)) => kv,
            _ => unimplemented!(),
        }
    }
}