xim 0.5.0

XIM protocol parser, handler
Documentation
use crate::AHashMap;
use core::num::NonZeroU16;
use hashbrown::hash_map::Entry;

pub struct ImVec<T> {
    next: NonZeroU16,
    inner: AHashMap<NonZeroU16, T>,
}

impl<T> ImVec<T> {
    pub fn new() -> Self {
        Self {
            next: NonZeroU16::new(1).unwrap(),
            inner: AHashMap::with_hasher(Default::default()),
        }
    }

    fn next(&mut self) -> NonZeroU16 {
        let ret = self.next;
        self.next = NonZeroU16::new(self.next.get() + 1).unwrap();
        ret
    }

    pub fn new_item(&mut self, data: T) -> (NonZeroU16, &mut T) {
        let idx = self.next();

        let val = match self.inner.entry(idx) {
            Entry::Occupied(mut o) => {
                o.insert(data);
                o.into_mut()
            }
            Entry::Vacant(v) => v.insert(data),
        };

        (idx, val)
    }

    #[allow(unused)]
    pub fn remove_item(&mut self, idx: u16) -> Option<T> {
        self.inner.remove(&NonZeroU16::new(idx)?)
    }

    pub fn get_item(&mut self, idx: u16) -> Option<&mut T> {
        self.inner.get_mut(&NonZeroU16::new(idx)?)
    }

    pub fn drain(&mut self) -> impl Iterator<Item = (NonZeroU16, T)> + '_ {
        self.inner.drain()
    }
}

impl<T> IntoIterator for ImVec<T> {
    type Item = (NonZeroU16, T);

    type IntoIter = hashbrown::hash_map::IntoIter<NonZeroU16, T>;

    fn into_iter(self) -> Self::IntoIter {
        self.inner.into_iter()
    }
}