pub struct Database {
inner: Arc<dyn IDatabase + 'static>,
module_decoders: ModuleDecoderRegistry,
}
Expand description
A public-facing newtype over IDatabase
Notably carries set of module decoders (ModuleDecoderRegistry
)
and implements common utility function for auto-commits, db isolation,
and other.
Fields§
§inner: Arc<dyn IDatabase + 'static>
§module_decoders: ModuleDecoderRegistry
Implementations§
Source§impl Database
impl Database
pub fn strong_count(&self) -> usize
pub fn into_inner(self) -> Arc<dyn IDatabase + 'static>
Source§impl Database
impl Database
Sourcepub fn new(
raw: impl IRawDatabase + 'static,
module_decoders: ModuleDecoderRegistry,
) -> Self
pub fn new( raw: impl IRawDatabase + 'static, module_decoders: ModuleDecoderRegistry, ) -> Self
Creates a new Fedimint database from any object implementing
IDatabase
.
See also Database::new_from_arc
.
Sourcepub fn new_from_arc(
inner: Arc<dyn IDatabase + 'static>,
module_decoders: ModuleDecoderRegistry,
) -> Self
pub fn new_from_arc( inner: Arc<dyn IDatabase + 'static>, module_decoders: ModuleDecoderRegistry, ) -> Self
Create Database
from an already typed-erased IDatabase
.
Sourcepub fn with_prefix(&self, prefix: Vec<u8>) -> Self
pub fn with_prefix(&self, prefix: Vec<u8>) -> Self
Create Database
isolated to a partition with a given prefix
Sourcepub fn with_prefix_module_id(
&self,
module_instance_id: ModuleInstanceId,
) -> (Self, GlobalDBTxAccessToken)
pub fn with_prefix_module_id( &self, module_instance_id: ModuleInstanceId, ) -> (Self, GlobalDBTxAccessToken)
Create Database
isolated to a partition with a prefix for a given
module_instance_id
, allowing the module to access global_dbtx
with
the right access_token
pub fn with_decoders(&self, module_decoders: ModuleDecoderRegistry) -> Self
Sourcepub fn ensure_global(&self) -> Result<()>
pub fn ensure_global(&self) -> Result<()>
Err
if Self::is_global
is not true
Sourcepub fn ensure_isolated(&self) -> Result<()>
pub fn ensure_isolated(&self) -> Result<()>
Err
if Self::is_global
is true
Sourcepub async fn begin_transaction<'s, 'tx>(
&'s self,
) -> DatabaseTransaction<'tx, Committable>where
's: 'tx,
pub async fn begin_transaction<'s, 'tx>(
&'s self,
) -> DatabaseTransaction<'tx, Committable>where
's: 'tx,
Begin a new committable database transaction
Sourcepub async fn begin_transaction_nc<'s, 'tx>(
&'s self,
) -> DatabaseTransaction<'tx, NonCommittable>where
's: 'tx,
pub async fn begin_transaction_nc<'s, 'tx>(
&'s self,
) -> DatabaseTransaction<'tx, NonCommittable>where
's: 'tx,
Begin a new non-committable database transaction
pub fn checkpoint(&self, backup_path: &Path) -> Result<()>
Sourcepub async fn autocommit<'s, 'dbtx, F, T, E>(
&'s self,
tx_fn: F,
max_attempts: Option<usize>,
) -> Result<T, AutocommitError<E>>where
for<'r, 'o> F: Fn(&'r mut DatabaseTransaction<'o>, PhantomBound<'dbtx, 'o>) -> BoxFuture<'r, Result<T, E>>,
's: 'dbtx,
pub async fn autocommit<'s, 'dbtx, F, T, E>(
&'s self,
tx_fn: F,
max_attempts: Option<usize>,
) -> Result<T, AutocommitError<E>>where
for<'r, 'o> F: Fn(&'r mut DatabaseTransaction<'o>, PhantomBound<'dbtx, 'o>) -> BoxFuture<'r, Result<T, E>>,
's: 'dbtx,
Runs a closure with a reference to a database transaction and tries to
commit the transaction if the closure returns Ok
and rolls it back
otherwise. If committing fails the closure is run for up to
max_attempts
times. If max_attempts
is None
it will run
usize::MAX
times which is close enough to infinite times.
The closure tx_fn
provided should not have side effects outside of the
database transaction provided, or if it does these should be
idempotent, since the closure might be run multiple times.
§Lifetime Parameters
The higher rank trait bound (HRTB) 'a
that is applied to the the
mutable reference to the database transaction ensures that the
reference lives as least as long as the returned future of the
closure.
Further, the reference to self ('s
) must outlive the
DatabaseTransaction<'dt>
. In other words, the
DatabaseTransaction
must live as least as long as self
and that is
true as the DatabaseTransaction
is only dropped at the end of the
loop{}
.
§Panics
This function panics when the given number of maximum attempts is zero.
max_attempts
must be greater or equal to one.
Sourcepub async fn wait_key_check<'a, K, T>(
&'a self,
key: &K,
checker: impl Fn(Option<K::Value>) -> Option<T>,
) -> (T, DatabaseTransaction<'a, Committable>)
pub async fn wait_key_check<'a, K, T>( &'a self, key: &K, checker: impl Fn(Option<K::Value>) -> Option<T>, ) -> (T, DatabaseTransaction<'a, Committable>)
Waits for key to be notified.
Calls the checker
when value of the key may have changed.
Returns the value when checker
returns a Some(T)
.
Sourcepub async fn wait_key_exists<K>(&self, key: &K) -> K::Value
pub async fn wait_key_exists<K>(&self, key: &K) -> K::Value
Waits for key to be present in database.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Database
impl !RefUnwindSafe for Database
impl Send for Database
impl Sync for Database
impl Unpin for Database
impl !UnwindSafe for Database
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.