2022-09-27 14:27:40 +00:00
|
|
|
import ../statemachine
|
|
|
|
import ./error
|
|
|
|
import ./started
|
|
|
|
import ./cancelled
|
|
|
|
|
|
|
|
type PurchaseSubmitted* = ref object of PurchaseState
|
|
|
|
|
|
|
|
method enterAsync(state: PurchaseSubmitted) {.async.} =
|
2022-11-08 07:10:17 +00:00
|
|
|
without purchase =? (state.context as Purchase) and
|
|
|
|
request =? purchase.request:
|
2022-09-27 14:27:40 +00:00
|
|
|
raiseAssert "invalid state"
|
|
|
|
|
|
|
|
let market = purchase.market
|
|
|
|
let clock = purchase.clock
|
|
|
|
|
|
|
|
proc wait {.async.} =
|
|
|
|
let done = newFuture[void]()
|
|
|
|
proc callback(_: RequestId) =
|
|
|
|
done.complete()
|
|
|
|
let subscription = await market.subscribeFulfillment(request.id, callback)
|
|
|
|
await done
|
|
|
|
await subscription.unsubscribe()
|
|
|
|
|
|
|
|
proc withTimeout(future: Future[void]) {.async.} =
|
2022-11-08 07:10:17 +00:00
|
|
|
let expiry = request.expiry.truncate(int64)
|
2022-09-27 14:27:40 +00:00
|
|
|
await future.withTimeout(clock, expiry)
|
|
|
|
|
|
|
|
try:
|
|
|
|
await wait().withTimeout()
|
|
|
|
except Timeout:
|
|
|
|
state.switch(PurchaseCancelled())
|
|
|
|
return
|
|
|
|
except CatchableError as error:
|
2022-11-08 07:10:17 +00:00
|
|
|
state.switch(PurchaseErrored(error: error))
|
2022-09-27 14:27:40 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
state.switch(PurchaseStarted())
|
2022-11-08 07:10:17 +00:00
|
|
|
|
|
|
|
method description*(state: PurchaseSubmitted): string =
|
|
|
|
"submitted"
|