Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Commits
61cf4523
Commit
61cf4523
authored
2 years ago
by
Georgy Moshkin
Browse files
Options
Downloads
Patches
Plain Diff
refactor: simplify handling of joint_state_latch
parent
1d7f4ec0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/traft/node.rs
+37
-35
37 additions, 35 deletions
src/traft/node.rs
with
37 additions
and
35 deletions
src/traft/node.rs
+
37
−
35
View file @
61cf4523
...
...
@@ -14,7 +14,7 @@ use ::tarantool::fiber;
use
::
tarantool
::
proc
;
use
::
tarantool
::
tlua
;
use
::
tarantool
::
transaction
::
start_transaction
;
use
std
::
cell
::
RefCell
;
use
std
::
cell
::
{
Cell
,
RefCell
}
;
use
std
::
collections
::
HashMap
;
use
std
::
collections
::
HashSet
;
use
std
::
convert
::
TryFrom
;
...
...
@@ -270,12 +270,21 @@ struct JointStateLatch {
notify
:
Notify
,
}
fn
with_joint_state_latch
<
F
,
R
>
(
f
:
F
)
->
R
where
F
:
FnOnce
(
&
Cell
<
Option
<
JointStateLatch
>>
)
->
R
,
{
thread_local!
{
static
JOINT_STATE_LATCH
:
Cell
<
Option
<
JointStateLatch
>>
=
Cell
::
new
(
None
);
}
JOINT_STATE_LATCH
.with
(
f
)
}
fn
handle_committed_entries
(
entries
:
Vec
<
raft
::
Entry
>
,
notifications
:
&
mut
HashMap
<
LogicalClock
,
Notify
>
,
raw_node
:
&
mut
RawNode
,
pool
:
&
mut
ConnectionPool
,
joint_state_latch
:
&
mut
Option
<
JointStateLatch
>
,
topology_changed
:
&
mut
bool
,
)
{
for
entry
in
&
entries
{
...
...
@@ -291,15 +300,11 @@ fn handle_committed_entries(
};
match
entry
.entry_type
{
raft
::
EntryType
::
EntryNormal
=>
handle_committed_normal_entry
(
entry
,
notifications
,
pool
,
joint_state_latch
,
topology_changed
,
),
raft
::
EntryType
::
EntryNormal
=>
{
handle_committed_normal_entry
(
entry
,
notifications
,
pool
,
topology_changed
)
}
raft
::
EntryType
::
EntryConfChange
|
raft
::
EntryType
::
EntryConfChangeV2
=>
{
handle_committed_conf_change
(
entry
,
raw_node
,
joint_state_latch
)
handle_committed_conf_change
(
entry
,
raw_node
)
}
}
}
...
...
@@ -319,7 +324,6 @@ fn handle_committed_normal_entry(
entry
:
traft
::
Entry
,
notifications
:
&
mut
HashMap
<
LogicalClock
,
Notify
>
,
pool
:
&
mut
ConnectionPool
,
joint_state_latch
:
&
mut
Option
<
JointStateLatch
>
,
topology_changed
:
&
mut
bool
,
)
{
assert_eq!
(
entry
.entry_type
,
raft
::
EntryType
::
EntryNormal
);
...
...
@@ -336,30 +340,31 @@ fn handle_committed_normal_entry(
*
topology_changed
=
true
;
}
if
let
Some
(
latch
)
=
joint_state_latch
{
if
entry
.index
==
latch
.index
{
with_joint_state_latch
(|
joint_state_latch
|
{
if
let
Some
(
latch
)
=
joint_state_latch
.take
()
{
if
entry
.index
!=
latch
.index
{
joint_state_latch
.set
(
Some
(
latch
));
return
;
}
// It was expected to be a ConfChange entry, but it's
// normal. Raft must have overriden it, or there was
// a re-election.
let
e
=
RaftError
::
ConfChangeError
(
"rolled back"
.into
());
latch
.notify
.notify_err
(
e
);
*
joint_state_latch
=
None
;
}
}
}
);
}
fn
handle_committed_conf_change
(
entry
:
traft
::
Entry
,
raw_node
:
&
mut
RawNode
,
joint_state_latch
:
&
mut
Option
<
JointStateLatch
>
,
)
{
let
mut
latch_unlock
=
||
{
if
let
Some
(
latch
)
=
joint_state_latch
{
latch
.notify
.notify_ok
(());
*
joint_state_latch
=
None
;
event
::
broadcast
(
Event
::
LeaveJointState
);
}
fn
handle_committed_conf_change
(
entry
:
traft
::
Entry
,
raw_node
:
&
mut
RawNode
)
{
let
latch_unlock
=
||
{
with_joint_state_latch
(|
joint_state_latch
|
{
if
let
Some
(
latch
)
=
joint_state_latch
.take
()
{
latch
.notify
.notify_ok
(());
event
::
broadcast
(
Event
::
LeaveJointState
);
}
});
};
// Beware: a tiny difference in type names (`V2` or not `V2`)
...
...
@@ -459,8 +464,6 @@ fn raft_main_loop(
LogicalClock
::
new
(
id
,
gen
)
};
let
mut
joint_state_latch
:
Option
<
JointStateLatch
>
=
None
;
let
topology_cache
=
crate
::
cache
::
CachedCell
::
<
u64
,
Topology
>
::
new
();
// let mut topology: Option<(u64, Topology)> = None;
...
...
@@ -595,11 +598,12 @@ fn raft_main_loop(
let
last_index
=
raw_node
.raft.raft_log
.last_index
();
assert_eq!
(
last_index
,
prev_index
+
1
);
assert!
(
joint_state_latch
.is_none
());
joint_state_latch
=
Some
(
JointStateLatch
{
index
:
last_index
,
notify
,
with_joint_state_latch
(|
joint_state_latch
|
{
assert!
(
joint_state_latch
.take
()
.is_none
());
joint_state_latch
.set
(
Some
(
JointStateLatch
{
index
:
last_index
,
notify
,
}));
});
}
}
...
...
@@ -671,7 +675,6 @@ fn raft_main_loop(
&
mut
notifications
,
&
mut
raw_node
,
&
mut
pool
,
&
mut
joint_state_latch
,
&
mut
topology_changed
,
);
...
...
@@ -730,7 +733,6 @@ fn raft_main_loop(
&
mut
notifications
,
&
mut
raw_node
,
&
mut
pool
,
&
mut
joint_state_latch
,
&
mut
topology_changed
,
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment