2018-01-09 16:53:35 +01:00
|
|
|
macro_rules! impl_write_unsigned_leb128 {
|
2019-12-22 17:42:04 -05:00
|
|
|
($fn_name:ident, $int_ty:ident) => {
|
2018-01-09 16:53:35 +01:00
|
|
|
#[inline]
|
2018-06-04 22:14:02 +02:00
|
|
|
pub fn $fn_name(out: &mut Vec<u8>, mut value: $int_ty) {
|
2020-02-10 18:40:02 +11:00
|
|
|
loop {
|
|
|
|
if value < 0x80 {
|
|
|
|
out.push(value as u8);
|
2018-01-09 16:53:35 +01:00
|
|
|
break;
|
2020-02-10 18:40:02 +11:00
|
|
|
} else {
|
|
|
|
out.push(((value & 0x7f) | 0x80) as u8);
|
|
|
|
value >>= 7;
|
2018-01-09 16:53:35 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-25 13:59:02 -05:00
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
};
|
2016-12-14 01:45:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-09 16:53:35 +01:00
|
|
|
impl_write_unsigned_leb128!(write_u16_leb128, u16);
|
|
|
|
impl_write_unsigned_leb128!(write_u32_leb128, u32);
|
|
|
|
impl_write_unsigned_leb128!(write_u64_leb128, u64);
|
|
|
|
impl_write_unsigned_leb128!(write_u128_leb128, u128);
|
|
|
|
impl_write_unsigned_leb128!(write_usize_leb128, usize);
|
|
|
|
|
|
|
|
macro_rules! impl_read_unsigned_leb128 {
|
2019-12-22 17:42:04 -05:00
|
|
|
($fn_name:ident, $int_ty:ident) => {
|
2018-01-09 16:53:35 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn $fn_name(slice: &[u8]) -> ($int_ty, usize) {
|
2020-02-10 18:40:02 +11:00
|
|
|
let mut result = 0;
|
2018-01-09 16:53:35 +01:00
|
|
|
let mut shift = 0;
|
|
|
|
let mut position = 0;
|
2020-02-10 18:40:02 +11:00
|
|
|
loop {
|
|
|
|
let byte = slice[position];
|
2018-01-09 16:53:35 +01:00
|
|
|
position += 1;
|
|
|
|
if (byte & 0x80) == 0 {
|
2020-02-10 18:40:02 +11:00
|
|
|
result |= (byte as $int_ty) << shift;
|
|
|
|
return (result, position);
|
|
|
|
} else {
|
|
|
|
result |= ((byte & 0x7F) as $int_ty) << shift;
|
2018-01-09 16:53:35 +01:00
|
|
|
}
|
|
|
|
shift += 7;
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 17:42:04 -05:00
|
|
|
};
|
2015-12-25 13:59:02 -05:00
|
|
|
}
|
|
|
|
|
2018-01-09 16:53:35 +01:00
|
|
|
impl_read_unsigned_leb128!(read_u16_leb128, u16);
|
|
|
|
impl_read_unsigned_leb128!(read_u32_leb128, u32);
|
|
|
|
impl_read_unsigned_leb128!(read_u64_leb128, u64);
|
|
|
|
impl_read_unsigned_leb128!(read_u128_leb128, u128);
|
|
|
|
impl_read_unsigned_leb128!(read_usize_leb128, usize);
|
|
|
|
|
2016-12-14 01:45:03 +02:00
|
|
|
#[inline]
|
|
|
|
/// encodes an integer using signed leb128 encoding and stores
|
|
|
|
/// the result using a callback function.
|
|
|
|
///
|
|
|
|
/// The callback `write` is called once for each position
|
|
|
|
/// that is to be written to with the byte to be encoded
|
|
|
|
/// at that position.
|
2018-06-04 22:14:02 +02:00
|
|
|
pub fn write_signed_leb128_to<W>(mut value: i128, mut write: W)
|
2019-12-22 17:42:04 -05:00
|
|
|
where
|
|
|
|
W: FnMut(u8),
|
2016-12-14 01:45:03 +02:00
|
|
|
{
|
2015-12-25 13:59:02 -05:00
|
|
|
loop {
|
|
|
|
let mut byte = (value as u8) & 0x7f;
|
|
|
|
value >>= 7;
|
2019-12-22 17:42:04 -05:00
|
|
|
let more =
|
|
|
|
!(((value == 0) && ((byte & 0x40) == 0)) || ((value == -1) && ((byte & 0x40) != 0)));
|
2016-08-24 15:58:40 +03:00
|
|
|
|
2015-12-25 13:59:02 -05:00
|
|
|
if more {
|
|
|
|
byte |= 0x80; // Mark this byte to show that more bytes will follow.
|
|
|
|
}
|
|
|
|
|
2018-06-04 22:14:02 +02:00
|
|
|
write(byte);
|
2016-08-24 15:58:40 +03:00
|
|
|
|
2015-12-25 13:59:02 -05:00
|
|
|
if !more {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-12-14 01:45:03 +02:00
|
|
|
}
|
|
|
|
|
2018-08-15 02:54:21 -04:00
|
|
|
#[inline]
|
2018-06-04 22:14:02 +02:00
|
|
|
pub fn write_signed_leb128(out: &mut Vec<u8>, value: i128) {
|
2020-02-10 18:40:02 +11:00
|
|
|
write_signed_leb128_to(value, |v| out.push(v))
|
2015-12-25 13:59:02 -05:00
|
|
|
}
|
|
|
|
|
2016-10-11 12:18:28 +11:00
|
|
|
#[inline]
|
2016-08-23 03:56:52 +03:00
|
|
|
pub fn read_signed_leb128(data: &[u8], start_position: usize) -> (i128, usize) {
|
2016-08-24 15:58:40 +03:00
|
|
|
let mut result = 0;
|
|
|
|
let mut shift = 0;
|
|
|
|
let mut position = start_position;
|
|
|
|
let mut byte;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
byte = data[position];
|
|
|
|
position += 1;
|
2019-06-26 14:04:37 +02:00
|
|
|
result |= i128::from(byte & 0x7F) << shift;
|
2016-08-24 15:58:40 +03:00
|
|
|
shift += 7;
|
|
|
|
|
|
|
|
if (byte & 0x80) == 0 {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shift < 64) && ((byte & 0x40) != 0) {
|
|
|
|
// sign extend
|
|
|
|
result |= -(1 << shift);
|
|
|
|
}
|
|
|
|
|
|
|
|
(result, position - start_position)
|
2015-12-25 13:59:02 -05:00
|
|
|
}
|