musli 0.0.149

Müsli is a flexible and efficient serialization framework.
Documentation
//! Wrapper for integrating musli with I/O types like [std::io].
//!
//! The main methods in this module is the [`wrap`] function which constructs an
//! adapter around an I/O type to work with musli.

#[cfg(feature = "std")]
use crate::Context;
#[cfg(feature = "std")]
use crate::alloc::Vec;

/// Wrap a type so that it implements [`Reader`] and [`Writer`].
///
/// See [`wrap()`].
///
/// [`Reader`]: crate::reader::Reader
/// [`Writer`]: crate::writer::Writer
///
/// # Examples
///
/// ```
/// use musli::wrap;
///
/// let buffer: Vec<u8> = Vec::new();
/// let wrapped = wrap::wrap(buffer);
/// ```
pub struct Wrap<T> {
    #[cfg_attr(not(feature = "std"), allow(unused))]
    inner: T,
}

/// Wrap a type so that it implements [`Reader`] and [`Writer`].
///
/// [`Reader`]: crate::reader::Reader
/// [`Writer`]: crate::writer::Writer
///
/// # Examples
///
/// ```
/// use musli::wrap;
///
/// let buffer: Vec<u8> = Vec::new();
/// let wrapped = wrap::wrap(buffer);
/// ```
#[inline]
pub fn wrap<T>(inner: T) -> Wrap<T> {
    Wrap { inner }
}

#[cfg(feature = "std")]
impl<W> crate::writer::IntoWriter for Wrap<W>
where
    W: std::io::Write,
{
    type Ok = ();
    type Writer = Self;

    #[inline]
    fn into_writer(self) -> Self::Writer {
        self
    }
}

#[cfg(feature = "std")]
impl<W> crate::writer::Writer for Wrap<W>
where
    W: std::io::Write,
{
    type Ok = ();
    type Mut<'this>
        = &'this mut Self
    where
        Self: 'this;

    #[inline]
    fn finish<C>(&mut self, _: C) -> Result<Self::Ok, C::Error>
    where
        C: Context,
    {
        Ok(())
    }

    #[inline]
    fn borrow_mut(&mut self) -> Self::Mut<'_> {
        self
    }

    #[inline]
    fn extend<C>(&mut self, cx: C, buffer: Vec<u8, C::Allocator>) -> Result<(), C::Error>
    where
        C: Context,
    {
        // SAFETY: the buffer never outlives this function call.
        self.write_bytes(cx, buffer.as_slice())
    }

    #[inline]
    fn write_bytes<C>(&mut self, cx: C, bytes: &[u8]) -> Result<(), C::Error>
    where
        C: Context,
    {
        self.inner.write_all(bytes).map_err(cx.map())?;
        cx.advance(bytes.len());
        Ok(())
    }
}