musli 0.0.149

Müsli is a flexible and efficient serialization framework.
Documentation
//! A variable-length 7-bit encoder where each bit indicates if there is a
//! continuation of the sequence or not.

use crate::Context;
use crate::int;
use crate::reader::Reader;
use crate::writer::Writer;

const MASK_BYTE: u8 = 0b0111_1111;
const CONT_BYTE: u8 = 0b1000_0000;

/// Decode the given length using variable int encoding.
#[inline]
pub fn decode<'de, C, R, T>(cx: C, mut r: R) -> Result<T, C::Error>
where
    C: Context,
    R: Reader<'de>,
    T: int::Unsigned,
{
    let mut b = r.read_byte(cx)?;

    if b & CONT_BYTE == 0 {
        return Ok(T::from_byte(b));
    }

    let mut value = T::from_byte(b & MASK_BYTE);
    let mut shift = 0u32;

    while b & CONT_BYTE == CONT_BYTE {
        shift += 7;

        if shift >= T::BITS {
            return Err(cx.message("Bits overflow"));
        }

        b = r.read_byte(cx)?;
        value = value.wrapping_add(T::from_byte(b & MASK_BYTE).wrapping_shl(shift));
    }

    Ok(value)
}

/// Encode the given length using variable length encoding.
#[inline]
pub fn encode<C, W, T>(cx: C, mut w: W, mut value: T) -> Result<(), C::Error>
where
    C: Context,
    W: Writer,
    T: int::Unsigned,
{
    let mut b = value.as_byte();

    if value < T::from_byte(CONT_BYTE) {
        w.write_byte(cx, b)?;
        return Ok(());
    }

    loop {
        value = value >> 7;

        if value.is_zero() {
            w.write_byte(cx, b & MASK_BYTE)?;
            break;
        }

        w.write_byte(cx, b | CONT_BYTE)?;
        b = value.as_byte();
    }

    Ok(())
}