-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraft_persist.go
92 lines (78 loc) · 1.88 KB
/
raft_persist.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
package raft
import (
"bytes"
"github.com/cyanial/raft/labgob"
)
type PersistState struct {
CurrentTerm int
VoteFor int
LogBase int
Log []LogEntry
}
//
// save Raft's persistent state to stable storage,
// where it can later be retrieved after a crash and restart.
// see papaer's Figure 2 for a description of what should be persistent.
//
func (rf *Raft) persist() {
// Your code here (2C).
// Example:
w := new(bytes.Buffer)
e := labgob.NewEncoder(w)
// the caller hold the mutex locked
persistState := PersistState{
CurrentTerm: rf.currentTerm,
VoteFor: rf.votedFor,
Log: rf.log,
LogBase: rf.logBase,
}
err := e.Encode(persistState)
if err != nil {
DPrintf("rf.persisit() encode error: %v\n", err)
return
}
rf.persister.SaveRaftState(w.Bytes())
}
//
// restore previously persisted state.
//
func (rf *Raft) readPersist(data []byte) {
if data == nil || len(data) < 1 { // bootstrap without any state?
return
}
// Your code here (2C).
// Example:
r := bytes.NewBuffer(data)
d := labgob.NewDecoder(r)
var persistState PersistState
err := d.Decode(&persistState)
if err != nil {
return
}
// the caller hold the mutex locked
rf.currentTerm = persistState.CurrentTerm
rf.votedFor = persistState.VoteFor
rf.log = persistState.Log
rf.logBase = persistState.LogBase
rf.commitIndex = persistState.LogBase
rf.lastApplied = persistState.LogBase
}
func (rf *Raft) persistStateAndSnapshot(snapshot []byte) {
w := new(bytes.Buffer)
e := labgob.NewEncoder(w)
// the caller hold the mutex locked
persistState := PersistState{
CurrentTerm: rf.currentTerm,
VoteFor: rf.votedFor,
Log: rf.log,
LogBase: rf.logBase,
}
err := e.Encode(persistState)
if err != nil {
return
}
rf.persister.SaveStateAndSnapshot(w.Bytes(), snapshot)
}
func (rf *Raft) RaftStateSize() int {
return rf.persister.RaftStateSize()
}