scc/tree_index/leaf_node.rs
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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
use super::leaf::{InsertResult, RemoveResult, Scanner, DIMENSION};
use super::node::Node;
use super::Leaf;
use crate::ebr::{AtomicShared, Guard, Ptr, Shared, Tag};
use crate::exit_guard::ExitGuard;
use crate::maybe_std::AtomicU8;
use crate::wait_queue::{DeriveAsyncWait, WaitQueue};
use crate::LinkedList;
use crate::{range_helper, Comparable};
use std::cmp::Ordering::{Equal, Greater, Less};
use std::ops::{Bound, RangeBounds};
use std::ptr;
use std::sync::atomic::AtomicPtr;
use std::sync::atomic::Ordering::{AcqRel, Acquire, Relaxed, Release};
/// [`Tag::First`] indicates the corresponding node has retired.
pub const RETIRED: Tag = Tag::First;
/// [`Tag::Second`] indicates the corresponding node is locked.
pub const LOCKED: Tag = Tag::Second;
/// [`LeafNode`] contains a list of instances of `K, V` [`Leaf`].
///
/// The layout of a leaf node: `|ptr(entry array)/max(child keys)|...|ptr(entry array)|`
pub struct LeafNode<K, V> {
/// Children of the [`LeafNode`].
pub(super) children: Leaf<K, AtomicShared<Leaf<K, V>>>,
/// A child [`Leaf`] that has no upper key bound.
///
/// It stores the maximum key in the node, and key-value pairs are firstly pushed to this
/// [`Leaf`] until split.
unbounded_child: AtomicShared<Leaf<K, V>>,
/// On-going split operation.
split_op: StructuralChange<K, V>,
/// The latch protecting the [`LeafNode`].
latch: AtomicU8,
/// `wait_queue` for `latch`.
wait_queue: WaitQueue,
}
/// [`Locker`] holds exclusive ownership of a [`Leaf`].
pub(super) struct Locker<'n, K, V> {
leaf_node: &'n LeafNode<K, V>,
}
/// A state machine to keep track of the progress of a bulk removal operation.
#[derive(Clone, Copy, Eq, PartialEq)]
pub(super) enum RemoveRangeState {
/// The max key of the node is less than the start bound of the range.
Below,
/// The max key of the node is contained in the range, but it is not clear that the
/// minimum key of the node is contained in the range.
MaybeBelow,
/// The max key and the minimum key of the node are contained in the range.
FullyContained,
/// The max key of the node is not contained in the range, but it is not clear that
/// the minimum key of the node is contained in the range.
MaybeAbove,
}
/// [`StructuralChange`] stores intermediate results during a split operation.
///
/// `AtomicPtr` members may point to values under the protection of the [`Guard`] used for the
/// split operation.
pub(super) struct StructuralChange<K, V> {
origin_leaf_key: AtomicPtr<K>,
origin_leaf: AtomicShared<Leaf<K, V>>,
low_key_leaf: AtomicShared<Leaf<K, V>>,
high_key_leaf: AtomicShared<Leaf<K, V>>,
low_key_leaf_node: AtomicPtr<LeafNode<K, V>>,
high_key_leaf_node: AtomicPtr<LeafNode<K, V>>,
}
impl<K, V> LeafNode<K, V> {
/// Creates a new empty [`LeafNode`].
#[inline]
pub(super) fn new() -> LeafNode<K, V> {
LeafNode {
children: Leaf::new(),
unbounded_child: AtomicShared::null(),
split_op: StructuralChange::default(),
latch: AtomicU8::new(Tag::None.into()),
wait_queue: WaitQueue::default(),
}
}
/// Clears the leaf node by unlinking all the leaves.
#[inline]
pub(super) fn clear(&self, guard: &Guard) {
let scanner = Scanner::new(&self.children);
for (_, child) in scanner {
let child_ptr = child.load(Acquire, guard);
if let Some(child) = child_ptr.as_ref() {
child.link_ref().swap((None, Tag::None), Acquire);
}
}
let unbounded_ptr = self.unbounded_child.load(Acquire, guard);
if let Some(unbounded) = unbounded_ptr.as_ref() {
unbounded.link_ref().swap((None, Tag::None), Acquire);
}
}
/// Returns `true` if the [`LeafNode`] has retired.
#[inline]
pub(super) fn retired(&self) -> bool {
self.unbounded_child.tag(Acquire) == RETIRED
}
/// Waits for the lock on the [`LeafNode`] to be released.
#[inline]
pub(super) fn wait<D: DeriveAsyncWait>(&self, async_wait: &mut D) {
let waiter = || {
if self.latch.load(Acquire) == LOCKED.into() {
// The `LeafNode` is being split or locked.
return Err(());
}
Ok(())
};
if let Some(async_wait) = async_wait.derive() {
let _result = self.wait_queue.push_async_entry(async_wait, waiter);
} else {
let _result = self.wait_queue.wait_sync(waiter);
}
}
/// Tries to lock the [`LeafNode`].
fn try_lock(&self) -> bool {
self.latch
.compare_exchange(Tag::None.into(), LOCKED.into(), Acquire, Relaxed)
.is_ok()
}
/// Unlocks the [`LeafNode`].
fn unlock(&self) {
debug_assert_eq!(self.latch.load(Relaxed), LOCKED.into());
self.latch.store(Tag::None.into(), Release);
self.wait_queue.signal();
}
/// Retires itself.
fn retire(&self) {
debug_assert_eq!(self.latch.load(Relaxed), LOCKED.into());
self.latch.store(RETIRED.into(), Release);
self.wait_queue.signal();
}
}
impl<K, V> LeafNode<K, V>
where
K: 'static + Clone + Ord,
V: 'static + Clone,
{
/// Searches for an entry containing the specified key.
#[inline]
pub(super) fn search_entry<'g, Q>(&self, key: &Q, guard: &'g Guard) -> Option<(&'g K, &'g V)>
where
K: 'g,
Q: Comparable<K> + ?Sized,
{
loop {
let (child, metadata) = self.children.min_greater_equal(key);
if let Some((_, child)) = child {
if let Some(child) = child.load(Acquire, guard).as_ref() {
if self.children.validate(metadata) {
// Data race with split.
// - Writer: start to insert an intermediate low key leaf.
// - Reader: read the metadata not including the intermediate low key leaf.
// - Writer: insert the intermediate low key leaf.
// - Writer: replace the high key leaf pointer.
// - Reader: read the new high key leaf pointer
// Consequently, the reader may miss keys in the low key leaf.
//
// Resolution: metadata validation.
return child.search_entry(key);
}
}
// The child leaf must have been just removed.
//
// The `LeafNode` metadata is updated before a leaf is removed. This implies that
// the new `metadata` will be different from the current `metadata`.
} else {
let unbounded_ptr = self.unbounded_child.load(Acquire, guard);
if let Some(unbounded) = unbounded_ptr.as_ref() {
if self.children.validate(metadata) {
return unbounded.search_entry(key);
}
} else {
return None;
}
}
}
}
/// Searches for the value associated with the specified key.
#[inline]
pub(super) fn search_value<'g, Q>(&self, key: &Q, guard: &'g Guard) -> Option<&'g V>
where
K: 'g,
Q: Comparable<K> + ?Sized,
{
loop {
let (child, metadata) = self.children.min_greater_equal(key);
if let Some((_, child)) = child {
if let Some(child) = child.load(Acquire, guard).as_ref() {
if self.children.validate(metadata) {
// Data race resolution - see `LeafNode::search_entry`.
return child.search_value(key);
}
}
// Data race resolution - see `LeafNode::search_entry`.
} else {
let unbounded_ptr = self.unbounded_child.load(Acquire, guard);
if let Some(unbounded) = unbounded_ptr.as_ref() {
if self.children.validate(metadata) {
return unbounded.search_value(key);
}
} else {
return None;
}
}
}
}
/// Returns the minimum key entry.
#[inline]
pub(super) fn min<'g>(&self, guard: &'g Guard) -> Option<Scanner<'g, K, V>> {
loop {
let mut scanner = Scanner::new(&self.children);
let metadata = scanner.metadata();
if let Some((_, child)) = scanner.next() {
let child_ptr = child.load(Acquire, guard);
if let Some(child) = child_ptr.as_ref() {
if self.children.validate(metadata) {
// Data race resolution - see `LeafNode::search_entry`.
return Some(Scanner::new(child));
}
}
// It is not a hot loop - see `LeafNode::search_entry`.
continue;
}
let unbounded_ptr = self.unbounded_child.load(Acquire, guard);
if let Some(unbounded) = unbounded_ptr.as_ref() {
if self.children.validate(metadata) {
return Some(Scanner::new(unbounded));
}
continue;
}
return None;
}
}
/// Returns a [`Scanner`] pointing to an entry that is close enough to the entry with the
/// maximum key among those keys smaller than the given key.
///
/// Returns `None` if all the keys in the [`LeafNode`] is equal to or greater than the given
/// key.
#[inline]
pub(super) fn max_le_appr<'g, Q>(&self, key: &Q, guard: &'g Guard) -> Option<Scanner<'g, K, V>>
where
K: 'g,
Q: Comparable<K> + ?Sized,
{
loop {
if let Some(scanner) = Scanner::max_less(&self.children, key) {
if let Some((_, child)) = scanner.get() {
if let Some(child) = child.load(Acquire, guard).as_ref() {
if self.children.validate(scanner.metadata()) {
// Data race resolution - see `LeafNode::search_entry`.
if let Some(scanner) = Scanner::max_less(child, key) {
return Some(scanner);
}
// Fallback.
break;
}
}
// It is not a hot loop - see `LeafNode::search_entry`.
continue;
}
}
// Fallback.
break;
}
// Starts scanning from the minimum key.
let mut min_scanner = self.min(guard)?;
min_scanner.next();
loop {
if let Some((k, _)) = min_scanner.get() {
if key.compare(k).is_ge() {
return Some(min_scanner);
}
break;
}
min_scanner = min_scanner.jump(None, guard)?;
}
None
}
/// Inserts a key-value pair.
///
/// # Errors
///
/// Returns an error if a retry is required.
#[inline]
pub(super) fn insert<D: DeriveAsyncWait>(
&self,
mut key: K,
mut val: V,
async_wait: &mut D,
guard: &Guard,
) -> Result<InsertResult<K, V>, (K, V)> {
loop {
let (child, metadata) = self.children.min_greater_equal(&key);
if let Some((child_key, child)) = child {
let child_ptr = child.load(Acquire, guard);
if let Some(child_ref) = child_ptr.as_ref() {
if self.children.validate(metadata) {
// Data race resolution - see `LeafNode::search_entry`.
let insert_result = child_ref.insert(key, val);
match insert_result {
InsertResult::Success
| InsertResult::Duplicate(..)
| InsertResult::Retry(..) => return Ok(insert_result),
InsertResult::Full(k, v) | InsertResult::Retired(k, v) => {
let split_result = self.split_leaf(
k,
v,
Some(child_key),
child_ptr,
child,
async_wait,
guard,
)?;
if let InsertResult::Retry(k, v) = split_result {
key = k;
val = v;
continue;
}
return Ok(split_result);
}
InsertResult::Frozen(k, v) => {
// The `Leaf` is being split: retry.
self.wait(async_wait);
return Err((k, v));
}
};
}
}
// It is not a hot loop - see `LeafNode::search_entry`.
continue;
}
let mut unbounded_ptr = self.unbounded_child.load(Acquire, guard);
if unbounded_ptr.is_null() {
match self.unbounded_child.compare_exchange(
Ptr::null(),
(Some(Shared::new(Leaf::new())), Tag::None),
AcqRel,
Acquire,
guard,
) {
Ok((_, ptr)) => {
unbounded_ptr = ptr;
}
Err((_, actual)) => {
unbounded_ptr = actual;
}
}
}
if let Some(unbounded) = unbounded_ptr.as_ref() {
debug_assert!(unbounded_ptr.tag() == Tag::None);
if !self.children.validate(metadata) {
continue;
}
let insert_result = unbounded.insert(key, val);
match insert_result {
InsertResult::Success
| InsertResult::Duplicate(..)
| InsertResult::Retry(..) => {
return Ok(insert_result);
}
InsertResult::Full(k, v) | InsertResult::Retired(k, v) => {
let split_result = self.split_leaf(
k,
v,
None,
unbounded_ptr,
&self.unbounded_child,
async_wait,
guard,
)?;
if let InsertResult::Retry(k, v) = split_result {
key = k;
val = v;
continue;
}
return Ok(split_result);
}
InsertResult::Frozen(k, v) => {
self.wait(async_wait);
return Err((k, v));
}
};
}
return Ok(InsertResult::Retired(key, val));
}
}
/// Removes an entry associated with the given key.
///
/// # Errors
///
/// Returns an error if a retry is required with a Boolean flag indicating that an entry has been removed.
#[inline]
pub(super) fn remove_if<Q, F: FnMut(&V) -> bool, D: DeriveAsyncWait>(
&self,
key: &Q,
condition: &mut F,
async_wait: &mut D,
guard: &Guard,
) -> Result<RemoveResult, ()>
where
Q: Comparable<K> + ?Sized,
{
loop {
let (child, metadata) = self.children.min_greater_equal(key);
if let Some((_, child)) = child {
let child_ptr = child.load(Acquire, guard);
if let Some(child) = child_ptr.as_ref() {
if self.children.validate(metadata) {
// Data race resolution - see `LeafNode::search_entry`.
let result = child.remove_if(key, condition);
if result == RemoveResult::Frozen {
// When a `Leaf` is frozen, its entries may be being copied to new
// `Leaves`.
self.wait(async_wait);
return Err(());
} else if result == RemoveResult::Retired {
return Ok(self.coalesce(guard));
}
return Ok(result);
}
}
// It is not a hot loop - see `LeafNode::search_entry`.
continue;
}
let unbounded_ptr = self.unbounded_child.load(Acquire, guard);
if let Some(unbounded) = unbounded_ptr.as_ref() {
debug_assert!(unbounded_ptr.tag() == Tag::None);
if !self.children.validate(metadata) {
// Data race resolution - see `LeafNode::search_entry`.
continue;
}
let result = unbounded.remove_if(key, condition);
if result == RemoveResult::Frozen {
self.wait(async_wait);
return Err(());
} else if result == RemoveResult::Retired {
return Ok(self.coalesce(guard));
}
return Ok(result);
}
return Ok(RemoveResult::Fail);
}
}
/// Removes a range of entries.
///
/// Returns the number of remaining children.
#[inline]
pub(super) fn remove_range<'g, Q, R: RangeBounds<Q>, D: DeriveAsyncWait>(
&self,
range: &R,
start_unbounded: bool,
valid_lower_max_leaf: Option<&'g Leaf<K, V>>,
valid_upper_min_node: Option<&'g Node<K, V>>,
async_wait: &mut D,
guard: &'g Guard,
) -> Result<usize, ()>
where
Q: Comparable<K> + ?Sized,
{
debug_assert!(valid_lower_max_leaf.is_none() || start_unbounded);
debug_assert!(valid_lower_max_leaf.is_none() || valid_upper_min_node.is_none());
let Some(_lock) = Locker::try_lock(self) else {
self.wait(async_wait);
return Err(());
};
let mut current_state = RemoveRangeState::Below;
let mut num_leaves = 1;
let mut first_valid_leaf = None;
for (key, leaf) in Scanner::new(&self.children) {
current_state = current_state.next(key, range, start_unbounded);
match current_state {
RemoveRangeState::Below | RemoveRangeState::MaybeBelow => {
if let Some(leaf) = leaf.load(Acquire, guard).as_ref() {
leaf.remove_range(range);
}
num_leaves += 1;
if first_valid_leaf.is_none() {
first_valid_leaf.replace(leaf);
}
}
RemoveRangeState::FullyContained => {
// There can be another thread inserting keys into the leaf, and this may
// render those operations completely ineffective.
self.children.remove_if(key, &mut |_| true);
if let Some(leaf) = leaf.swap((None, Tag::None), AcqRel).0 {
leaf.delete_self(Release);
}
}
RemoveRangeState::MaybeAbove => {
if let Some(leaf) = leaf.load(Acquire, guard).as_ref() {
leaf.remove_range(range);
}
num_leaves += 1;
if first_valid_leaf.is_none() {
first_valid_leaf.replace(leaf);
}
break;
}
}
}
if let Some(unbounded) = self.unbounded_child.load(Acquire, guard).as_ref() {
unbounded.remove_range(range);
}
if let Some(valid_lower_max_leaf) = valid_lower_max_leaf {
// Connect the specified leaf with the first valid leaf.
if first_valid_leaf.is_none() {
first_valid_leaf.replace(&self.unbounded_child);
}
valid_lower_max_leaf.link_ref().swap(
(
first_valid_leaf.and_then(|l| l.get_shared(Acquire, guard)),
Tag::None,
),
AcqRel,
);
} else if let Some(valid_upper_min_node) = valid_upper_min_node {
// Connect the unbounded child with the minimum valid leaf in the node.
valid_upper_min_node.remove_range(
range,
true,
self.unbounded_child.load(Acquire, guard).as_ref(),
None,
async_wait,
guard,
)?;
}
Ok(num_leaves)
}
/// Splits itself into the given leaf nodes, and returns the middle key value.
#[allow(clippy::too_many_lines)]
pub(super) fn split_leaf_node<'g>(
&'g self,
low_key_leaf_node: &LeafNode<K, V>,
high_key_leaf_node: &LeafNode<K, V>,
guard: &'g Guard,
) -> &'g K {
let mut middle_key = None;
low_key_leaf_node.latch.store(LOCKED.into(), Relaxed);
high_key_leaf_node.latch.store(LOCKED.into(), Relaxed);
// It is safe to keep the pointers to the new leaf nodes in this full leaf node since the
// whole split operation is protected under a single `ebr::Guard`, and the pointers are
// only dereferenced during the operation.
self.split_op.low_key_leaf_node.swap(
(low_key_leaf_node as *const LeafNode<K, V>).cast_mut(),
Relaxed,
);
self.split_op.high_key_leaf_node.swap(
(high_key_leaf_node as *const LeafNode<K, V>).cast_mut(),
Relaxed,
);
// Builds a list of valid leaves
#[allow(clippy::type_complexity)]
let mut entry_array: [Option<(Option<&K>, AtomicShared<Leaf<K, V>>)>;
DIMENSION.num_entries + 2] = Default::default();
let mut num_entries = 0;
let low_key_leaf_ref = self
.split_op
.low_key_leaf
.load(Relaxed, guard)
.as_ref()
.unwrap();
let middle_key_ref = low_key_leaf_ref.max_key().unwrap();
let scanner = Scanner::new(&self.children);
let recommended_boundary = Leaf::<K, V>::optimal_boundary(scanner.metadata());
for entry in scanner {
if unsafe {
self.split_op
.origin_leaf_key
.load(Relaxed)
.as_ref()
.map_or_else(|| false, |key| entry.0 == key)
} {
entry_array[num_entries].replace((
Some(middle_key_ref),
self.split_op.low_key_leaf.clone(Relaxed, guard),
));
num_entries += 1;
if !self.split_op.high_key_leaf.is_null(Relaxed) {
entry_array[num_entries].replace((
Some(entry.0),
self.split_op.high_key_leaf.clone(Relaxed, guard),
));
num_entries += 1;
}
} else {
entry_array[num_entries].replace((Some(entry.0), entry.1.clone(Acquire, guard)));
num_entries += 1;
}
}
if self.split_op.origin_leaf_key.load(Relaxed).is_null() {
// If the origin is an unbounded node, assign the high key node to the high key node's
// unbounded.
entry_array[num_entries].replace((
Some(middle_key_ref),
self.split_op.low_key_leaf.clone(Relaxed, guard),
));
num_entries += 1;
if !self.split_op.high_key_leaf.is_null(Relaxed) {
entry_array[num_entries]
.replace((None, self.split_op.high_key_leaf.clone(Relaxed, guard)));
num_entries += 1;
}
} else {
// If the origin is a bounded node, assign the unbounded leaf as the high key node's
// unbounded.
entry_array[num_entries].replace((None, self.unbounded_child.clone(Relaxed, guard)));
num_entries += 1;
}
debug_assert!(num_entries >= 2);
let low_key_leaf_array_size = recommended_boundary.min(num_entries - 1);
for (i, entry) in entry_array.iter().enumerate() {
if let Some((k, v)) = entry {
match (i + 1).cmp(&low_key_leaf_array_size) {
Less => {
low_key_leaf_node.children.insert_unchecked(
k.unwrap().clone(),
v.clone(Relaxed, guard),
i,
);
}
Equal => {
middle_key.replace(k.unwrap());
low_key_leaf_node
.unbounded_child
.swap((v.get_shared(Relaxed, guard), Tag::None), Relaxed);
}
Greater => {
if let Some(k) = k.cloned() {
high_key_leaf_node.children.insert_unchecked(
k,
v.clone(Relaxed, guard),
i - low_key_leaf_array_size,
);
} else {
high_key_leaf_node
.unbounded_child
.swap((v.get_shared(Relaxed, guard), Tag::None), Relaxed);
}
}
}
} else {
break;
}
}
middle_key.unwrap()
}
/// Commits an on-going structural change.
#[inline]
pub(super) fn commit(&self, guard: &Guard) {
// Unfreeze both leaves.
if let Some(origin_leaf) = self.split_op.origin_leaf.swap((None, Tag::None), Relaxed).0 {
// Make the origin leaf unreachable before making the new leaves updatable.
origin_leaf.delete_self(Release);
let _: bool = origin_leaf.release();
}
let low_key_leaf = self
.split_op
.low_key_leaf
.load(Relaxed, guard)
.as_ref()
.unwrap();
let high_key_leaf = self
.split_op
.high_key_leaf
.load(Relaxed, guard)
.as_ref()
.unwrap();
let unfrozen = low_key_leaf.thaw();
debug_assert!(unfrozen);
let unfrozen = high_key_leaf.thaw();
debug_assert!(unfrozen);
// It is safe to dereference those pointers since the whole split operation is under a
// single `ebr::Guard`.
if let Some(low_key_leaf_node) =
unsafe { self.split_op.low_key_leaf_node.load(Relaxed).as_ref() }
{
let origin = low_key_leaf_node.split_op.reset();
low_key_leaf_node.unlock();
origin.map(Shared::release);
}
if let Some(high_key_leaf_node) =
unsafe { self.split_op.high_key_leaf_node.load(Relaxed).as_ref() }
{
let origin = high_key_leaf_node.split_op.reset();
high_key_leaf_node.unlock();
origin.map(Shared::release);
}
let origin = self.split_op.reset();
self.retire();
origin.map(Shared::release);
}
/// Rolls back the ongoing split operation.
#[inline]
pub(super) fn rollback(&self, guard: &Guard) {
let low_key_leaf = self
.split_op
.low_key_leaf
.load(Relaxed, guard)
.as_ref()
.unwrap();
let high_key_leaf = self
.split_op
.high_key_leaf
.load(Relaxed, guard)
.as_ref()
.unwrap();
// Roll back the linked list state.
//
// `high_key_leaf` must be deleted first in order for `Scanners` not to omit entries.
let deleted = high_key_leaf.delete_self(Release);
debug_assert!(deleted);
let deleted = low_key_leaf.delete_self(Release);
debug_assert!(deleted);
if let Some(origin_leaf) = self.split_op.origin_leaf.swap((None, Tag::None), Relaxed).0 {
// Unfreeze the origin.
let unfrozen = origin_leaf.thaw();
debug_assert!(unfrozen);
// Remove the mark from the full leaf node.
//
// `clear` clears the tag, so there is no guarantee that the tag has been kept.
origin_leaf.unmark(Release);
}
let origin = self.split_op.reset();
self.unlock();
origin.map(Shared::release);
}
/// Cleans up logically deleted [`LeafNode`] instances in the linked list.
///
/// If the target leaf does not exist in the [`LeafNode`], returns `false`.
#[inline]
pub(super) fn cleanup_link<'g, Q>(&self, key: &Q, tranverse_max: bool, guard: &'g Guard) -> bool
where
K: 'g,
Q: Comparable<K> + ?Sized,
{
let scanner = if tranverse_max {
if let Some(unbounded) = self.unbounded_child.load(Acquire, guard).as_ref() {
Scanner::new(unbounded)
} else {
return false;
}
} else if let Some(leaf_scanner) = Scanner::max_less(&self.children, key) {
if let Some((_, child)) = leaf_scanner.get() {
if let Some(child) = child.load(Acquire, guard).as_ref() {
Scanner::new(child)
} else {
return false;
}
} else {
return false;
}
} else {
return false;
};
// It *would* be the maximum leaf node among those that containing keys smaller than the
// target key. Hopefully, two jumps will be sufficient.
scanner.jump(None, guard).map(|s| s.jump(None, guard));
true
}
/// Splits a full leaf.
///
/// # Errors
///
/// Returns an error if a retry is required.
#[allow(clippy::too_many_arguments, clippy::too_many_lines)]
fn split_leaf<D: DeriveAsyncWait>(
&self,
key: K,
val: V,
full_leaf_key: Option<&K>,
full_leaf_ptr: Ptr<Leaf<K, V>>,
full_leaf: &AtomicShared<Leaf<K, V>>,
async_wait: &mut D,
guard: &Guard,
) -> Result<InsertResult<K, V>, (K, V)> {
if !self.try_lock() {
self.wait(async_wait);
return Err((key, val));
}
if self.retired() {
self.unlock();
return Ok(InsertResult::Retired(key, val));
}
if full_leaf_ptr != full_leaf.load(Relaxed, guard) {
self.unlock();
return Err((key, val));
}
let prev = self
.split_op
.origin_leaf
.swap((full_leaf.get_shared(Relaxed, guard), Tag::None), Relaxed)
.0;
debug_assert!(prev.is_none());
if let Some(full_leaf_key) = full_leaf_key {
self.split_op
.origin_leaf_key
.store((full_leaf_key as *const K).cast_mut(), Relaxed);
}
let target = full_leaf_ptr.as_ref().unwrap();
let mut low_key_leaf_shared = None;
let mut high_key_leaf_shared = None;
// Distribute entries to two leaves after make the target retired.
let mut exit_guard = ExitGuard::new(true, |rollback| {
if rollback {
target.thaw();
self.split_op.reset();
self.unlock();
}
});
target.freeze_and_distribute(&mut low_key_leaf_shared, &mut high_key_leaf_shared);
if let Some(low_key_leaf) = low_key_leaf_shared.take() {
self.split_op
.low_key_leaf
.swap((Some(low_key_leaf), Tag::None), Relaxed);
if let Some(high_key_leaf) = high_key_leaf_shared.take() {
self.split_op
.high_key_leaf
.swap((Some(high_key_leaf), Tag::None), Relaxed);
}
} else {
// No valid keys in the full leaf.
self.split_op
.low_key_leaf
.swap((Some(Shared::new(Leaf::new())), Tag::None), Relaxed);
}
// When a new leaf is added to the linked list, the leaf is marked to let `Scanners`
// acknowledge that the newly added leaf may contain keys that are smaller than those
// having been `scanned`.
let low_key_leaf_ptr = self.split_op.low_key_leaf.load(Relaxed, guard);
let high_key_leaf_ptr = self.split_op.high_key_leaf.load(Relaxed, guard);
let unused_leaf = if let Some(high_key_leaf) = high_key_leaf_ptr.as_ref() {
// From here, `Scanners` can reach the new leaves.
let result = target.push_back(
high_key_leaf_ptr.get_shared().unwrap(),
true,
Release,
guard,
);
debug_assert!(result.is_ok());
let result =
target.push_back(low_key_leaf_ptr.get_shared().unwrap(), true, Release, guard);
debug_assert!(result.is_ok());
// Take the max key value stored in the low key leaf as the leaf key.
let low_key_leaf = low_key_leaf_ptr.as_ref().unwrap();
// Need to freeze the leaf before trying to make it reachable.
let frozen = low_key_leaf.freeze();
debug_assert!(frozen);
match self.children.insert(
low_key_leaf.max_key().unwrap().clone(),
self.split_op.low_key_leaf.clone(Relaxed, guard),
) {
InsertResult::Success => (),
InsertResult::Duplicate(..)
| InsertResult::Frozen(..)
| InsertResult::Retry(..) => unreachable!(),
InsertResult::Full(_, _) | InsertResult::Retired(_, _) => {
// Need to freeze the other leaf.
let frozen = high_key_leaf.freeze();
debug_assert!(frozen);
*exit_guard = false;
return Ok(InsertResult::Full(key, val));
}
};
// Mark the full leaf deleted before making the new one reachable and updatable.
//
// If the order is reversed, there emerges a possibility that entries were removed from
// the replaced leaf node whereas those entries still remain in `unused_leaf`; if that
// happens, iterators may see the removed entries momentarily.
let deleted = target.delete_self(Release);
debug_assert!(deleted);
// Unfreeze the leaf.
let unfrozen = low_key_leaf.thaw();
debug_assert!(unfrozen);
// Replace the full leaf with the high-key leaf.
let high_key_leaf = self
.split_op
.high_key_leaf
.swap((None, Tag::None), Relaxed)
.0;
full_leaf.swap((high_key_leaf, Tag::None), Release).0
} else {
// From here, `Scanner` can reach the new leaf.
//
// The full leaf is marked so that readers know that the next leaves may contain
// smaller keys.
let result =
target.push_back(low_key_leaf_ptr.get_shared().unwrap(), true, Release, guard);
debug_assert!(result.is_ok());
// Mark the full leaf deleted before making the new one reachable and updatable.
let deleted = target.delete_self(Release);
debug_assert!(deleted);
full_leaf
.swap(
self.split_op.low_key_leaf.swap((None, Tag::None), Release),
Release,
)
.0
};
*exit_guard = false;
let origin = self.split_op.reset();
self.unlock();
origin.map(Shared::release);
unused_leaf.map(Shared::release);
// Since a new leaf has been inserted, the caller can retry.
Ok(InsertResult::Retry(key, val))
}
/// Tries to coalesce empty or obsolete leaves after a successful removal of an entry.
fn coalesce(&self, guard: &Guard) -> RemoveResult {
let mut uncleaned_leaf = false;
let mut prev_valid_leaf = None;
while let Some(lock) = Locker::try_lock(self) {
prev_valid_leaf.take();
for entry in Scanner::new(&self.children) {
let leaf_ptr = entry.1.load(Acquire, guard);
let leaf = leaf_ptr.as_ref().unwrap();
if leaf.is_retired() {
let deleted = leaf.delete_self(Release);
debug_assert!(deleted);
let result = self.children.remove_if(entry.0, &mut |_| true);
debug_assert_ne!(result, RemoveResult::Fail);
// The pointer is nullified after the metadata of `self.children` is updated so
// that readers are able to retry when they find it being `null`.
if let Some(leaf) = entry.1.swap((None, Tag::None), Release).0 {
let _: bool = leaf.release();
if let Some(prev_leaf) = prev_valid_leaf.as_ref() {
// One jump is sufficient.
Scanner::new(*prev_leaf).jump(None, guard);
} else {
uncleaned_leaf = true;
}
}
} else {
prev_valid_leaf.replace(leaf);
}
}
// The unbounded leaf becomes unreachable after all the other leaves are gone.
let fully_empty = if prev_valid_leaf.is_some() {
false
} else {
let unbounded_ptr = self.unbounded_child.load(Acquire, guard);
if let Some(unbounded) = unbounded_ptr.as_ref() {
if unbounded.is_retired() {
let deleted = unbounded.delete_self(Release);
debug_assert!(deleted);
// It has to mark the pointer in order to prevent `LeafNode::insert` from
// replacing it with a new `Leaf`.
if let Some(obsolete_leaf) =
self.unbounded_child.swap((None, RETIRED), Release).0
{
let _: bool = obsolete_leaf.release();
uncleaned_leaf = true;
}
true
} else {
false
}
} else {
debug_assert!(unbounded_ptr.tag() == RETIRED);
true
}
};
if fully_empty {
return RemoveResult::Retired;
}
drop(lock);
if !self.has_retired_leaf(guard) {
break;
}
}
if uncleaned_leaf {
RemoveResult::Cleanup
} else {
RemoveResult::Success
}
}
/// Checks if the [`LeafNode`] has a retired [`Leaf`].
fn has_retired_leaf(&self, guard: &Guard) -> bool {
let mut has_valid_leaf = false;
for entry in Scanner::new(&self.children) {
let leaf_ptr = entry.1.load(Relaxed, guard);
if let Some(leaf) = leaf_ptr.as_ref() {
if leaf.is_retired() {
return true;
}
has_valid_leaf = true;
}
}
if !has_valid_leaf {
let unbounded_ptr = self.unbounded_child.load(Relaxed, guard);
if let Some(unbounded) = unbounded_ptr.as_ref() {
if unbounded.is_retired() {
return true;
}
}
}
false
}
}
impl<'n, K, V> Locker<'n, K, V> {
/// Acquires exclusive lock on the [`LeafNode`].
#[inline]
pub(super) fn try_lock(leaf_node: &'n LeafNode<K, V>) -> Option<Locker<'n, K, V>> {
if leaf_node.try_lock() {
Some(Locker { leaf_node })
} else {
None
}
}
}
impl<'n, K, V> Drop for Locker<'n, K, V> {
#[inline]
fn drop(&mut self) {
self.leaf_node.unlock();
}
}
impl RemoveRangeState {
/// Returns the next state.
pub(super) fn next<K, Q, R: RangeBounds<Q>>(
self,
key: &K,
range: &R,
start_unbounded: bool,
) -> Self
where
Q: Comparable<K> + ?Sized,
{
if range_helper::contains(range, key) {
match self {
RemoveRangeState::Below => {
if start_unbounded {
RemoveRangeState::FullyContained
} else {
RemoveRangeState::MaybeBelow
}
}
RemoveRangeState::MaybeBelow | RemoveRangeState::FullyContained => {
RemoveRangeState::FullyContained
}
RemoveRangeState::MaybeAbove => unreachable!(),
}
} else {
match self {
RemoveRangeState::Below => match range.start_bound() {
Bound::Included(k) => match k.compare(key) {
Less | Equal => RemoveRangeState::MaybeAbove,
Greater => RemoveRangeState::Below,
},
Bound::Excluded(k) => match k.compare(key) {
Less => RemoveRangeState::MaybeAbove,
Greater | Equal => RemoveRangeState::Below,
},
Bound::Unbounded => RemoveRangeState::MaybeAbove,
},
RemoveRangeState::MaybeBelow | RemoveRangeState::FullyContained => {
RemoveRangeState::MaybeAbove
}
RemoveRangeState::MaybeAbove => unreachable!(),
}
}
}
}
impl<K, V> StructuralChange<K, V> {
fn reset(&self) -> Option<Shared<Leaf<K, V>>> {
self.origin_leaf_key.store(ptr::null_mut(), Relaxed);
self.low_key_leaf.swap((None, Tag::None), Relaxed);
self.high_key_leaf.swap((None, Tag::None), Relaxed);
self.low_key_leaf_node.store(ptr::null_mut(), Relaxed);
self.high_key_leaf_node.store(ptr::null_mut(), Relaxed);
self.origin_leaf.swap((None, Tag::None), Relaxed).0
}
}
impl<K, V> Default for StructuralChange<K, V> {
#[inline]
fn default() -> Self {
Self {
origin_leaf_key: AtomicPtr::default(),
origin_leaf: AtomicShared::null(),
low_key_leaf: AtomicShared::null(),
high_key_leaf: AtomicShared::null(),
low_key_leaf_node: AtomicPtr::default(),
high_key_leaf_node: AtomicPtr::default(),
}
}
}
#[cfg(not(feature = "loom"))]
#[cfg(test)]
mod test {
use super::*;
use std::sync::atomic::AtomicBool;
use tokio::sync::Barrier;
#[test]
fn basic() {
let guard = Guard::new();
let leaf_node: LeafNode<String, String> = LeafNode::new();
assert!(matches!(
leaf_node.insert(
"MY GOODNESS!".to_owned(),
"OH MY GOD!!".to_owned(),
&mut (),
&guard
),
Ok(InsertResult::Success)
));
assert!(matches!(
leaf_node.insert(
"GOOD DAY".to_owned(),
"OH MY GOD!!".to_owned(),
&mut (),
&guard
),
Ok(InsertResult::Success)
));
assert_eq!(
leaf_node.search_entry("MY GOODNESS!", &guard).unwrap().1,
"OH MY GOD!!"
);
assert_eq!(
leaf_node.search_entry("GOOD DAY", &guard).unwrap().1,
"OH MY GOD!!"
);
assert!(matches!(
leaf_node.remove_if::<_, _, _>("GOOD DAY", &mut |v| v == "OH MY", &mut (), &guard),
Ok(RemoveResult::Fail)
));
assert!(matches!(
leaf_node.remove_if::<_, _, _>(
"GOOD DAY",
&mut |v| v == "OH MY GOD!!",
&mut (),
&guard
),
Ok(RemoveResult::Success)
));
assert!(matches!(
leaf_node.remove_if::<_, _, _>("GOOD", &mut |v| v == "OH MY", &mut (), &guard),
Ok(RemoveResult::Fail)
));
assert!(matches!(
leaf_node.remove_if::<_, _, _>("MY GOODNESS!", &mut |_| true, &mut (), &guard),
Ok(RemoveResult::Retired)
));
assert!(matches!(
leaf_node.insert("HI".to_owned(), "HO".to_owned(), &mut (), &guard),
Ok(InsertResult::Retired(..))
));
}
#[test]
fn bulk() {
let guard = Guard::new();
let leaf_node: LeafNode<usize, usize> = LeafNode::new();
for k in 0..1024 {
let mut result = leaf_node.insert(k, k, &mut (), &guard);
if result.is_err() {
result = leaf_node.insert(k, k, &mut (), &guard);
}
match result.unwrap() {
InsertResult::Success => {
assert_eq!(leaf_node.search_entry(&k, &guard), Some((&k, &k)));
continue;
}
InsertResult::Duplicate(..)
| InsertResult::Frozen(..)
| InsertResult::Retired(..) => unreachable!(),
InsertResult::Full(_, _) => {
leaf_node.rollback(&guard);
for r in 0..(k - 1) {
assert_eq!(leaf_node.search_entry(&r, &guard), Some((&r, &r)));
assert!(leaf_node
.remove_if::<_, _, _>(&r, &mut |_| true, &mut (), &guard)
.is_ok());
assert_eq!(leaf_node.search_entry(&r, &guard), None);
}
assert_eq!(
leaf_node.search_entry(&(k - 1), &guard),
Some((&(k - 1), &(k - 1)))
);
assert_eq!(
leaf_node.remove_if::<_, _, _>(&(k - 1), &mut |_| true, &mut (), &guard),
Ok(RemoveResult::Retired)
);
assert_eq!(leaf_node.search_entry(&(k - 1), &guard), None);
break;
}
InsertResult::Retry(..) => {
assert!(leaf_node.insert(k, k, &mut (), &guard).is_ok());
}
}
}
}
#[cfg_attr(miri, ignore)]
#[tokio::test(flavor = "multi_thread", worker_threads = 16)]
async fn parallel() {
let num_tasks = 8;
let workload_size = 64;
let barrier = Shared::new(Barrier::new(num_tasks));
for _ in 0..16 {
let leaf_node = Shared::new(LeafNode::new());
assert!(leaf_node
.insert(usize::MAX, usize::MAX, &mut (), &Guard::new())
.is_ok());
let mut task_handles = Vec::with_capacity(num_tasks);
for task_id in 0..num_tasks {
let barrier_clone = barrier.clone();
let leaf_node_clone = leaf_node.clone();
task_handles.push(tokio::task::spawn(async move {
barrier_clone.wait().await;
let guard = Guard::new();
let mut max_key = None;
let range = (task_id * workload_size)..((task_id + 1) * workload_size);
for id in range.clone() {
loop {
if let Ok(r) = leaf_node_clone.insert(id, id, &mut (), &guard) {
match r {
InsertResult::Success => {
match leaf_node_clone.insert(id, id, &mut (), &guard) {
Ok(InsertResult::Duplicate(..)) | Err(_) => (),
_ => unreachable!(),
}
break;
}
InsertResult::Full(..) => {
leaf_node_clone.rollback(&guard);
max_key.replace(id);
break;
}
InsertResult::Frozen(..) | InsertResult::Retry(..) => {
continue;
}
_ => unreachable!(),
}
}
}
if max_key.is_some() {
break;
}
}
for id in range.clone() {
if max_key.map_or(false, |m| m == id) {
break;
}
assert_eq!(leaf_node_clone.search_entry(&id, &guard), Some((&id, &id)));
}
for id in range {
if max_key.map_or(false, |m| m == id) {
break;
}
loop {
if let Ok(r) = leaf_node_clone.remove_if::<_, _, _>(
&id,
&mut |_| true,
&mut (),
&guard,
) {
match r {
RemoveResult::Success
| RemoveResult::Cleanup
| RemoveResult::Fail => break,
RemoveResult::Frozen | RemoveResult::Retired => unreachable!(),
}
}
}
assert!(
leaf_node_clone.search_entry(&id, &guard).is_none(),
"{}",
id
);
if let Ok(RemoveResult::Success) = leaf_node_clone.remove_if::<_, _, _>(
&id,
&mut |_| true,
&mut (),
&guard,
) {
unreachable!()
}
}
}));
}
for r in futures::future::join_all(task_handles).await {
assert!(r.is_ok());
}
assert!(leaf_node
.remove_if::<_, _, _>(&usize::MAX, &mut |_| true, &mut (), &Guard::new())
.is_ok());
}
}
#[cfg_attr(miri, ignore)]
#[tokio::test(flavor = "multi_thread", worker_threads = 16)]
async fn durability() {
let num_tasks = 16_usize;
let workload_size = 64_usize;
for _ in 0..16 {
for k in 0..=workload_size {
let barrier = Shared::new(Barrier::new(num_tasks));
let leaf_node: Shared<LeafNode<usize, usize>> = Shared::new(LeafNode::new());
let inserted: Shared<AtomicBool> = Shared::new(AtomicBool::new(false));
let mut task_handles = Vec::with_capacity(num_tasks);
for _ in 0..num_tasks {
let barrier_clone = barrier.clone();
let leaf_node_clone = leaf_node.clone();
let inserted_clone = inserted.clone();
task_handles.push(tokio::spawn(async move {
{
barrier_clone.wait().await;
let guard = Guard::new();
match leaf_node_clone.insert(k, k, &mut (), &guard) {
Ok(InsertResult::Success) => {
assert!(!inserted_clone.swap(true, Relaxed));
}
Ok(InsertResult::Full(_, _) | InsertResult::Retired(_, _)) => {
leaf_node_clone.rollback(&guard);
}
_ => (),
};
}
{
barrier_clone.wait().await;
let guard = Guard::new();
for i in 0..workload_size {
if i != k {
if let Ok(
InsertResult::Full(_, _) | InsertResult::Retired(_, _),
) = leaf_node_clone.insert(i, i, &mut (), &guard)
{
leaf_node_clone.rollback(&guard);
}
}
assert_eq!(
leaf_node_clone.search_entry(&k, &guard).unwrap(),
(&k, &k)
);
}
for i in 0..workload_size {
let max_scanner = leaf_node_clone.max_le_appr(&k, &guard).unwrap();
assert!(*max_scanner.get().unwrap().0 <= k);
let mut min_scanner = leaf_node_clone.min(&guard).unwrap();
if let Some((k_ref, v_ref)) = min_scanner.next() {
assert_eq!(*k_ref, *v_ref);
assert!(*k_ref <= k);
} else {
let (k_ref, v_ref) =
min_scanner.jump(None, &guard).unwrap().get().unwrap();
assert_eq!(*k_ref, *v_ref);
assert!(*k_ref <= k);
}
let _result = leaf_node_clone.remove_if::<_, _, _>(
&i,
&mut |v| *v != k,
&mut (),
&guard,
);
assert_eq!(
leaf_node_clone.search_entry(&k, &guard).unwrap(),
(&k, &k)
);
}
}
}));
}
for r in futures::future::join_all(task_handles).await {
assert!(r.is_ok());
}
assert!((*inserted).load(Relaxed));
}
}
}
}