wasmer_journal/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
mod base64;
mod concrete;
mod entry;
mod snapshot;
mod util;
pub use concrete::*;
pub use entry::*;
pub use snapshot::*;
pub use util::*;
use serde::{Deserialize, Serialize};
use std::{ops::Deref, str::FromStr};
/// The results of an operation to write a log entry to the log
#[derive(Debug)]
pub struct LogWriteResult {
// Start of the actual entry
pub record_start: u64,
// End of the actual entry
pub record_end: u64,
}
impl LogWriteResult {
pub fn record_size(&self) -> u64 {
self.record_end - self.record_start
}
}
/// The snapshot capturer will take a series of objects that represents the state of
/// a WASM process at a point in time and saves it so that it can be restored.
/// It also allows for the restoration of that state at a later moment
#[allow(unused_variables)]
pub trait WritableJournal: std::fmt::Debug {
/// Takes in a stream of snapshot log entries and saves them so that they
/// may be restored at a later moment
fn write<'a>(&'a self, entry: JournalEntry<'a>) -> anyhow::Result<LogWriteResult>;
/// Flushes the data to disk or network
fn flush(&self) -> anyhow::Result<()>;
/// Commits the transaction
/// Returns the number of events committed
fn commit(&self) -> anyhow::Result<usize> {
Ok(0)
}
/// Rolls back the transaction and aborts its changes
/// Returns the number of events rolled back
fn rollback(&self) -> anyhow::Result<usize> {
Ok(0)
}
}
/// The results of an operation to read a log entry from the log
#[derive(Debug)]
pub struct LogReadResult<'a> {
/// Offset into the journal where this entry exists
pub record_start: u64,
/// Offset of the end of the entry
pub record_end: u64,
/// Represents the journal entry
pub record: JournalEntry<'a>,
}
impl<'a> LogReadResult<'a> {
pub fn into_inner(self) -> JournalEntry<'a> {
self.record
}
}
impl<'a> Deref for LogReadResult<'a> {
type Target = JournalEntry<'a>;
fn deref(&self) -> &Self::Target {
&self.record
}
}
/// The snapshot capturer will take a series of objects that represents the state of
/// a WASM process at a point in time and saves it so that it can be restored.
/// It also allows for the restoration of that state at a later moment
#[allow(unused_variables)]
pub trait ReadableJournal: std::fmt::Debug {
/// Returns a stream of snapshot objects that the runtime will use
/// to restore the state of a WASM process to a previous moment in time
fn read(&self) -> anyhow::Result<Option<LogReadResult<'_>>>;
/// Resets the journal so that reads will start from the
/// beginning again
fn as_restarted(&self) -> anyhow::Result<Box<DynReadableJournal>>;
}
/// The snapshot capturer will take a series of objects that represents the state of
/// a WASM process at a point in time and saves it so that it can be restored.
/// It also allows for the restoration of that state at a later moment
#[allow(unused_variables)]
pub trait Journal: WritableJournal + ReadableJournal + std::fmt::Debug {
/// Splits the journal into a read and write side
fn split(self) -> (Box<DynWritableJournal>, Box<DynReadableJournal>);
}
pub type DynJournal = dyn Journal + Send + Sync;
pub type DynWritableJournal = dyn WritableJournal + Send + Sync;
pub type DynReadableJournal = dyn ReadableJournal + Send + Sync;