Skip to main content

Region

Byte-level access to isolated, (virtual) stable memory regions.

This is a moderately lightweight abstraction over IC stable memory and supports persisting regions of binary data across Motoko upgrades. Use of this module is fully compatible with Motoko's use of stable variables, whose persistence mechanism also uses (real) IC stable memory internally, but does not interfere with this API. It is also fully compatible with existing uses of the ExperimentalStableMemory library, which has a similar interface, but, only supported a single memory region, without isolation between different applications.

The Region type is stable and can be used in stable data structures.

A new, empty Region is allocated using function new().

Regions are stateful objects and can be distinguished by the numeric identifier returned by function id(region). Every region owns an initially empty, but growable sequence of virtual IC stable memory pages. The current size, in pages, of a region is returned by function size(region). The size of a region determines the range, [ 0, ..., size(region)*2^16 ), of valid byte-offsets into the region; these offsets are used as the source and destination of load/store operations on the region.

Memory is allocated to a region, using function grow(region, pages), sequentially and on demand, in units of 64KiB logical pages, starting with 0 allocated pages. A call to grow may succeed, returning the previous size of the region, or fail, returning a sentinel value. New pages are zero initialized.

A size of a region can only grow and never shrink. In addition, the stable memory pages allocated to a region will not be reclaimed by garbage collection, even if the region object itself becomes unreachable.

Growth is capped by a soft limit on physical page count controlled by compile-time flag --max-stable-pages <n> (the default is 65536, or 4GiB).

Each load operation loads from region relative byte address offset in little-endian format using the natural bit-width of the type in question. The operation traps if attempting to read beyond the current region size.

Each store operation stores to region relative byte address offset in little-endian format using the natural bit-width of the type in question. The operation traps if attempting to write beyond the current region size.

Text values can be handled by using Text.decodeUtf8 and Text.encodeUtf8, in conjunction with loadBlob and storeBlob.

The current region allocation and region contents are preserved across upgrades.

NB: The IC's actual stable memory size (ic0.stable_size) may exceed the total page size reported by summing all regions sizes. This (and the cap on growth) are to accommodate Motoko's stable variables and bookkeeping for regions. Applications that plan to use Motoko stable variables sparingly or not at all can increase --max-stable-pages as desired, approaching the IC maximum (initially 8GiB, then 32Gib, currently 64Gib). All applications should reserve at least one page for stable variable data, even when no stable variables are used.

Usage:

import Region "mo:base/Region";

Type Region

type Region = Prim.Types.Region

A stateful handle to an isolated region of IC stable memory. Region is a stable type and regions can be stored in stable variables.

Function new

func new() : Region

Allocate a new, isolated Region of size 0.

Example:

let region = Region.new();
assert Region.size(region) == 0;

Function id

func id(_ : Region) : Nat

Return a Nat identifying the given region. Maybe be used for equality, comparison and hashing. NB: Regions returned by new() are numbered from 16 (regions 0..15 are currently reserved for internal use). Allocate a new, isolated Region of size 0.

Example:

let region = Region.new();
assert Region.id(region) == 16;

Function size

func size(region : Region) : (pages : Nat64)

Current size of region, in pages. Each page is 64KiB (65536 bytes). Initially 0. Preserved across upgrades, together with contents of allocated stable memory.

Example:

let region = Region.new();
let beforeSize = Region.size(region);
ignore Region.grow(region, 10);
let afterSize = Region.size(region);
afterSize - beforeSize // => 10

Function grow

func grow(region : Region, newPages : Nat64) : (oldPages : Nat64)

Grow current size of region by the given number of pages. Each page is 64KiB (65536 bytes). Returns the previous size when able to grow. Returns 0xFFFF_FFFF_FFFF_FFFF if remaining pages insufficient. Every new page is zero-initialized, containing byte 0x00 at every offset. Function grow is capped by a soft limit on size controlled by compile-time flag --max-stable-pages <n> (the default is 65536, or 4GiB).

Example:

import Error "mo:base/Error";

let region = Region.new();
let beforeSize = Region.grow(region, 10);
if (beforeSize == 0xFFFF_FFFF_FFFF_FFFF) {
throw Error.reject("Out of memory");
};
let afterSize = Region.size(region);
afterSize - beforeSize // => 10

Function loadNat8

func loadNat8(region : Region, offset : Nat64) : Nat8

Within region, load a Nat8 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat8(region, offset, value);
Region.loadNat8(region, offset) // => 123

Function storeNat8

