feat: Move flat en/de from aiken to pallas (#303)
Nothing new is going on within the code itself. I simply popped the crate into pallas_codec as a submodule `pallas_codec::flat`. I also moved over the tests that we had in the crate. In general this is in solid shape and hasn't had any changes for months. That said there could be some things that require love like dealing with BigInt. Co-authored-by: Kasey White <kwhitemsg@gmail.com>
This commit is contained in:
parent
dba044f686
commit
7fada705a0
15 changed files with 1122 additions and 15 deletions
323
pallas-codec/src/flat/encode/encoder.rs
Normal file
323
pallas-codec/src/flat/encode/encoder.rs
Normal file
|
|
@ -0,0 +1,323 @@
|
|||
use super::Encode;
|
||||
use crate::flat::zigzag;
|
||||
|
||||
use super::Error;
|
||||
|
||||
pub struct Encoder {
|
||||
pub buffer: Vec<u8>,
|
||||
// Int
|
||||
used_bits: i64,
|
||||
// Int
|
||||
current_byte: u8,
|
||||
}
|
||||
|
||||
impl Default for Encoder {
|
||||
fn default() -> Self {
|
||||
Self::new()
|
||||
}
|
||||
}
|
||||
|
||||
impl Encoder {
|
||||
pub fn new() -> Encoder {
|
||||
Encoder {
|
||||
buffer: Vec::new(),
|
||||
used_bits: 0,
|
||||
current_byte: 0,
|
||||
}
|
||||
}
|
||||
|
||||
/// Encode any type that implements [`Encode`].
|
||||
pub fn encode<T: Encode>(&mut self, x: T) -> Result<&mut Self, Error> {
|
||||
x.encode(self)?;
|
||||
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
/// Encode 1 unsigned byte.
|
||||
/// Uses the next 8 bits in the buffer, can be byte aligned or byte unaligned
|
||||
pub fn u8(&mut self, x: u8) -> Result<&mut Self, Error> {
|
||||
if self.used_bits == 0 {
|
||||
self.current_byte = x;
|
||||
self.next_word();
|
||||
} else {
|
||||
self.byte_unaligned(x);
|
||||
}
|
||||
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
/// Encode a `bool` value. This is byte alignment agnostic.
|
||||
/// Uses the next unused bit in the current byte to encode this information.
|
||||
/// One for true and Zero for false
|
||||
pub fn bool(&mut self, x: bool) -> &mut Self {
|
||||
if x {
|
||||
self.one();
|
||||
} else {
|
||||
self.zero();
|
||||
}
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Encode a byte array.
|
||||
/// Uses filler to byte align the buffer, then writes byte array length up to 255.
|
||||
/// Following that it writes the next 255 bytes from the array.
|
||||
/// We repeat writing length up to 255 and the next 255 bytes until we reach the end of the byte array.
|
||||
/// After reaching the end of the byte array we write a 0 byte. Only write 0 byte if the byte array is empty.
|
||||
pub fn bytes(&mut self, x: &[u8]) -> Result<&mut Self, Error> {
|
||||
// use filler to write current buffer so bits used gets reset
|
||||
self.filler();
|
||||
|
||||
self.byte_array(x)
|
||||
}
|
||||
|
||||
/// Encode a byte array in a byte aligned buffer. Throws exception if any bits for the current byte were used.
|
||||
/// Writes byte array length up to 255
|
||||
/// Following that it writes the next 255 bytes from the array.
|
||||
/// We repeat writing length up to 255 and the next 255 bytes until we reach the end of the byte array.
|
||||
/// After reaching the end of the buffer we write a 0 byte. Only write 0 if the byte array is empty.
|
||||
pub fn byte_array(&mut self, arr: &[u8]) -> Result<&mut Self, Error> {
|
||||
if self.used_bits != 0 {
|
||||
return Err(Error::BufferNotByteAligned);
|
||||
}
|
||||
|
||||
self.write_blk(arr);
|
||||
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
/// Encode an integer of any size.
|
||||
/// This is byte alignment agnostic.
|
||||
/// First we use zigzag once to double the number and encode the negative sign as the least significant bit.
|
||||
/// Next we encode the 7 least significant bits of the unsigned integer. If the number is greater than
|
||||
/// 127 we encode a leading 1 followed by repeating the encoding above for the next 7 bits and so on.
|
||||
pub fn integer(&mut self, i: isize) -> &mut Self {
|
||||
let i = zigzag::to_usize(i);
|
||||
|
||||
self.word(i);
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Encode an integer of 128 bits size.
|
||||
/// This is byte alignment agnostic.
|
||||
/// First we use zigzag once to double the number and encode the negative sign as the least significant bit.
|
||||
/// Next we encode the 7 least significant bits of the unsigned integer. If the number is greater than
|
||||
/// 127 we encode a leading 1 followed by repeating the encoding above for the next 7 bits and so on.
|
||||
pub fn big_integer(&mut self, i: i128) -> &mut Self {
|
||||
let i = zigzag::to_u128(i);
|
||||
|
||||
self.big_word(i);
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Encode a char of 32 bits.
|
||||
/// This is byte alignment agnostic.
|
||||
/// We encode the 7 least significant bits of the unsigned byte. If the char value is greater than
|
||||
/// 127 we encode a leading 1 followed by repeating the above for the next 7 bits and so on.
|
||||
pub fn char(&mut self, c: char) -> &mut Self {
|
||||
self.word(c as usize);
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
// TODO: Do we need this?
|
||||
pub fn string(&mut self, s: &str) -> &mut Self {
|
||||
for i in s.chars() {
|
||||
self.one();
|
||||
self.char(i);
|
||||
}
|
||||
|
||||
self.zero();
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Encode a string.
|
||||
/// Convert to byte array and then use byte array encoding.
|
||||
/// Uses filler to byte align the buffer, then writes byte array length up to 255.
|
||||
/// Following that it writes the next 255 bytes from the array.
|
||||
/// After reaching the end of the buffer we write a 0 byte. Only write 0 byte if the byte array is empty.
|
||||
pub fn utf8(&mut self, s: &str) -> Result<&mut Self, Error> {
|
||||
self.bytes(s.as_bytes())
|
||||
}
|
||||
|
||||
/// Encode a unsigned integer of any size.
|
||||
/// This is byte alignment agnostic.
|
||||
/// We encode the 7 least significant bits of the unsigned byte. If the char value is greater than
|
||||
/// 127 we encode a leading 1 followed by repeating the above for the next 7 bits and so on.
|
||||
pub fn word(&mut self, c: usize) -> &mut Self {
|
||||
let mut d = c;
|
||||
loop {
|
||||
let mut w = (d & 127) as u8;
|
||||
d >>= 7;
|
||||
|
||||
if d != 0 {
|
||||
w |= 128;
|
||||
}
|
||||
self.bits(8, w);
|
||||
|
||||
if d == 0 {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Encode a unsigned integer of 128 bits size.
|
||||
/// This is byte alignment agnostic.
|
||||
/// We encode the 7 least significant bits of the unsigned byte. If the char value is greater than
|
||||
/// 127 we encode a leading 1 followed by repeating the above for the next 7 bits and so on.
|
||||
pub fn big_word(&mut self, c: u128) -> &mut Self {
|
||||
let mut d = c;
|
||||
loop {
|
||||
let mut w = (d & 127) as u8;
|
||||
d >>= 7;
|
||||
|
||||
if d != 0 {
|
||||
w |= 128;
|
||||
}
|
||||
self.bits(8, w);
|
||||
|
||||
if d == 0 {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Encode a list of bytes with a function
|
||||
/// This is byte alignment agnostic.
|
||||
/// If there are bytes in a list then write 1 bit followed by the functions encoding.
|
||||
/// After the last item write a 0 bit. If the list is empty only encode a 0 bit.
|
||||
pub fn encode_list_with<T>(
|
||||
&mut self,
|
||||
list: &[T],
|
||||
encoder_func: for<'r> fn(&T, &'r mut Encoder) -> Result<(), Error>,
|
||||
) -> Result<&mut Self, Error> {
|
||||
for item in list {
|
||||
self.one();
|
||||
encoder_func(item, self)?;
|
||||
}
|
||||
|
||||
self.zero();
|
||||
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
/// Encodes up to 8 bits of information and is byte alignment agnostic.
|
||||
/// Uses unused bits in the current byte to write out the passed in byte value.
|
||||
/// Overflows to the most significant digits of the next byte if number of bits to use is greater than unused bits.
|
||||
/// Expects that number of bits to use is greater than or equal to required bits by the value.
|
||||
/// The param num_bits is i64 to match unused_bits type.
|
||||
pub fn bits(&mut self, num_bits: i64, val: u8) -> &mut Self {
|
||||
match (num_bits, val) {
|
||||
(1, 0) => self.zero(),
|
||||
(1, 1) => self.one(),
|
||||
(2, 0) => {
|
||||
self.zero();
|
||||
self.zero();
|
||||
}
|
||||
(2, 1) => {
|
||||
self.zero();
|
||||
self.one();
|
||||
}
|
||||
(2, 2) => {
|
||||
self.one();
|
||||
self.zero();
|
||||
}
|
||||
(2, 3) => {
|
||||
self.one();
|
||||
self.one();
|
||||
}
|
||||
(_, _) => {
|
||||
self.used_bits += num_bits;
|
||||
let unused_bits = 8 - self.used_bits;
|
||||
match unused_bits {
|
||||
x if x > 0 => {
|
||||
self.current_byte |= val << x;
|
||||
}
|
||||
x if x == 0 => {
|
||||
self.current_byte |= val;
|
||||
self.next_word();
|
||||
}
|
||||
x => {
|
||||
let used = -x;
|
||||
self.current_byte |= val >> used;
|
||||
self.next_word();
|
||||
self.current_byte = val << (8 - used);
|
||||
self.used_bits = used;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// A filler amount of end 0's followed by a 1 at the end of a byte.
|
||||
/// Used to byte align the buffer by padding out the rest of the byte.
|
||||
pub(crate) fn filler(&mut self) -> &mut Self {
|
||||
self.current_byte |= 1;
|
||||
self.next_word();
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Write a 0 bit into the current byte.
|
||||
/// Write out to buffer if last used bit in the current byte.
|
||||
fn zero(&mut self) {
|
||||
if self.used_bits == 7 {
|
||||
self.next_word();
|
||||
} else {
|
||||
self.used_bits += 1;
|
||||
}
|
||||
}
|
||||
|
||||
/// Write a 1 bit into the current byte.
|
||||
/// Write out to buffer if last used bit in the current byte.
|
||||
fn one(&mut self) {
|
||||
if self.used_bits == 7 {
|
||||
self.current_byte |= 1;
|
||||
self.next_word();
|
||||
} else {
|
||||
self.current_byte |= 128 >> self.used_bits;
|
||||
self.used_bits += 1;
|
||||
}
|
||||
}
|
||||
/// Write out byte regardless of current buffer alignment.
|
||||
/// Write most significant bits in remaining unused bits for the current byte,
|
||||
/// then write out the remaining bits at the beginning of the next byte.
|
||||
fn byte_unaligned(&mut self, x: u8) {
|
||||
let x_shift = self.current_byte | (x >> self.used_bits);
|
||||
self.buffer.push(x_shift);
|
||||
|
||||
self.current_byte = x << (8 - self.used_bits);
|
||||
}
|
||||
|
||||
/// Write the current byte out to the buffer and begin next byte to write out.
|
||||
/// Add current byte to the buffer and set current byte and used bits to 0.
|
||||
fn next_word(&mut self) {
|
||||
self.buffer.push(self.current_byte);
|
||||
|
||||
self.current_byte = 0;
|
||||
self.used_bits = 0;
|
||||
}
|
||||
|
||||
/// Writes byte array length up to 255
|
||||
/// Following that it writes the next 255 bytes from the array.
|
||||
/// After reaching the end of the buffer we write a 0 byte. Only write 0 if the byte array is empty.
|
||||
/// This is byte alignment agnostic.
|
||||
fn write_blk(&mut self, arr: &[u8]) {
|
||||
let chunks = arr.chunks(255);
|
||||
|
||||
for chunk in chunks {
|
||||
self.buffer.push(chunk.len() as u8);
|
||||
self.buffer.extend(chunk);
|
||||
}
|
||||
self.buffer.push(0_u8);
|
||||
}
|
||||
}
|
||||
9
pallas-codec/src/flat/encode/error.rs
Normal file
9
pallas-codec/src/flat/encode/error.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
pub enum Error {
|
||||
#[error("Buffer is not byte aligned")]
|
||||
BufferNotByteAligned,
|
||||
#[error("{0}")]
|
||||
Message(String),
|
||||
}
|
||||
107
pallas-codec/src/flat/encode/mod.rs
Normal file
107
pallas-codec/src/flat/encode/mod.rs
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
mod encoder;
|
||||
mod error;
|
||||
|
||||
use crate::flat::filler::Filler;
|
||||
|
||||
pub use encoder::Encoder;
|
||||
pub use error::Error;
|
||||
|
||||
pub trait Encode {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error>;
|
||||
}
|
||||
|
||||
impl Encode for bool {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.bool(*self);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for u8 {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.u8(*self)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for i128 {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.big_integer(*self);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for isize {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.integer(*self);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for usize {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.word(*self);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for char {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.char(*self);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for &str {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.utf8(self)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for String {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.utf8(self)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for Vec<u8> {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.bytes(self)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for &[u8] {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.bytes(self)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: Encode> Encode for Box<T> {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
self.as_ref().encode(e)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Encode for Filler {
|
||||
fn encode(&self, e: &mut Encoder) -> Result<(), Error> {
|
||||
e.filler();
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue