Expand description
§ic-memory
EARLY INFRASTRUCTURE: validate before opening stable memory.
ic-memory helps Internet Computer canisters avoid opening the wrong stable
memory after an upgrade.
It remembers this mapping forever:
logical store -> physical stable-memory slotIf a future version tries to move that store to a different slot, or reuse that
slot for a different store, ic-memory rejects the layout before stable-memory
handles are opened.
§Key-only allocation
Applications can request durable keys while the host grants an explicit pool:
ic_memory::ic_memory_range!(authority = "app", start = 10, end = 254, mode = Allowed);
ic_memory::ic_memory_declaration!(authority = "app", key = "app.users.v1");
fn initialize() {
let committed = ic_memory::bootstrap_default_memory_manager().unwrap();
let key = ic_memory::StableKey::parse("app.users.v1").unwrap();
let assigned_id = committed.slot_for(&key).unwrap().memory_manager_id().unwrap();
let users = ic_memory::open_default_memory_manager_memory_by_key(key.as_str()).unwrap();
}Known keys retain their committed IDs. New requests are sorted by stable key
and take the lowest unclaimed ID in their authority’s explicit Allowed
grants. Governance IDs, fixed claims, reservations, omitted allocations and
retired allocations remain unavailable. Reserved ranges do not supply new
automatic slots. A matching historical reservation activates through normal
claim validation and current policy.
A composed host grants each library only its intended ranges and bootstraps
once. Libraries inspect committed_allocations().slot_for(...) and open by key
without changing the host’s policy or bucket profile. Hosts must declare or
reserve allocations used by raw MemoryManager clients before admitting
automatic requests; physical diagnostics cannot infer their ownership.
Hosts can also implement RuntimeBootstrapPolicy::prepare_bootstrap to inspect
validated recovered allocation metadata and explicitly include known historical
journals before the single commit. The context grants no memory access; unknown,
retired or unauthorized selections reject. Warm adoption does not rerun admission.
See the runnable standalone and composed example, recovered-journal example, admission contract, and recovery limits and omitted-store inspection.
§Why Use It?
Use ic-memory when a canister has more than one stable store and the layout
can change over time.
It is most useful for frameworks, generated canisters, multi-store apps, plugin systems, and canister families that evolve across releases.
You probably do not need it for a tiny canister with one hand-written stable structure and a fixed layout.
§The Bug
Version 1 ships with:
app.users.v1 -> MemoryManager ID 100
app.orders.v1 -> MemoryManager ID 101A later upgrade accidentally ships with:
app.users.v1 -> MemoryManager ID 101
app.orders.v1 -> MemoryManager ID 100That can still compile. It can even install.
But now the canister may open orders data as users data, and users data as
orders data. ic-memory catches that mismatch first.
§Quick Start
Declare the dependency:
[dependencies]
ic-memory = "0.14.3"ic-memory re-exports its exact ic-stable-structures dependency through
ic_memory::ic_stable_structures. Import collections, backing memories, and
traits through that namespace to use the same upstream types as the runtime:
use ic_memory::{
RuntimeMemory,
ic_stable_structures::{Cell, DefaultMemoryImpl},
};
type CounterStore = Cell<u64, RuntimeMemory<DefaultMemoryImpl>>;Memory, Storable, storable::Bound, and the other upstream collections are
available through the same namespace. A separate ic-stable-structures
dependency is unnecessary for these imports. Initialize stores with handles
opened by MemoryRuntime or the default runtime, which owns the canister’s
memory manager.
Declare the MemoryManager IDs your crate owns. A shared compile-time constant keeps the explicit authority identical across the range and each key:
const MEMORY_AUTHORITY: &str = "icydb.test_db";
ic_memory::ic_memory_range!(authority = MEMORY_AUTHORITY, start = 120, end = 129);The authority string is explicit stable policy metadata. It is not persisted allocation identity; the stable key and memory ID fill that role. Use the same authority value for the package’s range and key declarations, and do not derive it from a Cargo package name or module path.
Open stable structures through ic_memory_key!:
use std::cell::RefCell;
thread_local! {
pub static USERS: RefCell<UsersStore> = RefCell::new(UsersStore::init(
ic_memory::ic_memory_key!(
authority = MEMORY_AUTHORITY,
key = "icydb.test_db.users.data.v1",
ty = UsersStore,
id = 120,
)
.expect("committed users memory")
));
}Bootstrap once per concrete memory runtime before touching stable data:
#[ic_cdk::init]
fn init() {
ic_memory::bootstrap_default_memory_manager().expect("valid stable-memory layout");
}
#[ic_cdk::post_upgrade]
fn post_upgrade() {
ic_memory::bootstrap_default_memory_manager().expect("valid stable-memory layout");
}That is the normal path.
The default runtime API is exported from the crate root. It is one
thread-local MemoryRuntime<DefaultMemoryImpl>, so every native thread owns an
independent backing memory, lifecycle, committed capability, and diagnostic
view. On IC Wasm, execution is single-threaded and the same TLS object naturally
has canister-instance lifetime.
Use helpers such as
ic_memory::bootstrap_default_memory_manager(),
ic_memory::bootstrap_default_memory_manager_with_policy(...),
ic_memory::committed_allocations(),
ic_memory::open_default_memory_manager_memory(...), and the macros shown
above; implementation modules are private.
The no-argument bootstrap helper uses GenericRangePolicy, ic-memory’s built-in
policy with its existing versioned PolicyIdentity. The runtime enforces range
ownership and internal reservations; this policy adds no application restrictions.
A custom policy implements both AllocationPolicy and
RuntimeBootstrapPolicy. Its bounded identity contains a policy-family name,
a nonzero semantic version, and an optional caller-computed 32-byte
configuration digest. Change the version when policy semantics change and use
the digest when effective runtime configuration changes.
§Multi-Crate Composition
Every crate registers into the same linked declaration registry. Crates do not need to import or name each other:
mod package_a {
ic_memory::ic_memory_range!(authority = "package_a", start = 100, end = 109);
thread_local! {
pub static USERS: RefCell<UsersStore> = RefCell::new(UsersStore::init(
ic_memory::ic_memory_key!(
authority = "package_a",
key = "package_a.users.v1",
ty = UsersStore,
id = 100,
)
.expect("committed users memory")
));
}
}
mod package_b {
ic_memory::ic_memory_range!(authority = "package_b", start = 110, end = 119);
thread_local! {
pub static ORDERS: RefCell<OrdersStore> = RefCell::new(OrdersStore::init(
ic_memory::ic_memory_key!(
authority = "package_b",
key = "package_b.orders.v1",
ty = OrdersStore,
id = 110,
)
.expect("committed orders memory")
));
}
}The linked program seals one immutable, canonical declaration snapshot.
Bootstrap supplies that snapshot to the calling thread’s default runtime,
recovers and commits that runtime’s allocation ledger, and publishes committed
allocations into that runtime only. TLS-backed stores open when your code first
touches the thread_local!.
Duplicate stable keys, duplicate MemoryManager IDs, overlapping ranges, and out-of-range declarations fail before stable structures open.
ic-memory follows the ic-stable-structures::MemoryManager ID domain exactly:
IDs 0..=254 are usable, and ID 255 is always the unallocated sentinel. It is
not an application slot and cannot be declared or reserved.
The default runtime reserves MemoryManager IDs 0..=9 and stable keys under
ic_memory.* for allocation-governance records. The ledger itself lives at ID
0; it remains in the durable ledger for recovery, but public runtime helpers
do not publish or open that internal allocation as application memory.
Range claims are authoritative in the default runtime. If a crate registers
ic_memory_range!, its declared memories must stay inside that range. Framework
adapters that want their own range policy, such as Canic, should register only
the ranges they want ic-memory to enforce and put the rest in their policy
adapter.
The committed allocation state is an in-memory capability published into one runtime only after that runtime’s stable-cell persistence succeeds. It is not a serde payload and should not be treated as configuration.
§Explicit Runtimes
Frameworks and tests that own backing memory directly should use
MemoryRuntime<M> as the canonical API:
use ic_memory::{MemoryRuntime, sealed_declaration_snapshot};
let declarations = sealed_declaration_snapshot()?;
let mut runtime = MemoryRuntime::new(backing_memory)?;
runtime.bootstrap(&declarations, &policy)?;
let rows = runtime.open_memory("app.rows.v1", 120)?;
let diagnostics = runtime.diagnostic_export()?;Construction is fallible. Empty backing memory is initialized as an
ic-stable-structures MemoryManager; nonempty backing memory must already
pass validation of the current MGR header, bucket table, and virtual/physical
extents. Foreign, unsupported, or corrupt metadata returns a typed error before
manager initialization can write. The read-only layout adapter is coupled to the
exact ic-stable-structures = "=0.7.2" dependency.
A pre-grown blank memory is nonempty and is rejected rather than assumed
disposable.
Each runtime owns all facts derived from backing_memory: recovery, ledger
cell, lifecycle, committed allocations, opens, diagnostics, and live sizes.
Multiple runtimes share only the immutable linked declaration snapshot. A
failed bootstrap publishes no capability, and repeated bootstrap on the same
runtime object is idempotent only when the snapshot and
RuntimeBootstrapPolicy::runtime_bootstrap_identity() match the successful
bootstrap. A changed snapshot or policy identity returns a typed error without
touching the ledger. Policy implementations should change their identity
whenever policy configuration or semantics change. This binding is
intentionally in-memory lifecycle and diagnostic state; it is not upgrade audit
history and is not persisted in the allocation ledger.
There is intentionally no public reset API. Native tests should construct a new explicit runtime or use the naturally independent default TLS runtime; changing global flags cannot reset a concrete stable-memory instance safely.
§Bounded physical allocation attribution
Use runtime.memory_allocations() or
default_memory_manager_memory_allocations() for an owned MemoryAllocations
report. Collection reads exactly 34,848 bytes of validated manager metadata and
returns all 255 usable IDs in order, including zero-size IDs and the ledger at
ID 0. It never decodes ledger history, initializes stores, writes, grows memory,
or advances a generation. The default helper refuses to construct a missing
runtime; an existing unbootstrapped runtime can report physical allocation with
unknown current bindings.
The report measures the actual persisted bucket size, physical and virtual
extents, assigned buckets, manager metadata, known current stable-key/owner
bindings, and unknown/unmanaged residuals. Virtual bytes are addressable extent,
not payload occupancy. payload_bytes is unavailable. Bucket slack is only
assigned bucket capacity beyond virtual extent. Conservation is explicit:
physical bytes = manager metadata + assigned bucket bytes + unmanaged bytes
assigned bucket bytes = sum(per-ID bucket bytes)
= known binding bytes + unknown binding bytes
= virtual bytes + bucket slackA current range claim does not prove historical ownership or grant access. Retired/absent keys are explicitly unknown; the ledger’s reserved ID is included without reading its payload. Keep operator/controller authorization in the integrating application. Full doctor/ledger diagnostics below still decode history and are not substitutes for this bounded report.
§Bucket policy
Fresh runtimes retain the 128-page (8 MiB) default. MemoryRuntime::new honors
an existing same-release memory’s actual setting. For an explicit setting use
MemoryRuntime::new_with_config(memory, MemoryManagerConfig::new(pages)?); all
nonzero u16 page counts are supported. Existing memory must match exactly or
construction fails before effects. Configuration is immutable for that runtime.
For a default runtime, select configuration through
bootstrap_default_memory_manager_with_config(config, &policy) before any
operation that constructs the runtime. Repeated explicit configuration must
match the established manager, independently of the allocation policy identity.
No bucket setting shrinks existing memory or migrates the durable format.
For configured bootstrap without a custom application policy, pass
&ic_memory::GenericRangePolicy to the same helper. There is no second
configured bootstrap path, profile state, or policy identity.
is_default_memory_manager_bootstrapped() and committed_allocations() do not
construct a missing runtime. They return false / NotBootstrapped respectively,
without initializing backing memory or choosing bucket size. Frameworks may
inspect committed allocations first, adopt an already bootstrapped host runtime,
and otherwise bootstrap with their chosen configuration. Adoption still requires
checking the framework’s declarations; do not re-bootstrap with the generic policy
to bypass an existing host policy. Cached construction and TLS access failures
remain errors, not absence. Other runtime operations may still construct it.
Open operations and macros return RuntimeMemory<M>, implementing Memory and
Clone without requiring M: Clone. Stable store type annotations must use
ic_memory::RuntimeMemory<DefaultMemoryImpl>. The runtime retains one private
shared backing for read-only attribution and owns exactly one manager.
Both safe and unsafe reads delegate to upstream, preserving specialized
read_unsafe implementations without extra destination initialization in the
runtime. Custom backings can continue using the Memory trait’s default method.
The CANIC-162 handoff contains the exact Canic integration example, reproducible measurements, capacity tradeoffs, and limitations. Fixture evidence supports configurable smaller buckets, but does not justify changing the default or selecting a Toko policy without live attribution and a capacity assessment.
§Diagnostics
Use default_memory_manager_doctor_report() for operator-facing preflight and
runtime diagnostics. It returns a typed error if the default TLS runtime is
re-entered. Otherwise it can be called before or after bootstrap and reports the
stable-cell status, protected commit recovery state, recovered ledger export,
registered declarations, range authority, validation preflight, and live
MemoryManager slot sizes when they can be recovered. This no-argument entry
point evaluates the built-in policy. Integrations that bootstrap with a custom
policy should call
default_memory_manager_doctor_report_with_policy(&policy), or call
runtime.doctor_report(&declarations, &policy) on an explicit runtime.
Doctor output includes the tested policy identity and sealed-declaration
fingerprint, the binding established by successful bootstrap, and a typed
binding comparison. Live size measurement is also per allocation: one invalid
slot is reported as a DiagnosticMemorySizeOutcome::Failed value without
discarding successful measurements for other slots.
Diagnostic failures carry stable DiagnosticCode values alongside their
human-readable messages for operator automation.
Use default_memory_manager_commit_recovery_diagnostic() when you only need
commit-slot presence and validity, the selected authoritative generation, and
any corruption or ambiguity error.
§Stable Keys
Stable keys are permanent logical store names. They should describe ownership and purpose, not the current memory ID.
namespace.component.store_or_role.vNExamples:
use ic_memory::StableKey;
StableKey::parse("app.orders.v1").expect("app key");
StableKey::parse("myapp.audit_log.v1").expect("app key");
StableKey::parse("icydb.test_db.users.data.v1").expect("database key");Changing a key creates a new logical allocation identity. If the durable store is the same, keep the stable key and update schema metadata instead.
Schema metadata is optional diagnostic metadata for the in-place store schema.
Construct it with SchemaMetadata::new(Some(version)); version 0 is reserved
for absence and is rejected.
§Releases
The release targets follow Canic’s validate, bump, commit, tag, and push flow,
adapted for this single library crate. They require Python 3.11+, Git, Make,
Rust 1.97.1 with Clippy/rustfmt and wasm32-unknown-unknown, and the declared
MSRV toolchain. Publishing also requires crates.io credentials configured for
Cargo.
Commit the implementation and a nonempty, numbered entry at the top of
CHANGELOG.md for the next version before starting. Then use:
make release-patch # Validate, bump patch, commit, annotate tag, push
make release-minor # Validate, bump minor/reset patch, commit, annotate tag, push
make publish-dry-run # Verify the tagged release without uploading
make publish # Publish the tagged release to crates.ioThe release targets push the current branch and its vX.Y.Z tag atomically to
origin. Publication is a separate command. PUBLISH_DRY_RUN=1 make publish
also performs a dry run. Branches must already exist on origin, and the
refreshed remote branch must be an ancestor of the local source commit.
make patch and make minor stop after validation and version preparation for
local review. Finish with make release-stage, make release-commit, and
make release-push, in that order. A rejected push can be retried with
make release-push; do not bump the version again. A failed tag step can be
retried with make release-commit without making another commit.
Preparation updates only Cargo.toml and the README dependency example, and
refreshes the ignored local Cargo.lock. It verifies the final package and
restores those files if preparation fails. Release commits must contain only
the expected version edits and are bound to the validated source commit.
Dirty trees, stale prepared state, unrelated staged changes, and conflicting
release tags are rejected. The lockfile remains untracked.
make validate runs the release-flow regression tests, formatting, Clippy,
serialized Rust tests and doctests, Wasm checks and size budgets, the declared
MSRV check, and package verification. VALIDATION_TOOLCHAIN defaults to the
existing CI compiler, Rust 1.97.1. make test-release-flow exercises the release
commands in disposable repositories with a fake Cargo executable; it never
publishes packages or contacts a hosted Git remote.
§More Detail
The short version:
declare ranges
register stable stores
seal linked declarations
bootstrap once per memory runtime
only then open stable memoryFramework authors and policy adapters should read
ADVANCED.md.
The non-negotiable invariants are recorded in
SAFETY.md. The
protocol whitepaper lives in
whitepaper/src/SUMMARY.md
and builds as an mdBook with make maintainer-build.
ic-memory is early infrastructure extracted from Canic. It owns allocation
governance, not schema migration, endpoint routing, authorization, or data
semantics.
Stable-memory allocation-governance primitives for Internet Computer
canister upgrades.
ic-memory prevents stable-memory slot drift.
Once a stable key is committed to a physical allocation slot, future binaries must either reopen that same stable key on that same slot or declare a new stable key.
The crate records and validates durable ownership in both directions: an active stable key cannot move to a different physical slot, and an active physical slot cannot be reused by a different stable key.
The intended integration flow is:
- Recover the persisted allocation ledger.
- Declare the stable stores expected by the current binary.
- Validate those declarations against ledger history and any framework policy.
- Commit the next generation.
- Only then open stable-memory handles through committed allocation authority.
This crate owns allocation invariants, not framework policy. Namespace rules, controller authorization, endpoint lifecycle, schema migrations, and application validation belong to the framework or application.
For the default MemoryManager runtime, registered ic-memory range claims
are generic allocation policy and are enforced before caller-supplied
policy. A framework such as Canic that wants higher-level range semantics
should adapt to this contract deliberately: either register the ranges it
wants ic-memory to enforce, or omit user ranges and enforce application
space through its own AllocationPolicy.
Use these primitives before opening stable-memory handles. Integrations should recover the historical ledger, declare the stores expected by the current binary, validate declarations against history and policy, commit a new generation, and only then publish committed allocation authority before opening slots through the storage owner.
Bounded physical attribution is available through
MemoryRuntime::memory_allocations and
default_memory_manager_memory_allocations. It reports actual persisted
buckets and explicit residuals without decoding ledger history. Virtual
extent is not payload occupancy. Opens return RuntimeMemory; explicit
MemoryManagerConfig selects fresh-state buckets or checks a persisted
setting without migration. The default remains 128 pages.
MemoryRuntime is the canonical owner for one backing memory instance. It
contains that memory’s manager, ledger cell, bootstrap lifecycle, committed
capability, opens, and diagnostics. Linked code contributes declarations to
one immutable SealedDeclarationSnapshot, which is supplied to each
runtime independently.
AllocationBootstrap is the golden path for whichever layer owns a given
ledger store. Canic may own bootstrap for a framework canister and compose
IcyDB/application declarations through its registry; IcyDB may own bootstrap
directly for generated database stores; or a standalone application canister
may own bootstrap itself. Exactly one owner should bootstrap one ledger
store. Multiple layers in the same canister must either compose declarations
into that owner or use distinct ledger stores and allocation domains.
ic-stable-structures MemoryManager IDs are the first-class supported
physical slot substrate. That ID domain is u8: IDs 0..=254 are usable,
and ID 255 is always the ic-stable-structures unallocated sentinel.
The crate still keeps narrow internal abstractions for storage adapters and
diagnostics, but the native IC path is
MemoryManager ID 0 -> ic-stable-structures::Cell<StableCellLedgerRecord, _> -> LedgerCommitStore -> CommittedGenerationBytes ->
LedgerPayloadEnvelope -> RecoveredLedger -> ValidatedAllocations
-> CommittedAllocations.
ic_stable_structures re-exports the exact substrate version used by this
crate. Use its collections and traits with RuntimeMemory handles;
ic-memory owns allocation governance without wrapping typed collections.
Re-exports§
pub use ic_stable_structures;
Macros§
- eager_
init - Register one pre-bootstrap hook.
- ic_
memory_ declaration - Register a
MemoryManagerallocation declaration during static initialization. - ic_
memory_ key - Declare and open a committed
MemoryManagerslot by stable key. - ic_
memory_ range - Declare a
MemoryManagerallocation range during static initialization.
Structs§
- Allocation
Bootstrap - AllocationBootstrap
- Allocation
Declaration - AllocationDeclaration
- Allocation
History - AllocationHistory
- Allocation
Ledger - AllocationLedger
- Allocation
Range Claim - AllocationRangeClaim
- Allocation
Record - AllocationRecord
- Allocation
Retirement - AllocationRetirement
- Allocation
Slot Descriptor - AllocationSlotDescriptor
- Bootstrap
Admission - BootstrapAdmission
- Commit
Store Diagnostic - CommitStoreDiagnostic
- Committed
Allocations - CommittedAllocations
- Committed
Generation Bytes - CommittedGenerationBytes
- Declaration
Collector - DeclarationCollector
- Declaration
Snapshot - DeclarationSnapshot
- Diagnostic
Declaration - DiagnosticDeclaration
- Diagnostic
Export - DiagnosticExport
- Diagnostic
Failure - DiagnosticFailure
- Diagnostic
Generation - DiagnosticGeneration
- Diagnostic
Memory Size - DiagnosticMemorySize
- Diagnostic
Range Authority - DiagnosticRangeAuthority
- Diagnostic
Record - DiagnosticRecord
- Diagnostic
Runtime Binding - DiagnosticRuntimeBinding
- Diagnostic
Stable Cell - DiagnosticStableCell
- Dual
Commit Store - DualCommitStore
- Generation
Record - GenerationRecord
- Generic
Range Policy - GenericRangePolicy
- Ledger
Commit Store - LedgerCommitStore
- Ledger
Payload Envelope - LedgerPayloadEnvelope
- Memory
Allocation - MemoryAllocation
- Memory
Allocations - MemoryAllocations
- Memory
Manager Authority Record - MemoryManagerAuthorityRecord
- Memory
Manager Config - MemoryManagerConfig
- Memory
Manager IdRange - MemoryManagerIdRange
- Memory
Manager Range Authority - MemoryManagerRangeAuthority
- Memory
Request - MemoryRequest
- Memory
Runtime - MemoryRuntime
- Memory
Runtime Doctor Report - MemoryRuntimeDoctorReport
- Pending
Bootstrap Commit - PendingBootstrapCommit
- Policy
Identity - PolicyIdentity
- Recovered
Allocation Metadata - RecoveredAllocationMetadata
- Recovered
Ledger - RecoveredLedger
- Runtime
Memory - RuntimeMemory
- Schema
Metadata - SchemaMetadata
- Schema
Metadata Record - SchemaMetadataRecord
- Sealed
Declaration Fingerprint - SealedDeclarationFingerprint
- Sealed
Declaration Snapshot - SealedDeclarationSnapshot
- Stable
Cell Ledger Record - StableCellLedgerRecord
- Stable
Key - StableKey
- Stable
KeyError - StableKeyError
- Static
Memory Declaration - StaticMemoryDeclaration
- Static
Memory Range Declaration - StaticMemoryRangeDeclaration
- Validated
Allocations - ValidatedAllocations
Enums§
- Allocation
Binding - AllocationBinding
- Allocation
Reservation Error - AllocationReservationError
- Allocation
Retirement Error - AllocationRetirementError
- Allocation
Slot - AllocationSlot
- Allocation
Stage Error - AllocationStageError
- Allocation
State - AllocationState
- Allocation
Validation Error - AllocationValidationError
- Bootstrap
Admission Error - BootstrapAdmissionError
- Bootstrap
Error - BootstrapError
- Bootstrap
Reservation Error - BootstrapReservationError
- Bootstrap
Retirement Error - BootstrapRetirementError
- Commit
Recovery Error - CommitRecoveryError
- Commit
Slot Diagnostic - CommitSlotDiagnostic
- Declaration
Snapshot Error - DeclarationSnapshotError
- Diagnostic
Check - DiagnosticCheck
- Diagnostic
Code - DiagnosticCode
- Diagnostic
Memory Size Outcome - DiagnosticMemorySizeOutcome
- Diagnostic
Stable Cell Status - DiagnosticStableCellStatus
- Ledger
Commit Error - LedgerCommitError
- Ledger
Integrity Error - LedgerIntegrityError
- Ledger
Payload Envelope Error - LedgerPayloadEnvelopeError
- Memory
Manager Layout Error - MemoryManagerLayoutError
- Memory
Manager Range Authority Error - MemoryManagerRangeAuthorityError
- Memory
Manager Range Error - MemoryManagerRangeError
- Memory
Manager Range Mode - MemoryManagerRangeMode
- Memory
Manager Slot Error - MemoryManagerSlotError
- Memory
Resolution Error - MemoryResolutionError
- Policy
Identity Error - PolicyIdentityError
- Runtime
Bootstrap Error - RuntimeBootstrapError
- Runtime
Construction Error - RuntimeConstructionError
- Runtime
Diagnostic Error - RuntimeDiagnosticError
- Runtime
Open Error - RuntimeOpenError
- Runtime
Policy Error - RuntimePolicyError
- Runtime
State Error - RuntimeStateError
- Schema
Metadata Error - SchemaMetadataError
- Stable
Cell Ledger Error - StableCellLedgerError
- Stable
Cell Payload Error - StableCellPayloadError
- Static
Memory Declaration Error - StaticMemoryDeclarationError
Constants§
- IC_
MEMORY_ AUTHORITY_ OWNER - Diagnostic owner label for
ic-memoryallocation-governance infrastructure. - IC_
MEMORY_ AUTHORITY_ PURPOSE - Diagnostic purpose for the
ic-memoryallocation-governance authority range. - IC_
MEMORY_ LEDGER_ LABEL - Diagnostic label of the allocation ledger when backed by the current MemoryManager substrate.
- IC_
MEMORY_ LEDGER_ STABLE_ KEY - Stable key of the allocation ledger when backed by the current MemoryManager substrate.
- IC_
MEMORY_ STABLE_ KEY_ PREFIX - Stable-key namespace prefix reserved for
ic-memoryallocation-governance infrastructure. - LEDGER_
PAYLOAD_ FORMAT_ VERSION - Current durable ledger payload format version.
- MAX_
LEDGER_ BYTES - Maximum encoded logical ledger size (16 MiB).
- MAX_
LEDGER_ GENERATIONS - Maximum retained generations; daily upgrades have over 179 years of headroom.
- MAX_
LEDGER_ NESTING - Maximum CBOR container nesting on maintained decode paths.
- MAX_
LEDGER_ RECORD_ BYTES - Two bounded CBOR byte strings plus record metadata (32 MiB + 4 KiB).
- MEMORY_
MANAGER_ GOVERNANCE_ MAX_ ID - Last MemoryManager ID reserved for
ic-memorygovernance in the current substrate. - MEMORY_
MANAGER_ INVALID_ ID MemoryManagerunallocated-bucket sentinel. This is not a usable slot.- MEMORY_
MANAGER_ LEDGER_ ID - MemoryManager ID used by the allocation ledger in the current MemoryManager substrate.
- MEMORY_
MANAGER_ MAX_ ID - Last usable
MemoryManagervirtual memory ID. - MEMORY_
MANAGER_ MIN_ ID - First usable
MemoryManagervirtual memory ID. - STABLE_
CELL_ HEADER_ SIZE - Stable-cell header byte length.
- STABLE_
CELL_ LAYOUT_ VERSION - Stable-cell layout version supported by this adapter.
- STABLE_
CELL_ MAGIC - Stable-cell magic prefix written by
ic-stable-structures::Cell. - STABLE_
CELL_ VALUE_ OFFSET - Byte offset where the stable-cell value payload starts.
- WASM_
PAGE_ SIZE_ BYTES - WebAssembly page size used by
ic-stable-structuresmemory implementations.
Traits§
- Allocation
Policy - AllocationPolicy
- Runtime
Bootstrap Policy - RuntimeBootstrapPolicy
- Validate
- Validate
Functions§
- bootstrap_
default_ memory_ manager - Bootstrap this thread’s default runtime using generic range policy.
- bootstrap_
default_ memory_ manager_ with_ config - Bootstrap the default runtime with an explicit bucket setting and allocation policy.
- bootstrap_
default_ memory_ manager_ with_ policy - Bootstrap this thread’s default runtime with caller-supplied policy.
- committed_
allocations - Return this thread’s default runtime committed allocation capability.
- decode_
stable_ cell_ ledger_ record - Decode a
StableCellLedgerRecordfrom stable-cell value bytes. - decode_
stable_ cell_ payload - Decode the raw value payload from an
ic-stable-structures::Cellmemory. - default_
memory_ manager_ commit_ recovery_ diagnostic - Diagnose protected commit recovery for this thread’s default runtime.
- default_
memory_ manager_ diagnostic_ export - Export this thread’s default runtime ledger and live memory sizes.
- default_
memory_ manager_ doctor_ report - Build preflight and lifecycle diagnostics for this thread’s default runtime.
- default_
memory_ manager_ doctor_ report_ with_ policy - Build diagnostics for this thread’s default runtime under one explicit policy.
- default_
memory_ manager_ memory_ allocations - Measure the existing default runtime without constructing a manager or initializing backing memory.
- is_
default_ memory_ manager_ bootstrapped - Return whether this thread’s default runtime has completed bootstrap.
- is_
ic_ memory_ stable_ key - Return true when
stable_keybelongs to theic-memorynamespace. - memory_
manager_ governance_ range - MemoryManager range reserved for
ic-memorygovernance in the current substrate. - open_
default_ memory_ manager_ memory - Open a committed memory from this thread’s default runtime.
- open_
default_ memory_ manager_ memory_ by_ key - Open a key already committed by the host’s default runtime without changing policy.
- register_
memory_ request - Register a key-only request before the linked snapshot seals.
- register_
static_ memory_ declaration - Register one allocation declaration before bootstrap seals the snapshot.
- register_
static_ memory_ manager_ declaration - Register one
MemoryManagerdeclaration before bootstrap seals the snapshot. - register_
static_ memory_ manager_ declaration_ with_ schema - Register one
MemoryManagerdeclaration with schema metadata. - register_
static_ memory_ manager_ range - Register one
MemoryManagerauthority range before bootstrap seals the snapshot. - register_
static_ memory_ range_ declaration - Register one authority range declaration before bootstrap seals the snapshot.
- sealed_
declaration_ snapshot - Seal and return the canonical linked-program declaration snapshot.
- validate_
allocations - Validate a committed ledger and current declarations before opening.
- validate_
memory_ manager_ id - Validate that a
MemoryManagerID is usable as an allocation slot. - validate_
stable_ cell_ ledger_ memory - Validate an existing stable-cell ledger record before opening it with
ic-stable-structures::Cell.