AcctIdx: support 2^24 bins (#20739)
This commit is contained in:
committed by
GitHub
parent
33f4e79589
commit
46bf7d4a4a
@@ -1,12 +1,12 @@
|
||||
use solana_sdk::pubkey::Pubkey;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct PubkeyBinCalculator16 {
|
||||
pub struct PubkeyBinCalculator24 {
|
||||
// how many bits from the first 2 bytes to shift away to ignore when calculating bin
|
||||
shift_bits: u32,
|
||||
}
|
||||
|
||||
impl PubkeyBinCalculator16 {
|
||||
impl PubkeyBinCalculator24 {
|
||||
const fn num_bits<T>() -> usize {
|
||||
std::mem::size_of::<T>() * 8
|
||||
}
|
||||
@@ -17,7 +17,7 @@ impl PubkeyBinCalculator16 {
|
||||
}
|
||||
|
||||
pub fn new(bins: usize) -> Self {
|
||||
const MAX_BITS: u32 = 16;
|
||||
const MAX_BITS: u32 = 24;
|
||||
assert!(bins > 0);
|
||||
let max_plus_1 = 1 << MAX_BITS;
|
||||
assert!(bins <= max_plus_1);
|
||||
@@ -30,15 +30,17 @@ impl PubkeyBinCalculator16 {
|
||||
|
||||
pub fn bin_from_pubkey(&self, pubkey: &Pubkey) -> usize {
|
||||
let as_ref = pubkey.as_ref();
|
||||
((as_ref[0] as usize * 256 + as_ref[1] as usize) as usize) >> self.shift_bits
|
||||
(((as_ref[0] as usize * 256 + as_ref[1] as usize) * 256 + as_ref[2] as usize) as usize)
|
||||
>> self.shift_bits
|
||||
}
|
||||
|
||||
pub fn lowest_pubkey_from_bin(&self, mut bin: usize, bins: usize) -> Pubkey {
|
||||
assert!(bin < bins);
|
||||
bin <<= self.shift_bits;
|
||||
let mut pubkey = Pubkey::new(&[0; 32]);
|
||||
pubkey.as_mut()[0] = (bin / 256) as u8;
|
||||
pubkey.as_mut()[1] = (bin & 0xff) as u8;
|
||||
pubkey.as_mut()[0] = ((bin / 256 / 256) & 0xff) as u8;
|
||||
pubkey.as_mut()[1] = ((bin / 256) & 0xff) as u8;
|
||||
pubkey.as_mut()[2] = (bin & 0xff) as u8;
|
||||
pubkey
|
||||
}
|
||||
}
|
||||
@@ -49,19 +51,19 @@ pub mod tests {
|
||||
|
||||
#[test]
|
||||
fn test_pubkey_bins_log2() {
|
||||
assert_eq!(PubkeyBinCalculator16::num_bits::<u8>(), 8);
|
||||
assert_eq!(PubkeyBinCalculator16::num_bits::<u32>(), 32);
|
||||
assert_eq!(PubkeyBinCalculator24::num_bits::<u8>(), 8);
|
||||
assert_eq!(PubkeyBinCalculator24::num_bits::<u32>(), 32);
|
||||
for i in 0..32 {
|
||||
assert_eq!(PubkeyBinCalculator16::log_2(2u32.pow(i)), i);
|
||||
assert_eq!(PubkeyBinCalculator24::log_2(2u32.pow(i)), i);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_pubkey_bins() {
|
||||
for i in 0..=16 {
|
||||
for i in 0..=24 {
|
||||
let bins = 2u32.pow(i);
|
||||
let calc = PubkeyBinCalculator16::new(bins as usize);
|
||||
assert_eq!(calc.shift_bits, 16 - i, "i: {}", i);
|
||||
let calc = PubkeyBinCalculator24::new(bins as usize);
|
||||
assert_eq!(calc.shift_bits, 24 - i, "i: {}", i);
|
||||
for bin in 0..bins {
|
||||
assert_eq!(
|
||||
bin as usize,
|
||||
@@ -76,9 +78,9 @@ pub mod tests {
|
||||
let mut pk = Pubkey::new(&[0; 32]);
|
||||
for i in 0..=8 {
|
||||
let bins = 2usize.pow(i);
|
||||
let calc = PubkeyBinCalculator16::new(bins);
|
||||
let calc = PubkeyBinCalculator24::new(bins);
|
||||
|
||||
let shift_bits = calc.shift_bits - 8; // we are only dealing with first byte
|
||||
let shift_bits = calc.shift_bits - 16; // we are only dealing with first byte
|
||||
|
||||
pk.as_mut()[0] = 0;
|
||||
assert_eq!(0, calc.bin_from_pubkey(&pk));
|
||||
@@ -90,7 +92,7 @@ pub mod tests {
|
||||
assert_eq!(
|
||||
bin,
|
||||
calc.bin_from_pubkey(&pk),
|
||||
"bin: {}/{}, bits: {}, val: {}",
|
||||
"bin: {}/{}, shift_bits: {}, val: {}",
|
||||
bin,
|
||||
bins,
|
||||
shift_bits,
|
||||
@@ -106,9 +108,9 @@ pub mod tests {
|
||||
for i in 9..=16 {
|
||||
let mut pk = Pubkey::new(&[0; 32]);
|
||||
let bins = 2usize.pow(i);
|
||||
let calc = PubkeyBinCalculator16::new(bins);
|
||||
let calc = PubkeyBinCalculator24::new(bins);
|
||||
|
||||
let shift_bits = calc.shift_bits;
|
||||
let shift_bits = calc.shift_bits - 8;
|
||||
|
||||
pk.as_mut()[1] = 0;
|
||||
assert_eq!(0, calc.bin_from_pubkey(&pk));
|
||||
@@ -124,7 +126,7 @@ pub mod tests {
|
||||
assert_eq!(
|
||||
bin,
|
||||
calc.bin_from_pubkey(&pk),
|
||||
"bin: {}/{}, bits: {}, val: {}",
|
||||
"bin: {}/{}, shift_bits: {}, val: {}",
|
||||
bin,
|
||||
bins,
|
||||
shift_bits,
|
||||
@@ -138,22 +140,61 @@ pub mod tests {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for i in 17..=24 {
|
||||
let mut pk = Pubkey::new(&[0; 32]);
|
||||
let bins = 2usize.pow(i);
|
||||
let calc = PubkeyBinCalculator24::new(bins);
|
||||
|
||||
let shift_bits = calc.shift_bits;
|
||||
|
||||
pk.as_mut()[1] = 0;
|
||||
assert_eq!(0, calc.bin_from_pubkey(&pk));
|
||||
pk.as_mut()[0] = 0xff;
|
||||
pk.as_mut()[1] = 0xff;
|
||||
pk.as_mut()[2] = 0xff;
|
||||
assert_eq!(bins - 1, calc.bin_from_pubkey(&pk));
|
||||
|
||||
let mut pk = Pubkey::new(&[0; 32]);
|
||||
for bin in 0..bins {
|
||||
let mut target = (bin << shift_bits) as u32;
|
||||
pk.as_mut()[0] = (target / 256 / 256) as u8;
|
||||
pk.as_mut()[1] = ((target / 256) % 256) as u8;
|
||||
pk.as_mut()[2] = (target % 256) as u8;
|
||||
assert_eq!(
|
||||
bin,
|
||||
calc.bin_from_pubkey(&pk),
|
||||
"bin: {}/{}, shift_bits: {}, val: {:?}",
|
||||
bin,
|
||||
bins,
|
||||
shift_bits,
|
||||
&pk.as_ref()[0..3],
|
||||
);
|
||||
if bin > 0 {
|
||||
target -= 1;
|
||||
pk.as_mut()[0] = (target / 256 / 256) as u8;
|
||||
pk.as_mut()[1] = ((target / 256) % 256) as u8;
|
||||
pk.as_mut()[2] = (target % 256) as u8;
|
||||
assert_eq!(bin - 1, calc.bin_from_pubkey(&pk));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[should_panic(expected = "bins.is_power_of_two()")]
|
||||
fn test_pubkey_bins_illegal_bins3() {
|
||||
PubkeyBinCalculator16::new(3);
|
||||
PubkeyBinCalculator24::new(3);
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[should_panic(expected = "bins <= max_plus_1")]
|
||||
fn test_pubkey_bins_illegal_bins2() {
|
||||
PubkeyBinCalculator16::new(65537);
|
||||
PubkeyBinCalculator24::new(65536 * 256 + 1);
|
||||
}
|
||||
#[test]
|
||||
#[should_panic(expected = "bins > 0")]
|
||||
fn test_pubkey_bins_illegal_bins() {
|
||||
PubkeyBinCalculator16::new(0);
|
||||
PubkeyBinCalculator24::new(0);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user