Skip to content

Commit 511e6b9

Browse files
committed
Added defaulted Allocator type param to RawTable, hash::IntoIter, hash::Drain signatures.
Note that implementation itself does not yet use the allocator!
1 parent 81bda38 commit 511e6b9

File tree

1 file changed

+42
-29
lines changed

1 file changed

+42
-29
lines changed

src/std/collections/hash/table.rs

+42-29
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
// except according to those terms.
1010

1111
use alloc::heap::{allocate, deallocate, EMPTY};
12+
use core_alloc::Allocator;
13+
use core_alloc::heap::Allocator as HeapAllocator;
1214

1315
use cmp;
1416
use hash::{Hash, Hasher};
@@ -61,14 +63,15 @@ const EMPTY_BUCKET: u64 = 0;
6163
/// invariants at the type level and employs some performance trickery,
6264
/// but in general is just a tricked out `Vec<Option<u64, K, V>>`.
6365
#[unsafe_no_drop_flag]
64-
pub struct RawTable<K, V> {
66+
pub struct RawTable<K, V, A=HeapAllocator> where A: Allocator {
6567
capacity: usize,
6668
size: usize,
6769
hashes: Unique<u64>,
6870

6971
// Because K/V do not appear directly in any of the types in the struct,
7072
// inform rustc that in fact instances of K and V are reachable from here.
7173
marker: marker::PhantomData<(K,V)>,
74+
alloc: A,
7275
}
7376

7477
unsafe impl<K: Send, V: Send> Send for RawTable<K, V> {}
@@ -219,7 +222,7 @@ impl<K, V, M> Bucket<K, V, M> {
219222
}
220223
}
221224

