que 0.4.5

A high performance channel with optional backpressure, interprocess capability, and a multiconsumer mode.
Documentation
use std::ptr::NonNull;
use std::sync::atomic::Ordering;

use bytemuck::AnyBitPattern;

use crate::{
    error::QueError, headless_spmc::MAGIC, page_size::PageSize,
    shmem::Shmem,
};

use super::{burst_amount, Channel};

unsafe impl<T, const N: usize> Send for Consumer<T, N> {}

#[repr(C)]
pub struct Consumer<T, const N: usize> {
    spsc: NonNull<Channel<T, N>>,
    head: usize,
    interval: usize,
    consumer_index: usize,
    last_producer_heartbeat: usize,
}

impl<T: AnyBitPattern, const N: usize> Consumer<T, N> {
    const MODULO_MASK: usize = N - 1;

    /// Joins an existing channel back by shared memory as a consumer.
    pub unsafe fn join_shmem(
        shmem_id: &str,
        #[cfg(target_os = "linux")] page_size: PageSize,
    ) -> Result<Consumer<T, N>, QueError> {
        Self::join_shmem_multi(
            shmem_id,
            #[cfg(target_os = "linux")]
            page_size,
            1,
        )
    }

    /// Joins an existing channel back by shared memory as a consumer.
    ///
    /// `interval` is the number of consumers. This channel is not FIFO!
    /// To consume all produced values, you must consume all values
    /// generated by all consumers generated via `next_multi`.
    pub unsafe fn join_shmem_multi(
        shmem_id: &str,
        #[cfg(target_os = "linux")] page_size: PageSize,
        interval: usize,
    ) -> Result<Consumer<T, N>, QueError> {
        #[cfg(not(target_os = "linux"))]
        let page_size = PageSize::Standard;

        // Calculate buffer size.
        // If using huge pages, we must uplign to page size.
        let buffer_size: i64 = page_size
            .mem_size(core::mem::size_of::<Channel<T, N>>())
            .try_into()
            .map_err(|_| QueError::InvalidSize)?;

        // Open shmem
        let shmem = Shmem::open_or_create(
            shmem_id,
            buffer_size,
            #[cfg(target_os = "linux")]
            page_size,
        )?;

        Consumer::join_multi(shmem.get_mut_ptr(), interval)
    }

    /// Joins an existing channel backed by `buffer`.
    ///
    /// SAFETY:
    /// This must point to a buffer of proper size and alignment.
    pub unsafe fn join(
        buffer: *mut u8,
    ) -> Result<Consumer<T, N>, QueError> {
        Self::join_multi(buffer, 1)
    }

    /// Joins an existing channel backed by `buffer` as a consumer.
    ///
    /// `interval` is the number of consumers. This channel is not FIFO!
    /// To consume all produced values, you must consume all values
    /// generated by all consumers generated via `next_multi`.
    ///
    /// SAFETY:
    /// This must point to a buffer of proper size and alignment.
    pub unsafe fn join_multi(
        buffer: *mut u8,
        interval: usize,
    ) -> Result<Consumer<T, N>, QueError> {
        assert!(
            N > 0 && N.is_power_of_two(),
            "Capacity must be a power of two"
        );
        assert!(buffer as usize % 128 == 0, "unaligned");
        assert!(
            interval <= 64,
            "interval must be less than or equal to 64"
        );

        // Zerocopy deserialize the SPSC
        let spsc: &Channel<T, N> = &*buffer.cast();

        // Check magic
        let magic = spsc.magic.load(Ordering::Acquire);
        let capacity = spsc.capacity.load(Ordering::Acquire);
        if magic == MAGIC {
            // Check capacity
            if capacity != N {
                return Err(QueError::IncorrectCapacity(capacity));
            }

            // Initialize
            let Channel {
                tail,
                head: _, // not used in headless mode
                capacity: _,
                producer_heartbeat: _,
                consumer_heartbeat,
                magic: _,
                buffer: _unused,
                padding: _,
            } = spsc;

            // Assume spsc is empty upon joining
            let head = tail.load(Ordering::Acquire);
            consumer_heartbeat.fetch_add(1, Ordering::Release);

            // Successful join if magic and capacity is correct
            Ok(Consumer {
                spsc: NonNull::new_unchecked(buffer.cast()),
                head: next_modulo(head, 0, interval),
                interval,
                consumer_index: 0,
                last_producer_heartbeat: spsc
                    .producer_heartbeat
                    .load(Ordering::Acquire),
            })
        } else if magic == 0 {
            // Technically could be corrupted but uninitialized
            // is most likely explanation
            Err(QueError::Uninitialized)
        } else {
            // Magic is not MAGIC and not zero
            println!("magic = {}; expected {}", magic, MAGIC);
            Err(QueError::CorruptionDetected)
        }
    }

