## Description We decided to remove middlewares, and revert to antehandlers (exactly like in v045) for this release. A better middleware solution will be implemented after v046. ref: #11955 Because this refactor is big, so I decided to cut it into two. This PR is part 1 of 2: - part 1: Revert baseapp and middlewares to v0.45.4 - part 2: Add posthandler, tips, priority --- Suggestion for reviewers: This PR might still be hard to review though. I think it's easier to actually review the diff between v0.45.4 and this PR: - `git difftool -d v0.45.4..am/revert-045-baseapp baseapp` - most important parts to review: runTx, runMsgs - `git difftool -d v0.45.4..am/revert-045-baseapp x/auth/ante` - only cosmetic changes - `git difftool -d v0.45.4..am/revert-045-baseapp simapp` --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/main/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
67 lines
2.7 KiB
Go
67 lines
2.7 KiB
Go
package types
|
|
|
|
// Handler defines the core of the state transition function of an application.
|
|
type Handler func(ctx Context, msg Msg) (*Result, error)
|
|
|
|
// AnteHandler authenticates transactions, before their internal messages are handled.
|
|
// If newCtx.IsZero(), ctx is used instead.
|
|
type AnteHandler func(ctx Context, tx Tx, simulate bool) (newCtx Context, err error)
|
|
|
|
// AnteDecorator wraps the next AnteHandler to perform custom pre- and post-processing.
|
|
type AnteDecorator interface {
|
|
AnteHandle(ctx Context, tx Tx, simulate bool, next AnteHandler) (newCtx Context, err error)
|
|
}
|
|
|
|
// ChainDecorator chains AnteDecorators together with each AnteDecorator
|
|
// wrapping over the decorators further along chain and returns a single AnteHandler.
|
|
//
|
|
// NOTE: The first element is outermost decorator, while the last element is innermost
|
|
// decorator. Decorator ordering is critical since some decorators will expect
|
|
// certain checks and updates to be performed (e.g. the Context) before the decorator
|
|
// is run. These expectations should be documented clearly in a CONTRACT docline
|
|
// in the decorator's godoc.
|
|
//
|
|
// NOTE: Any application that uses GasMeter to limit transaction processing cost
|
|
// MUST set GasMeter with the FIRST AnteDecorator. Failing to do so will cause
|
|
// transactions to be processed with an infinite gasmeter and open a DOS attack vector.
|
|
// Use `ante.SetUpContextDecorator` or a custom Decorator with similar functionality.
|
|
// Returns nil when no AnteDecorator are supplied.
|
|
func ChainAnteDecorators(chain ...AnteDecorator) AnteHandler {
|
|
if len(chain) == 0 {
|
|
return nil
|
|
}
|
|
|
|
// handle non-terminated decorators chain
|
|
if (chain[len(chain)-1] != Terminator{}) {
|
|
chain = append(chain, Terminator{})
|
|
}
|
|
|
|
return func(ctx Context, tx Tx, simulate bool) (Context, error) {
|
|
return chain[0].AnteHandle(ctx, tx, simulate, ChainAnteDecorators(chain[1:]...))
|
|
}
|
|
}
|
|
|
|
// Terminator AnteDecorator will get added to the chain to simplify decorator code
|
|
// Don't need to check if next == nil further up the chain
|
|
// ______
|
|
// <((((((\\\
|
|
// / . }\
|
|
// ;--..--._|}
|
|
// (\ '--/\--' )
|
|
// \\ | '-' :'|
|
|
// \\ . -==- .-|
|
|
// \\ \.__.' \--._
|
|
// [\\ __.--| // _/'--.
|
|
// \ \\ .'-._ ('-----'/ __/ \
|
|
// \ \\ / __>| | '--. |
|
|
// \ \\ | \ | / / /
|
|
// \ '\ / \ | | _/ /
|
|
// \ \ \ | | / /
|
|
// snd \ \ \ /
|
|
type Terminator struct{}
|
|
|
|
// Simply return provided Context and nil error
|
|
func (t Terminator) AnteHandle(ctx Context, _ Tx, _ bool, _ AnteHandler) (Context, error) {
|
|
return ctx, nil
|
|
}
|