-
Notifications
You must be signed in to change notification settings - Fork 0
/
ratification.go
84 lines (66 loc) · 1.37 KB
/
ratification.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
package scp
type ratification struct {
voted bool
votes agreement
accepted bool
accepts agreement
confirmed bool
}
func newRatification() *ratification {
return &ratification{
votes: make(agreement),
accepts: make(agreement),
}
}
func (r *ratification) selfVote() {
r.voted = true
}
func (r *ratification) votedBy(nodeID string) {
r.votes[nodeID] = struct{}{}
}
func (r *ratification) selfAccept() {
r.accepted = true
}
func (r *ratification) acceptedBy(nodeID string) {
r.accepts[nodeID] = struct{}{}
}
func (r *ratification) selfConfirm() {
r.confirmed = true
}
type agreement map[string]struct{}
func (a agreement) reachedBlockingThreshold(slices quorumSlices) bool {
for _, slice := range slices {
if slice.blockingThreshold(a) {
return true
}
}
return false
}
func (a agreement) reachedQuorumThreshold(slices quorumSlices) bool {
for _, slice := range slices {
if slice.quorumThreshold(a) {
return true
}
}
return false
}
type ballotCounters map[string]uint32
func (c ballotCounters) lowestNonBlocking(current uint32, slices quorumSlices) uint32 {
outer:
for l := current; ; l++ {
for _, slice := range slices {
if slice.blockingCounter(l, c) {
continue outer
}
}
return l
}
}
func (c ballotCounters) hasLesserThan(than uint32) bool {
for _, counter := range c {
if counter < than {
return true
}
}
return false
}