/* * Copyright (c) 2019 TAOS Data, Inc. * * This program is free software: you can use, redistribute, and/or modify * it under the terms of the GNU Affero General Public License, version 3 * or later ("AGPL"), as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #include "syncInt.h" #include "raft.h" #include "raft_configuration.h" #include "raft_message.h" int syncRaftHandleVoteRespMessage(SSyncRaft* pRaft, const SSyncMessage* pMsg) { int granted, rejected; int quorum; int voterIndex; assert(pRaft->state == TAOS_SYNC_ROLE_CANDIDATE); voterIndex = syncRaftConfigurationIndexOfNode(pRaft, pMsg->from); if (voterIndex == -1) { syncError("[%d:%d] recv vote resp from unknown server %d", pRaft->selfGroupId, pRaft->selfId, pMsg->from); return 0; } if (pRaft->state != TAOS_SYNC_ROLE_CANDIDATE) { syncError("[%d:%d] is not candidate, ignore vote resp", pRaft->selfGroupId, pRaft->selfId); return 0; } SSyncRaftVoteResult result = syncRaftPollVote(pRaft, pMsg->from, pMsg->voteResp.cType == SYNC_RAFT_CAMPAIGN_PRE_ELECTION, !pMsg->voteResp.rejected, &rejected, &granted); syncInfo("[%d:%d] [quorum:%d] has received %d votes and %d vote rejections", pRaft->selfGroupId, pRaft->selfId, quorum, granted, rejected); if (result == SYNC_RAFT_VOTE_WON) { if (pRaft->candidateState.inPreVote) { syncRaftStartElection(pRaft, SYNC_RAFT_CAMPAIGN_ELECTION); } else { syncRaftBecomeLeader(pRaft); } } else if (result == SYNC_RAFT_VOTE_LOST) { syncRaftBecomeFollower(pRaft, pRaft->term, SYNC_NON_NODE_ID); } return 0; }