nim-raft/raft/raft_api.nim

165 lines
7.1 KiB
Nim
Raw Normal View History

# nim-raft
# Copyright (c) 2023 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
# at your option.
# This file may not be copied, modified, or distributed except according to
# those terms.
import types
import protocol
2023-08-14 20:49:21 +00:00
import consensus_module
2023-09-03 03:27:27 +00:00
import log_ops
import ../db/kvstore_mdbx
2023-09-04 09:47:27 +00:00
import chronicles
import std/random
2023-09-04 09:47:27 +00:00
export
types,
protocol,
consensus_module,
log_ops,
chronicles
2023-09-04 09:47:27 +00:00
# Forward declarations
2023-08-31 14:05:41 +00:00
proc RaftNodeSmInit[SmCommandType, SmStateType](stateMachine: var RaftNodeStateMachine[SmCommandType, SmStateType])
2023-09-04 09:47:27 +00:00
# Raft Node Public API
proc new*[SmCommandType, SmStateType](T: type RaftNode[SmCommandType, SmStateType]; # Create New Raft Node
id: RaftNodeId; peersIds: seq[RaftNodeId];
2023-08-31 20:52:52 +00:00
# persistentStorage: RaftNodePersistentStorage,
msgSendCallback: RaftMessageSendCallback): T =
2023-08-31 14:05:41 +00:00
var
2023-08-31 20:52:52 +00:00
peers: RaftNodePeers
for peerId in peersIds:
peers.add(RaftNodePeer(id: peerId, nextIndex: 0, matchIndex: 0, hasVoted: false, canVote: true))
result = T(
2023-08-31 20:52:52 +00:00
id: id, state: rnsFollower, currentTerm: 0, peers: peers, commitIndex: 0, lastApplied: 0,
2023-09-06 16:18:02 +00:00
msgSendCallback: msgSendCallback, votedFor: DefaultUUID, currentLeaderId: DefaultUUID,
2023-08-31 14:05:41 +00:00
)
2023-09-02 21:16:26 +00:00
RaftNodeSmInit(result.stateMachine)
2023-09-06 19:27:22 +00:00
initRLock(result.raftStateMutex)
2023-08-14 20:49:21 +00:00
proc RaftNodeLoad*[SmCommandType, SmStateType](
persistentStorage: RaftNodePersistentStorage, # Load Raft Node From Storage
2023-08-14 20:49:21 +00:00
msgSendCallback: RaftMessageSendCallback): Result[RaftNode[SmCommandType, SmStateType], string] =
discard
proc RaftNodeIdGet*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]): RaftNodeId {.gcsafe.} = # Get Raft Node ID
2023-09-06 19:27:22 +00:00
withRLock(node.raftStateMutex):
2023-09-06 16:18:02 +00:00
result = node.id
proc RaftNodeStateGet*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]): RaftNodeState = # Get Raft Node State
2023-09-06 19:27:22 +00:00
withRLock(node.raftStateMutex):
2023-09-06 16:18:02 +00:00
result = node.state
proc RaftNodeTermGet*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]): RaftNodeTerm = # Get Raft Node Term
2023-09-06 19:27:22 +00:00
withRLock(node.raftStateMutex):
2023-09-06 16:18:02 +00:00
result = node.currentTerm
2023-08-14 20:49:21 +00:00
func RaftNodePeersGet*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]): RaftNodePeers = # Get Raft Node Peers
2023-09-06 19:27:22 +00:00
withRLock(node.raftStateMutex):
2023-09-06 16:18:02 +00:00
result = node.peers
2023-08-14 20:49:21 +00:00
func RaftNodeIsLeader*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]): bool = # Check if Raft Node is Leader
2023-09-06 19:27:22 +00:00
withRLock(node.raftStateMutex):
2023-09-06 16:18:02 +00:00
result = node.state == rnsLeader
2023-08-14 20:49:21 +00:00
# Deliver Raft Message to the Raft Node and dispatch it
2023-09-01 02:55:55 +00:00
proc RaftNodeMessageDeliver*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType], raftMessage: RaftMessageBase): Future[RaftMessageResponseBase] {.async, gcsafe.} =
2023-09-04 09:47:27 +00:00
case raftMessage.op
of rmoRequestVote: # Dispatch different Raft Message types based on the operation code
2023-09-06 16:18:02 +00:00
result = RaftNodeHandleRequestVote(node, RaftMessageRequestVote(raftMessage))
2023-09-04 09:47:27 +00:00
of rmoAppendLogEntry:
2023-09-06 16:18:02 +00:00
var appendMsg = RaftMessageAppendEntries[SmCommandType](raftMessage)
if appendMsg.logEntries.isSome:
result = RaftNodeHandleAppendEntries(node, appendMsg)
else:
result = RaftNodeHandleHeartBeat(node, appendMsg)
2023-09-04 09:47:27 +00:00
else: discard
# Process Raft Node Client Requests
2023-09-04 09:47:27 +00:00
proc RaftNodeServeClientRequest*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType], req: RaftNodeClientRequest[SmCommandType]): Future[RaftNodeClientResponse[SmStateType]] {.async, gcsafe.} =
2023-09-03 00:53:48 +00:00
case req.op
2023-09-02 21:16:26 +00:00
of rncroExecSmCommand:
# TODO: implemenmt command handling
discard
of rncroRequestSmState:
if RaftNodeIsLeader(node):
2023-09-04 09:47:27 +00:00
return RaftNodeClientResponse(nodeId: node.id, error: rncreSuccess, state: RaftNodeStateGet(node))
else:
return RaftNodeClientResponse(nodeId: node.id, error: rncreNotLeader, currentLeaderId: node.currentLeaderId)
else:
raiseAssert "Unknown client request operation."
# Abstract State Machine Ops
2023-08-14 20:49:21 +00:00
func RaftNodeSmStateGet*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]): SmStateType =
withRLock(node.raftStateMutex):
node.stateMachine.state
2023-08-14 20:49:21 +00:00
proc RaftNodeSmInit[SmCommandType, SmStateType](stateMachine: var RaftNodeStateMachine[SmCommandType, SmStateType]) =
mixin RaftSmInit
RaftSmInit(stateMachine)
2023-08-14 20:49:21 +00:00
proc RaftNodeSmApply[SmCommandType, SmStateType](stateMachine: RaftNodeStateMachine[SmCommandType, SmStateType], command: SmCommandType) =
mixin RaftSmApply
withRLock(node.raftStateMutex):
RaftSmApply(stateMachine, command)
2023-09-06 16:18:02 +00:00
# Private Abstract Timer creation
template RaftTimerCreate(timerInterval: int, timerCallback: RaftTimerCallback): Future[void] =
2023-08-10 08:38:09 +00:00
mixin RaftTimerCreateCustomImpl
2023-09-06 16:18:02 +00:00
RaftTimerCreateCustomImpl(timerInterval, timerCallback)
# Timers scheduling stuff etc.
proc RaftNodeScheduleHeartBeat*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]) =
2023-09-07 03:56:35 +00:00
node.heartBeatTimer = RaftTimerCreate(150, proc() = asyncSpawn RaftNodeSendHeartBeat(node))
2023-09-06 19:27:22 +00:00
proc RaftNodeSendHeartBeat*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]) {.async.} =
debug "Raft Node sending Heart-Beat to peers", node_id=node.id
for raftPeer in node.peers:
2023-09-06 16:18:02 +00:00
let msgHrtBt = RaftMessageAppendEntries[SmCommandType](
op: rmoAppendLogEntry, senderId: node.id, receiverId: raftPeer.id,
senderTerm: RaftNodeTermGet(node), commitIndex: node.commitIndex,
2023-09-06 16:18:02 +00:00
prevLogIndex: RaftNodeLogIndexGet(node) - 1, prevLogTerm: if RaftNodeLogIndexGet(node) > 0: RaftNodeLogEntryGet(node, RaftNodeLogIndexGet(node) - 1).term else: 0
)
let r = await node.msgSendCallback(msgHrtBt)
discard r
2023-09-06 19:27:22 +00:00
debug "Sent Heart-Beat", sender=node.id, to=raftPeer.id
RaftNodeScheduleHeartBeat(node)
2023-09-06 16:18:02 +00:00
proc RaftNodeScheduleElectionTimeout*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]) =
node.electionTimeoutTimer = RaftTimerCreate(150 + rand(150), proc =
2023-09-06 16:18:02 +00:00
asyncSpawn RaftNodeStartElection(node)
)
# Raft Node Control
proc RaftNodeCancelAllTimers*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]) =
2023-09-06 19:27:22 +00:00
withRLock(node.raftStateMutex):
if node.heartBeatTimer != nil:
2023-09-07 03:56:35 +00:00
asyncSpawn cancelAndWait(node.heartBeatTimer)
if node.electionTimeoutTimer != nil:
2023-09-07 03:56:35 +00:00
asyncSpawn cancelAndWait(node.electionTimeoutTimer )
2023-09-06 19:27:22 +00:00
if node.appendEntriesTimer != nil:
2023-09-07 03:56:35 +00:00
asyncSpawn cancelAndWait(node.appendEntriesTimer)
2023-09-03 00:53:48 +00:00
proc RaftNodeStop*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]) =
2023-09-03 00:53:48 +00:00
# Try to stop gracefully
2023-09-06 19:27:22 +00:00
withRLock(node.raftStateMutex):
# Abort election if in election
if node.state == rnsCandidate:
RaftNodeAbortElection(node)s
2023-09-06 16:18:02 +00:00
node.state = rnsStopped
2023-09-03 00:53:48 +00:00
# Cancel pending timers (if any)
2023-09-06 16:18:02 +00:00
RaftNodeCancelAllTimers(node)
proc RaftNodeStart*[SmCommandType, SmStateType](node: RaftNode[SmCommandType, SmStateType]) =
2023-09-03 00:53:48 +00:00
node.state = rnsFollower
2023-09-06 19:27:22 +00:00
debug "Start Raft Node", node_id=node.id, state=node.state
RaftNodeScheduleElectionTimeout(node)