-
Notifications
You must be signed in to change notification settings - Fork 20
/
module.go
113 lines (94 loc) · 2.87 KB
/
module.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package gov
import (
"encoding/json"
"github.com/QOSGroup/qbase/baseabci"
cliContext "github.com/QOSGroup/qbase/client/context"
"github.com/QOSGroup/qbase/context"
"github.com/QOSGroup/qos/module/gov/client"
"github.com/QOSGroup/qos/module/gov/mapper"
"github.com/QOSGroup/qos/types"
"github.com/gorilla/mux"
"github.com/spf13/cobra"
"github.com/tendermint/go-amino"
abci "github.com/tendermint/tendermint/abci/types"
)
var (
_ types.AppModuleBasic = AppModuleBasic{}
_ types.AppModule = AppModule{}
)
// 基础模块结构
type AppModuleBasic struct{}
// 模块名
func (amb AppModuleBasic) Name() string {
return ModuleName
}
// amino 相关类/对象注册
func (amb AppModuleBasic) RegisterCodec(cdc *amino.Codec) {
RegisterCodec(cdc)
}
// 默认初始状态数据
func (amb AppModuleBasic) DefaultGenesis() json.RawMessage {
return Cdc.MustMarshalJSON(DefaultGenesis())
}
// 校验初始状态数据
func (amb AppModuleBasic) ValidateGenesis(bz json.RawMessage) error {
var data GenesisState
err := Cdc.UnmarshalJSON(bz, &data)
if err != nil {
return err
}
return ValidateGenesis(data)
}
func (amb AppModuleBasic) RegisterRestRoutes(ctx cliContext.CLIContext, routes *mux.Router) {
client.RegisterRoutes(ctx, routes)
}
// 返回交易命令集合
func (amb AppModuleBasic) GetTxCmds(cdc *amino.Codec) []*cobra.Command {
return TxCommands(cdc)
}
// 返回查询命令集合
func (amb AppModuleBasic) GetQueryCmds(cdc *amino.Codec) []*cobra.Command {
return QueryCommands(cdc)
}
// 返回数据库操作 Mapper
func (amb AppModuleBasic) GetMapperAndHooks() types.MapperWithHooks {
return types.NewMapperWithHooks(NewMapper(), nil)
}
// 模块结构
type AppModule struct {
AppModuleBasic
}
func NewAppModule() types.AppModule {
return AppModule{
AppModuleBasic{},
}
}
// 初始化本模块
func (am AppModule) InitGenesis(ctx context.Context, bapp *baseabci.BaseApp, data json.RawMessage) []abci.ValidatorUpdate {
var genesisState GenesisState
Cdc.MustUnmarshalJSON(data, &genesisState)
InitGenesis(ctx, genesisState)
return []abci.ValidatorUpdate{}
}
// 导出状态数据
func (am AppModule) ExportGenesis(ctx context.Context) json.RawMessage {
gs := ExportGenesis(ctx)
return Cdc.MustMarshalJSON(gs)
}
// 注册数据验证
func (am AppModule) RegisterInvariants(ir types.InvariantRegistry) {
ir.RegisterInvarRoute(ModuleName, "deposit", mapper.DepositInvariant(ModuleName))
}
// App BeginBlocker 中执行操作
func (am AppModule) BeginBlock(ctx context.Context, req abci.RequestBeginBlock) {
BeginBlocker(ctx, req)
}
// App EndBlocker 中执行操作
func (am AppModule) EndBlock(ctx context.Context, req abci.RequestEndBlock) []abci.ValidatorUpdate {
EndBlocker(ctx)
return []abci.ValidatorUpdate{}
}
// 返回本模块自定义应用查询路由信息
func (am AppModule) RegisterQuerier(qr types.QueryRegistry) {
qr.RegisterQueryRoute(ModuleName, mapper.Query)
}