2015-12-08 00:07:07 +01:00
|
|
|
//! Rlp serialization module
|
|
|
|
//!
|
|
|
|
//! Allows encoding, decoding, and view onto rlp-slice
|
|
|
|
//!
|
|
|
|
//!# What should you use when?
|
|
|
|
//!
|
|
|
|
//!### Use `encode` function when:
|
|
|
|
//! * You want to encode something inline.
|
|
|
|
//! * You do not work on big set of data.
|
|
|
|
//! * You want to encode whole data structure at once.
|
|
|
|
//!
|
|
|
|
//!### Use `decode` function when:
|
|
|
|
//! * You want to decode something inline.
|
|
|
|
//! * You do not work on big set of data.
|
|
|
|
//! * You want to decode whole rlp at once.
|
|
|
|
//!
|
|
|
|
//!### Use `RlpStream` when:
|
|
|
|
//! * You want to encode something in portions.
|
|
|
|
//! * You encode a big set of data.
|
|
|
|
//!
|
|
|
|
//!### Use `Rlp` when:
|
|
|
|
//! * You are working on trusted data (not corrupted).
|
|
|
|
//! * You want to get view onto rlp-slice.
|
|
|
|
//! * You don't want to decode whole rlp at once.
|
|
|
|
//!
|
|
|
|
//!### Use `UntrustedRlp` when:
|
|
|
|
//! * You are working on untrusted data (~corrupted).
|
|
|
|
//! * You need to handle data corruption errors.
|
|
|
|
//! * You are working on input data.
|
|
|
|
//! * You want to get view onto rlp-slice.
|
|
|
|
//! * You don't want to decode whole rlp at once.
|
|
|
|
|
2015-12-08 12:59:19 +01:00
|
|
|
pub mod errors;
|
|
|
|
pub mod traits;
|
2015-12-07 16:32:06 +01:00
|
|
|
pub mod rlp;
|
|
|
|
pub mod untrusted_rlp;
|
2015-12-08 00:07:07 +01:00
|
|
|
pub mod rlpstream;
|
2015-12-07 16:32:06 +01:00
|
|
|
|
2015-12-08 12:59:19 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
|
|
|
pub use self::errors::DecoderError;
|
|
|
|
pub use self::traits::{Decoder, Decodable, View, Stream, Encodable, Encoder};
|
2015-12-08 13:02:32 +01:00
|
|
|
pub use self::untrusted_rlp::{UntrustedRlp, UntrustedRlpIterator, PayloadInfo, Prototype};
|
2015-12-08 00:53:28 +01:00
|
|
|
pub use self::rlp::{Rlp, RlpIterator};
|
2015-12-08 12:33:05 +01:00
|
|
|
pub use self::rlpstream::{RlpStream};
|
2015-12-08 00:45:04 +01:00
|
|
|
|
2015-12-08 12:33:05 +01:00
|
|
|
/// Shortcut function to decode trusted rlp
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// extern crate ethcore_util as util;
|
|
|
|
/// use util::rlp::*;
|
|
|
|
///
|
|
|
|
/// fn main () {
|
|
|
|
/// let data = vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g'];
|
|
|
|
/// let animals: Vec<String> = decode(&data);
|
|
|
|
/// assert_eq!(animals, vec!["cat".to_string(), "dog".to_string()]);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-12-08 00:45:04 +01:00
|
|
|
pub fn decode<T>(bytes: &[u8]) -> T where T: Decodable {
|
|
|
|
let rlp = Rlp::new(bytes);
|
|
|
|
rlp.as_val()
|
|
|
|
}
|
2015-12-08 12:33:05 +01:00
|
|
|
|
|
|
|
/// Shortcut function to encode structure into rlp.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// extern crate ethcore_util as util;
|
|
|
|
/// use util::rlp::*;
|
|
|
|
///
|
|
|
|
/// fn main () {
|
|
|
|
/// let animals = vec!["cat", "dog"];
|
|
|
|
/// let out = encode(&animals);
|
|
|
|
/// assert_eq!(out, vec![0xc8, 0x83, b'c', b'a', b't', 0x83, b'd', b'o', b'g']);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-12-08 19:01:37 +01:00
|
|
|
pub fn encode<E>(object: &E) -> Vec<u8> where E: Encodable {
|
2015-12-08 12:33:05 +01:00
|
|
|
let mut stream = RlpStream::new();
|
|
|
|
stream.append(object);
|
|
|
|
stream.out()
|
|
|
|
}
|