func storeNat8(region : Region, offset : Nat64, value : Nat8) : ()

Within region, store a Nat8 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat8(region, offset, value);
Region.loadNat8(region, offset) // => 123

Function loadNat16

func loadNat16(region : Region, offset : Nat64) : Nat16

Within region, load a Nat16 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat16(region, offset, value);
Region.loadNat16(region, offset) // => 123

Function storeNat16

func storeNat16(region : Region, offset : Nat64, value : Nat16) : ()

Within region, store a Nat16 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat16(region, offset, value);
Region.loadNat16(region, offset) // => 123

Function loadNat32

func loadNat32(region : Region, offset : Nat64) : Nat32

Within region, load a Nat32 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat32(region, offset, value);
Region.loadNat32(region, offset) // => 123

Function storeNat32

func storeNat32(region : Region, offset : Nat64, value : Nat32) : ()

Within region, store a Nat32 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat32(region, offset, value);
Region.loadNat32(region, offset) // => 123

Function loadNat64

func loadNat64(region : Region, offset : Nat64) : Nat64

Within region, load a Nat64 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat64(region, offset, value);
Region.loadNat64(region, offset) // => 123

Function storeNat64

func storeNat64(region : Region, offset : Nat64, value : Nat64) : ()

Within region, store a Nat64 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeNat64(region, offset, value);
Region.loadNat64(region, offset) // => 123

Function loadInt8

func loadInt8(region : Region, offset : Nat64) : Int8

Within region, load a Int8 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt8(region, offset, value);
Region.loadInt8(region, offset) // => 123

Function storeInt8

func storeInt8(region : Region, offset : Nat64, value : Int8) : ()

Within region, store a Int8 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt8(region, offset, value);
Region.loadInt8(region, offset) // => 123

Function loadInt16

func loadInt16(region : Region, offset : Nat64) : Int16

Within region, load a Int16 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt16(region, offset, value);
Region.loadInt16(region, offset) // => 123

Function storeInt16

func storeInt16(region : Region, offset : Nat64, value : Int16) : ()

Within region, store a Int16 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt16(region, offset, value);
Region.loadInt16(region, offset) // => 123

Function loadInt32

func loadInt32(region : Region, offset : Nat64) : Int32

Within region, load a Int32 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt32(region, offset, value);
Region.loadInt32(region, offset) // => 123

Function storeInt32

func storeInt32(region : Region, offset : Nat64, value : Int32) : ()

Within region, store a Int32 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt32(region, offset, value);
Region.loadInt32(region, offset) // => 123

Function loadInt64

func loadInt64(region : Region, offset : Nat64) : Int64

Within region, load a Int64 value from offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt64(region, offset, value);
Region.loadInt64(region, offset) // => 123

Function storeInt64

func storeInt64(region : Region, offset : Nat64, value : Int64) : ()

Within region, store a Int64 value at offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 123;
Region.storeInt64(region, offset, value);
Region.loadInt64(region, offset) // => 123

Function loadFloat

func loadFloat(region : Region, offset : Nat64) : Float

Within region, loads a Float value from the given offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 1.25;
Region.storeFloat(region, offset, value);
Region.loadFloat(region, offset) // => 1.25

Function storeFloat

func storeFloat(region : Region, offset : Nat64, value : Float) : ()

Within region, store float value at the given offset. Traps on an out-of-bounds access.

Example:

let region = Region.new();
let offset = 0;
let value = 1.25;
Region.storeFloat(region, offset, value);
Region.loadFloat(region, offset) // => 1.25

Function loadBlob

func loadBlob(region : Region, offset : Nat64, size : Nat) : Blob

Within region, load size bytes starting from offset as a Blob. Traps on an out-of-bounds access.

Example:

import Blob "mo:base/Blob";

let region = Region.new();
let offset = 0;
let value = Blob.fromArray([1, 2, 3]);
let size = value.size();
Region.storeBlob(region, offset, value);
Blob.toArray(Region.loadBlob(region, offset, size)) // => [1, 2, 3]

Function storeBlob

func storeBlob(region : Region, offset : Nat64, value : Blob) : ()

Within region, write blob.size()bytes ofblobbeginning atoffset`. Traps on an out-of-bounds access.

Example:

import Blob "mo:base/Blob";

let region = Region.new();
let offset = 0;
let value = Blob.fromArray([1, 2, 3]);
let size = value.size();
Region.storeBlob(region, offset, value);
Blob.toArray(Region.loadBlob(region, offset, size)) // => [1, 2, 3]