During transaction processing we retrieve the type of msg and based on that we get the applicable handler from the router. This means that the router should only receive messages that it knows how to handle. Instead of using Get interfaces, we should cast to the actual type of transaction and then access the transaction details that way. It's okay to panic here, because if the DummyHandler receives a message that it cannot cast to the expected type it means something is wrong with the router. Instead of retrieving an arbitrary key by chance we should panic.
77 lines
1.4 KiB
Go
77 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
crypto "github.com/tendermint/go-crypto"
|
|
)
|
|
|
|
// An sdk.Tx which is its own sdk.Msg.
|
|
type dummyTx struct {
|
|
key []byte
|
|
value []byte
|
|
bytes []byte
|
|
}
|
|
|
|
func (tx dummyTx) Get(key interface{}) (value interface{}) {
|
|
switch k := key.(type) {
|
|
case string:
|
|
switch k {
|
|
case "key":
|
|
return tx.key
|
|
case "value":
|
|
return tx.value
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (tx dummyTx) Type() string {
|
|
return "dummy"
|
|
}
|
|
|
|
func (tx dummyTx) GetMsg() sdk.Msg {
|
|
return tx
|
|
}
|
|
|
|
func (tx dummyTx) GetSignBytes() []byte {
|
|
return tx.bytes
|
|
}
|
|
|
|
// Should the app be calling this? Or only handlers?
|
|
func (tx dummyTx) ValidateBasic() sdk.Error {
|
|
return nil
|
|
}
|
|
|
|
func (tx dummyTx) GetSigners() []crypto.Address {
|
|
return nil
|
|
}
|
|
|
|
func (tx dummyTx) GetSignatures() []sdk.StdSignature {
|
|
return nil
|
|
}
|
|
|
|
func (tx dummyTx) GetFeePayer() crypto.Address {
|
|
return nil
|
|
}
|
|
|
|
// takes raw transaction bytes and decodes them into an sdk.Tx. An sdk.Tx has
|
|
// all the signatures and can be used to authenticate.
|
|
func decodeTx(txBytes []byte) (sdk.Tx, sdk.Error) {
|
|
var tx sdk.Tx
|
|
|
|
split := bytes.Split(txBytes, []byte("="))
|
|
if len(split) == 1 {
|
|
k := split[0]
|
|
tx = dummyTx{k, k, txBytes}
|
|
} else if len(split) == 2 {
|
|
k, v := split[0], split[1]
|
|
tx = dummyTx{k, v, txBytes}
|
|
} else {
|
|
return nil, sdk.ErrTxParse("too many =")
|
|
}
|
|
|
|
return tx, nil
|
|
}
|