hdf5-pure 0.1.0

Pure-Rust HDF5 writer library (WASM-compatible, no C dependencies)
Documentation
//! Single-threaded Mutex replacement for no_std environments.
//!
//! WASM is single-threaded, so a simple `UnsafeCell` wrapper suffices.

use core::cell::UnsafeCell;

pub struct Mutex<T> {
    data: UnsafeCell<T>,
}

// SAFETY: WASM is single-threaded; no concurrent access.
unsafe impl<T> Send for Mutex<T> {}
unsafe impl<T> Sync for Mutex<T> {}

impl<T> Mutex<T> {
    pub fn new(val: T) -> Self {
        Self {
            data: UnsafeCell::new(val),
        }
    }

    pub fn lock(&self) -> Result<MutexGuard<'_, T>, ()> {
        Ok(MutexGuard { mutex: self })
    }
}

pub struct MutexGuard<'a, T> {
    mutex: &'a Mutex<T>,
}

impl<T> core::ops::Deref for MutexGuard<'_, T> {
    type Target = T;
    fn deref(&self) -> &T {
        // SAFETY: Single-threaded environment (no_std/WASM).
        unsafe { &*self.mutex.data.get() }
    }
}

impl<T> core::ops::DerefMut for MutexGuard<'_, T> {
    fn deref_mut(&mut self) -> &mut T {
        // SAFETY: Single-threaded environment (no_std/WASM).
        unsafe { &mut *self.mutex.data.get() }
    }
}