-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppendEntryHandler.cpp
74 lines (58 loc) · 1.36 KB
/
AppendEntryHandler.cpp
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
#include "AppendEntryHandler.hpp"
#include "Response.hpp"
using namespace locke;
AppendEntryHandler::AppendEntryHandler
(RaftServer& server, const AppendEntry& req) : server(server), req(req) {}
void AppendEntryHandler::process()
{
if (req.term() < server.current_term) {
reply(false);
return;
}
update_server();
if (req.isHeartbeat()) {
reply(true);
return;
}
try_append();
}
void AppendEntryHandler::update_server()
{
server.set_status(Follower);
server.update_election_timeout();
server.current_term = req.term();
server.leader = req.leader();
server.save();
}
void AppendEntryHandler::try_append()
{
Log::Entry prev;
bool prev_found = Log::fetch(&prev, req.prev_index());
if (!prev_found) {
reply(false);
return;
}
if (prev.term != req.prev_term() || prev.idx != req.prev_index()) {
Log::truncate(prev.idx);
reply(false);
return;
}
append();
}
void AppendEntryHandler::append()
{
uint32_t idx = req.prev_index() + 1;
Log::Entry new_entry;
Log::truncate(idx);
Log::prepare(&new_entry, idx, req.term(), req.entry());
Log::append(&new_entry);
server.last_index = idx;
server.save();
reply(true);
}
void AppendEntryHandler::reply(bool success)
{
StaticJsonBuffer<JSON_SMALL> buff;
Response response(buff, success, server.current_term, RPC::AppendEntryResponse);
response.print();
}