222-
impl<K, V, M: Deref<Target=RawTable<K, V>>> Bucket<K, V, M> {
225+
impl<K, V, A, M: Deref<Target=RawTable<K, V, A>>> Bucket<K, V, M> where A: Allocator {
223226
pub fn new(table: M, hash: SafeHash) -> Bucket<K, V, M> {
224227
Bucket::at_index(table, hash.inspect() as usize)
225228
}
@@ -291,7 +294,7 @@ impl<K, V, M: Deref<Target=RawTable<K, V>>> Bucket<K, V, M> {
291294
}
292295
}
293296

294-
impl<K, V, M: Deref<Target=RawTable<K, V>>> EmptyBucket<K, V, M> {
297+
impl<K, V, A, M: Deref<Target=RawTable<K, V, A>>> EmptyBucket<K, V, M> where A: Allocator {
295298
#[inline]
296299
pub fn next(self) -> Bucket<K, V, M> {
297300
let mut bucket = self.into_bucket();
@@ -349,7 +352,7 @@ impl<K, V, M: Deref<Target=RawTable<K, V>> + DerefMut> EmptyBucket<K, V, M> {
349352
}
350353
}
351354

352-
impl<K, V, M: Deref<Target=RawTable<K, V>>> FullBucket<K, V, M> {
355+
impl<K, V, A, M: Deref<Target=RawTable<K, V, A>>> FullBucket<K, V, M> where A: Allocator {
353356
#[inline]
354357
pub fn next(self) -> Bucket<K, V, M> {
355358
let mut bucket = self.into_bucket();
@@ -567,15 +570,24 @@ fn test_offset_calculation() {
567570
}
568571

569572
impl<K, V> RawTable<K, V> {
573+
/// Creates a new raw table from a given capacity. All buckets are
574+
/// initially empty.
575+
pub fn new(capacity: usize) -> RawTable<K, V> {
576+
RawTable::new_in(capacity, HeapAllocator)
577+
}
578+
}
579+
580+
impl<K, V, A> RawTable<K, V, A> where A: Allocator {
570581
/// Does not initialize the buckets. The caller should ensure they,
571582
/// at the very least, set every hash to EMPTY_BUCKET.
572-
unsafe fn new_uninitialized(capacity: usize) -> RawTable<K, V> {
583+
unsafe fn new_uninitialized_in(capacity: usize, a: A) -> RawTable<K, V, A> {
573584
if capacity == 0 {
574585
return RawTable {
575586
size: 0,
576587
capacity: 0,
577588
hashes: Unique::new(EMPTY as *mut u64),
578589
marker: marker::PhantomData,
590+
alloc: a,
579591
};
580592
}
581593

@@ -618,6 +630,7 @@ impl<K, V> RawTable<K, V> {
618630
size: 0,
619631
hashes: Unique::new(hashes),
620632
marker: marker::PhantomData,
633+
alloc: a,
621634
}
622635
}
623636

@@ -641,11 +654,10 @@ impl<K, V> RawTable<K, V> {
641654
}
642655
}
643656

644-
/// Creates a new raw table from a given capacity. All buckets are
645-
/// initially empty.
646-
pub fn new(capacity: usize) -> RawTable<K, V> {
657+
/// DOC TODO
658+
pub fn new_in(capacity: usize, a: A) -> RawTable<K, V, A> {
647659
unsafe {
648-
let ret = RawTable::new_uninitialized(capacity);
660+
let ret = RawTable::new_uninitialized_in(capacity, a);
649661
ptr::write_bytes(*ret.hashes, 0, capacity);
650662
ret
651663
}
@@ -686,7 +698,7 @@ impl<K, V> RawTable<K, V> {
686698
}
687699
}
688700

689-
pub fn into_iter(self) -> IntoIter<K, V> {
701+
pub fn into_iter(self) -> IntoIter<K, V, A> {
690702
let RawBuckets { raw, hashes_end, .. } = self.raw_buckets();
691703
// Replace the marker regardless of lifetime bounds on parameters.
692704
IntoIter {
@@ -699,7 +711,7 @@ impl<K, V> RawTable<K, V> {
699711
}
700712
}
701713

702-
pub fn drain(&mut self) -> Drain<K, V> {
714+
pub fn drain(&mut self) -> Drain<K, V, A> {
703715
let RawBuckets { raw, hashes_end, .. } = self.raw_buckets();
704716
// Replace the marker regardless of lifetime bounds on parameters.
705717
Drain {
@@ -842,22 +854,22 @@ unsafe impl<'a, K: Sync, V: Sync> Sync for IterMut<'a, K, V> {}
842854
unsafe impl<'a, K: Send, V: Send> Send for IterMut<'a, K, V> {}
843855

844856
/// Iterator over the entries in a table, consuming the table.
845-
pub struct IntoIter<K, V> {
846-
table: RawTable<K, V>,
847-
iter: RawBuckets<'static, K, V>
857+
pub struct IntoIter<K, V, A=HeapAllocator> where A: Allocator {
858+
table: RawTable<K, V, A>,
859+
iter: RawBuckets<'static, K, V>,
848860
}
849861

850-
unsafe impl<K: Sync, V: Sync> Sync for IntoIter<K, V> {}
851-
unsafe impl<K: Send, V: Send> Send for IntoIter<K, V> {}
862+
unsafe impl<K: Sync, V: Sync, A: Sync> Sync for IntoIter<K, V, A> where A: Allocator {}
863+
unsafe impl<K: Send, V: Send, A: Send> Send for IntoIter<K, V, A> where A: Allocator {}
852864

853865
/// Iterator over the entries in a table, clearing the table.
854-
pub struct Drain<'a, K: 'a, V: 'a> {
855-
table: &'a mut RawTable<K, V>,
866+
pub struct Drain<'a, K: 'a, V: 'a, A:'a=HeapAllocator> where A: Allocator {
867+
table: &'a mut RawTable<K, V, A>,
856868
iter: RawBuckets<'static, K, V>,
857869
}
858870

859-
unsafe impl<'a, K: Sync, V: Sync> Sync for Drain<'a, K, V> {}
860-
unsafe impl<'a, K: Send, V: Send> Send for Drain<'a, K, V> {}
871+
unsafe impl<'a, K: Sync, V: Sync, A: Sync> Sync for Drain<'a, K, V, A> where A: Allocator {}
872+
unsafe impl<'a, K: Send, V: Send, A: Send> Send for Drain<'a, K, V, A> where A: Allocator {}
861873

862874
impl<'a, K, V> Iterator for Iter<'a, K, V> {
863875
type Item = (&'a K, &'a V);
@@ -901,7 +913,7 @@ impl<'a, K, V> ExactSizeIterator for IterMut<'a, K, V> {
901913
fn len(&self) -> usize { self.elems_left }
902914
}
903915

904-
impl<K, V> Iterator for IntoIter<K, V> {
916+
impl<K, V, A> Iterator for IntoIter<K, V, A> where A: Allocator {
905917
type Item = (SafeHash, K, V);
906918

907919
fn next(&mut self) -> Option<(SafeHash, K, V)> {
@@ -924,11 +936,11 @@ impl<K, V> Iterator for IntoIter<K, V> {
924936
(size, Some(size))
925937
}
926938
}
927-
impl<K, V> ExactSizeIterator for IntoIter<K, V> {
939+
impl<K, V, A> ExactSizeIterator for IntoIter<K, V, A> where A: Allocator {
928940
fn len(&self) -> usize { self.table.size() }
929941
}
930942

931-
impl<'a, K, V> Iterator for Drain<'a, K, V> {
943+
impl<'a, K, V, A> Iterator for Drain<'a, K, V, A> where A: Allocator {
932944
type Item = (SafeHash, K, V);
933945

934946
#[inline]
@@ -952,20 +964,21 @@ impl<'a, K, V> Iterator for Drain<'a, K, V> {
952964
(size, Some(size))
953965
}
954966
}
955-
impl<'a, K, V> ExactSizeIterator for Drain<'a, K, V> {
967+
impl<'a, K, V, A> ExactSizeIterator for Drain<'a, K, V, A> where A: Allocator {
956968
fn len(&self) -> usize { self.table.size() }
957969
}
958970

959-
impl<'a, K: 'a, V: 'a> Drop for Drain<'a, K, V> {
971+
impl<'a, K: 'a, V: 'a, A: 'a> Drop for Drain<'a, K, V, A> where A: Allocator {
960972
fn drop(&mut self) {
961973
for _ in self {}
962974
}
963975
}
964976

965-
impl<K: Clone, V: Clone> Clone for RawTable<K, V> {
966-
fn clone(&self) -> RawTable<K, V> {
977+
impl<K: Clone, V: Clone, A: Clone> Clone for RawTable<K, V, A> where A: Allocator {
978+
fn clone(&self) -> RawTable<K, V, A> {
967979
unsafe {
968-
let mut new_ht = RawTable::new_uninitialized(self.capacity());
980+
let mut new_ht = RawTable::new_uninitialized_in(self.capacity(),
981+
self.alloc.clone());
969982

970983
{
971984
let cap = self.capacity();
@@ -998,7 +1011,7 @@ impl<K: Clone, V: Clone> Clone for RawTable<K, V> {
9981011
}
9991012
}
10001013

1001-
impl<K, V> Drop for RawTable<K, V> {
1014+
impl<K, V, A> Drop for RawTable<K, V, A> where A: Allocator {
10021015
#[unsafe_destructor_blind_to_params]
10031016
fn drop(&mut self) {
10041017
if self.capacity == 0 || self.capacity == mem::POST_DROP_USIZE {

0 commit comments

Comments
 (0)