cosmos-sdk/examples/basecoin/app/app.go

139 lines
3.7 KiB
Go
Raw Normal View History

package app
import (
2018-02-14 08:16:06 -08:00
"encoding/json"
abci "github.com/tendermint/abci/types"
2018-03-02 01:24:07 -08:00
oldwire "github.com/tendermint/go-wire"
cmn "github.com/tendermint/tmlibs/common"
dbm "github.com/tendermint/tmlibs/db"
"github.com/tendermint/tmlibs/log"
bam "github.com/cosmos/cosmos-sdk/baseapp"
sdk "github.com/cosmos/cosmos-sdk/types"
2018-03-02 01:24:07 -08:00
"github.com/cosmos/cosmos-sdk/wire"
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/bank"
"github.com/cosmos/cosmos-sdk/examples/basecoin/types"
"github.com/cosmos/cosmos-sdk/examples/basecoin/x/sketchy"
)
const (
appName = "BasecoinApp"
)
2018-02-13 05:36:08 -08:00
// Extended ABCI application
type BasecoinApp struct {
*bam.BaseApp
2018-02-14 11:14:22 -08:00
cdc *wire.Codec
2018-02-13 05:36:08 -08:00
// keys to access the substores
capKeyMainStore *sdk.KVStoreKey
capKeyIBCStore *sdk.KVStoreKey
2018-02-14 17:09:00 -08:00
// Manage getting and setting accounts
accountMapper sdk.AccountMapper
}
2018-02-17 13:19:34 -08:00
func NewBasecoinApp(logger log.Logger, db dbm.DB) *BasecoinApp {
2018-02-14 17:09:00 -08:00
// create your application object
var app = &BasecoinApp{
BaseApp: bam.NewBaseApp(appName, logger, db),
2018-02-28 17:57:38 -08:00
cdc: MakeCodec(),
2018-02-15 08:00:57 -08:00
capKeyMainStore: sdk.NewKVStoreKey("main"),
capKeyIBCStore: sdk.NewKVStoreKey("ibc"),
2018-02-14 17:09:00 -08:00
}
2018-02-14 11:14:22 -08:00
2018-02-15 08:00:57 -08:00
// define the accountMapper
app.accountMapper = auth.NewAccountMapperSealed(
app.capKeyMainStore, // target store
&types.AppAccount{}, // prototype
)
2018-02-14 17:09:00 -08:00
// add handlers
2018-02-17 13:19:34 -08:00
coinKeeper := bank.NewCoinKeeper(app.accountMapper)
app.Router().
AddRoute("bank", bank.NewHandler(coinKeeper)).
AddRoute("sketchy", sketchy.NewHandler())
2018-02-14 11:14:22 -08:00
2018-02-15 08:00:57 -08:00
// initialize BaseApp
app.SetTxDecoder(app.txDecoder)
app.SetInitChainer(app.initChainer)
// TODO: mounting multiple stores is broken
// https://github.com/cosmos/cosmos-sdk/issues/532
app.MountStoresIAVL(app.capKeyMainStore) // , app.capKeyIBCStore)
2018-02-15 08:00:57 -08:00
app.SetAnteHandler(auth.NewAnteHandler(app.accountMapper))
2018-02-17 13:19:34 -08:00
err := app.LoadLatestVersion(app.capKeyMainStore)
2018-02-15 08:00:57 -08:00
if err != nil {
2018-02-14 11:14:22 -08:00
cmn.Exit(err.Error())
}
return app
2018-02-14 08:16:06 -08:00
}
2018-02-15 08:00:57 -08:00
// custom tx codec
2018-02-28 17:57:38 -08:00
func MakeCodec() *wire.Codec {
2018-03-02 01:24:07 -08:00
// XXX: Using old wire for now :)
const (
msgTypeSend = 0x1
msgTypeIssue = 0x2
)
var _ = oldwire.RegisterInterface(
struct{ sdk.Msg }{},
oldwire.ConcreteType{bank.SendMsg{}, msgTypeSend},
oldwire.ConcreteType{bank.IssueMsg{}, msgTypeIssue},
)
const (
accTypeApp = 0x1
)
var _ = oldwire.RegisterInterface(
struct{ sdk.Account }{},
oldwire.ConcreteType{&types.AppAccount{}, accTypeApp},
)
2018-02-15 08:00:57 -08:00
cdc := wire.NewCodec()
2018-03-02 01:24:07 -08:00
// TODO: use new go-wire
// cdc.RegisterInterface((*sdk.Msg)(nil), nil)
// bank.RegisterWire(cdc) // Register bank.[SendMsg,IssueMsg] types.
// crypto.RegisterWire(cdc) // Register crypto.[PubKey,PrivKey,Signature] types.
2018-02-15 08:00:57 -08:00
return cdc
2018-03-02 01:24:07 -08:00
2018-02-14 08:16:06 -08:00
}
2018-02-15 08:00:57 -08:00
// custom logic for transaction decoding
func (app *BasecoinApp) txDecoder(txBytes []byte) (sdk.Tx, sdk.Error) {
var tx = sdk.StdTx{}
// StdTx.Msg is an interface. The concrete types
// are registered by MakeTxCodec in bank.RegisterWire.
err := app.cdc.UnmarshalBinary(txBytes, &tx)
if err != nil {
return nil, sdk.ErrTxParse("").TraceCause(err, "")
}
return tx, nil
2018-02-14 08:16:06 -08:00
}
2018-02-15 08:00:57 -08:00
// custom logic for basecoin initialization
func (app *BasecoinApp) initChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain {
stateJSON := req.AppStateBytes
2018-02-14 08:16:06 -08:00
genesisState := new(types.GenesisState)
err := json.Unmarshal(stateJSON, genesisState)
if err != nil {
panic(err) // TODO https://github.com/cosmos/cosmos-sdk/issues/468
// return sdk.ErrGenesisParse("").TraceCause(err, "")
}
2018-02-14 08:16:06 -08:00
for _, gacc := range genesisState.Accounts {
acc, err := gacc.ToAppAccount()
if err != nil {
panic(err) // TODO https://github.com/cosmos/cosmos-sdk/issues/468
// return sdk.ErrGenesisParse("").TraceCause(err, "")
2018-02-14 08:16:06 -08:00
}
app.accountMapper.SetAccount(ctx, acc)
}
return abci.ResponseInitChain{}
2018-02-14 08:16:06 -08:00
}