-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.go
232 lines (190 loc) · 3.98 KB
/
node.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package bullyelection
import (
"encoding/json"
"io"
"github.com/pkg/errors"
)
type Node interface {
ID() string
Addr() string
Port() int
setPort(int)
// node type
IsVoter() bool
// leader
IsLeader() bool
// user metadata
UserMetadata() []byte
setUserMetadata([]byte)
// node meta
toJSON(io.Writer) error
}
type internalVoterNode interface {
Node
setLeaderID(string)
getLeaderID() string
getULID() string
setULID(string)
}
// impl check
var (
_ Node = (*voterNode)(nil)
_ internalVoterNode = (*voterNode)(nil)
)
type nodeMeta struct {
ID string `json:"id"`
ULID string `json:"ulid"`
Addr string `json:"addr"`
Port int `json:"port"`
IsVoter bool `json:"isVoter"`
UserMetadata []byte `json:"user-metadata"`
LeaderID string `json:"leader-id"`
}
func toJSON(out io.Writer, meta nodeMeta) error {
if err := json.NewEncoder(out).Encode(meta); err != nil {
return errors.WithStack(err)
}
return nil
}
func fromJSON(in io.Reader) (nodeMeta, error) {
meta := nodeMeta{}
if err := json.NewDecoder(in).Decode(&meta); err != nil {
return nodeMeta{}, errors.WithStack(err)
}
return meta, nil
}
func nodeMetaToNode(meta nodeMeta) Node {
if meta.IsVoter {
return &voterNode{
id: meta.ID,
addr: meta.Addr,
port: meta.Port,
leaderID: meta.LeaderID,
userMetadata: meta.UserMetadata,
ulid: meta.ULID,
}
}
return &nonvoterNode{
id: meta.ID,
addr: meta.Addr,
port: meta.Port,
userMetadata: meta.UserMetadata,
}
}
type voterNode struct {
id string
ulid string
addr string
port int
leaderID string
userMetadata []byte
}
func (vn *voterNode) ID() string {
return vn.id
}
func (vn *voterNode) Addr() string {
return vn.addr
}
func (vn *voterNode) Port() int {
return vn.port
}
func (vn *voterNode) setPort(p int) {
vn.port = p
}
func (vn *voterNode) IsVoter() bool {
return true
}
func (vn *voterNode) UserMetadata() []byte {
return vn.userMetadata
}
func (vn *voterNode) setUserMetadata(data []byte) {
vn.userMetadata = data
}
func (vn *voterNode) getLeaderID() string {
return vn.leaderID
}
func (vn *voterNode) setLeaderID(id string) {
vn.leaderID = id
}
func (vn *voterNode) IsLeader() bool {
return vn.id == vn.leaderID
}
func (vn *voterNode) getULID() string {
return vn.ulid
}
func (vn *voterNode) setULID(ulid string) {
vn.ulid = ulid
}
func (vn *voterNode) toJSON(out io.Writer) error {
return toJSON(out, nodeMeta{
ID: vn.id,
Addr: vn.addr,
Port: vn.port,
IsVoter: true,
UserMetadata: vn.userMetadata,
LeaderID: vn.leaderID,
ULID: vn.ulid,
})
}
func newVoterNode(id string, ulid string, addr string, port int) *voterNode {
return &voterNode{
id: id,
ulid: ulid,
addr: addr,
port: port,
leaderID: id, // initial self
}
}
// impl check
var (
_ Node = (*nonvoterNode)(nil)
)
type nonvoterNode struct {
id string
ulid string
addr string
port int
userMetadata []byte
}
func (nn *nonvoterNode) ID() string {
return nn.id
}
func (nn *nonvoterNode) Addr() string {
return nn.addr
}
func (nn *nonvoterNode) Port() int {
return nn.port
}
func (nn *nonvoterNode) setPort(p int) {
nn.port = p
}
func (nn *nonvoterNode) IsVoter() bool {
return false
}
func (nn *nonvoterNode) IsLeader() bool {
return false
}
func (nn *nonvoterNode) UserMetadata() []byte {
return nn.userMetadata
}
func (nn *nonvoterNode) setUserMetadata(data []byte) {
nn.userMetadata = data
}
func (nn *nonvoterNode) toJSON(out io.Writer) error {
return toJSON(out, nodeMeta{
ID: nn.id,
ULID: nn.ulid,
Addr: nn.addr,
Port: nn.port,
IsVoter: false,
UserMetadata: nn.userMetadata,
})
}
func newNonvoterNode(id string, ulid string, addr string, port int) *nonvoterNode {
return &nonvoterNode{
id: id,
ulid: ulid,
addr: addr,
port: port,
}
}