2020-05-05 18:43:35 +00:00
|
|
|
#include <string>
|
|
|
|
|
2020-05-05 12:47:12 +00:00
|
|
|
#include "legislator.hh"
|
2020-05-05 17:29:14 +00:00
|
|
|
#include "misc/logger.hh"
|
2020-05-05 18:43:35 +00:00
|
|
|
#include "message/message.hh"
|
|
|
|
#include "events/register.hh"
|
|
|
|
#include "events/send.hh"
|
2020-05-05 12:47:12 +00:00
|
|
|
|
|
|
|
namespace paxos
|
|
|
|
{
|
|
|
|
Legislator::Legislator(const LegislatorConfig& config)
|
2020-05-05 17:29:14 +00:00
|
|
|
: config_(config), ledger(config.name)
|
2020-05-05 12:47:12 +00:00
|
|
|
{
|
2020-05-05 17:29:14 +00:00
|
|
|
log("created legislator " + config.name, blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Legislator::initiate_ballot()
|
|
|
|
{
|
|
|
|
int new_ballot_number = ledger.last_tried() + 1;
|
|
|
|
ledger.set_last_tried(new_ballot_number);
|
|
|
|
log(config_.name + " is initiating ballot " + std::to_string(new_ballot_number), cyan);
|
|
|
|
send_next_ballot(new_ballot_number);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Legislator::send_next_ballot(int ballot)
|
|
|
|
{
|
2020-05-05 18:43:35 +00:00
|
|
|
std::string ballot_string = std::to_string(ballot);
|
|
|
|
Message message;
|
|
|
|
message.set_method("NextBallot");
|
|
|
|
message.add_header("ballot", ballot_string);
|
|
|
|
|
|
|
|
for (auto legislator : legislators)
|
|
|
|
SendEW::send_message(message, legislator.second);
|
2020-05-05 17:29:14 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 19:04:03 +00:00
|
|
|
void Legislator::receive_next_ballot(Message message)
|
|
|
|
{
|
|
|
|
message = message;
|
|
|
|
log("received NextBallot", green);
|
|
|
|
}
|
|
|
|
|
2020-05-05 17:29:14 +00:00
|
|
|
void Legislator::receive_next_ballot(int ballot, std::string sender)
|
|
|
|
{
|
|
|
|
log(config_.name + " has received a NextBallot("
|
|
|
|
+ std::to_string(ballot)
|
|
|
|
+ ") from " + sender, cyan);
|
|
|
|
int next_ballot = ledger.next_bal();
|
|
|
|
if (ballot <= next_ballot)
|
|
|
|
{
|
|
|
|
log("but it was discarded because ballot " + std::to_string(ballot)
|
|
|
|
+ " is inferior or equal to nextBallot "
|
|
|
|
+ std::to_string(next_ballot), red);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ledger.set_next_bal(ballot);
|
|
|
|
int previous_vote = ledger.prev_vote();
|
|
|
|
previous_vote = previous_vote;
|
|
|
|
//XXX send a LastVote to sender
|
|
|
|
}
|
|
|
|
|
2020-05-05 19:04:03 +00:00
|
|
|
void Legislator::receive_last_vote(Message message)
|
|
|
|
{
|
|
|
|
message = message;
|
|
|
|
}
|
|
|
|
|
2020-05-05 17:29:14 +00:00
|
|
|
void Legislator::receive_enough_last_vote
|
|
|
|
(std::unordered_map<std::string, int> quorum_last_votes)
|
|
|
|
{
|
|
|
|
quorum_last_votes = quorum_last_votes;
|
|
|
|
//find d to satisfy B3
|
|
|
|
//send BeginBallot to the quorum
|
|
|
|
}
|
|
|
|
|
|
|
|
void Legislator::receive_begin_ballot(int ballot, int decree)
|
|
|
|
{
|
|
|
|
if (ballot != ledger.next_bal())
|
|
|
|
return;
|
|
|
|
ledger.set_prev_vote(ballot);
|
|
|
|
|
|
|
|
decree = decree;
|
|
|
|
//XXX send Voted
|
2020-05-05 12:47:12 +00:00
|
|
|
}
|
2020-05-05 19:04:03 +00:00
|
|
|
|
|
|
|
void Legislator::handle_message(Message message)
|
|
|
|
{
|
|
|
|
std::string method = message.get_method();
|
|
|
|
if (method == "NextBallot")
|
|
|
|
receive_next_ballot(message);
|
|
|
|
else if (method == "LastVote")
|
|
|
|
receive_last_vote(message);
|
|
|
|
}
|
2020-05-05 12:47:12 +00:00
|
|
|
}
|