mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-06 23:43:08 +00:00
* Add missing custom errors * Separate mock state errors * Remove the Option in the error setters * Wrap the contract errors in MarketError * Remove async raises (needs to address it in another PR) * Wrap contract errors into specific error types * Rename SlotNotFreeError to SlotStateMismatchError
64 lines
1.9 KiB
Nim
64 lines
1.9 KiB
Nim
import pkg/stint
|
|
import ../../logutils
|
|
import ../../market
|
|
import ../../utils/exceptions
|
|
import ../statemachine
|
|
import ../salesagent
|
|
import ./filled
|
|
import ./cancelled
|
|
import ./failed
|
|
import ./ignored
|
|
import ./errored
|
|
|
|
logScope:
|
|
topics = "marketplace sales filling"
|
|
|
|
type SaleFilling* = ref object of SaleState
|
|
proof*: Groth16Proof
|
|
|
|
method `$`*(state: SaleFilling): string =
|
|
"SaleFilling"
|
|
|
|
method onCancelled*(state: SaleFilling, request: StorageRequest): ?State =
|
|
return some State(SaleCancelled())
|
|
|
|
method onFailed*(state: SaleFilling, request: StorageRequest): ?State =
|
|
return some State(SaleFailed())
|
|
|
|
method run*(
|
|
state: SaleFilling, machine: Machine
|
|
): Future[?State] {.async: (raises: []).} =
|
|
let data = SalesAgent(machine).data
|
|
let market = SalesAgent(machine).context.market
|
|
|
|
without (request =? data.request):
|
|
raiseAssert "Request not set"
|
|
|
|
logScope:
|
|
requestId = data.requestId
|
|
slotIndex = data.slotIndex
|
|
|
|
try:
|
|
without collateral =? await market.slotCollateral(data.requestId, data.slotIndex),
|
|
err:
|
|
error "Failure attempting to fill slot: unable to calculate collateral",
|
|
error = err.msg
|
|
return some State(SaleErrored(error: err))
|
|
|
|
debug "Filling slot"
|
|
try:
|
|
await market.fillSlot(data.requestId, data.slotIndex, state.proof, collateral)
|
|
except SlotStateMismatchError as e:
|
|
debug "Slot is already filled, ignoring slot"
|
|
return some State(SaleIgnored(reprocessSlot: false, returnBytes: true))
|
|
except MarketError as e:
|
|
return some State(SaleErrored(error: e))
|
|
# other CatchableErrors are handled "automatically" by the SaleState
|
|
|
|
return some State(SaleFilled())
|
|
except CancelledError as e:
|
|
trace "SaleFilling.run was cancelled", error = e.msgDetail
|
|
except CatchableError as e:
|
|
error "Error during SaleFilling.run", error = e.msgDetail
|
|
return some State(SaleErrored(error: e))
|