2022-09-27 14:27:40 +00:00
|
|
|
import ../statemachine
|
2023-06-05 08:48:06 +00:00
|
|
|
import ./errorhandling
|
2022-11-08 07:10:17 +00:00
|
|
|
import ./finished
|
|
|
|
import ./failed
|
2022-09-27 14:27:40 +00:00
|
|
|
|
2023-06-05 08:48:06 +00:00
|
|
|
type PurchaseStarted* = ref object of ErrorHandlingState
|
2022-09-27 14:27:40 +00:00
|
|
|
|
2023-06-05 08:48:06 +00:00
|
|
|
method `$`*(state: PurchaseStarted): string =
|
|
|
|
"started"
|
|
|
|
|
|
|
|
method run*(state: PurchaseStarted, machine: Machine): Future[?State] {.async.} =
|
|
|
|
let purchase = Purchase(machine)
|
2022-09-27 14:27:40 +00:00
|
|
|
|
2022-11-08 07:10:17 +00:00
|
|
|
let clock = purchase.clock
|
|
|
|
let market = purchase.market
|
|
|
|
|
|
|
|
let failed = newFuture[void]()
|
|
|
|
proc callback(_: RequestId) =
|
|
|
|
failed.complete()
|
|
|
|
let subscription = await market.subscribeRequestFailed(purchase.requestId, callback)
|
|
|
|
|
|
|
|
let ended = clock.waitUntil(await market.getRequestEnd(purchase.requestId))
|
2023-06-05 08:48:06 +00:00
|
|
|
let fut = await one(ended, failed)
|
|
|
|
await subscription.unsubscribe()
|
|
|
|
if fut.id == failed.id:
|
|
|
|
ended.cancel()
|
|
|
|
return some State(PurchaseFailed())
|
|
|
|
else:
|
|
|
|
failed.cancel()
|
|
|
|
return some State(PurchaseFinished())
|