2023-09-12 18:44:45 +00:00
|
|
|
# nimbus-eth1
|
2024-03-20 15:15:56 +00:00
|
|
|
# Copyright (c) 2023-2024 Status Research & Development GmbH
|
2023-09-12 18:44:45 +00:00
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
## Kvt DB -- Transaction interface
|
|
|
|
## ===============================
|
|
|
|
##
|
|
|
|
{.push raises: [].}
|
|
|
|
|
|
|
|
import
|
|
|
|
results,
|
2024-05-07 19:59:27 +00:00
|
|
|
./kvt_tx/[tx_fork, tx_frame, tx_stow],
|
2024-06-13 18:15:11 +00:00
|
|
|
./kvt_init/memory_only,
|
2024-05-07 19:59:27 +00:00
|
|
|
./kvt_desc
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions, getters
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
func txTop*(db: KvtDbRef): Result[KvtTxRef,KvtError] =
|
|
|
|
## Getter, returns top level transaction if there is any.
|
2024-05-07 19:59:27 +00:00
|
|
|
db.txFrameTop()
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
func isTop*(tx: KvtTxRef): bool =
|
|
|
|
## Getter, returns `true` if the argument `tx` referes to the current top
|
|
|
|
## level transaction.
|
2024-05-07 19:59:27 +00:00
|
|
|
tx.txFrameIsTop()
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
func level*(tx: KvtTxRef): int =
|
|
|
|
## Getter, positive nesting level of transaction argument `tx`
|
2024-05-07 19:59:27 +00:00
|
|
|
tx.txFrameLevel()
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
func level*(db: KvtDbRef): int =
|
|
|
|
## Getter, non-negative nesting level (i.e. number of pending transactions)
|
2024-05-07 19:59:27 +00:00
|
|
|
db.txFrameLevel()
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
func to*(tx: KvtTxRef; T: type[KvtDbRef]): T =
|
|
|
|
## Getter, retrieves the parent database descriptor from argument `tx`
|
|
|
|
tx.db
|
|
|
|
|
2024-04-03 15:48:35 +00:00
|
|
|
func toKvtDbRef*(tx: KvtTxRef): KvtDbRef =
|
|
|
|
## Same as `.to(KvtDbRef)`
|
|
|
|
tx.db
|
|
|
|
|
2024-05-07 19:59:27 +00:00
|
|
|
proc forkTx*(
|
|
|
|
db: KvtDbRef;
|
|
|
|
backLevel: int; # Backward location of transaction
|
|
|
|
): Result[KvtDbRef,KvtError] =
|
|
|
|
## Fork a new descriptor obtained from parts of the argument database
|
|
|
|
## as described by arguments `db` and `backLevel`.
|
2023-09-18 20:20:28 +00:00
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
## If the argument `backLevel` is non-negative, the forked descriptor will
|
|
|
|
## provide the database view where the first `backLevel` transaction layers
|
|
|
|
## are stripped and the remaing layers are squashed into a single transaction.
|
2023-09-18 20:20:28 +00:00
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
## If `backLevel` is `-1`, a database descriptor with empty transaction
|
|
|
|
## layers will be provided where the `roFilter` between database and
|
|
|
|
## transaction layers are kept in place.
|
2023-09-18 20:20:28 +00:00
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
## If `backLevel` is `-2`, a database descriptor with empty transaction
|
|
|
|
## layers will be provided without an `roFilter`.
|
|
|
|
##
|
|
|
|
## The returned database descriptor will always have transaction level one.
|
|
|
|
## If there were no transactions that could be squashed, an empty
|
|
|
|
## transaction is added.
|
2023-09-18 20:20:28 +00:00
|
|
|
##
|
|
|
|
## Use `kvt_desc.forget()` to clean up this descriptor.
|
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
# Fork top layer (with or without pending transaction)?
|
|
|
|
if backLevel == 0:
|
|
|
|
return db.txForkTop()
|
|
|
|
|
|
|
|
# Fork bottom layer (=> 0 < db.stack.len)
|
|
|
|
if backLevel == db.stack.len:
|
|
|
|
return db.txForkBase()
|
|
|
|
|
|
|
|
# Inspect transaction stack
|
|
|
|
if 0 < backLevel:
|
|
|
|
var tx = db.txRef
|
|
|
|
if tx.isNil or db.stack.len < backLevel:
|
|
|
|
return err(TxLevelTooDeep)
|
|
|
|
|
|
|
|
# Fetch tx of level `backLevel` (seed to skip some items)
|
|
|
|
for _ in 0 ..< backLevel:
|
|
|
|
tx = tx.parent
|
|
|
|
if tx.isNil:
|
|
|
|
return err(TxStackGarbled)
|
|
|
|
return tx.txFork()
|
|
|
|
|
|
|
|
# Plain fork, include `roFilter`
|
|
|
|
if backLevel == -1:
|
|
|
|
let xb = ? db.fork(noFilter=false)
|
|
|
|
discard xb.txFrameBegin()
|
|
|
|
return ok(xb)
|
|
|
|
|
|
|
|
# Plain fork, unfiltered backend
|
|
|
|
if backLevel == -2:
|
|
|
|
let xb = ? db.fork(noFilter=true)
|
|
|
|
discard xb.txFrameBegin()
|
|
|
|
return ok(xb)
|
|
|
|
|
|
|
|
err(TxLevelUseless)
|
2023-09-18 20:20:28 +00:00
|
|
|
|
2023-09-12 18:44:45 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions: Transaction frame
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc txBegin*(db: KvtDbRef): Result[KvtTxRef,KvtError] =
|
|
|
|
## Starts a new transaction.
|
|
|
|
##
|
|
|
|
## Example:
|
|
|
|
## ::
|
|
|
|
## proc doSomething(db: KvtDbRef) =
|
2024-05-07 19:59:27 +00:00
|
|
|
## let tx = db.txBegin
|
2023-09-12 18:44:45 +00:00
|
|
|
## defer: tx.rollback()
|
|
|
|
## ... continue using db ...
|
|
|
|
## tx.commit()
|
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
db.txFrameBegin()
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
proc rollback*(
|
|
|
|
tx: KvtTxRef; # Top transaction on database
|
|
|
|
): Result[void,KvtError] =
|
|
|
|
## Given a *top level* handle, this function discards all database operations
|
|
|
|
## performed for this transactio. The previous transaction is returned if
|
|
|
|
## there was any.
|
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
tx.txFrameRollback()
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
proc commit*(
|
|
|
|
tx: KvtTxRef; # Top transaction on database
|
|
|
|
): Result[void,KvtError] =
|
|
|
|
## Given a *top level* handle, this function accepts all database operations
|
|
|
|
## performed through this handle and merges it to the previous layer. The
|
|
|
|
## previous transaction is returned if there was any.
|
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
tx.txFrameCommit()
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
proc collapse*(
|
|
|
|
tx: KvtTxRef; # Top transaction on database
|
|
|
|
commit: bool; # Commit if `true`, otherwise roll back
|
|
|
|
): Result[void,KvtError] =
|
|
|
|
## Iterated application of `commit()` or `rollback()` performing the
|
|
|
|
## something similar to
|
|
|
|
## ::
|
|
|
|
## while true:
|
|
|
|
## discard tx.commit() # ditto for rollback()
|
|
|
|
## if db.topTx.isErr: break
|
|
|
|
## tx = db.topTx.value
|
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
tx.txFrameCollapse commit
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Public functions: save database
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2024-05-07 19:59:27 +00:00
|
|
|
proc persist*(
|
2023-09-12 18:44:45 +00:00
|
|
|
db: KvtDbRef; # Database
|
|
|
|
): Result[void,KvtError] =
|
2024-05-07 19:59:27 +00:00
|
|
|
## Persistently store data onto backend database. If the system is running
|
|
|
|
## without a database backend, the function returns immediately with an
|
|
|
|
## error. The same happens if there is a pending transaction.
|
2023-09-12 18:44:45 +00:00
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
## The function merges all staged data from the top layer cache onto the
|
|
|
|
## backend stage area. After that, the top layer cache is cleared.
|
2023-09-12 18:44:45 +00:00
|
|
|
##
|
2024-05-07 19:59:27 +00:00
|
|
|
## Finally, the staged data are merged into the physical backend database
|
|
|
|
## and the staged data area is cleared. Wile performing this last step,
|
|
|
|
## the recovery journal is updated (if available.)
|
|
|
|
##
|
2024-06-13 18:15:11 +00:00
|
|
|
# Register for saving if piggybacked on remote database
|
|
|
|
if db.backend.kind == BackendRdbTriggered:
|
|
|
|
? db.txStowOk(persistent=true)
|
|
|
|
? db.backend.setWrReqFn db
|
|
|
|
return err(TxPersistDelayed)
|
|
|
|
|
2024-05-07 19:59:27 +00:00
|
|
|
db.txStow(persistent=true)
|
2023-09-12 18:44:45 +00:00
|
|
|
|
2024-05-07 19:59:27 +00:00
|
|
|
proc stow*(
|
|
|
|
db: KvtDbRef; # Database
|
|
|
|
): Result[void,KvtError] =
|
|
|
|
## This function is similar to `persist()` stopping short of performing the
|
|
|
|
## final step storing on the persistent database. It fails if there is a
|
|
|
|
## pending transaction.
|
|
|
|
##
|
|
|
|
## The function merges all staged data from the top layer cache onto the
|
|
|
|
## backend stage area and leaves it there. This function can be seen as
|
|
|
|
## a sort of a bottom level transaction `commit()`.
|
|
|
|
##
|
|
|
|
db.txStow(persistent=false)
|
2023-09-12 18:44:45 +00:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|