Skip to content

Commit 7af2c5c

Browse files
committed
feat: add type constructors/validation for genesis types.
1 parent 831a351 commit 7af2c5c

File tree

6 files changed

+322
-38
lines changed

6 files changed

+322
-38
lines changed

modules/core/04-channel/v2/types/channel.go

+17
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,20 @@ func (c Channel) Validate() error {
3232

3333
return nil
3434
}
35+
36+
// NewIdentifiedChannel creates a new IdentifiedChannel instance
37+
func NewIdentifiedChannel(channelID string, channel Channel) IdentifiedChannel {
38+
return IdentifiedChannel{
39+
Channel: channel,
40+
ChannelId: channelID,
41+
}
42+
}
43+
44+
// ValidateBasic performs a basic validation of the identifiers and channel fields.
45+
func (ic IdentifiedChannel) ValidateBasic() error {
46+
if err := host.ChannelIdentifierValidator(ic.ChannelId); err != nil {
47+
return errorsmod.Wrap(err, "invalid channel ID")
48+
}
49+
50+
return ic.Channel.Validate()
51+
}
+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
package types
2+
3+
import (
4+
"errors"
5+
"fmt"
6+
7+
channeltypesv1 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"
8+
host "github.com/cosmos/ibc-go/v9/modules/core/24-host"
9+
)
10+
11+
// NewPacketState creates a new PacketState instance.
12+
func NewPacketState(channelID string, sequence uint64, data []byte) PacketState {
13+
return PacketState{
14+
ChannelId: channelID,
15+
Sequence: sequence,
16+
Data: data,
17+
}
18+
}
19+
20+
// Validate performs basic validation of fields returning an error upon any failure.
21+
func (ps PacketState) Validate() error {
22+
if ps.Data == nil {
23+
return errors.New("data bytes cannot be nil")
24+
}
25+
return validateGenFields(ps.ChannelId, ps.Sequence)
26+
}
27+
28+
// NewPacketSequence creates a new PacketSequences instance.
29+
func NewPacketSequence(channelID string, sequence uint64) PacketSequence {
30+
return PacketSequence{
31+
ChannelId: channelID,
32+
Sequence: sequence,
33+
}
34+
}
35+
36+
// Validate performs basic validation of fields returning an error upon any failure.
37+
func (ps PacketSequence) Validate() error {
38+
return validateGenFields(ps.ChannelId, ps.Sequence)
39+
}
40+
41+
// NewGenesisState creates a GenesisState instance.
42+
func NewGenesisState(
43+
channels []IdentifiedChannel, acks, receipts, commitments []PacketState,
44+
sendSeqs []PacketSequence, nextChannelSequence uint64,
45+
) GenesisState {
46+
return GenesisState{
47+
Channels: channels,
48+
Acknowledgements: acks,
49+
Receipts: receipts,
50+
Commitments: commitments,
51+
SendSequences: sendSeqs,
52+
NextChannelSequence: nextChannelSequence,
53+
}
54+
}
55+
56+
// DefaultGenesisState returns the ibc channel v2 submodule's default genesis state.
57+
func DefaultGenesisState() GenesisState {
58+
return GenesisState{
59+
Channels: []IdentifiedChannel{},
60+
Acknowledgements: []PacketState{},
61+
Receipts: []PacketState{},
62+
Commitments: []PacketState{},
63+
SendSequences: []PacketSequence{},
64+
NextChannelSequence: 0,
65+
}
66+
}
67+
68+
// Validate performs basic genesis state validation returning an error upon any failure.
69+
func (gs GenesisState) Validate() error {
70+
// keep track of the max sequence to ensure it is less than
71+
// the next sequence used in creating channel identifiers.
72+
var maxSequence uint64
73+
74+
for i, channel := range gs.Channels {
75+
sequence, err := channeltypesv1.ParseChannelSequence(channel.ChannelId)
76+
if err != nil {
77+
return err
78+
}
79+
80+
if sequence > maxSequence {
81+
maxSequence = sequence
82+
}
83+
84+
if err := channel.ValidateBasic(); err != nil {
85+
return fmt.Errorf("invalid channel %v channel index %d: %w", channel, i, err)
86+
}
87+
}
88+
89+
if maxSequence != 0 && maxSequence >= gs.NextChannelSequence {
90+
return fmt.Errorf("next channel sequence %d must be greater than maximum sequence used in channel identifier %d", gs.NextChannelSequence, maxSequence)
91+
}
92+
93+
for i, ack := range gs.Acknowledgements {
94+
if err := ack.Validate(); err != nil {
95+
return fmt.Errorf("invalid acknowledgement %v ack index %d: %w", ack, i, err)
96+
}
97+
if len(ack.Data) == 0 {
98+
return fmt.Errorf("invalid acknowledgement %v ack index %d: data bytes cannot be empty", ack, i)
99+
}
100+
}
101+
102+
for i, receipt := range gs.Receipts {
103+
if err := receipt.Validate(); err != nil {
104+
return fmt.Errorf("invalid acknowledgement %v ack index %d: %w", receipt, i, err)
105+
}
106+
}
107+
108+
for i, commitment := range gs.Commitments {
109+
if err := commitment.Validate(); err != nil {
110+
return fmt.Errorf("invalid commitment %v index %d: %w", commitment, i, err)
111+
}
112+
if len(commitment.Data) == 0 {
113+
return fmt.Errorf("invalid acknowledgement %v ack index %d: data bytes cannot be empty", commitment, i)
114+
}
115+
}
116+
117+
for i, ss := range gs.SendSequences {
118+
if err := ss.Validate(); err != nil {
119+
return fmt.Errorf("invalid send sequence %v index %d: %w", ss, i, err)
120+
}
121+
}
122+
123+
return nil
124+
}
125+
126+
func validateGenFields(channelID string, sequence uint64) error {
127+
if err := host.ChannelIdentifierValidator(channelID); err != nil {
128+
return fmt.Errorf("invalid channel Id: %w", err)
129+
}
130+
if sequence == 0 {
131+
return errors.New("sequence cannot be 0")
132+
}
133+
return nil
134+
}

modules/core/04-channel/v2/types/genesis.pb.go

+66-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)