2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-11-28 03:58:37 +01:00
|
|
|
//! Unified interfaces for bytes operations on basic types
|
2015-12-26 15:48:41 +01:00
|
|
|
//!
|
2015-11-25 02:53:35 +01:00
|
|
|
//! # Examples
|
2015-11-28 03:58:37 +01:00
|
|
|
//! ```rust
|
|
|
|
//! extern crate ethcore_util as util;
|
2015-12-26 15:48:41 +01:00
|
|
|
//!
|
2015-11-28 03:58:37 +01:00
|
|
|
//! fn bytes_convertable() {
|
|
|
|
//! use util::bytes::BytesConvertable;
|
|
|
|
//!
|
|
|
|
//! let arr = [0; 5];
|
2016-07-06 11:23:29 +02:00
|
|
|
//! let slice: &[u8] = arr.as_slice();
|
2015-11-28 03:58:37 +01:00
|
|
|
//! }
|
2015-12-26 15:48:41 +01:00
|
|
|
//!
|
2015-11-28 03:58:37 +01:00
|
|
|
//! fn main() {
|
|
|
|
//! bytes_convertable();
|
|
|
|
//! }
|
|
|
|
//! ```
|
2015-11-25 02:53:35 +01:00
|
|
|
|
|
|
|
use std::fmt;
|
2016-01-08 11:02:32 +01:00
|
|
|
use std::slice;
|
2016-01-13 15:14:24 +01:00
|
|
|
use std::ops::{Deref, DerefMut};
|
2016-01-27 12:14:57 +01:00
|
|
|
|
2016-08-03 16:31:13 +02:00
|
|
|
/// Slice pretty print helper
|
2015-12-01 18:25:18 +01:00
|
|
|
pub struct PrettySlice<'a> (&'a [u8]);
|
|
|
|
|
|
|
|
impl<'a> fmt::Debug for PrettySlice<'a> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
for i in 0..self.0.len() {
|
2015-12-01 19:09:48 +01:00
|
|
|
match i > 0 {
|
|
|
|
true => { try!(write!(f, "·{:02x}", self.0[i])); },
|
|
|
|
false => { try!(write!(f, "{:02x}", self.0[i])); },
|
|
|
|
}
|
2015-12-01 18:25:18 +01:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-17 12:43:50 +01:00
|
|
|
impl<'a> fmt::Display for PrettySlice<'a> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
for i in 0..self.0.len() {
|
|
|
|
try!(write!(f, "{:02x}", self.0[i]));
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-03 13:20:32 +01:00
|
|
|
/// Trait to allow a type to be pretty-printed in `format!`, where unoverridable
|
|
|
|
/// defaults cannot otherwise be avoided.
|
2015-12-01 18:25:18 +01:00
|
|
|
pub trait ToPretty {
|
2016-02-03 13:20:32 +01:00
|
|
|
/// Convert a type into a derivative form in order to make `format!` print it prettily.
|
2015-12-01 18:25:18 +01:00
|
|
|
fn pretty(&self) -> PrettySlice;
|
2016-02-03 13:20:32 +01:00
|
|
|
/// Express the object as a hex string.
|
2015-12-17 12:43:50 +01:00
|
|
|
fn to_hex(&self) -> String {
|
|
|
|
format!("{}", self.pretty())
|
|
|
|
}
|
2015-12-01 18:25:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ToPretty for &'a [u8] {
|
|
|
|
fn pretty(&self) -> PrettySlice {
|
|
|
|
PrettySlice(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ToPretty for &'a Bytes {
|
|
|
|
fn pretty(&self) -> PrettySlice {
|
2016-07-06 11:23:29 +02:00
|
|
|
PrettySlice(self.as_slice())
|
2015-12-01 18:25:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl ToPretty for Bytes {
|
|
|
|
fn pretty(&self) -> PrettySlice {
|
2016-07-06 11:23:29 +02:00
|
|
|
PrettySlice(self.as_slice())
|
2015-12-01 18:25:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-03 16:43:48 +01:00
|
|
|
/// A byte collection reference that can either be a slice or a vector
|
2016-01-13 15:14:24 +01:00
|
|
|
pub enum BytesRef<'a> {
|
2016-02-03 16:43:48 +01:00
|
|
|
/// This is a reference to a vector
|
2016-01-13 15:14:24 +01:00
|
|
|
Flexible(&'a mut Bytes),
|
2016-02-03 16:43:48 +01:00
|
|
|
/// This is a reference to a slice
|
2016-01-13 15:14:24 +01:00
|
|
|
Fixed(&'a mut [u8])
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Deref for BytesRef<'a> {
|
|
|
|
type Target = [u8];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[u8] {
|
2016-01-19 12:14:29 +01:00
|
|
|
match *self {
|
|
|
|
BytesRef::Flexible(ref bytes) => bytes,
|
2016-02-19 11:31:40 +01:00
|
|
|
BytesRef::Fixed(ref bytes) => bytes,
|
2016-01-13 15:14:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <'a> DerefMut for BytesRef<'a> {
|
|
|
|
fn deref_mut(&mut self) -> &mut [u8] {
|
2016-01-19 12:14:29 +01:00
|
|
|
match *self {
|
|
|
|
BytesRef::Flexible(ref mut bytes) => bytes,
|
2016-02-19 11:31:40 +01:00
|
|
|
BytesRef::Fixed(ref mut bytes) => bytes,
|
2016-01-13 15:14:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-28 03:58:37 +01:00
|
|
|
/// Vector of bytes
|
2015-11-28 00:14:40 +01:00
|
|
|
pub type Bytes = Vec<u8>;
|
|
|
|
|
2015-11-28 03:58:37 +01:00
|
|
|
/// Slice of bytes to underlying memory
|
2015-11-27 17:54:33 +01:00
|
|
|
pub trait BytesConvertable {
|
2016-02-03 13:20:32 +01:00
|
|
|
/// Get the underlying byte-wise representation of the value.
|
2016-07-06 11:23:29 +02:00
|
|
|
fn as_slice(&self) -> &[u8];
|
2016-02-03 13:20:32 +01:00
|
|
|
/// Get a copy of the underlying byte-wise representation.
|
2016-01-05 19:05:51 +01:00
|
|
|
fn to_bytes(&self) -> Bytes { self.as_slice().to_vec() }
|
2015-11-27 17:54:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-15 11:54:38 +01:00
|
|
|
impl<T> BytesConvertable for T where T: AsRef<[u8]> {
|
2016-07-06 11:23:29 +02:00
|
|
|
fn as_slice(&self) -> &[u8] { self.as_ref() }
|
2015-11-27 18:15:44 +01:00
|
|
|
}
|
|
|
|
|
2015-11-27 17:54:33 +01:00
|
|
|
#[test]
|
|
|
|
fn bytes_convertable() {
|
2016-07-06 11:23:29 +02:00
|
|
|
assert_eq!(vec![0x12u8, 0x34].as_slice(), &[0x12u8, 0x34]);
|
2016-03-14 10:53:37 +01:00
|
|
|
assert!([0u8; 0].as_slice().is_empty());
|
2015-11-27 17:54:33 +01:00
|
|
|
}
|
|
|
|
|
2016-01-07 23:59:50 +01:00
|
|
|
/// Simple trait to allow for raw population of a Sized object from a byte slice.
|
|
|
|
pub trait Populatable {
|
2016-01-08 11:02:32 +01:00
|
|
|
/// Copies a bunch of bytes `d` to `self`, overwriting as necessary.
|
|
|
|
///
|
|
|
|
/// If `d` is smaller, zero-out the remaining bytes.
|
2016-01-08 11:43:11 +01:00
|
|
|
fn populate_raw(&mut self, d: &[u8]) {
|
|
|
|
let mut s = self.as_slice_mut();
|
|
|
|
for i in 0..s.len() {
|
|
|
|
s[i] = if i < d.len() {d[i]} else {0};
|
|
|
|
}
|
|
|
|
}
|
2016-01-08 11:02:32 +01:00
|
|
|
|
|
|
|
/// Copies a bunch of bytes `d` to `self`, overwriting as necessary.
|
|
|
|
///
|
|
|
|
/// If `d` is smaller, will leave some bytes untouched.
|
2016-01-08 12:05:38 +01:00
|
|
|
fn copy_raw(&mut self, d: &[u8]) {
|
2016-01-08 11:43:11 +01:00
|
|
|
use std::io::Write;
|
2016-07-26 20:31:25 +02:00
|
|
|
self.as_slice_mut().write(d).unwrap();
|
2016-01-08 11:43:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Copies the raw representation of an object `d` to `self`, overwriting as necessary.
|
|
|
|
///
|
|
|
|
/// If `d` is smaller, zero-out the remaining bytes.
|
|
|
|
fn populate_raw_from(&mut self, d: &BytesConvertable) { self.populate_raw(d.as_slice()); }
|
|
|
|
|
|
|
|
/// Copies the raw representation of an object `d` to `self`, overwriting as necessary.
|
|
|
|
///
|
|
|
|
/// If `d` is smaller, will leave some bytes untouched.
|
2016-01-08 12:05:38 +01:00
|
|
|
fn copy_raw_from(&mut self, d: &BytesConvertable) { self.copy_raw(d.as_slice()); }
|
2016-01-08 11:43:11 +01:00
|
|
|
|
|
|
|
/// Get the raw slice for this object.
|
|
|
|
fn as_slice_mut(&mut self) -> &mut [u8];
|
2016-01-07 23:59:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Populatable for T where T: Sized {
|
2016-01-08 11:43:11 +01:00
|
|
|
fn as_slice_mut(&mut self) -> &mut [u8] {
|
2016-01-07 23:59:50 +01:00
|
|
|
use std::mem;
|
|
|
|
unsafe {
|
|
|
|
slice::from_raw_parts_mut(self as *mut T as *mut u8, mem::size_of::<T>())
|
2016-01-08 11:43:11 +01:00
|
|
|
}
|
2016-01-07 23:59:50 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-08 11:02:32 +01:00
|
|
|
|
2016-01-08 11:43:11 +01:00
|
|
|
impl<T> Populatable for [T] where T: Sized {
|
|
|
|
fn as_slice_mut(&mut self) -> &mut [u8] {
|
2016-01-08 11:02:32 +01:00
|
|
|
use std::mem;
|
2016-01-07 23:59:50 +01:00
|
|
|
unsafe {
|
2016-01-08 11:43:11 +01:00
|
|
|
slice::from_raw_parts_mut(self.as_mut_ptr() as *mut u8, mem::size_of::<T>() * self.len())
|
|
|
|
}
|
2016-01-07 23:59:50 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-08 11:02:32 +01:00
|
|
|
|
|
|
|
#[test]
|
2016-01-08 11:43:11 +01:00
|
|
|
fn fax_raw() {
|
2016-01-08 11:02:32 +01:00
|
|
|
let mut x = [255u8; 4];
|
2016-01-08 12:05:38 +01:00
|
|
|
x.copy_raw(&[1u8; 2][..]);
|
2016-01-08 11:02:32 +01:00
|
|
|
assert_eq!(x, [1u8, 1, 255, 255]);
|
2016-01-08 11:43:11 +01:00
|
|
|
let mut x = [255u8; 4];
|
2016-01-08 12:05:38 +01:00
|
|
|
x.copy_raw(&[1u8; 6][..]);
|
2016-01-08 11:02:32 +01:00
|
|
|
assert_eq!(x, [1u8, 1, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn populate_raw() {
|
|
|
|
let mut x = [255u8; 4];
|
|
|
|
x.populate_raw(&[1u8; 2][..]);
|
|
|
|
assert_eq!(x, [1u8, 1, 0, 0]);
|
2016-01-08 11:43:11 +01:00
|
|
|
let mut x = [255u8; 4];
|
2016-01-08 11:02:32 +01:00
|
|
|
x.populate_raw(&[1u8; 6][..]);
|
|
|
|
assert_eq!(x, [1u8, 1, 1, 1]);
|
2016-01-08 11:43:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn populate_raw_dyn() {
|
|
|
|
let mut x = [255u8; 4];
|
|
|
|
x.populate_raw(&[1u8; 2][..]);
|
|
|
|
assert_eq!(&x[..], [1u8, 1, 0, 0]);
|
|
|
|
let mut x = [255u8; 4];
|
|
|
|
x.populate_raw(&[1u8; 6][..]);
|
|
|
|
assert_eq!(&x[..], [1u8, 1, 1, 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn fax_raw_dyn() {
|
|
|
|
let mut x = [255u8; 4];
|
2016-01-08 12:05:38 +01:00
|
|
|
x.copy_raw(&[1u8; 2][..]);
|
2016-01-08 11:43:11 +01:00
|
|
|
assert_eq!(&x[..], [1u8, 1, 255, 255]);
|
|
|
|
let mut x = [255u8; 4];
|
2016-01-08 12:05:38 +01:00
|
|
|
x.copy_raw(&[1u8; 6][..]);
|
2016-01-08 11:43:11 +01:00
|
|
|
assert_eq!(&x[..], [1u8, 1, 1, 1]);
|
2016-01-08 12:02:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn populate_big_types() {
|
|
|
|
use hash::*;
|
|
|
|
let a = address_from_hex("ffffffffffffffffffffffffffffffffffffffff");
|
|
|
|
let mut h = h256_from_u64(0x69);
|
|
|
|
h.populate_raw_from(&a);
|
|
|
|
assert_eq!(h, h256_from_hex("ffffffffffffffffffffffffffffffffffffffff000000000000000000000000"));
|
|
|
|
let mut h = h256_from_u64(0x69);
|
2016-01-08 12:05:38 +01:00
|
|
|
h.copy_raw_from(&a);
|
2016-01-08 12:02:26 +01:00
|
|
|
assert_eq!(h, h256_from_hex("ffffffffffffffffffffffffffffffffffffffff000000000000000000000069"));
|
2016-01-13 15:14:24 +01:00
|
|
|
}
|