scah 0.0.17

CSS selectors meet streaming XML/HTML parsing. Filter StAX events and build targeted DOMs without loading the entire document.
Documentation
use super::arena::{Arena, id::AttributeId};
use crate::Attribute;

impl<'html> Arena<Attribute<'html>, AttributeId> {
    pub(super) fn attribute_slice_to_range(
        &self,
        attributes: &[Attribute<'html>],
    ) -> Option<std::ops::Range<u32>> {
        if self.is_empty() || attributes.is_empty() {
            return None;
        }
        let tape_pointer_range = self.as_ptr_range();
        let slice_ptr = attributes.as_ptr();

        // println!("Tape: {:#?}", tape_pointer_range);
        // println!("Slice Pointer: {:#?}", slice_ptr);

        assert!(
            tape_pointer_range.start == slice_ptr || tape_pointer_range.contains(&slice_ptr),
            "Attribute Slice is invalid"
        );

        let start = unsafe { slice_ptr.offset_from_unsigned(tape_pointer_range.start) };
        let end = start + attributes.len();
        assert!(self.len() >= end);

        Some(std::ops::Range {
            start: start as u32,
            end: end as u32,
        })
    }
}