mirror of
https://codeberg.org/icewind/bitbuffer.git
synced 2026-06-03 08:34:07 +02:00
basics
This commit is contained in:
commit
8d38830adc
5 changed files with 301 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
/target
|
||||||
|
**/*.rs.bk
|
||||||
|
Cargo.lock
|
||||||
5
Cargo.toml
Normal file
5
Cargo.toml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
[package]
|
||||||
|
name = "bitbuffer"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||||
|
edition = "2018"
|
||||||
15
bitbuffer.iml
Normal file
15
bitbuffer.iml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="RUST_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/examples" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/benches" isTestSource="true" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
200
src/lib.rs
Normal file
200
src/lib.rs
Normal file
|
|
@ -0,0 +1,200 @@
|
||||||
|
#![feature(test)]
|
||||||
|
|
||||||
|
extern crate test;
|
||||||
|
|
||||||
|
use std::cmp::min;
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests;
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Copy, Clone)]
|
||||||
|
pub enum ByteOrder {
|
||||||
|
LittleEndian,
|
||||||
|
BigEndian,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Copy, Clone)]
|
||||||
|
pub enum ReadError {
|
||||||
|
TooManyBits {
|
||||||
|
requested: usize,
|
||||||
|
max: usize,
|
||||||
|
},
|
||||||
|
NotEnoughData {
|
||||||
|
requested: usize,
|
||||||
|
bits_left: usize,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
pub type Result<T> = std::result::Result<T, ReadError>;
|
||||||
|
|
||||||
|
pub struct BitBuffer<'a> {
|
||||||
|
bytes: &'a [u8],
|
||||||
|
order: ByteOrder,
|
||||||
|
bit_len: usize,
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! bitreader_unsigned_be {
|
||||||
|
($buffer:expr, $type:ty, $position:expr, $count:expr) => {
|
||||||
|
{
|
||||||
|
let size = std::mem::size_of::<$type>() * 8;
|
||||||
|
if $count > size {
|
||||||
|
return Err(ReadError::TooManyBits { requested: $count, max: size });
|
||||||
|
}
|
||||||
|
|
||||||
|
let bits_left = $buffer.bit_len() - $position;
|
||||||
|
|
||||||
|
if $count > bits_left {
|
||||||
|
return Err(ReadError::NotEnoughData { requested: $count, bits_left});
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut value: $type = 0;
|
||||||
|
|
||||||
|
//let mut i = 0;
|
||||||
|
//let mut offset = $position;
|
||||||
|
|
||||||
|
// while i < $count {
|
||||||
|
// let remaining = $count - i;
|
||||||
|
// let bit_offset = (offset & 7) as u8;
|
||||||
|
// let byte_index = (offset / 8) as usize;
|
||||||
|
// let byte = $buffer.bytes[byte_index];
|
||||||
|
//
|
||||||
|
// // how much can we read from the current byte
|
||||||
|
// let read = min(remaining, 8 - bit_offset);
|
||||||
|
//
|
||||||
|
// println!("{}, {}", remaining, bit_offset);
|
||||||
|
// println!("read {} bits from {:#010b}", read, byte);
|
||||||
|
//
|
||||||
|
// let mask = !(0xFFu8.wrapping_shl(read as u32));
|
||||||
|
// let shift = 8 - read - bit_offset;
|
||||||
|
// let shifted = byte.wrapping_shr(shift as u32);
|
||||||
|
// let read_bits = shifted & mask;
|
||||||
|
// println!("{:#010b} >> {} = {:#010b}", byte, shift, shifted);
|
||||||
|
// println!("{:#010b} & {:#010b} = {:#010b}", mask, shifted, read_bits);
|
||||||
|
//
|
||||||
|
// println!("{:#010b} << {} | {:#010b}", value, read, read_bits);
|
||||||
|
// value = value << read | read_bits as $type;
|
||||||
|
//
|
||||||
|
// offset += read as usize;
|
||||||
|
// i += read;
|
||||||
|
// }
|
||||||
|
|
||||||
|
for i in $position..($position + $count as usize ) {
|
||||||
|
let byte_index = (i / 8) as usize;
|
||||||
|
let byte = $buffer.bytes[byte_index];
|
||||||
|
let shift = 7 - (i % 8);
|
||||||
|
let bit = (byte >> shift) as $type & 1;
|
||||||
|
value = (value << 1) | bit;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! bitreader_unsigned_le {
|
||||||
|
($buffer:expr, $type:ty, $position:expr, $count:expr) => {
|
||||||
|
{
|
||||||
|
let size = std::mem::size_of::<$type>() * 8;
|
||||||
|
if $count > size {
|
||||||
|
return Err(ReadError::TooManyBits { requested: $count, max: size });
|
||||||
|
}
|
||||||
|
|
||||||
|
let bits_left = $buffer.bit_len() - $position;
|
||||||
|
|
||||||
|
if $count > bits_left {
|
||||||
|
return Err(ReadError::NotEnoughData { requested: $count, bits_left});
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut value: $type = 0;
|
||||||
|
|
||||||
|
let mut i = 0;
|
||||||
|
let mut offset = $position;
|
||||||
|
|
||||||
|
while i < $count {
|
||||||
|
let remaining = $count - i;
|
||||||
|
let bit_offset = offset & 7;
|
||||||
|
let byte_index = offset / 8;
|
||||||
|
let byte = $buffer.bytes[byte_index];
|
||||||
|
|
||||||
|
// how much can we read from the current byte
|
||||||
|
let read = min(remaining, 8 - bit_offset);
|
||||||
|
|
||||||
|
//let mask = if read == 8 {0xFFu8} else {!(0xFFu8 << read)};
|
||||||
|
let mask = if read == 8 {0xFFu8} else {!(0xFFu8 << read)};
|
||||||
|
let shift = bit_offset;
|
||||||
|
let shifted = byte >> shift;
|
||||||
|
let read_bits = shifted & mask;
|
||||||
|
|
||||||
|
value |= read_bits as $type << i;
|
||||||
|
|
||||||
|
offset += read as usize;
|
||||||
|
i += read;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
macro_rules! make_signed {
|
||||||
|
($unsigned:expr, $type:ty, $count:expr) => {
|
||||||
|
{
|
||||||
|
let sign_bits = $unsigned >> ($count - 1) & 1;
|
||||||
|
let high_bits = 0 - sign_bits as $type;
|
||||||
|
high_bits << $count | $unsigned as $type
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> BitBuffer<'a> {
|
||||||
|
/// Construct a new BitBuffer from a byte slice.
|
||||||
|
pub fn new(bytes: &'a [u8], order: ByteOrder) -> BitBuffer<'a> {
|
||||||
|
BitBuffer {
|
||||||
|
bytes,
|
||||||
|
order,
|
||||||
|
bit_len: bytes.len() * 8,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn bit_len(&self) -> usize {
|
||||||
|
self.bit_len
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn read_u8(&self, position: usize, count: usize) -> Result<u8> {
|
||||||
|
match self.order {
|
||||||
|
ByteOrder::LittleEndian => bitreader_unsigned_le!(self, u8, position, count),
|
||||||
|
ByteOrder::BigEndian => bitreader_unsigned_be!(self, u8, position, count)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn read_u16(&self, position: usize, count: usize) -> Result<u16> {
|
||||||
|
bitreader_unsigned_le!(self, u16, position, count)
|
||||||
|
// match self.order {
|
||||||
|
// ByteOrder::LittleEndian => bitreader_unsigned_le!(self, u16, position, count),
|
||||||
|
// ByteOrder::BigEndian => bitreader_unsigned_be!(self, u16, position, count)
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn read_u32(&self, position: usize, count: usize) -> Result<u32> {
|
||||||
|
match self.order {
|
||||||
|
ByteOrder::LittleEndian => bitreader_unsigned_le!(self, u32, position, count),
|
||||||
|
ByteOrder::BigEndian => bitreader_unsigned_be!(self, u32, position, count)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn read_i8(&self, position: usize, count: usize) -> Result<i8> {
|
||||||
|
let unsigned = self.read_u8(position, count)?;
|
||||||
|
Ok(make_signed!(unsigned, i8, count))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn read_i16(&self, position: usize, count: usize) -> Result<i16> {
|
||||||
|
let unsigned = self.read_u16(position, count)?;
|
||||||
|
Ok(make_signed!(unsigned, i16, count))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn read_i32(&self, position: usize, count: usize) -> Result<i32> {
|
||||||
|
let unsigned = self.read_u32(position, count)?;
|
||||||
|
Ok(make_signed!(unsigned, i32, count))
|
||||||
|
}
|
||||||
|
}
|
||||||
78
src/tests.rs
Normal file
78
src/tests.rs
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
use std::fs;
|
||||||
|
use super::*;
|
||||||
|
use test::Bencher;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn read_be() {
|
||||||
|
let bytes = &[
|
||||||
|
0b1011_0101, 0b0110_1010, 0b1010_1100, 0b1001_1001,
|
||||||
|
0b1001_1001, 0b1001_1001, 0b1001_1001, 0b1110_0111,
|
||||||
|
];
|
||||||
|
|
||||||
|
let buffer = BitBuffer::new(bytes, ByteOrder::BigEndian);
|
||||||
|
|
||||||
|
assert_eq!(buffer.read_u8(0, 1).unwrap(), 0b1);
|
||||||
|
assert_eq!(buffer.read_u8(1, 1).unwrap(), 0b0);
|
||||||
|
assert_eq!(buffer.read_u8(2, 2).unwrap(), 0b11);
|
||||||
|
assert_eq!(buffer.read_u8(7, 4).unwrap(), 0b1011);
|
||||||
|
assert_eq!(buffer.read_u8(6, 5).unwrap(), 0b01011);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn read_le() {
|
||||||
|
let bytes = &[
|
||||||
|
0b1011_0101, 0b0110_1010, 0b1010_1100, 0b1001_1001,
|
||||||
|
0b1001_1001, 0b1001_1001, 0b1001_1001, 0b1110_0111,
|
||||||
|
];
|
||||||
|
|
||||||
|
let buffer = BitBuffer::new(bytes, ByteOrder::LittleEndian);
|
||||||
|
|
||||||
|
assert_eq!(buffer.read_u8(0, 1).unwrap(), 0b1);
|
||||||
|
assert_eq!(buffer.read_u8(1, 1).unwrap(), 0b0);
|
||||||
|
assert_eq!(buffer.read_u8(2, 2).unwrap(), 0b01);
|
||||||
|
assert_eq!(buffer.read_u8(7, 5).unwrap(), 0b10101);
|
||||||
|
assert_eq!(buffer.read_u8(6, 5).unwrap(), 0b01010);
|
||||||
|
assert_eq!(buffer.read_u16(6, 12).unwrap(), 0b000110101010);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn signed_values() {
|
||||||
|
let from = -2048;
|
||||||
|
let to = 2048;
|
||||||
|
for x in from..to {
|
||||||
|
let bytes = &[
|
||||||
|
(x >> 8) as u8,
|
||||||
|
x as u8,
|
||||||
|
];
|
||||||
|
let buffer = BitBuffer::new(bytes, ByteOrder::BigEndian);
|
||||||
|
assert_eq!(buffer.read_u8(0, 4).unwrap(), if x < 0 { 0b1111 } else { 0 });
|
||||||
|
assert_eq!(buffer.read_i16(4, 12).unwrap(), x);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn read_perf(buffer: BitBuffer) -> u16 {
|
||||||
|
let size = 5;
|
||||||
|
let mut pos = 0;
|
||||||
|
let len = buffer.bit_len();
|
||||||
|
let mut result: u16 = 0;
|
||||||
|
//while pos < len {
|
||||||
|
loop {
|
||||||
|
if pos + size > len {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
let data = buffer.read_u16(pos, size).unwrap();
|
||||||
|
result = result.wrapping_add(data);
|
||||||
|
pos += size;
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[bench]
|
||||||
|
fn perf(b: &mut Bencher) {
|
||||||
|
let data = fs::read("/bulk/tmp/test.dem").expect("Unable to read file");
|
||||||
|
b.iter(|| {
|
||||||
|
let buffer = BitBuffer::new(data.as_slice(), ByteOrder::LittleEndian);
|
||||||
|
let data = read_perf(buffer);
|
||||||
|
test::black_box(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue