-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearner.go
58 lines (48 loc) · 1.23 KB
/
learner.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
package paxos
import (
"fmt"
"time"
)
type pendingLogEntry struct {
// acceptedValuesToCount maps values that were accepted to the number of acceptors that accepted
// them.
AcceptedValuesToCount map[int]int
}
type Learner struct {
ID int
AcceptorInput *Channel
AcceptorCount int
// The slot number to value.
Log map[int]int
// Map slot number to a pending log entry.
PendingLogs map[int]*pendingLogEntry
}
func (l *Learner) Run() {
for {
msg := <-l.AcceptorInput.Read()
if msg.Learn != nil {
l.handleLearn(*msg.Learn)
} else {
fmt.Printf("Learner %v received a message without any relevant content from acceptor", l.ID)
}
time.Sleep(loopWaitTime)
}
}
func (l *Learner) handleLearn(msg LearnMsg) {
if _, ok := l.Log[msg.Slot]; ok {
// TODO(rithvikp): Handle updates
return
}
pl, ok := l.PendingLogs[msg.Slot]
if !ok {
pl = &pendingLogEntry{
AcceptedValuesToCount: map[int]int{},
}
l.PendingLogs[msg.Slot] = pl
}
pl.AcceptedValuesToCount[msg.Value] += 1
if pl.AcceptedValuesToCount[msg.Value] >= l.AcceptorCount/2+1 {
l.Log[msg.Slot] = msg.Value
fmt.Printf("[LEARNER] Accepted a value for slot %d --> Acceptor: %v, Learner: %v, Value: %v\n", msg.Slot, msg.AcceptorID, l.ID, msg.Value)
}
}