2015-11-25 02:53:35 +01:00
|
|
|
//! Rlp serialization module
|
2015-11-26 00:37:53 +01:00
|
|
|
//!
|
|
|
|
//! Types implementing `Endocable` and `Decodable` traits
|
|
|
|
//! can be easily coverted to and from rlp
|
|
|
|
//!
|
|
|
|
//! # Examples:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! extern crate ethcore_util;
|
|
|
|
//! use ethcore_util::rlp::{RlpStream};
|
|
|
|
//!
|
|
|
|
//! fn encode_value() {
|
|
|
|
//! // 1029
|
|
|
|
//! let mut stream = RlpStream::new();
|
|
|
|
//! stream.append(&1029u32);
|
|
|
|
//! let out = stream.out().unwrap();
|
|
|
|
//! assert_eq!(out, vec![0x82, 0x04, 0x05]);
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn encode_list() {
|
|
|
|
//! // [ "cat", "dog" ]
|
|
|
|
//! let mut stream = RlpStream::new_list(2);
|
|
|
|
//! stream.append(&"cat").append(&"dog");
|
|
|
|
//! let out = stream.out().unwrap();
|
|
|
|
//! assert_eq!(out, vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']);
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn encode_list2() {
|
|
|
|
//! // [ [], [[]], [ [], [[]] ] ]
|
|
|
|
//! let mut stream = RlpStream::new_list(3);
|
|
|
|
//! stream.append_list(0);
|
|
|
|
//! stream.append_list(1).append_list(0);
|
|
|
|
//! 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]);
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! encode_value();
|
|
|
|
//! encode_list();
|
|
|
|
//! encode_list2();
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
use std::fmt;
|
|
|
|
use std::cell::Cell;
|
2015-11-25 23:40:01 +01:00
|
|
|
use std::collections::LinkedList;
|
2015-11-25 02:53:35 +01:00
|
|
|
use std::error::Error as StdError;
|
2015-11-25 12:46:27 +01:00
|
|
|
use bytes::{ToBytes, FromBytes, FromBytesError};
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
/// rlp container
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Rlp<'a>{
|
|
|
|
bytes: &'a [u8],
|
|
|
|
cache: Cell<OffsetCache>
|
|
|
|
}
|
|
|
|
|
|
|
|
/// rlp offset
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
struct OffsetCache {
|
|
|
|
index: usize,
|
|
|
|
offset: usize
|
|
|
|
}
|
|
|
|
|
|
|
|
impl OffsetCache {
|
|
|
|
fn new(index: usize, offset: usize) -> OffsetCache {
|
|
|
|
OffsetCache { index: index, offset: offset }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// stores basic information about item
|
2015-11-25 21:04:43 +01:00
|
|
|
struct ItemInfo {
|
2015-11-25 02:53:35 +01:00
|
|
|
prefix_len: usize,
|
|
|
|
value_len: usize
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ItemInfo {
|
2015-11-25 21:16:24 +01:00
|
|
|
fn new(prefix_len: usize, value_len: usize) -> ItemInfo {
|
2015-11-25 02:53:35 +01:00
|
|
|
ItemInfo { prefix_len: prefix_len, value_len: value_len }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
|
|
|
pub enum DecoderError {
|
|
|
|
FromBytesError(FromBytesError),
|
|
|
|
RlpIsTooShort,
|
2015-11-25 21:58:15 +01:00
|
|
|
RlpExpectedToBeList,
|
2015-11-26 02:32:50 +01:00
|
|
|
RlpExpectedToBeValue,
|
2015-11-25 02:53:35 +01:00
|
|
|
BadRlp,
|
|
|
|
}
|
|
|
|
impl StdError for DecoderError {
|
|
|
|
fn description(&self) -> &str { "builder error" }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for DecoderError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt::Debug::fmt(&self, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<FromBytesError> for DecoderError {
|
|
|
|
fn from(err: FromBytesError) -> DecoderError { DecoderError::FromBytesError(err) }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <'a>Rlp<'a> {
|
|
|
|
/// returns new instance of `Rlp`
|
|
|
|
pub fn new(bytes: &'a[u8]) -> Rlp<'a> {
|
|
|
|
Rlp {
|
|
|
|
bytes: bytes,
|
|
|
|
cache: Cell::new(OffsetCache::new(usize::max_value(), 0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// get container subset at given index
|
|
|
|
///
|
|
|
|
/// paren container caches searched position
|
|
|
|
pub fn at(&self, index: usize) -> Result<Rlp<'a>, DecoderError> {
|
2015-11-25 21:58:15 +01:00
|
|
|
if !self.is_list() {
|
|
|
|
return Err(DecoderError::RlpExpectedToBeList);
|
2015-11-25 02:53:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// move to cached position if it's index is less or equal to
|
2015-11-25 21:58:15 +01:00
|
|
|
// current search index, otherwise move to beginning of list
|
2015-11-25 02:53:35 +01:00
|
|
|
let c = self.cache.get();
|
|
|
|
let (mut bytes, to_skip) = match c.index <= index {
|
|
|
|
true => (try!(Rlp::consume(self.bytes, c.offset)), index - c.index),
|
2015-11-25 21:58:15 +01:00
|
|
|
false => (try!(self.consume_list_prefix()), index)
|
2015-11-25 02:53:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// skip up to x items
|
|
|
|
bytes = try!(Rlp::consume_items(bytes, to_skip));
|
|
|
|
|
|
|
|
// update the cache
|
|
|
|
self.cache.set(OffsetCache::new(index, self.bytes.len() - bytes.len()));
|
|
|
|
|
|
|
|
// construct new rlp
|
|
|
|
let found = try!(Rlp::item_info(bytes));
|
|
|
|
Ok(Rlp::new(&bytes[0..found.prefix_len + found.value_len]))
|
|
|
|
}
|
|
|
|
|
2015-11-26 01:26:32 +01:00
|
|
|
/// returns true if rlp is a list
|
2015-11-25 21:58:15 +01:00
|
|
|
pub fn is_list(&self) -> bool {
|
2015-11-25 02:53:35 +01:00
|
|
|
self.bytes.len() > 0 && self.bytes[0] >= 0xc0
|
|
|
|
}
|
|
|
|
|
|
|
|
/// returns true if rlp is a value
|
|
|
|
pub fn is_value(&self) -> bool {
|
|
|
|
self.bytes.len() > 0 && self.bytes[0] <= 0xbf
|
|
|
|
}
|
|
|
|
|
|
|
|
/// returns rlp iterator
|
|
|
|
pub fn iter(&'a self) -> RlpIterator<'a> {
|
|
|
|
self.into_iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// consumes first found prefix
|
2015-11-25 21:58:15 +01:00
|
|
|
fn consume_list_prefix(&self) -> Result<&'a [u8], DecoderError> {
|
2015-11-25 02:53:35 +01:00
|
|
|
let item = try!(Rlp::item_info(self.bytes));
|
|
|
|
let bytes = try!(Rlp::consume(self.bytes, item.prefix_len));
|
|
|
|
Ok(bytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// consumes fixed number of items
|
|
|
|
fn consume_items(bytes: &'a [u8], items: usize) -> Result<&'a [u8], DecoderError> {
|
|
|
|
let mut result = bytes;
|
|
|
|
for _ in 0..items {
|
|
|
|
let i = try!(Rlp::item_info(result));
|
|
|
|
result = try!(Rlp::consume(result, (i.prefix_len + i.value_len)));
|
|
|
|
}
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// return first item info
|
|
|
|
fn item_info(bytes: &[u8]) -> Result<ItemInfo, DecoderError> {
|
|
|
|
let item = match bytes.first().map(|&x| x) {
|
|
|
|
None => return Err(DecoderError::RlpIsTooShort),
|
|
|
|
Some(0...0x7f) => ItemInfo::new(0, 1),
|
|
|
|
Some(l @ 0x80...0xb7) => ItemInfo::new(1, l as usize - 0x80),
|
|
|
|
Some(l @ 0xb8...0xbf) => {
|
|
|
|
let len_of_len = l as usize - 0xb7;
|
|
|
|
let prefix_len = 1 + len_of_len;
|
|
|
|
let value_len = try!(usize::from_bytes(&bytes[1..prefix_len]));
|
|
|
|
ItemInfo::new(prefix_len, value_len)
|
|
|
|
}
|
|
|
|
Some(l @ 0xc0...0xf7) => ItemInfo::new(1, l as usize - 0xc0),
|
|
|
|
Some(l @ 0xf8...0xff) => {
|
|
|
|
let len_of_len = l as usize - 0xf7;
|
|
|
|
let prefix_len = 1 + len_of_len;
|
|
|
|
let value_len = try!(usize::from_bytes(&bytes[1..prefix_len]));
|
|
|
|
ItemInfo::new(prefix_len, value_len)
|
|
|
|
},
|
|
|
|
_ => return Err(DecoderError::BadRlp)
|
|
|
|
};
|
|
|
|
|
|
|
|
match item.prefix_len + item.value_len <= bytes.len() {
|
|
|
|
true => Ok(item),
|
|
|
|
false => Err(DecoderError::RlpIsTooShort)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// consumes slice prefix of length `len`
|
|
|
|
fn consume(bytes: &'a [u8], len: usize) -> Result<&'a [u8], DecoderError> {
|
|
|
|
match bytes.len() >= len {
|
|
|
|
true => Ok(&bytes[len..]),
|
|
|
|
false => Err(DecoderError::RlpIsTooShort)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// non-consuming rlp iterator
|
|
|
|
pub struct RlpIterator<'a> {
|
|
|
|
rlp: &'a Rlp<'a>,
|
|
|
|
index: usize
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <'a> IntoIterator for &'a Rlp<'a> {
|
|
|
|
type Item = Rlp<'a>;
|
|
|
|
type IntoIter = RlpIterator<'a>;
|
|
|
|
|
|
|
|
fn into_iter(self) -> Self::IntoIter {
|
|
|
|
RlpIterator { rlp: self, index: 0 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <'a> Iterator for RlpIterator<'a> {
|
|
|
|
type Item = Rlp<'a>;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Rlp<'a>> {
|
|
|
|
let index = self.index;
|
|
|
|
let result = self.rlp.at(index).ok();
|
|
|
|
self.index += 1;
|
|
|
|
result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 02:32:50 +01:00
|
|
|
/// shortcut function to decode a Rlp `&[u8]` into an object
|
|
|
|
pub fn decode<T>(bytes: &[u8]) -> Result<T, DecoderError> where T: Decodable {
|
|
|
|
let rlp = Rlp::new(bytes);
|
|
|
|
T::decode(&rlp)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Decodable: Sized {
|
|
|
|
fn decode(rlp: &Rlp) -> Result<Self, DecoderError>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <T> Decodable for T where T: FromBytes {
|
|
|
|
fn decode(rlp: &Rlp) -> Result<Self, DecoderError> {
|
|
|
|
match rlp.is_value() {
|
|
|
|
true => BasicDecoder::read_value(rlp.bytes),
|
|
|
|
false => Err(DecoderError::RlpExpectedToBeValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <T> Decodable for Vec<T> where T: Decodable {
|
|
|
|
fn decode(rlp: &Rlp) -> Result<Self, DecoderError> {
|
|
|
|
match rlp.is_list() {
|
|
|
|
true => rlp.iter().map(|rlp| T::decode(&rlp)).collect(),
|
2015-11-26 12:21:17 +01:00
|
|
|
false => Err(DecoderError::RlpExpectedToBeList)
|
2015-11-26 02:32:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 02:50:21 +01:00
|
|
|
pub trait Decoder {
|
2015-11-26 02:32:50 +01:00
|
|
|
fn read_value<T>(bytes: &[u8]) -> Result<T, DecoderError> where T: FromBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BasicDecoder;
|
|
|
|
|
|
|
|
impl Decoder for BasicDecoder {
|
|
|
|
fn read_value<T>(bytes: &[u8]) -> Result<T, DecoderError> where T: FromBytes {
|
|
|
|
match bytes.first().map(|&x| x) {
|
|
|
|
// rlp is too short
|
|
|
|
None => Err(DecoderError::RlpIsTooShort),
|
|
|
|
// single byt value
|
|
|
|
Some(l @ 0...0x7f) => Ok(try!(T::from_bytes(&[l]))),
|
|
|
|
// 0-55 bytes
|
|
|
|
Some(l @ 0x80...0xb7) => Ok(try!(T::from_bytes(&bytes[1..(1 + l as usize - 0x80)]))),
|
|
|
|
// longer than 55 bytes
|
|
|
|
Some(l @ 0xb8...0xbf) => {
|
|
|
|
let len_of_len = l as usize - 0xb7;
|
|
|
|
let begin_of_value = 1 as usize + len_of_len;
|
|
|
|
let len = try!(usize::from_bytes(&bytes[1..begin_of_value]));
|
|
|
|
Ok(try!(T::from_bytes(&bytes[begin_of_value..begin_of_value + len])))
|
|
|
|
},
|
|
|
|
_ => Err(DecoderError::BadRlp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 23:40:01 +01:00
|
|
|
#[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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 19:36:27 +01:00
|
|
|
/// container that should be used to encode rlp
|
2015-11-25 17:54:50 +01:00
|
|
|
pub struct RlpStream {
|
2015-11-25 23:40:01 +01:00
|
|
|
unfinished_lists: LinkedList<ListInfo>,
|
2015-11-25 22:29:21 +01:00
|
|
|
encoder: BasicEncoder
|
2015-11-25 17:54:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl RlpStream {
|
2015-11-25 19:36:27 +01:00
|
|
|
/// create new container for values appended one after another,
|
2015-11-25 21:58:15 +01:00
|
|
|
/// but not being part of the same list
|
2015-11-25 19:36:27 +01:00
|
|
|
pub fn new() -> RlpStream {
|
2015-11-25 17:54:50 +01:00
|
|
|
RlpStream {
|
2015-11-25 23:40:01 +01:00
|
|
|
unfinished_lists: LinkedList::new(),
|
2015-11-25 22:29:21 +01:00
|
|
|
encoder: BasicEncoder::new()
|
2015-11-25 17:54:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 23:40:01 +01:00
|
|
|
/// create new container for list of size `max_len`
|
|
|
|
pub fn new_list(len: usize) -> RlpStream {
|
|
|
|
let mut stream = RlpStream::new();
|
|
|
|
stream.append_list(len);
|
|
|
|
stream
|
|
|
|
}
|
|
|
|
|
2015-11-25 17:54:50 +01:00
|
|
|
/// apends value to the end of stream, chainable
|
|
|
|
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
|
2015-11-25 22:29:21 +01:00
|
|
|
object.encode(&mut self.encoder);
|
2015-11-25 22:13:57 +01:00
|
|
|
|
2015-11-25 21:58:15 +01:00
|
|
|
// if list is finished, prepend the length
|
2015-11-25 23:40:01 +01:00
|
|
|
self.try_to_finish();
|
|
|
|
|
|
|
|
// return chainable self
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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
|
2015-11-26 01:22:33 +01:00
|
|
|
self.encoder.bytes.push(0xc0u8);
|
2015-11-25 23:40:01 +01:00
|
|
|
self.try_to_finish();
|
|
|
|
},
|
|
|
|
_ => self.unfinished_lists.push_back(ListInfo::new(position, len))
|
2015-11-25 17:54:50 +01:00
|
|
|
}
|
|
|
|
|
2015-11-25 23:40:01 +01:00
|
|
|
// return chainable self
|
2015-11-25 17:54:50 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2015-11-25 19:36:27 +01:00
|
|
|
/// return true if stream is ready
|
2015-11-25 17:54:50 +01:00
|
|
|
pub fn is_finished(&self) -> bool {
|
2015-11-25 23:40:01 +01:00
|
|
|
self.unfinished_lists.back().is_none()
|
2015-11-25 17:54:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// streams out encoded bytes
|
|
|
|
pub fn out(self) -> Result<Vec<u8>, EncoderError> {
|
2015-11-25 22:16:50 +01:00
|
|
|
match self.is_finished() {
|
2015-11-25 22:29:21 +01:00
|
|
|
true => Ok(self.encoder.out()),
|
2015-11-25 22:16:50 +01:00
|
|
|
false => Err(EncoderError::StreamIsUnfinished)
|
2015-11-25 17:54:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 23:40:01 +01:00
|
|
|
/// try to finish lists
|
|
|
|
fn try_to_finish(&mut self) -> () {
|
|
|
|
let should_finish = match self.unfinished_lists.back_mut() {
|
|
|
|
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();
|
|
|
|
}
|
2015-11-25 17:54:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 12:46:27 +01:00
|
|
|
/// shortcut function to encode a `T: Encodable` into a Rlp `Vec<u8>`
|
2015-11-25 22:29:21 +01:00
|
|
|
pub fn encode<E>(object: &E) -> Vec<u8> where E: Encodable {
|
2015-11-25 21:04:43 +01:00
|
|
|
let mut encoder = BasicEncoder::new();
|
2015-11-25 22:13:57 +01:00
|
|
|
object.encode(&mut encoder);
|
|
|
|
encoder.out()
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum EncoderError {
|
2015-11-25 17:54:50 +01:00
|
|
|
StreamIsUnfinished
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl StdError for EncoderError {
|
|
|
|
fn description(&self) -> &str { "encoder error" }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for EncoderError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
fmt::Debug::fmt(&self, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Encodable {
|
2015-11-25 22:13:57 +01:00
|
|
|
fn encode<E>(&self, encoder: &mut E) -> () where E: Encoder;
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Encoder {
|
2015-11-25 22:13:57 +01:00
|
|
|
fn emit_value(&mut self, bytes: &[u8]) -> ();
|
|
|
|
fn emit_list<F>(&mut self, f: F) -> () where F: FnOnce(&mut Self) -> ();
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl <T> Encodable for T where T: ToBytes {
|
2015-11-25 22:13:57 +01:00
|
|
|
fn encode<E>(&self, encoder: &mut E) -> () where E: Encoder {
|
2015-11-25 21:14:53 +01:00
|
|
|
encoder.emit_value(&self.to_bytes())
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <'a, T> Encodable for &'a [T] where T: Encodable + 'a {
|
2015-11-25 22:13:57 +01:00
|
|
|
fn encode<E>(&self, encoder: &mut E) -> () where E: Encoder {
|
2015-11-25 21:58:15 +01:00
|
|
|
encoder.emit_list(|e| {
|
|
|
|
// insert all list elements
|
2015-11-25 21:14:53 +01:00
|
|
|
for el in self.iter() {
|
2015-11-25 22:13:57 +01:00
|
|
|
el.encode(e);
|
2015-11-25 21:14:53 +01:00
|
|
|
}
|
|
|
|
})
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <T> Encodable for Vec<T> where T: Encodable {
|
2015-11-25 22:13:57 +01:00
|
|
|
fn encode<E>(&self, encoder: &mut E) -> () where E: Encoder {
|
2015-11-25 12:46:27 +01:00
|
|
|
let r: &[T] = self.as_ref();
|
|
|
|
r.encode(encoder)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 21:04:43 +01:00
|
|
|
struct BasicEncoder {
|
|
|
|
bytes: Vec<u8>
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
|
2015-11-25 21:04:43 +01:00
|
|
|
impl BasicEncoder {
|
|
|
|
fn new() -> BasicEncoder {
|
|
|
|
BasicEncoder { bytes: vec![] }
|
|
|
|
}
|
|
|
|
|
2015-11-25 21:58:15 +01:00
|
|
|
/// inserts list prefix at given position
|
2015-11-26 00:09:09 +01:00
|
|
|
/// TODO: optimise it, so it does not copy an array
|
2015-11-25 22:13:57 +01:00
|
|
|
fn insert_list_len_at_pos(&mut self, len: usize, pos: usize) -> () {
|
2015-11-25 21:04:43 +01:00
|
|
|
// new bytes
|
|
|
|
let mut res: Vec<u8> = vec![];
|
|
|
|
{
|
|
|
|
let (before_slice, after_slice) = self.bytes.split_at(pos);
|
2015-11-25 22:13:57 +01:00
|
|
|
res.extend(before_slice);
|
2015-11-25 21:04:43 +01:00
|
|
|
|
|
|
|
match len {
|
2015-11-25 22:13:57 +01:00
|
|
|
0...55 => res.push(0xc0u8 + len as u8),
|
2015-11-25 21:04:43 +01:00
|
|
|
_ => {
|
2015-11-25 22:13:57 +01:00
|
|
|
res.push(0x7fu8 + len.to_bytes_len() as u8);
|
|
|
|
res.extend(len.to_bytes());
|
2015-11-25 21:04:43 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-11-25 22:13:57 +01:00
|
|
|
res.extend(after_slice);
|
2015-11-25 21:04:43 +01:00
|
|
|
}
|
|
|
|
self.bytes = res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// get encoded value
|
|
|
|
fn out(self) -> Vec<u8> {
|
|
|
|
self.bytes
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 21:04:43 +01:00
|
|
|
impl Encoder for BasicEncoder {
|
2015-11-25 22:13:57 +01:00
|
|
|
fn emit_value(&mut self, bytes: &[u8]) -> () {
|
2015-11-25 12:46:27 +01:00
|
|
|
match bytes.len() {
|
|
|
|
// just 0
|
2015-11-25 22:13:57 +01:00
|
|
|
0 => self.bytes.push(0x80u8),
|
2015-11-25 12:46:27 +01:00
|
|
|
// byte is its own encoding
|
2015-11-25 22:13:57 +01:00
|
|
|
1 if bytes[0] < 0x80 => self.bytes.extend(bytes),
|
2015-11-25 12:46:27 +01:00
|
|
|
// (prefix + length), followed by the string
|
|
|
|
len @ 1 ... 55 => {
|
2015-11-25 22:13:57 +01:00
|
|
|
self.bytes.push(0x80u8 + len as u8);
|
|
|
|
self.bytes.extend(bytes);
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
// (prefix + length of length), followed by the length, followd by the string
|
|
|
|
len => {
|
2015-11-25 22:13:57 +01:00
|
|
|
self.bytes.push(0xb7 + len.to_bytes_len() as u8);
|
|
|
|
self.bytes.extend(len.to_bytes());
|
|
|
|
self.bytes.extend(bytes);
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 22:13:57 +01:00
|
|
|
fn emit_list<F>(&mut self, f: F) -> () where F: FnOnce(&mut Self) -> () {
|
2015-11-26 01:26:32 +01:00
|
|
|
// get len before inserting a list
|
2015-11-25 21:04:43 +01:00
|
|
|
let before_len = self.bytes.len();
|
|
|
|
|
2015-11-25 21:58:15 +01:00
|
|
|
// insert all list elements
|
2015-11-25 22:13:57 +01:00
|
|
|
f(self);
|
2015-11-25 12:46:27 +01:00
|
|
|
|
2015-11-26 01:26:32 +01:00
|
|
|
// get len after inserting a list
|
2015-11-25 21:04:43 +01:00
|
|
|
let after_len = self.bytes.len();
|
|
|
|
|
2015-11-25 21:58:15 +01:00
|
|
|
// diff is list len
|
|
|
|
let list_len = after_len - before_len;
|
2015-11-25 22:13:57 +01:00
|
|
|
self.insert_list_len_at_pos(list_len, before_len);
|
2015-11-25 12:46:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 02:53:35 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2015-11-26 02:32:50 +01:00
|
|
|
use std::{fmt, cmp};
|
2015-11-26 15:00:17 +01:00
|
|
|
use std::str::FromStr;
|
2015-11-25 02:53:35 +01:00
|
|
|
use rlp;
|
2015-11-26 02:32:50 +01:00
|
|
|
use rlp::{Rlp, RlpStream, Decodable};
|
2015-11-26 15:00:17 +01:00
|
|
|
use uint::U256;
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rlp_at() {
|
|
|
|
let data = vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g'];
|
|
|
|
{
|
|
|
|
let rlp = Rlp::new(&data);
|
2015-11-25 21:58:15 +01:00
|
|
|
assert!(rlp.is_list());
|
2015-11-26 02:32:50 +01:00
|
|
|
let animals = <Vec<String> as rlp::Decodable>::decode(&rlp).unwrap();
|
|
|
|
assert_eq!(animals, vec!["cat".to_string(), "dog".to_string()]);
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
let cat = rlp.at(0).unwrap();
|
|
|
|
assert!(cat.is_value());
|
|
|
|
assert_eq!(cat.bytes, &[0x83, b'c', b'a', b't']);
|
2015-11-26 02:32:50 +01:00
|
|
|
assert_eq!(String::decode(&cat).unwrap(), "cat".to_string());
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
let dog = rlp.at(1).unwrap();
|
|
|
|
assert!(dog.is_value());
|
|
|
|
assert_eq!(dog.bytes, &[0x83, b'd', b'o', b'g']);
|
2015-11-26 02:32:50 +01:00
|
|
|
assert_eq!(String::decode(&dog).unwrap(), "dog".to_string());
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
let cat_again = rlp.at(0).unwrap();
|
|
|
|
assert!(cat_again.is_value());
|
|
|
|
assert_eq!(cat_again.bytes, &[0x83, b'c', b'a', b't']);
|
2015-11-26 02:32:50 +01:00
|
|
|
assert_eq!(String::decode(&cat_again).unwrap(), "cat".to_string());
|
2015-11-25 02:53:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rlp_at_err() {
|
|
|
|
let data = vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o'];
|
|
|
|
{
|
|
|
|
let rlp = Rlp::new(&data);
|
2015-11-25 21:58:15 +01:00
|
|
|
assert!(rlp.is_list());
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
let cat_err = rlp.at(0).unwrap_err();
|
|
|
|
assert_eq!(cat_err, rlp::DecoderError::RlpIsTooShort);
|
|
|
|
|
|
|
|
let dog_err = rlp.at(1).unwrap_err();
|
|
|
|
assert_eq!(dog_err, rlp::DecoderError::RlpIsTooShort);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rlp_iter() {
|
|
|
|
let data = vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g'];
|
|
|
|
{
|
|
|
|
let rlp = Rlp::new(&data);
|
|
|
|
let mut iter = rlp.iter();
|
|
|
|
|
|
|
|
let cat = iter.next().unwrap();
|
|
|
|
assert!(cat.is_value());
|
|
|
|
assert_eq!(cat.bytes, &[0x83, b'c', b'a', b't']);
|
|
|
|
|
|
|
|
let dog = iter.next().unwrap();
|
|
|
|
assert!(dog.is_value());
|
|
|
|
assert_eq!(dog.bytes, &[0x83, b'd', b'o', b'g']);
|
|
|
|
|
2015-11-25 03:01:47 +01:00
|
|
|
let none = iter.next();
|
|
|
|
assert!(none.is_none());
|
|
|
|
|
2015-11-25 02:53:35 +01:00
|
|
|
let cat_again = rlp.at(0).unwrap();
|
|
|
|
assert!(cat_again.is_value());
|
|
|
|
assert_eq!(cat_again.bytes, &[0x83, b'c', b'a', b't']);
|
|
|
|
}
|
|
|
|
}
|
2015-11-25 13:13:26 +01:00
|
|
|
|
|
|
|
struct ETestPair<T>(T, Vec<u8>) where T: rlp::Encodable;
|
|
|
|
|
|
|
|
fn run_encode_tests<T>(tests: Vec<ETestPair<T>>) where T: rlp::Encodable {
|
|
|
|
for t in &tests {
|
2015-11-25 22:13:57 +01:00
|
|
|
let res = rlp::encode(&t.0);
|
2015-11-25 13:13:26 +01:00
|
|
|
assert_eq!(res, &t.1[..]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_u8() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(0u8, vec![0x80u8]),
|
|
|
|
ETestPair(15, vec![15]),
|
|
|
|
ETestPair(55, vec![55]),
|
|
|
|
ETestPair(56, vec![56]),
|
|
|
|
ETestPair(0x7f, vec![0x7f]),
|
|
|
|
ETestPair(0x80, vec![0x81, 0x80]),
|
|
|
|
ETestPair(0xff, vec![0x81, 0xff]),
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_u16() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(0u16, vec![0x80u8]),
|
|
|
|
ETestPair(0x100, vec![0x82, 0x01, 0x00]),
|
|
|
|
ETestPair(0xffff, vec![0x82, 0xff, 0xff]),
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_u32() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(0u32, vec![0x80u8]),
|
|
|
|
ETestPair(0x10000, vec![0x83, 0x01, 0x00, 0x00]),
|
|
|
|
ETestPair(0xffffff, vec![0x83, 0xff, 0xff, 0xff]),
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_u64() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(0u64, vec![0x80u8]),
|
|
|
|
ETestPair(0x1000000, vec![0x84, 0x01, 0x00, 0x00, 0x00]),
|
|
|
|
ETestPair(0xFFFFFFFF, vec![0x84, 0xff, 0xff, 0xff, 0xff]),
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
2015-11-26 15:00:17 +01:00
|
|
|
#[test]
|
|
|
|
fn encode_u256() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(U256::from(0u64), vec![0x80u8]),
|
|
|
|
ETestPair(U256::from(0x1000000u64), vec![0x84, 0x01, 0x00, 0x00, 0x00]),
|
|
|
|
ETestPair(U256::from(0xffffffffu64), vec![0x84, 0xff, 0xff, 0xff, 0xff]),
|
|
|
|
ETestPair(U256::from_str("8090a0b0c0d0e0f00910203040506077000000000000000100000000000012f0").unwrap(),
|
|
|
|
vec![0xa0, 0x80, 0x90, 0xa0, 0xb0, 0xc0, 0xd0, 0xe0, 0xf0,
|
|
|
|
0x09, 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x77,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0xf0])
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
2015-11-25 13:13:26 +01:00
|
|
|
#[test]
|
|
|
|
fn encode_str() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair("cat", vec![0x83, b'c', b'a', b't']),
|
|
|
|
ETestPair("dog", vec![0x83, b'd', b'o', b'g']),
|
|
|
|
ETestPair("Marek", vec![0x85, b'M', b'a', b'r', b'e', b'k']),
|
|
|
|
ETestPair("", vec![0x80]),
|
|
|
|
ETestPair("Lorem ipsum dolor sit amet, consectetur adipisicing elit",
|
|
|
|
vec![0xb8, 0x38, b'L', b'o', b'r', b'e', b'm', b' ', b'i',
|
|
|
|
b'p', b's', b'u', b'm', b' ', b'd', b'o', b'l', b'o', b'r',
|
|
|
|
b' ', b's', b'i', b't', b' ', b'a', b'm', b'e', b't', b',',
|
|
|
|
b' ', b'c', b'o', b'n', b's', b'e', b'c', b't', b'e', b't',
|
|
|
|
b'u', b'r', b' ', b'a', b'd', b'i', b'p', b'i', b's', b'i',
|
|
|
|
b'c', b'i', b'n', b'g', b' ', b'e', b'l', b'i', b't'])
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_vector_u8() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(vec![], vec![0xc0]),
|
|
|
|
ETestPair(vec![15u8], vec![0xc1, 0x0f]),
|
|
|
|
ETestPair(vec![1, 2, 3, 7, 0xff], vec![0xc6, 1, 2, 3, 7, 0x81, 0xff]),
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_vector_u64() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(vec![], vec![0xc0]),
|
|
|
|
ETestPair(vec![15u64], vec![0xc1, 0x0f]),
|
|
|
|
ETestPair(vec![1, 2, 3, 7, 0xff], vec![0xc6, 1, 2, 3, 7, 0x81, 0xff]),
|
|
|
|
ETestPair(vec![0xffffffff, 1, 2, 3, 7, 0xff], vec![0xcb, 0x84, 0xff, 0xff, 0xff, 0xff, 1, 2, 3, 7, 0x81, 0xff]),
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_vector_str() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(vec!["cat", "dog"], vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g'])
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_vector_of_vectors_str() {
|
|
|
|
let tests = vec![
|
|
|
|
ETestPair(vec![vec!["cat"]], vec![0xc5, 0xc4, 0x83, b'c', b'a', b't'])
|
|
|
|
];
|
|
|
|
run_encode_tests(tests);
|
|
|
|
}
|
2015-11-25 17:54:50 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rlp_stream() {
|
2015-11-25 21:58:15 +01:00
|
|
|
let mut stream = RlpStream::new_list(2);
|
2015-11-25 17:54:50 +01:00
|
|
|
stream.append(&"cat").append(&"dog");
|
|
|
|
let out = stream.out().unwrap();
|
|
|
|
assert_eq!(out, vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']);
|
|
|
|
}
|
2015-11-25 23:40:01 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn rlp_stream_list() {
|
|
|
|
let mut stream = RlpStream::new_list(3);
|
|
|
|
stream.append_list(0);
|
2015-11-26 02:32:50 +01:00
|
|
|
stream.append_list(1).append_list(0);
|
2015-11-25 23:40:01 +01:00
|
|
|
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]);
|
|
|
|
}
|
2015-11-26 02:32:50 +01:00
|
|
|
|
|
|
|
struct DTestPair<T>(T, Vec<u8>) where T: rlp::Decodable + fmt::Debug + cmp::Eq;
|
|
|
|
|
|
|
|
fn run_decode_tests<T>(tests: Vec<DTestPair<T>>) where T: rlp::Decodable + fmt::Debug + cmp::Eq {
|
|
|
|
for t in &tests {
|
|
|
|
let res: T = rlp::decode(&t.1).unwrap();
|
|
|
|
assert_eq!(res, t.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_u8() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(0u8, vec![0u8]),
|
|
|
|
DTestPair(15, vec![15]),
|
|
|
|
DTestPair(55, vec![55]),
|
|
|
|
DTestPair(56, vec![56]),
|
|
|
|
DTestPair(0x7f, vec![0x7f]),
|
|
|
|
DTestPair(0x80, vec![0x81, 0x80]),
|
|
|
|
DTestPair(0xff, vec![0x81, 0xff]),
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_u16() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(0u16, vec![0u8]),
|
|
|
|
DTestPair(0x100, vec![0x82, 0x01, 0x00]),
|
|
|
|
DTestPair(0xffff, vec![0x82, 0xff, 0xff]),
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_u32() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(0u32, vec![0u8]),
|
|
|
|
DTestPair(0x10000, vec![0x83, 0x01, 0x00, 0x00]),
|
|
|
|
DTestPair(0xffffff, vec![0x83, 0xff, 0xff, 0xff]),
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_u64() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(0u64, vec![0u8]),
|
|
|
|
DTestPair(0x1000000, vec![0x84, 0x01, 0x00, 0x00, 0x00]),
|
|
|
|
DTestPair(0xFFFFFFFF, vec![0x84, 0xff, 0xff, 0xff, 0xff]),
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
2015-11-26 15:00:17 +01:00
|
|
|
#[test]
|
|
|
|
fn decode_u256() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(U256::from(0u64), vec![0x80u8]),
|
|
|
|
DTestPair(U256::from(0x1000000u64), vec![0x84, 0x01, 0x00, 0x00, 0x00]),
|
|
|
|
DTestPair(U256::from(0xffffffffu64), vec![0x84, 0xff, 0xff, 0xff, 0xff]),
|
|
|
|
DTestPair(U256::from_str("8090a0b0c0d0e0f00910203040506077000000000000000100000000000012f0").unwrap(),
|
|
|
|
vec![0xa0, 0x80, 0x90, 0xa0, 0xb0, 0xc0, 0xd0, 0xe0, 0xf0,
|
|
|
|
0x09, 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x77,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0xf0])
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
2015-11-26 02:32:50 +01:00
|
|
|
#[test]
|
|
|
|
fn decode_str() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair("cat".to_string(), vec![0x83, b'c', b'a', b't']),
|
|
|
|
DTestPair("dog".to_string(), vec![0x83, b'd', b'o', b'g']),
|
|
|
|
DTestPair("Marek".to_string(), vec![0x85, b'M', b'a', b'r', b'e', b'k']),
|
|
|
|
DTestPair("".to_string(), vec![0x80]),
|
|
|
|
DTestPair("Lorem ipsum dolor sit amet, consectetur adipisicing elit".to_string(),
|
|
|
|
vec![0xb8, 0x38, b'L', b'o', b'r', b'e', b'm', b' ', b'i',
|
|
|
|
b'p', b's', b'u', b'm', b' ', b'd', b'o', b'l', b'o', b'r',
|
|
|
|
b' ', b's', b'i', b't', b' ', b'a', b'm', b'e', b't', b',',
|
|
|
|
b' ', b'c', b'o', b'n', b's', b'e', b'c', b't', b'e', b't',
|
|
|
|
b'u', b'r', b' ', b'a', b'd', b'i', b'p', b'i', b's', b'i',
|
|
|
|
b'c', b'i', b'n', b'g', b' ', b'e', b'l', b'i', b't'])
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_vector_u8() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(vec![] as Vec<u8>, vec![0xc0]),
|
|
|
|
DTestPair(vec![15u8], vec![0xc1, 0x0f]),
|
|
|
|
DTestPair(vec![1u8, 2, 3, 7, 0xff], vec![0xc6, 1, 2, 3, 7, 0x81, 0xff]),
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_vector_u64() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(vec![], vec![0xc0]),
|
|
|
|
DTestPair(vec![15u64], vec![0xc1, 0x0f]),
|
|
|
|
DTestPair(vec![1, 2, 3, 7, 0xff], vec![0xc6, 1, 2, 3, 7, 0x81, 0xff]),
|
|
|
|
DTestPair(vec![0xffffffff, 1, 2, 3, 7, 0xff], vec![0xcb, 0x84, 0xff, 0xff, 0xff, 0xff, 1, 2, 3, 7, 0x81, 0xff]),
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_vector_str() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(vec!["cat".to_string(), "dog".to_string()], vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g'])
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn decode_vector_of_vectors_str() {
|
|
|
|
let tests = vec![
|
|
|
|
DTestPair(vec![vec!["cat".to_string()]], vec![0xc5, 0xc4, 0x83, b'c', b'a', b't'])
|
|
|
|
];
|
|
|
|
run_decode_tests(tests);
|
|
|
|
}
|
2015-11-25 02:53:35 +01:00
|
|
|
}
|
|
|
|
|