pub struct DbStorage<Database, Clock = WallClock> { /* private fields */ }Expand description
Main implementation of the Storage trait.
Implementations§
Source§impl<Database, C> DbStorage<Database, C>
impl<Database, C> DbStorage<Database, C>
Sourcepub fn with_allow_application_logs(self, allow: bool) -> Self
pub fn with_allow_application_logs(self, allow: bool) -> Self
Sets whether contract log messages should be output.
Source§impl<Database> DbStorage<Database, WallClock>where
Database: KeyValueDatabase + Clone + 'static,
Database::Error: Send + Sync,
Database::Store: KeyValueStore + Clone + 'static,
impl<Database> DbStorage<Database, WallClock>where
Database: KeyValueDatabase + Clone + 'static,
Database::Error: Send + Sync,
Database::Store: KeyValueStore + Clone + 'static,
Sourcepub async fn maybe_create_and_connect(
config: &Database::Config,
namespace: &str,
wasm_runtime: Option<WasmRuntime>,
cache_sizes: StorageCacheConfig,
) -> Result<Self, ViewError>
pub async fn maybe_create_and_connect( config: &Database::Config, namespace: &str, wasm_runtime: Option<WasmRuntime>, cache_sizes: StorageCacheConfig, ) -> Result<Self, ViewError>
Connects to the database, creating the given namespace if it does not exist.
Sourcepub async fn connect(
config: &Database::Config,
namespace: &str,
wasm_runtime: Option<WasmRuntime>,
cache_sizes: StorageCacheConfig,
) -> Result<Self, ViewError>
pub async fn connect( config: &Database::Config, namespace: &str, wasm_runtime: Option<WasmRuntime>, cache_sizes: StorageCacheConfig, ) -> Result<Self, ViewError>
Connects to an existing namespace in the database.
Source§impl<Database, C> DbStorage<Database, C>
impl<Database, C> DbStorage<Database, C>
Sourcepub async fn migrate_if_needed(&self) -> Result<(), ViewError>
pub async fn migrate_if_needed(&self) -> Result<(), ViewError>
Migrates the storage to the latest schema version if it is out of date.
Sourcepub async fn assert_is_migrated_storage(&self) -> Result<(), ViewError>
pub async fn assert_is_migrated_storage(&self) -> Result<(), ViewError>
Assert that the storage is at the last version (or not yet initialized).
Trait Implementations§
Source§impl<Database, C> Storage for DbStorage<Database, C>where
Database: KeyValueDatabase<Store: KeyValueStore + Clone + AutoTraits + 'static, Error: Send + Sync> + Clone + AutoTraits + 'static,
C: Clock + Clone + Send + Sync + 'static,
impl<Database, C> Storage for DbStorage<Database, C>where
Database: KeyValueDatabase<Store: KeyValueStore + Clone + AutoTraits + 'static, Error: Send + Sync> + Clone + AutoTraits + 'static,
C: Clock + Clone + Send + Sync + 'static,
Source§type Context = ViewContext<ChainRuntimeContext<DbStorage<Database, C>>, <Database as KeyValueDatabase>::Store>
type Context = ViewContext<ChainRuntimeContext<DbStorage<Database, C>>, <Database as KeyValueDatabase>::Store>
The low-level storage implementation in use by the core protocol (chain workers etc).
Source§type BlockExporterContext = ViewContext<u32, <Database as KeyValueDatabase>::Store>
type BlockExporterContext = ViewContext<u32, <Database as KeyValueDatabase>::Store>
The low-level storage implementation in use by the block exporter.
Source§fn thread_pool(&self) -> &Arc<ThreadPool> ⓘ
fn thread_pool(&self) -> &Arc<ThreadPool> ⓘ
Returns the thread pool used to offload blocking work.
Source§fn load_chain<'life0, 'async_trait>(
&'life0 self,
chain_id: ChainId,
) -> Pin<Box<dyn Future<Output = Result<ChainStateView<Self::Context>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn load_chain<'life0, 'async_trait>(
&'life0 self,
chain_id: ChainId,
) -> Pin<Box<dyn Future<Output = Result<ChainStateView<Self::Context>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Loads the view of a chain state. Read more
Source§fn contains_blob<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn contains_blob<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Tests the existence of a blob with the given blob ID.
Source§fn missing_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
) -> Pin<Box<dyn Future<Output = Result<Vec<BlobId>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn missing_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
) -> Pin<Box<dyn Future<Output = Result<Vec<BlobId>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Returns what blobs from the input are missing from storage.
Source§fn contains_blob_state<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn contains_blob_state<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Tests existence of a blob state with the given blob ID.
Source§fn read_confirmed_block<'life0, 'async_trait>(
&'life0 self,
hash: CryptoHash,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<ConfirmedBlock>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn read_confirmed_block<'life0, 'async_trait>(
&'life0 self,
hash: CryptoHash,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<ConfirmedBlock>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Reads the hashed certificate value with the given hash.
Source§fn read_confirmed_blocks<'life0, 'async_trait, I>(
&'life0 self,
hashes: I,
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<ConfirmedBlock>>>, ViewError>> + Send + 'async_trait>>where
I: 'async_trait + IntoIterator<Item = CryptoHash> + Send,
Self: 'async_trait,
'life0: 'async_trait,
fn read_confirmed_blocks<'life0, 'async_trait, I>(
&'life0 self,
hashes: I,
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<ConfirmedBlock>>>, ViewError>> + Send + 'async_trait>>where
I: 'async_trait + IntoIterator<Item = CryptoHash> + Send,
Self: 'async_trait,
'life0: 'async_trait,
Reads a number of confirmed blocks by their hashes.
Source§fn read_blob<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<Blob>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn read_blob<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<Blob>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Reads the blob with the given blob ID.
Source§fn read_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<Blob>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<Blob>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads the blobs with the given blob IDs.
Source§fn read_blob_state<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<Option<BlobState>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn read_blob_state<'life0, 'async_trait>(
&'life0 self,
blob_id: BlobId,
) -> Pin<Box<dyn Future<Output = Result<Option<BlobState>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Reads the blob state with the given blob ID.
Source§fn read_blob_states<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<BlobState>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_blob_states<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<BlobState>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads the blob states with the given blob IDs.
Source§fn write_blob<'life0, 'life1, 'async_trait>(
&'life0 self,
blob: &'life1 Blob,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn write_blob<'life0, 'life1, 'async_trait>(
&'life0 self,
blob: &'life1 Blob,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Writes the given blob.
Source§fn maybe_write_blob_states<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
blob_state: BlobState,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn maybe_write_blob_states<'life0, 'life1, 'async_trait>(
&'life0 self,
blob_ids: &'life1 [BlobId],
blob_state: BlobState,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Attempts to write the given blob state. Returns the latest
Epoch to have used this blob.Source§fn maybe_write_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blobs: &'life1 [Blob],
) -> Pin<Box<dyn Future<Output = Result<Vec<bool>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn maybe_write_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blobs: &'life1 [Blob],
) -> Pin<Box<dyn Future<Output = Result<Vec<bool>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Writes the given blobs, but only if they already have a blob state. Returns
true for the
blobs that were written.Source§fn write_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blobs: &'life1 [Blob],
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn write_blobs<'life0, 'life1, 'async_trait>(
&'life0 self,
blobs: &'life1 [Blob],
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Writes several blobs.
Source§fn write_blobs_and_certificate<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
blobs: &'life1 [Blob],
certificate: &'life2 ConfirmedBlockCertificate,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn write_blobs_and_certificate<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
blobs: &'life1 [Blob],
certificate: &'life2 ConfirmedBlockCertificate,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Writes blobs and certificate
Source§fn cache_certificate(
&self,
certificate: ConfirmedBlockCertificate,
) -> CacheArc<ConfirmedBlockCertificate>
fn cache_certificate( &self, certificate: ConfirmedBlockCertificate, ) -> CacheArc<ConfirmedBlockCertificate>
Inserts a certificate into the in-memory dedup cache and returns the
canonical
Arc. If the cache already holds an Arc for this hash,
the passed-in certificate is dropped and the existing Arc is
returned. This must be used (rather than Arc::new) for any
freshly-constructed ConfirmedBlockCertificate that should
participate in the “one allocation per content” invariant.Source§fn cache_blob(&self, blob: Blob) -> CacheArc<Blob>
fn cache_blob(&self, blob: Blob) -> CacheArc<Blob>
Inserts a blob into the in-memory dedup cache and returns the canonical
Arc. If the cache already holds an Arc for this blob ID, the
passed-in blob is dropped and the existing Arc is returned. This
must be used (rather than Arc::new) for any freshly-constructed
Blob that should participate in the “one allocation per content”
invariant.Source§fn cache_confirmed_block(
&self,
block: ConfirmedBlock,
) -> CacheArc<ConfirmedBlock>
fn cache_confirmed_block( &self, block: ConfirmedBlock, ) -> CacheArc<ConfirmedBlock>
Inserts a confirmed block into the in-memory dedup cache and returns
the canonical
Arc. If the cache already holds an Arc for this
hash, the passed-in block is dropped and the existing Arc is
returned. This must be used (rather than Arc::new) for any
freshly-constructed ConfirmedBlock that should participate in the
“one allocation per content” invariant.Source§fn contains_certificate<'life0, 'async_trait>(
&'life0 self,
hash: CryptoHash,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn contains_certificate<'life0, 'async_trait>(
&'life0 self,
hash: CryptoHash,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Tests existence of the certificate with the given hash.
Source§fn read_certificate<'life0, 'async_trait>(
&'life0 self,
hash: CryptoHash,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<ConfirmedBlockCertificate>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn read_certificate<'life0, 'async_trait>(
&'life0 self,
hash: CryptoHash,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<ConfirmedBlockCertificate>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Reads the certificate with the given hash.
Source§fn read_certificates<'life0, 'life1, 'async_trait>(
&'life0 self,
hashes: &'life1 [CryptoHash],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<ConfirmedBlockCertificate>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_certificates<'life0, 'life1, 'async_trait>(
&'life0 self,
hashes: &'life1 [CryptoHash],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<ConfirmedBlockCertificate>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads a number of certificates
Source§fn read_certificates_raw<'life0, 'life1, 'async_trait>(
&'life0 self,
hashes: &'life1 [CryptoHash],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<(Vec<u8>, Vec<u8>)>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_certificates_raw<'life0, 'life1, 'async_trait>(
&'life0 self,
hashes: &'life1 [CryptoHash],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<(Vec<u8>, Vec<u8>)>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads raw certificate bytes by hashes. Read more
Source§fn read_certificate_hashes_by_heights<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
heights: &'life1 [BlockHeight],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CryptoHash>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_certificate_hashes_by_heights<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
heights: &'life1 [BlockHeight],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CryptoHash>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Returns a vector of certificate hashes for the requested chain and heights.
The resulting vector maintains the order of the input
heights argument.
Elements are None if no certificate exists at that height.Source§fn read_certificates_by_heights_raw<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
heights: &'life1 [BlockHeight],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<(Vec<u8>, Vec<u8>)>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_certificates_by_heights_raw<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
heights: &'life1 [BlockHeight],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<(Vec<u8>, Vec<u8>)>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads raw certificates by heights for a given chain.
Returns a vector where each element corresponds to the input height.
Elements are
None if no certificate exists at that height.
Each found certificate is returned as a tuple of (lite_certificate_bytes, confirmed_block_bytes).Source§fn read_certificates_by_heights<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
heights: &'life1 [BlockHeight],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<ConfirmedBlockCertificate>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_certificates_by_heights<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
heights: &'life1 [BlockHeight],
) -> Pin<Box<dyn Future<Output = Result<Vec<Option<CacheArc<ConfirmedBlockCertificate>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads certificates by heights for a given chain.
Returns a vector where each element corresponds to the input height.
Elements are
None if no certificate exists at that height.Source§fn write_certificate_height_indices<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
indices: &'life1 [(BlockHeight, CryptoHash)],
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn write_certificate_height_indices<'life0, 'life1, 'async_trait>(
&'life0 self,
chain_id: ChainId,
indices: &'life1 [(BlockHeight, CryptoHash)],
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Writes certificate height index entries for a given chain.
This is used to populate the height->hash index when certificates are found
via alternative methods (e.g., from chain state).
Source§fn read_event<'life0, 'async_trait>(
&'life0 self,
event_id: EventId,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<Vec<u8>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn read_event<'life0, 'async_trait>(
&'life0 self,
event_id: EventId,
) -> Pin<Box<dyn Future<Output = Result<Option<CacheArc<Vec<u8>>>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Reads the event with the given ID.
Source§fn contains_event<'life0, 'async_trait>(
&'life0 self,
event_id: EventId,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn contains_event<'life0, 'async_trait>(
&'life0 self,
event_id: EventId,
) -> Pin<Box<dyn Future<Output = Result<bool, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Tests existence of the event with the given ID.
Source§fn read_events_from_index<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
chain_id: &'life1 ChainId,
stream_id: &'life2 StreamId,
start_index: u32,
) -> Pin<Box<dyn Future<Output = Result<Vec<IndexAndEvent>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn read_events_from_index<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
chain_id: &'life1 ChainId,
stream_id: &'life2 StreamId,
start_index: u32,
) -> Pin<Box<dyn Future<Output = Result<Vec<IndexAndEvent>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Lists all the events from a starting index
Source§fn write_events<'life0, 'async_trait>(
&'life0 self,
events: impl 'async_trait + IntoIterator<Item = (EventId, Vec<u8>)> + Send,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn write_events<'life0, 'async_trait>(
&'life0 self,
events: impl 'async_trait + IntoIterator<Item = (EventId, Vec<u8>)> + Send,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Writes a vector of events.
Source§fn read_network_description<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Option<NetworkDescription>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn read_network_description<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Option<NetworkDescription>, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Reads the network description.
Source§fn write_network_description<'life0, 'life1, 'async_trait>(
&'life0 self,
information: &'life1 NetworkDescription,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn write_network_description<'life0, 'life1, 'async_trait>(
&'life0 self,
information: &'life1 NetworkDescription,
) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Writes the network description.
Returns the process-global cache of committees by epoch.
Source§fn wasm_runtime(&self) -> Option<WasmRuntime>
fn wasm_runtime(&self) -> Option<WasmRuntime>
Selects the WebAssembly runtime to use for applications (if any).
Source§fn block_exporter_context<'life0, 'async_trait>(
&'life0 self,
block_exporter_id: u32,
) -> Pin<Box<dyn Future<Output = Result<Self::BlockExporterContext, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn block_exporter_context<'life0, 'async_trait>(
&'life0 self,
block_exporter_id: u32,
) -> Pin<Box<dyn Future<Output = Result<Self::BlockExporterContext, ViewError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Returns the storage context used by the block exporter with the given ID.
Source§fn get_or_load_committee<'life0, 'async_trait>(
&'life0 self,
epoch: Epoch,
) -> Pin<Box<dyn Future<Output = Result<Option<StdArc<Committee>>, ViewError>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
fn get_or_load_committee<'life0, 'async_trait>(
&'life0 self,
epoch: Epoch,
) -> Pin<Box<dyn Future<Output = Result<Option<StdArc<Committee>>, ViewError>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Returns the committee for
epoch, consulting the shared cache first
and, on a miss, loading it from the NewCommittee event on the admin
chain (or from the genesis committee blob for epoch 0) plus the
committee blob. Returns Ok(None) if the network description, event,
or blob is not yet available locally.Source§fn create_chain<'life0, 'async_trait>(
&'life0 self,
description: ChainDescription,
) -> Pin<Box<dyn Future<Output = Result<(), ChainError>> + Send + 'async_trait>>where
ChainRuntimeContext<Self>: ExecutionRuntimeContext,
Self: Sync + 'async_trait,
'life0: 'async_trait,
fn create_chain<'life0, 'async_trait>(
&'life0 self,
description: ChainDescription,
) -> Pin<Box<dyn Future<Output = Result<(), ChainError>> + Send + 'async_trait>>where
ChainRuntimeContext<Self>: ExecutionRuntimeContext,
Self: Sync + 'async_trait,
'life0: 'async_trait,
Initializes a chain in a simple way (used for testing and to create a genesis state). Read more
Source§fn load_contract<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
application_description: &'life1 ApplicationDescription,
txn_tracker: &'life2 TransactionTracker,
) -> Pin<Box<dyn Future<Output = Result<UserContractCode, ExecutionError>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn load_contract<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
application_description: &'life1 ApplicationDescription,
txn_tracker: &'life2 TransactionTracker,
) -> Pin<Box<dyn Future<Output = Result<UserContractCode, ExecutionError>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Creates a
UserContractCode instance using the bytecode in storage referenced
by the application_description.Source§fn load_service<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
application_description: &'life1 ApplicationDescription,
txn_tracker: &'life2 TransactionTracker,
) -> Pin<Box<dyn Future<Output = Result<UserServiceCode, ExecutionError>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn load_service<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
application_description: &'life1 ApplicationDescription,
txn_tracker: &'life2 TransactionTracker,
) -> Pin<Box<dyn Future<Output = Result<UserServiceCode, ExecutionError>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Creates a [
linera-sdk::UserContract] instance using the bytecode in storage referenced
by the application_description.Auto Trait Implementations§
impl<Database, Clock = WallClock> !RefUnwindSafe for DbStorage<Database, Clock>
impl<Database, Clock = WallClock> !UnwindSafe for DbStorage<Database, Clock>
impl<Database, Clock> Freeze for DbStorage<Database, Clock>where
Clock: Freeze,
impl<Database, Clock> Send for DbStorage<Database, Clock>
impl<Database, Clock> Sync for DbStorage<Database, Clock>
impl<Database, Clock> Unpin for DbStorage<Database, Clock>where
Clock: Unpin,
impl<Database, Clock> UnsafeUnpin for DbStorage<Database, Clock>where
Clock: UnsafeUnpin,
Blanket Implementations§
impl<_INNER> AutoTraits for _INNER
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreimpl<T> MaybeSend for Twhere
T: Send,
impl<T> MaybeSync for Twhere
T: Sync,
impl<T> Post for Twhere
T: Send + 'static,
Source§impl<M, I> RuntimeMemory<&mut I> for Mwhere
M: RuntimeMemory<I>,
impl<M, I> RuntimeMemory<&mut I> for Mwhere
M: RuntimeMemory<I>,
Source§fn read<'instance>(
&self,
instance: &'instance &mut I,
location: GuestPointer,
length: u32,
) -> Result<Cow<'instance, [u8]>, RuntimeError>
fn read<'instance>( &self, instance: &'instance &mut I, location: GuestPointer, length: u32, ) -> Result<Cow<'instance, [u8]>, RuntimeError>
Reads length bytes from memory from the provided location.
Source§fn write(
&mut self,
instance: &mut &mut I,
location: GuestPointer,
bytes: &[u8],
) -> Result<(), RuntimeError>
fn write( &mut self, instance: &mut &mut I, location: GuestPointer, bytes: &[u8], ) -> Result<(), RuntimeError>
Writes the bytes to memory at the provided location.