rework AccountsIndex traits (#19089)

This commit is contained in:
Jeff Washington (jwash) 2021-08-06 08:39:34 -05:00 committed by GitHub
parent fcb4ccd413
commit 8878f526ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 40 deletions

View File

@ -42,22 +42,10 @@ pub type AccountMap<K, V> = BTreeMap<K, V>;
type AccountMapEntry<T> = Arc<AccountMapEntryInner<T>>; type AccountMapEntry<T> = Arc<AccountMapEntryInner<T>>;
pub trait IsCached: 'static + Clone + Debug { pub trait IsCached: 'static + Clone + Debug + PartialEq + ZeroLamport {
fn is_cached(&self) -> bool; fn is_cached(&self) -> bool;
} }
impl IsCached for bool {
fn is_cached(&self) -> bool {
false
}
}
impl IsCached for u64 {
fn is_cached(&self) -> bool {
false
}
}
#[derive(Error, Debug, PartialEq)] #[derive(Error, Debug, PartialEq)]
pub enum ScanError { pub enum ScanError {
#[error("Node detected it replayed bad version of slot {slot:?} with id {bank_id:?}, thus the scan on said slot was aborted")] #[error("Node detected it replayed bad version of slot {slot:?} with id {bank_id:?}, thus the scan on said slot was aborted")]
@ -170,7 +158,7 @@ pub struct WriteAccountMapEntry<T: 'static> {
slot_list_guard: RwLockWriteGuard<'this, SlotList<T>>, slot_list_guard: RwLockWriteGuard<'this, SlotList<T>>,
} }
impl<T: 'static + Clone + IsCached> WriteAccountMapEntry<T> { impl<T: IsCached> WriteAccountMapEntry<T> {
pub fn from_account_map_entry(account_map_entry: AccountMapEntry<T>) -> Self { pub fn from_account_map_entry(account_map_entry: AccountMapEntry<T>) -> Self {
WriteAccountMapEntryBuilder { WriteAccountMapEntryBuilder {
owned_entry: account_map_entry, owned_entry: account_map_entry,
@ -741,10 +729,7 @@ pub struct AccountsIndex<T> {
pub removed_bank_ids: Mutex<HashSet<BankId>>, pub removed_bank_ids: Mutex<HashSet<BankId>>,
} }
impl< impl<T: IsCached> AccountsIndex<T> {
T: 'static + Clone + IsCached + ZeroLamport + std::marker::Sync + std::marker::Send + Debug,
> AccountsIndex<T>
{
pub fn default_for_tests() -> Self { pub fn default_for_tests() -> Self {
Self::new(BINS_FOR_TESTING) Self::new(BINS_FOR_TESTING)
} }
@ -2728,16 +2713,7 @@ pub mod tests {
} }
} }
fn test_new_entry_code_paths_helper< fn test_new_entry_code_paths_helper<T: IsCached>(
T: 'static
+ Sync
+ Send
+ Clone
+ IsCached
+ ZeroLamport
+ std::cmp::PartialEq
+ std::fmt::Debug,
>(
account_infos: [T; 2], account_infos: [T; 2],
is_cached: bool, is_cached: bool,
upsert: bool, upsert: bool,
@ -3375,18 +3351,7 @@ pub mod tests {
assert!(found_key); assert!(found_key);
} }
fn account_maps_len_expensive< fn account_maps_len_expensive<T: IsCached>(index: &AccountsIndex<T>) -> usize {
T: 'static
+ Sync
+ Send
+ Clone
+ IsCached
+ ZeroLamport
+ std::cmp::PartialEq
+ std::fmt::Debug,
>(
index: &AccountsIndex<T>,
) -> usize {
index index
.account_maps .account_maps
.iter() .iter()
@ -3905,6 +3870,16 @@ pub mod tests {
); );
} }
impl IsCached for bool {
fn is_cached(&self) -> bool {
false
}
}
impl IsCached for u64 {
fn is_cached(&self) -> bool {
false
}
}
impl ZeroLamport for bool { impl ZeroLamport for bool {
fn is_zero_lamport(&self) -> bool { fn is_zero_lamport(&self) -> bool {
false false