mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 13:33:10 +00:00
* fix(statemachine): do not raise from state.run * fix rebase * fix exception handling in SaleProvingSimulated.prove - re-raise CancelledError - don't return State on CatchableError - expect the Proofs_InvalidProof custom error instead of checking a string * asyncSpawn salesagent.onCancelled This was swallowing a KeyError in one of the tests (fixed in the previous commit) * remove error handling states in asyncstatemachine * revert unneeded changes * formatting * PR feedback, logging updates
55 lines
1.6 KiB
Nim
55 lines
1.6 KiB
Nim
import pkg/metrics
|
|
|
|
import ../../logutils
|
|
import ../../utils/exceptions
|
|
import ../statemachine
|
|
import ./finished
|
|
import ./failed
|
|
import ./error
|
|
|
|
declareCounter(codex_purchases_started, "codex purchases started")
|
|
|
|
logScope:
|
|
topics = "marketplace purchases started"
|
|
|
|
type PurchaseStarted* = ref object of PurchaseState
|
|
|
|
method `$`*(state: PurchaseStarted): string =
|
|
"started"
|
|
|
|
method run*(
|
|
state: PurchaseStarted, machine: Machine
|
|
): Future[?State] {.async: (raises: []).} =
|
|
codex_purchases_started.inc()
|
|
let purchase = Purchase(machine)
|
|
|
|
let clock = purchase.clock
|
|
let market = purchase.market
|
|
info "All required slots filled, purchase started", requestId = purchase.requestId
|
|
|
|
let failed = newFuture[void]()
|
|
proc callback(_: RequestId) =
|
|
failed.complete()
|
|
|
|
var ended: Future[void]
|
|
try:
|
|
let subscription = await market.subscribeRequestFailed(purchase.requestId, callback)
|
|
|
|
# Ensure that we're past the request end by waiting an additional second
|
|
ended = clock.waitUntil((await market.getRequestEnd(purchase.requestId)) + 1)
|
|
let fut = await one(ended, failed)
|
|
await subscription.unsubscribe()
|
|
if fut.id == failed.id:
|
|
ended.cancelSoon()
|
|
return some State(PurchaseFailed())
|
|
else:
|
|
failed.cancelSoon()
|
|
return some State(PurchaseFinished())
|
|
except CancelledError as e:
|
|
ended.cancelSoon()
|
|
failed.cancelSoon()
|
|
trace "PurchaseStarted.run was cancelled", error = e.msgDetail
|
|
except CatchableError as e:
|
|
error "Error during PurchaseStarted.run", error = e.msgDetail
|
|
return some State(PurchaseErrored(error: e))
|