ext-php-rs 0.15.9

Bindings for the Zend API to build PHP extensions natively in Rust.
Documentation
use std::{marker::PhantomData, ptr};

use crate::ffi::{zend_llist, zend_llist_element, zend_llist_get_next_ex};

/// PHP linked list
pub type ZendLinkedList = zend_llist;

impl ZendLinkedList {
    /// Create an iterator over the linked list
    #[must_use]
    pub fn iter<T>(&self) -> ZendLinkedListIterator<'_, T> {
        ZendLinkedListIterator::new(self)
    }
}

pub struct ZendLinkedListIterator<'a, T> {
    list: &'a zend_llist,
    position: *mut zend_llist_element,
    _marker: PhantomData<T>,
}

impl<'a, T> ZendLinkedListIterator<'a, T> {
    fn new(list: &'a ZendLinkedList) -> Self {
        ZendLinkedListIterator {
            list,
            position: list.head,
            _marker: PhantomData,
        }
    }
}

impl<'a, T: 'a> Iterator for ZendLinkedListIterator<'a, T> {
    type Item = &'a T;

    fn next(&mut self) -> Option<Self::Item> {
        if self.position.is_null() {
            return None;
        }
        let ptr = unsafe { (*self.position).data.as_mut_ptr() };
        let value = unsafe { &*((ptr as *const T).cast_mut()) };
        unsafe {
            zend_llist_get_next_ex(
                ptr::from_ref::<ZendLinkedList>(self.list).cast_mut(),
                &raw mut self.position,
            )
        };
        Some(value)
    }
}