rlp append_list
This commit is contained in:
parent
20cadef4f0
commit
e40bb6d52c
90
src/rlp.rs
90
src/rlp.rs
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::cell::Cell;
|
use std::cell::Cell;
|
||||||
|
use std::collections::LinkedList;
|
||||||
use std::error::Error as StdError;
|
use std::error::Error as StdError;
|
||||||
use bytes::{ToBytes, FromBytes, FromBytesError};
|
use bytes::{ToBytes, FromBytes, FromBytesError};
|
||||||
|
|
||||||
@ -189,10 +190,26 @@ impl <'a> Iterator for RlpIterator<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
struct ListInfo {
|
||||||
|
position: usize,
|
||||||
|
current: usize,
|
||||||
|
max: usize
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ListInfo {
|
||||||
|
fn new(position: usize, max: usize) -> ListInfo {
|
||||||
|
ListInfo {
|
||||||
|
position: position,
|
||||||
|
current: 0,
|
||||||
|
max: max
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// container that should be used to encode rlp
|
/// container that should be used to encode rlp
|
||||||
pub struct RlpStream {
|
pub struct RlpStream {
|
||||||
len: usize,
|
unfinished_lists: LinkedList<ListInfo>,
|
||||||
max_len: usize,
|
|
||||||
encoder: BasicEncoder
|
encoder: BasicEncoder
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -200,36 +217,51 @@ impl RlpStream {
|
|||||||
/// create new container for values appended one after another,
|
/// create new container for values appended one after another,
|
||||||
/// but not being part of the same list
|
/// but not being part of the same list
|
||||||
pub fn new() -> RlpStream {
|
pub fn new() -> RlpStream {
|
||||||
RlpStream::new_list(0)
|
RlpStream {
|
||||||
|
unfinished_lists: LinkedList::new(),
|
||||||
|
encoder: BasicEncoder::new()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// create new container for list of size `max_len`
|
/// create new container for list of size `max_len`
|
||||||
pub fn new_list(max_len: usize) -> RlpStream {
|
pub fn new_list(len: usize) -> RlpStream {
|
||||||
RlpStream {
|
let mut stream = RlpStream::new();
|
||||||
len: 0,
|
stream.append_list(len);
|
||||||
max_len: max_len,
|
stream
|
||||||
encoder: BasicEncoder::new()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// apends value to the end of stream, chainable
|
/// apends value to the end of stream, chainable
|
||||||
pub fn append<'a, E>(&'a mut self, object: &E) -> &'a mut RlpStream where E: Encodable {
|
pub fn append<'a, E>(&'a mut self, object: &E) -> &'a mut RlpStream where E: Encodable {
|
||||||
// encode given value and add it at the end of the stream
|
// encode given value and add it at the end of the stream
|
||||||
object.encode(&mut self.encoder);
|
object.encode(&mut self.encoder);
|
||||||
self.len += 1;
|
|
||||||
|
|
||||||
// if list is finished, prepend the length
|
// if list is finished, prepend the length
|
||||||
if self.is_finished() {
|
self.try_to_finish();
|
||||||
self.prepend_the_length();
|
|
||||||
|
// return chainable self
|
||||||
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
// allow chaining calls
|
/// declare appending the list of given size
|
||||||
|
pub fn append_list<'a>(&'a mut self, len: usize) -> &'a mut RlpStream {
|
||||||
|
// push new list
|
||||||
|
let position = self.encoder.bytes.len();
|
||||||
|
match len {
|
||||||
|
0 => {
|
||||||
|
// we may finish, if the appended list len is equal 0
|
||||||
|
self.encoder.insert_list_len_at_pos(0, position);
|
||||||
|
self.try_to_finish();
|
||||||
|
},
|
||||||
|
_ => self.unfinished_lists.push_back(ListInfo::new(position, len))
|
||||||
|
}
|
||||||
|
|
||||||
|
// return chainable self
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// return true if stream is ready
|
/// return true if stream is ready
|
||||||
pub fn is_finished(&self) -> bool {
|
pub fn is_finished(&self) -> bool {
|
||||||
self.len == self.max_len
|
self.unfinished_lists.back().is_none()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// streams out encoded bytes
|
/// streams out encoded bytes
|
||||||
@ -240,10 +272,22 @@ impl RlpStream {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// prepend the length of the bytes to the beginning of the vector
|
/// try to finish lists
|
||||||
fn prepend_the_length(&mut self) -> () {
|
fn try_to_finish(&mut self) -> () {
|
||||||
let len = self.encoder.bytes.len();
|
let should_finish = match self.unfinished_lists.back_mut() {
|
||||||
self.encoder.insert_list_len_at_pos(len, 0);
|
None => false,
|
||||||
|
Some(ref mut x) => {
|
||||||
|
x.current += 1;
|
||||||
|
x.current == x.max
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if should_finish {
|
||||||
|
let x = self.unfinished_lists.pop_back().unwrap();
|
||||||
|
let len = self.encoder.bytes.len() - x.position;
|
||||||
|
self.encoder.insert_list_len_at_pos(len, x.position);
|
||||||
|
self.try_to_finish();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -555,5 +599,15 @@ mod tests {
|
|||||||
let out = stream.out().unwrap();
|
let out = stream.out().unwrap();
|
||||||
assert_eq!(out, vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']);
|
assert_eq!(out, vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn rlp_stream_list() {
|
||||||
|
let mut stream = RlpStream::new_list(3);
|
||||||
|
stream.append_list(0);
|
||||||
|
stream.append_list(1).append(&vec![] as &Vec<u8>);
|
||||||
|
stream.append_list(2).append_list(0).append_list(1).append_list(0);
|
||||||
|
let out = stream.out().unwrap();
|
||||||
|
assert_eq!(out, vec![0xc7, 0xc0, 0xc1, 0xc0, 0xc3, 0xc0, 0xc1, 0xc0]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user