    /// Returns `None` if consumer_index would be equal to `interval`.
    pub fn next_multi(&self) -> Option<Consumer<T, N>> {
        if self.consumer_index + 1 == self.interval {
            None
        } else {
            Some(Consumer {
                consumer_index: self.consumer_index + 1,
                head: self.head + 1,
                ..*self
            })
        }
    }

    /// Attempts to read the next element. Returns `None` if the
    /// consuemr is caught up.
    pub fn pop(&mut self) -> Option<T> {
        loop {
            let initial_tail = unsafe {
                (*self.spsc.as_ptr())
                    .tail
                    .load(Ordering::Acquire)
            };

            // Check if there's anything to read
            let previously_read_or_uninitialized =
                initial_tail <= self.head;
            if previously_read_or_uninitialized {
                return None;
            }

            // Check for overrun
            let not_overrun = initial_tail
                <= (self
                    .head
                    .wrapping_add(N - burst_amount::<N>()));
            if !not_overrun {
                // Must reset to next integer that is consumer_index % interval
                self.head = next_modulo(
                    initial_tail.wrapping_sub(N - burst_amount::<N>()),
                    self.consumer_index,
                    self.interval,
                );
                continue;
            }

            // Optimistically read value and then check if valid
            let head_index = self.head & Self::MODULO_MASK;
            let value = unsafe {
                *(*self.spsc.as_ptr())
                    .buffer
                    .as_ptr()
                    .add(head_index)
            };

            // Check if still not overrun
            let current_tail = unsafe {
                (*self.spsc.as_ptr())
                    .tail
                    .load(Ordering::Acquire)
            };
            let still_not_overrun = current_tail
                <= (self
                    .head
                    .wrapping_add(N - burst_amount::<N>()));

            // If overrun, update head and try again
            if !still_not_overrun {
                // Must reset to next integer that is consumer_index %
                // interval
                self.head = next_modulo(
                    current_tail.wrapping_sub(N - burst_amount::<N>()),
                    self.consumer_index,
                    self.interval,
                );
                continue;
            }

            self.head += self.interval;
            return Some(value);
        }
    }

    /// Increments the consumer heartbeat.
    ///
    /// Can be read by the producer to see that the consumer is still
    /// online if done periodically. Can also be used to ack individual
    /// messages or alert that we've joined.
    pub fn beat(&self) {
        unsafe {
            (*self.spsc.as_ptr())
                .consumer_heartbeat
                .fetch_add(1, Ordering::Release);
        }
    }

    /// Checks if the producer has incremented its heartbeat since last
    /// called. Can be used by the consumer to see if the producer is
    /// still online if done periodically. Can also be used to ack
    /// individual messages or alert that we've joined.
    pub fn producer_heartbeat(&mut self) -> bool {
        let heartbeat = unsafe {
            (*self.spsc.as_ptr())
                .producer_heartbeat
                .load(Ordering::Acquire)
        };

        if heartbeat != self.last_producer_heartbeat {
            self.last_producer_heartbeat = heartbeat;
            true
        } else {
            false
        }
    }

    /// Returns pointer to inner padding.
    ///
    /// User is responsible for safe usage.
    ///
    /// Can be used to store metadata (e.g. hash seed).
    ///
    /// Byte array is 128 byte aligned.
    pub fn get_padding_ptr(&self) -> NonNull<[u8; 112]> {
        unsafe {
            NonNull::new_unchecked(
                self.spsc.cast::<u8>().as_ptr().add(512),
            )
            .cast()
        }
    }
}

#[inline(always)]
fn next_modulo(
    head: usize,
    target_mod: usize,
    mod_value: usize,
) -> usize {
    let head_mod = head % mod_value;
    let add_value = (target_mod + mod_value - head_mod) % mod_value;
    head + add_value
}