Module Mask.Attached

include Merkle_mask.Base_merkle_tree_intf.S with module Addr = Addr with module Location = Location with type account := Test_stubs.Account.t and type root_hash := Test_stubs.Hash.t and type hash := Test_stubs.Hash.t and type key := Test_stubs.Key.t and type token_id := Test_stubs.Token_id.t and type token_id_set := Test_stubs.Token_id.Set.t and type account_id := Test_stubs.Account_id.t and type account_id_set := Test_stubs.Account_id.Set.t with module Addr = Location.Addr
type index = int
type t

no deriving, purposely; signatures that include this one may add deriving

module Addr = Location.Addr
module Location = Location
include Merkle_ledger.Syncable_intf.S with type root_hash := Test_stubs.Hash.t and type hash := Test_stubs.Hash.t and type account := Test_stubs.Account.t and type addr := Addr.t and type path = Path.t and type t := t
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t
type path = Path.t
val depth : t -> int
val num_accounts : t -> int
val merkle_path_at_addr_exn : t -> Addr.t -> path
val get_inner_hash_at_addr_exn : t -> Addr.t -> Test_stubs.Hash.t
val set_inner_hash_at_addr_exn : t -> Addr.t -> Test_stubs.Hash.t -> unit
val set_all_accounts_rooted_at_exn : t -> Addr.t -> Test_stubs.Account.t list -> unit
val set_batch_accounts : t -> (Addr.t * Test_stubs.Account.t) list -> unit
val get_all_accounts_rooted_at_exn : t -> Addr.t -> (Addr.t * Test_stubs.Account.t) list

Get all of the accounts that are in a subtree of the underlying Merkle tree rooted at `address`. The accounts are ordered by their addresses.

val make_space_for : t -> int -> unit
val to_list : t -> Test_stubs.Account.t list

list of accounts in the ledger

val iteri : t -> f:( index -> Test_stubs.Account.t -> unit ) -> unit

iterate over all indexes and accounts

val foldi : t -> init:'accum -> f:( Addr.t -> 'accum -> Test_stubs.Account.t -> 'accum ) -> 'accum

fold over accounts in the ledger, passing the Merkle address

val foldi_with_ignored_accounts : t -> Test_stubs.Account_id.Set.t -> init:'accum -> f:( Addr.t -> 'accum -> Test_stubs.Account.t -> 'accum ) -> 'accum

the set of account_ids are ledger elements to skip during the fold, because they're in a mask

val fold_until : t -> init:'accum -> f: ( 'accum -> Test_stubs.Account.t -> ( 'accum, 'stop ) Base.Continue_or_stop.t ) -> finish:( 'accum -> 'stop ) -> 'stop

fold over accounts until stop condition reached when calling f; calls finish for result

val accounts : t -> Test_stubs.Account_id.Set.t

set of account ids associated with accounts

val token_owner : t -> Test_stubs.Token_id.t -> Test_stubs.Account_id.t option

Get the account id that owns a token.

val token_owners : t -> Test_stubs.Account_id.Set.t

Get the set of all accounts which own a token.

Get all of the tokens for which a public key has accounts.

val location_of_account : t -> Test_stubs.Account_id.t -> Location.t option
val location_of_account_batch : t -> Test_stubs.Account_id.t list -> (Test_stubs.Account_id.t * Location.t option) list
val get_or_create_account : t -> Test_stubs.Account_id.t -> Test_stubs.Account.t -> ([ `Added | `Existed ] * Location.t) Core.Or_error.t

This may return an error if the ledger is full.

val close : t -> unit

the ledger should not be used after calling close

val last_filled : t -> Location.t option

for account locations in the ledger, the last (rightmost) filled location

val get_uuid : t -> Uuid.t
val get_directory : t -> string option

return Some directory for ledgers that use a file system, else None

val get : t -> Location.t -> Test_stubs.Account.t option
val get_batch : t -> Location.t list -> (Location.t * Test_stubs.Account.t option) list
val set : t -> Location.t -> Test_stubs.Account.t -> unit
val set_batch : t -> (Location.t * Test_stubs.Account.t) list -> unit
val get_at_index_exn : t -> int -> Test_stubs.Account.t
val set_at_index_exn : t -> int -> Test_stubs.Account.t -> unit
val index_of_account_exn : t -> Test_stubs.Account_id.t -> int
val merkle_root : t -> Test_stubs.Hash.t

meant to be a fast operation: the root hash is stored, rather than calculated dynamically

val merkle_path : t -> Location.t -> Path.t
val merkle_path_at_index_exn : t -> int -> Path.t
val remove_accounts_exn : t -> Test_stubs.Account_id.t list -> unit
val detached_signal : t -> unit Async_kernel.Deferred.t

Triggers when the ledger has been detached and should no longer be accessed.

exception Dangling_parent_reference of Uuid.t * string
val get_hash : t -> Addr.t -> Test_stubs.Hash.t option

get hash from mask, if present, else from its parent

val commit : t -> unit

commit all state to the parent, flush state locally

val unset_parent : ?trigger_signal:bool -> loc:string -> t -> unattached

unset_parent ?trigger_signal ~loc:__LOC__ t detaches the parent from t. The loc argument is shown in the Dangling_parent_reference exception, which will be raised if t is used while no parent is registered.

If the trigger_signal optional argument is true or omitted, detached_signal for t will be resolved. This should only be set to false when the mask will be reparented.

val get_parent : t -> Base.t

get mask parent

val parent_set_notify : t -> Test_stubs.Account.t -> unit

called when parent sets an account; update local state

val copy : t -> t
module For_testing : sig ... end

already have module For_testing from include above