Some checks failed
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
Build & Push SDK Proto Builder / build (push) Has been cancelled
80 lines
2.4 KiB
Go
80 lines
2.4 KiB
Go
package baseapp
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime/debug"
|
|
|
|
errorsmod "cosmossdk.io/errors"
|
|
storetypes "cosmossdk.io/store/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
)
|
|
|
|
// RecoveryHandler handles recovery() object.
|
|
// Return a non-nil error if recoveryObj was processed.
|
|
// Return nil if recoveryObj was not processed.
|
|
type RecoveryHandler func(recoveryObj any) error
|
|
|
|
// recoveryMiddleware is wrapper for RecoveryHandler to create chained recovery handling.
|
|
// returns (recoveryMiddleware, nil) if recoveryObj was not processed and should be passed to the next middleware in chain.
|
|
// returns (nil, error) if recoveryObj was processed and middleware chain processing should be stopped.
|
|
type recoveryMiddleware func(recoveryObj any) (recoveryMiddleware, error)
|
|
|
|
// processRecovery processes recoveryMiddleware chain for recovery() object.
|
|
// Chain processing stops on non-nil error or when chain is processed.
|
|
func processRecovery(recoveryObj any, middleware recoveryMiddleware) error {
|
|
if middleware == nil {
|
|
return nil
|
|
}
|
|
|
|
next, err := middleware(recoveryObj)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return processRecovery(recoveryObj, next)
|
|
}
|
|
|
|
// newRecoveryMiddleware creates a RecoveryHandler middleware.
|
|
func newRecoveryMiddleware(handler RecoveryHandler, next recoveryMiddleware) recoveryMiddleware {
|
|
return func(recoveryObj any) (recoveryMiddleware, error) {
|
|
if err := handler(recoveryObj); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return next, nil
|
|
}
|
|
}
|
|
|
|
// newOutOfGasRecoveryMiddleware creates a standard OutOfGas recovery middleware for app.runTx method.
|
|
func newOutOfGasRecoveryMiddleware(gasWanted uint64, ctx sdk.Context, next recoveryMiddleware) recoveryMiddleware {
|
|
handler := func(recoveryObj any) error {
|
|
err, ok := recoveryObj.(storetypes.ErrorOutOfGas)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
|
|
return errorsmod.Wrap(
|
|
sdkerrors.ErrOutOfGas, fmt.Sprintf(
|
|
"out of gas in location: %v; gasWanted: %d, gasUsed: %d",
|
|
err.Descriptor, gasWanted, ctx.GasMeter().GasConsumed(),
|
|
),
|
|
)
|
|
}
|
|
|
|
return newRecoveryMiddleware(handler, next)
|
|
}
|
|
|
|
// newDefaultRecoveryMiddleware creates a default (last in chain) recovery middleware for app.runTx method.
|
|
func newDefaultRecoveryMiddleware() recoveryMiddleware {
|
|
handler := func(recoveryObj any) error {
|
|
return errorsmod.Wrap(
|
|
sdkerrors.ErrPanic, fmt.Sprintf(
|
|
"recovered: %v\nstack:\n%v", recoveryObj, string(debug.Stack()),
|
|
),
|
|
)
|
|
}
|
|
|
|
return newRecoveryMiddleware(handler, nil)
|
|
}
|