sightline-ty-python-core 0.1.0

sightline's fork of ty_python_core, an internal crate of ruff and ty (astral-sh/ruff), as the sightline binary pins it
Documentation
//! A boxed bit slice that supports a constant-time `rank` operation.

use bitvec::prelude::{BitBox, BitVec, Msb0, bitvec};
use get_size2::GetSize;

/// A boxed bit slice that supports a constant-time `rank` operation.
///
/// This can be used to "shrink" a large vector, where you only need to keep certain elements, and
/// you want to continue to use the index in the large vector to identify each element.
///
/// First you create a new smaller vector, keeping only the elements of the large vector that you
/// care about. Now you need a way to translate an index into the large vector (which no longer
/// exists) into the corresponding index into the smaller vector. To do that, you create a bit
/// slice, containing a bit for every element of the original large vector. Each bit in the bit
/// slice indicates whether that element of the large vector was kept in the smaller vector. And
/// the `rank` of the bit gives us the index of the element in the smaller vector.
///
/// However, the naive implementation of `rank` is O(n) in the size of the bit slice. To address
/// that, we use a standard trick: we divide the bit slice into 64-bit chunks, and when
/// constructing the bit slice, precalculate the rank of the first bit in each chunk. Then, to
/// calculate the rank of an arbitrary bit, we first grab the precalculated rank of the chunk that
/// bit belongs to, and add the rank of the bit within its (fixed-sized) chunk.
///
/// This trick adds O(1.5) bits of overhead per large vector element on 64-bit platforms, and O(2)
/// bits of overhead on 32-bit platforms.
#[derive(Clone, Debug, Eq, Hash, PartialEq, GetSize)]
pub struct RankBitBox {
    #[get_size(size_fn = bit_box_size)]
    bits: RankBitBoxStorage,
    chunk_ranks: Box<[u32]>,
}

pub type RankBitBoxStorage = BitBox<Chunk, Msb0>;
pub type RankBitBoxVec = BitVec<Chunk, Msb0>;

fn bit_box_size(bits: &RankBitBoxStorage) -> usize {
    std::mem::size_of_val(bits.as_raw_slice())
}

// bitvec does not support `u64` as a Store type on 32-bit platforms
#[cfg(target_pointer_width = "64")]
type Chunk = u64;
#[cfg(not(target_pointer_width = "64"))]
type Chunk = u32;

const CHUNK_SIZE: usize = Chunk::BITS as usize;

impl RankBitBox {
    pub fn bits_with_capacity(cap: usize) -> RankBitBoxVec {
        bitvec![Chunk, Msb0; 0; cap]
    }

    pub fn from_bits(bits: RankBitBoxVec) -> Self {
        let chunk_ranks = bits
            .as_raw_slice()
            .iter()
            .scan(0u32, |rank, chunk| {
                let result = *rank;
                *rank += chunk.count_ones();
                Some(result)
            })
            .collect();
        let bits = bits.into();
        Self { bits, chunk_ranks }
    }

    #[inline]
    pub fn len(&self) -> usize {
        self.bits.len()
    }

    #[inline]
    pub fn is_empty(&self) -> bool {
        self.bits.is_empty()
    }

    #[inline]
    pub fn get_bit(&self, index: usize) -> Option<bool> {
        self.bits.get(index).map(|bit| *bit)
    }

    #[inline]
    pub fn iter_ones(&self) -> impl DoubleEndedIterator<Item = usize> + '_ {
        self.bits.iter_ones()
    }

    /// Returns the number of bits _before_ (and not including) the given index that are set.
    #[inline]
    pub fn rank(&self, index: usize) -> u32 {
        let chunk_index = index / CHUNK_SIZE;
        let index_within_chunk = index % CHUNK_SIZE;
        let chunk_rank = self.chunk_ranks[chunk_index];
        if index_within_chunk == 0 {
            return chunk_rank;
        }

        // To calculate the rank within the bit's chunk, we zero out the requested bit and every
        // bit to the right, then count the number of 1s remaining (i.e., to the left of the
        // requested bit).
        let chunk = self.bits.as_raw_slice()[chunk_index];
        let chunk_mask = Chunk::MAX << (CHUNK_SIZE - index_within_chunk);
        let rank_within_chunk = (chunk & chunk_mask).count_ones();
        chunk_rank + rank_within_chunk
    }
}

#[cfg(test)]
mod tests {
    use std::mem::size_of;

    use get_size2::GetSize;

    use super::{CHUNK_SIZE, Chunk, RankBitBox};

    #[test]
    fn heap_size_includes_bits_and_chunk_ranks() {
        let bit_count = CHUNK_SIZE + 1;
        let bits = RankBitBox::from_bits(RankBitBox::bits_with_capacity(bit_count));
        let chunk_count = bit_count.div_ceil(CHUNK_SIZE);

        assert_eq!(
            bits.get_heap_size(),
            chunk_count * (size_of::<Chunk>() + size_of::<u32>())
        );
    }
}