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
//! [`HashIndex`] is a read-optimized concurrent and asynchronous hash map.
use super::ebr::{Arc, AtomicArc, Barrier};
use super::hash_table::bucket::{Bucket, EntryPtr, Locker};
use super::hash_table::bucket_array::BucketArray;
use super::hash_table::HashTable;
use super::wait_queue::{AsyncWait, DeriveAsyncWait};
use std::borrow::Borrow;
use std::collections::hash_map::RandomState;
use std::fmt::{self, Debug};
use std::hash::{BuildHasher, Hash};
use std::iter::FusedIterator;
use std::pin::Pin;
use std::ptr;
use std::sync::atomic::Ordering::Acquire;
/// Scalable concurrent hash index.
///
/// [`HashIndex`] is a concurrent and asynchronous hash map data structure that is optimized for
/// read operations. The key characteristics of [`HashIndex`] are similar to that of
/// [`HashMap`](super::HashMap) except that its read operations are lock-free.
///
/// ## The key differences between [`HashIndex`] and [`HashMap`](crate::HashMap).
///
/// * Lock-free-read: read and scan operations do not modify shared data and are never blocked.
/// * Immutability: the data in the container is immutable until it becomes unreachable.
/// * Linearizability: [`HashIndex`] insert/remove/update methods are linearizable.
///
/// ## The key statistics for [`HashIndex`]
///
/// * The expected size of metadata for a single key-value pair: 2-byte.
/// * The expected number of atomic write operations required for an operation on a single key: 2.
/// * The expected number of atomic variables accessed during a single key operation: 2.
/// * The number of entries managed by a single bucket without a linked list: 32.
/// * The expected maximum linked list length when resize is triggered: log(capacity) / 8.
pub struct HashIndex<K, V, H = RandomState>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
H: BuildHasher,
{
array: AtomicArc<BucketArray<K, V, true>>,
minimum_capacity: usize,
build_hasher: H,
}
/// [`Visitor`] iterates over all the key-value pairs in the [`HashIndex`].
///
/// It is guaranteed to visit all the key-value pairs that outlive the [`Visitor`]. However, the
/// same key-value pair can be visited more than once.
pub struct Visitor<'h, 'b, K, V, H = RandomState>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
H: BuildHasher,
{
hashindex: &'h HashIndex<K, V, H>,
current_array: Option<&'b BucketArray<K, V, true>>,
current_index: usize,
current_bucket: Option<&'b Bucket<K, V, true>>,
current_entry_ptr: EntryPtr<'b, K, V, true>,
barrier: &'b Barrier,
}
impl<K, V, H> HashIndex<K, V, H>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
H: BuildHasher,
{
/// Creates an empty [`HashIndex`] with the given [`BuildHasher`].
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
/// use std::collections::hash_map::RandomState;
///
/// let hashindex: HashIndex<u64, u32, RandomState> =
/// HashIndex::with_hasher(RandomState::new());
/// ```
#[inline]
pub fn with_hasher(build_hasher: H) -> HashIndex<K, V, H> {
HashIndex {
array: AtomicArc::null(),
minimum_capacity: 0,
build_hasher,
}
}
/// Creates an empty [`HashIndex`] with the specified capacity and build hasher.
///
/// The actual capacity is equal to or greater than the specified capacity.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
/// use std::collections::hash_map::RandomState;
///
/// let hashindex: HashIndex<u64, u32, RandomState> =
/// HashIndex::with_capacity_and_hasher(1000, RandomState::new());
///
/// let result = hashindex.capacity();
/// assert_eq!(result, 1024);
/// ```
#[inline]
pub fn with_capacity_and_hasher(capacity: usize, build_hasher: H) -> HashIndex<K, V, H> {
HashIndex {
array: AtomicArc::from(Arc::new(BucketArray::<K, V, true>::new(
capacity,
AtomicArc::null(),
))),
minimum_capacity: capacity,
build_hasher,
}
}
/// Inserts a key-value pair into the [`HashIndex`].
///
/// # Errors
///
/// Returns an error along with the supplied key-value pair if the key exists.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert_eq!(hashindex.insert(1, 1).unwrap_err(), (1, 1));
/// ```
#[inline]
pub fn insert(&self, key: K, val: V) -> Result<(), (K, V)> {
let barrier = Barrier::new();
let hash = self.hash(key.borrow());
if let Ok(Some((k, v))) = self.insert_entry(key, val, hash, &mut (), &barrier) {
Err((k, v))
} else {
Ok(())
}
}
/// Inserts a key-value pair into the [`HashIndex`].
///
/// It is an asynchronous method returning an `impl Future` for the caller to await.
///
/// # Errors
///
/// Returns an error along with the supplied key-value pair if the key exists.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
/// let future_insert = hashindex.insert_async(11, 17);
/// ```
#[inline]
pub async fn insert_async(&self, mut key: K, mut val: V) -> Result<(), (K, V)> {
let hash = self.hash(key.borrow());
loop {
let mut async_wait = AsyncWait::default();
let mut async_wait_pinned = Pin::new(&mut async_wait);
match self.insert_entry(key, val, hash, &mut async_wait_pinned, &Barrier::new()) {
Ok(Some(returned)) => return Err(returned),
Ok(None) => return Ok(()),
Err(returned) => {
key = returned.0;
val = returned.1;
}
}
async_wait_pinned.await;
}
}
/// Updates an existing key-value pair.
///
/// It returns `None` if the key does not exist.
///
/// # Safety
///
/// The caller has to make sure that there is no reader of the entry, e.g., a reader keeping a
/// reference to the entry via [`HashIndex::iter`], [`HashIndex::read`], or
/// [`HashIndex::read_with`].
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(unsafe { hashindex.update(&1, |_, _| true).is_none() });
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert_eq!(unsafe { hashindex.update(&1, |_, v| { *v = 2; *v }).unwrap() }, 2);
/// assert_eq!(hashindex.read(&1, |_, v| *v).unwrap(), 2);
/// ```
#[inline]
pub unsafe fn update<Q, F, R>(&self, key: &Q, updater: F) -> Option<R>
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
F: FnOnce(&K, &mut V) -> R,
{
let barrier = Barrier::new();
let (mut locker, data_block_mut, mut entry_ptr, _) = self
.acquire_entry(key, self.hash(key), &mut (), &barrier)
.ok()?;
if entry_ptr.is_valid() {
let (k, v) = entry_ptr.get_mut(data_block_mut, &mut locker);
return Some(updater(k, v));
}
None
}
/// Updates an existing key-value pair.
///
/// It returns `None` if the key does not exist. It is an asynchronous method returning an
/// `impl Future` for the caller to await.
///
/// # Safety
///
/// The caller has to make sure that there is no reader of the entry, e.g., a reader keeping a
/// reference to the entry via [`HashIndex::iter`], [`HashIndex::read`], or
/// [`HashIndex::read_with`].
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.insert(1, 0).is_ok());
/// let future_update = unsafe { hashindex.update_async(&1, |_, v| { *v = 2; *v }) };
/// ```
#[inline]
pub async unsafe fn update_async<Q, F, R>(&self, key: &Q, updater: F) -> Option<R>
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
F: FnOnce(&K, &mut V) -> R,
{
let hash = self.hash(key);
loop {
let mut async_wait = AsyncWait::default();
let mut async_wait_pinned = Pin::new(&mut async_wait);
if let Ok((mut locker, data_block_mut, mut entry_ptr, _)) =
self.acquire_entry(key, hash, &mut async_wait_pinned, &Barrier::new())
{
if entry_ptr.is_valid() {
let (k, v) = entry_ptr.get_mut(data_block_mut, &mut locker);
return Some(updater(k, v));
}
return None;
}
async_wait_pinned.await;
}
}
/// Removes a key-value pair if the key exists.
///
/// It returns `false` if the key does not exist. This method only marks the entry unreachable,
/// and the memory will be reclaimed later.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(!hashindex.remove(&1));
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert!(hashindex.remove(&1));
/// assert_eq!(hashindex.capacity(), 0);
/// ```
#[inline]
pub fn remove<Q>(&self, key: &Q) -> bool
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
{
self.remove_if(key, |_| true)
}
/// Removes a key-value pair if the key exists.
///
/// It is an asynchronous method returning an `impl Future` for the caller to await.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
/// let future_insert = hashindex.insert_async(11, 17);
/// let future_remove = hashindex.remove_async(&11);
/// ```
#[inline]
pub async fn remove_async<Q>(&self, key: &Q) -> bool
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
{
self.remove_if_async(key, |_| true).await
}
/// Removes a key-value pair if the key exists and the given condition is met.
///
/// This method only marks the entry unreachable, and the memory will be reclaimed later.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert!(!hashindex.remove_if(&1, |v| *v == 1));
/// assert!(hashindex.remove_if(&1, |v| *v == 0));
/// assert_eq!(hashindex.capacity(), 0);
/// ```
#[inline]
pub fn remove_if<Q, F: FnOnce(&V) -> bool>(&self, key: &Q, condition: F) -> bool
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
{
self.remove_entry(
key,
self.hash(key),
condition,
|r| r.is_some(),
&mut (),
&Barrier::new(),
)
.ok()
.map_or(false, |r| r)
}
/// Removes a key-value pair if the key exists and the given condition is met.
///
/// It is an asynchronous method returning an `impl Future` for the caller to await.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
/// let future_insert = hashindex.insert_async(11, 17);
/// let future_remove = hashindex.remove_if_async(&11, |_| true);
/// ```
#[inline]
pub async fn remove_if_async<Q, F: FnOnce(&V) -> bool>(&self, key: &Q, mut condition: F) -> bool
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
{
let hash = self.hash(key);
loop {
let mut async_wait = AsyncWait::default();
let mut async_wait_pinned = Pin::new(&mut async_wait);
match self.remove_entry(
key,
hash,
condition,
|r| r.is_some(),
&mut async_wait_pinned,
&Barrier::new(),
) {
Ok(r) => return r,
Err(c) => condition = c,
};
async_wait_pinned.await;
}
}
/// Reads a key-value pair.
///
/// It returns `None` if the key does not exist. This method is not linearizable; the key-value
/// pair being read by this method can be removed from the container or copied to a different
/// memory location.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.read(&1, |_, v| *v).is_none());
/// assert!(hashindex.insert(1, 10).is_ok());
/// assert_eq!(hashindex.read(&1, |_, v| *v).unwrap(), 10);
/// ```
#[inline]
pub fn read<Q, R, F: FnOnce(&K, &V) -> R>(&self, key: &Q, reader: F) -> Option<R>
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
{
let barrier = Barrier::new();
self.read_entry(key, self.hash(key), &mut (), &barrier)
.ok()
.flatten()
.map(|(k, v)| reader(k, v))
}
/// Reads a key-value pair using the supplied [`Barrier`].
///
/// It enables the caller to use the value reference outside the method. It returns `None`
/// if the key does not exist. This method is not linearizable; the key-value pair being read
/// by this method can be removed from the container or copied to a different memory location.
///
/// # Examples
///
/// ```
/// use scc::ebr::Barrier;
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.insert(1, 10).is_ok());
///
/// let barrier = Barrier::new();
/// let value_ref = hashindex.read_with(&1, |k, v| v, &barrier).unwrap();
/// assert_eq!(*value_ref, 10);
/// ```
#[inline]
pub fn read_with<'b, Q, R, F: FnOnce(&'b K, &'b V) -> R>(
&self,
key: &Q,
reader: F,
barrier: &'b Barrier,
) -> Option<R>
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
{
self.read_entry(key, self.hash(key), &mut (), barrier)
.ok()
.flatten()
.map(|(k, v)| reader(k, v))
}
/// Checks if the key exists.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(!hashindex.contains(&1));
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert!(hashindex.contains(&1));
/// ```
#[inline]
pub fn contains<Q>(&self, key: &Q) -> bool
where
K: Borrow<Q>,
Q: Eq + Hash + ?Sized,
{
self.read(key, |_, _| ()).is_some()
}
/// Clears all the key-value pairs.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert_eq!(hashindex.clear(), 1);
/// ```
pub fn clear(&self) -> usize {
let mut num_removed: usize = 0;
let barrier = Barrier::new();
let mut current_array_ptr = self.array.load(Acquire, &barrier);
while let Some(current_array) = current_array_ptr.as_ref() {
self.clear_old_array(current_array, &barrier);
for index in 0..current_array.num_buckets() {
let bucket = current_array.bucket_mut(index);
if let Some(mut locker) = Locker::lock(bucket, &barrier) {
let data_block_mut = current_array.data_block_mut(index);
let mut entry_ptr = EntryPtr::new(&barrier);
while entry_ptr.next(&locker, &barrier) {
locker.erase(data_block_mut, &mut entry_ptr);
num_removed = num_removed.saturating_add(1);
}
}
}
let new_current_array_ptr = self.array.load(Acquire, &barrier);
if current_array_ptr.without_tag() == new_current_array_ptr.without_tag() {
self.try_resize(0, &barrier);
break;
}
current_array_ptr = new_current_array_ptr;
}
num_removed
}
/// Clears all the key-value pairs.
///
/// It is an asynchronous method returning an `impl Future` for the caller to await.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// let future_insert = hashindex.insert_async(1, 0);
/// let future_retain = hashindex.clear_async();
/// ```
pub async fn clear_async(&self) -> usize {
let mut num_removed: usize = 0;
// An acquire fence is required to correctly load the contents of the array.
let mut current_array_holder = self.array.get_arc(Acquire, &Barrier::new());
while let Some(current_array) = current_array_holder.take() {
self.cleanse_old_array_async(¤t_array).await;
for index in 0..current_array.num_buckets() {
loop {
let mut async_wait = AsyncWait::default();
let mut async_wait_pinned = Pin::new(&mut async_wait);
{
let barrier = Barrier::new();
let bucket = current_array.bucket_mut(index);
if let Ok(locker) = Locker::try_lock_or_wait(
bucket,
unsafe { async_wait_pinned.derive().unwrap_unchecked() },
&barrier,
) {
if let Some(mut locker) = locker {
let data_block_mut = current_array.data_block_mut(index);
let mut entry_ptr = EntryPtr::new(&barrier);
while entry_ptr.next(&locker, &barrier) {
locker.erase(data_block_mut, &mut entry_ptr);
num_removed = num_removed.saturating_add(1);
}
}
break;
};
}
async_wait_pinned.await;
}
}
if let Some(new_current_array) = self.array.get_arc(Acquire, &Barrier::new()) {
if new_current_array.as_ptr() == current_array.as_ptr() {
break;
}
current_array_holder.replace(new_current_array);
continue;
}
break;
}
if num_removed != 0 {
self.try_resize(0, &Barrier::new());
}
num_removed
}
/// Returns the number of entries in the [`HashIndex`].
///
/// It scans the entire bucket array to calculate the number of valid entries, making its time
/// complexity `O(N)`.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert_eq!(hashindex.len(), 1);
/// ```
#[inline]
pub fn len(&self) -> usize {
self.num_entries(&Barrier::new())
}
/// Returns `true` if the [`HashIndex`] is empty.
///
/// It may scan the entire bucket array to check if it is empty, therefore the time complexity
/// is `O(N)`.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.is_empty());
/// assert!(hashindex.insert(1, 0).is_ok());
/// assert!(!hashindex.is_empty());
/// ```
#[inline]
pub fn is_empty(&self) -> bool {
!self.has_entry(&Barrier::new())
}
/// Returns the capacity of the [`HashIndex`].
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
/// use std::collections::hash_map::RandomState;
///
/// let hashindex_default: HashIndex<u64, u32, RandomState> = HashIndex::default();
/// assert_eq!(hashindex_default.capacity(), 0);
///
/// assert!(hashindex_default.insert(1, 0).is_ok());
/// assert_eq!(hashindex_default.capacity(), 64);
///
/// let hashindex: HashIndex<u64, u32, RandomState> = HashIndex::with_capacity(1000000);
/// assert_eq!(hashindex.capacity(), 1048576);
/// ```
#[inline]
pub fn capacity(&self) -> usize {
self.num_slots(&Barrier::new())
}
/// Returns a [`Visitor`] that iterates over all the entries in the [`HashIndex`].
///
/// It is guaranteed to go through all the key-value pairs pertaining in the [`HashIndex`]
/// at the moment, however the same key-value pair can be visited more than once if the
/// [`HashIndex`] is being resized.
///
/// It requires the user to supply a reference to a [`Barrier`].
///
/// # Examples
///
/// ```
/// use scc::ebr::Barrier;
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::default();
///
/// assert!(hashindex.insert(1, 0).is_ok());
///
/// let barrier = Barrier::new();
///
/// let mut iter = hashindex.iter(&barrier);
/// let entry_ref = iter.next().unwrap();
/// assert_eq!(iter.next(), None);
///
/// for iter in hashindex.iter(&barrier) {
/// assert_eq!(iter, (&1, &0));
/// }
///
/// drop(hashindex);
///
/// assert_eq!(entry_ref, (&1, &0));
/// ```
#[inline]
pub fn iter<'h, 'b>(&'h self, barrier: &'b Barrier) -> Visitor<'h, 'b, K, V, H> {
Visitor {
hashindex: self,
current_array: None,
current_index: 0,
current_bucket: None,
current_entry_ptr: EntryPtr::new(barrier),
barrier,
}
}
/// Clears the old array asynchronously.
async fn cleanse_old_array_async(&self, current_array: &BucketArray<K, V, true>) {
while !current_array.old_array(&Barrier::new()).is_null() {
let mut async_wait = AsyncWait::default();
let mut async_wait_pinned = Pin::new(&mut async_wait);
if self.partial_rehash::<_, _, false>(
current_array,
&mut async_wait_pinned,
&Barrier::new(),
) == Ok(true)
{
break;
}
async_wait_pinned.await;
}
}
}
impl<K, V, H> Clone for HashIndex<K, V, H>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
H: BuildHasher + Clone,
{
#[inline]
fn clone(&self) -> Self {
let cloned = Self::with_capacity_and_hasher(self.capacity(), self.hasher().clone());
for (k, v) in self.iter(&Barrier::new()) {
let _reuslt = cloned.insert(k.clone(), v.clone());
}
cloned
}
}
impl<K, V, H> Debug for HashIndex<K, V, H>
where
K: 'static + Clone + Debug + Eq + Hash,
V: 'static + Clone + Debug,
H: BuildHasher,
{
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let barrier = Barrier::new();
f.debug_map().entries(self.iter(&barrier)).finish()
}
}
impl<K, V> HashIndex<K, V, RandomState>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
{
/// Creates an empty default [`HashIndex`].
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32> = HashIndex::new();
///
/// let result = hashindex.capacity();
/// assert_eq!(result, 0);
/// ```
#[inline]
#[must_use]
pub fn new() -> Self {
Self::default()
}
/// Creates an empty [`HashIndex`] with the specified capacity.
///
/// The actual capacity is equal to or greater than the specified capacity.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
/// use std::collections::hash_map::RandomState;
///
/// let hashindex: HashIndex<u64, u32, RandomState> = HashIndex::with_capacity(1000);
///
/// let result = hashindex.capacity();
/// assert_eq!(result, 1024);
/// ```
#[inline]
#[must_use]
pub fn with_capacity(capacity: usize) -> HashIndex<K, V, RandomState> {
HashIndex {
array: AtomicArc::from(Arc::new(BucketArray::<K, V, true>::new(
capacity,
AtomicArc::null(),
))),
minimum_capacity: capacity,
build_hasher: RandomState::new(),
}
}
}
impl<K, V> Default for HashIndex<K, V, RandomState>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
{
/// Creates an empty default [`HashIndex`].
///
/// The default hash builder is [`RandomState`], and the default capacity is `64`.
///
/// # Examples
///
/// ```
/// use scc::HashIndex;
///
/// let hashindex: HashIndex<u64, u32, _> = HashIndex::default();
///
/// let result = hashindex.capacity();
/// assert_eq!(result, 0);
/// ```
#[inline]
fn default() -> Self {
HashIndex {
array: AtomicArc::null(),
minimum_capacity: 0,
build_hasher: RandomState::new(),
}
}
}
impl<K, V, H> HashTable<K, V, H, true> for HashIndex<K, V, H>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
H: BuildHasher,
{
#[inline]
fn hasher(&self) -> &H {
&self.build_hasher
}
#[inline]
fn cloner(entry: &(K, V)) -> Option<(K, V)> {
Some((entry.0.clone(), entry.1.clone()))
}
#[inline]
fn bucket_array(&self) -> &AtomicArc<BucketArray<K, V, true>> {
&self.array
}
#[inline]
fn minimum_capacity(&self) -> usize {
self.minimum_capacity
}
}
impl<K, V, H> PartialEq for HashIndex<K, V, H>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone + PartialEq,
H: BuildHasher,
{
#[inline]
fn eq(&self, other: &Self) -> bool {
let barrier = Barrier::new();
if !self
.iter(&barrier)
.any(|(k, v)| other.read(k, |_, ov| v == ov) != Some(true))
{
return !other
.iter(&barrier)
.any(|(k, v)| self.read(k, |_, sv| v == sv) != Some(true));
}
false
}
}
impl<'h, 'b, K, V, H> Iterator for Visitor<'h, 'b, K, V, H>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
H: BuildHasher,
{
type Item = (&'b K, &'b V);
#[inline]
fn next(&mut self) -> Option<Self::Item> {
let mut array = if let Some(array) = self.current_array.as_ref().copied() {
array
} else {
// Start scanning.
let current_array = self
.hashindex
.bucket_array()
.load(Acquire, self.barrier)
.as_ref()?;
let old_array_ptr = current_array.old_array(self.barrier);
let array = if let Some(old_array) = old_array_ptr.as_ref() {
old_array
} else {
current_array
};
self.current_array.replace(array);
self.current_bucket.replace(array.bucket(0));
self.current_entry_ptr = EntryPtr::new(self.barrier);
array
};
// Go to the next bucket.
loop {
if let Some(bucket) = self.current_bucket.take() {
// Go to the next entry in the bucket.
if self.current_entry_ptr.next(bucket, self.barrier) {
let (k, v) = self
.current_entry_ptr
.get(array.data_block(self.current_index));
self.current_bucket.replace(bucket);
return Some((k, v));
}
}
self.current_index += 1;
if self.current_index == array.num_buckets() {
let current_array = self
.hashindex
.bucket_array()
.load(Acquire, self.barrier)
.as_ref()?;
if self
.current_array
.as_ref()
.copied()
.map_or(false, |a| ptr::eq(a, current_array))
{
// Finished scanning the entire array.
break;
}
let old_array_ptr = current_array.old_array(self.barrier);
if self
.current_array
.as_ref()
.copied()
.map_or(false, |a| ptr::eq(a, old_array_ptr.as_raw()))
{
// Start scanning the current array.
array = current_array;
self.current_array.replace(array);
self.current_index = 0;
self.current_bucket.replace(array.bucket(0));
self.current_entry_ptr = EntryPtr::new(self.barrier);
continue;
}
// Start from the very beginning.
array = if let Some(old_array) = old_array_ptr.as_ref() {
old_array
} else {
current_array
};
self.current_array.replace(array);
self.current_index = 0;
self.current_bucket.replace(array.bucket(0));
self.current_entry_ptr = EntryPtr::new(self.barrier);
continue;
}
self.current_bucket
.replace(array.bucket(self.current_index));
self.current_entry_ptr = EntryPtr::new(self.barrier);
}
None
}
}
impl<'h, 'b, K, V, H> FusedIterator for Visitor<'h, 'b, K, V, H>
where
K: 'static + Clone + Eq + Hash,
V: 'static + Clone,
H: BuildHasher,
{
}