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-12-18 10:56:46 +00:00
|
|
|
./kvt_tx/[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
|
|
|
|
2024-07-03 15:50:27 +00:00
|
|
|
func txLevel*(tx: KvtTxRef): int =
|
2023-09-12 18:44:45 +00:00
|
|
|
## 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
|
|
|
|
|
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
|
|
|
|
# ------------------------------------------------------------------------------
|