mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-03 14:03:10 +00:00
* Change token allowance method because increaseAllowance does not exist anymore * Returns collateral when a reservation is deleted and not only a slot is filled * Remove the returnedCollateral when the slot is not filled by the host * Add returnedCollateral when the sale is ignored * Add returnsCollateral variable for ignored state * Rebase the contracts submodule on the master * Add integration test * Fix duration * Remove unnecessary teardown function * Remove misleading comment * Get returned collateral from the request * Enable logs to debug on CI * Fix test * Increase test timeout * Fix typo * Fix rebase
66 lines
2.1 KiB
Nim
66 lines
2.1 KiB
Nim
import pkg/questionable
|
|
import pkg/metrics
|
|
|
|
import ../../logutils
|
|
import ../../market
|
|
import ../../utils/exceptions
|
|
import ../salesagent
|
|
import ../statemachine
|
|
import ./cancelled
|
|
import ./failed
|
|
import ./ignored
|
|
import ./downloading
|
|
import ./errored
|
|
|
|
type SaleSlotReserving* = ref object of SaleState
|
|
|
|
logScope:
|
|
topics = "marketplace sales reserving"
|
|
|
|
method `$`*(state: SaleSlotReserving): string =
|
|
"SaleSlotReserving"
|
|
|
|
method onCancelled*(state: SaleSlotReserving, request: StorageRequest): ?State =
|
|
return some State(SaleCancelled())
|
|
|
|
method onFailed*(state: SaleSlotReserving, request: StorageRequest): ?State =
|
|
return some State(SaleFailed())
|
|
|
|
method run*(
|
|
state: SaleSlotReserving, machine: Machine
|
|
): Future[?State] {.async: (raises: []).} =
|
|
let agent = SalesAgent(machine)
|
|
let data = agent.data
|
|
let context = agent.context
|
|
let market = context.market
|
|
|
|
logScope:
|
|
requestId = data.requestId
|
|
slotIndex = data.slotIndex
|
|
|
|
try:
|
|
let canReserve = await market.canReserveSlot(data.requestId, data.slotIndex)
|
|
if canReserve:
|
|
try:
|
|
trace "Reserving slot"
|
|
await market.reserveSlot(data.requestId, data.slotIndex)
|
|
except SlotReservationNotAllowedError as e:
|
|
debug "Slot cannot be reserved, ignoring", error = e.msg
|
|
return some State(SaleIgnored(reprocessSlot: false, returnsCollateral: true))
|
|
except MarketError as e:
|
|
return some State(SaleErrored(error: e))
|
|
# other CatchableErrors are handled "automatically" by the SaleState
|
|
|
|
trace "Slot successfully reserved"
|
|
return some State(SaleDownloading())
|
|
else:
|
|
# do not re-add this slot to the queue, and return bytes from Reservation to
|
|
# the Availability
|
|
debug "Slot cannot be reserved, ignoring"
|
|
return some State(SaleIgnored(reprocessSlot: false, returnsCollateral: true))
|
|
except CancelledError as e:
|
|
trace "SaleSlotReserving.run was cancelled", error = e.msgDetail
|
|
except CatchableError as e:
|
|
error "Error during SaleSlotReserving.run", error = e.msgDetail
|
|
return some State(SaleErrored(error: e))
|