1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! The purpose of this crate is to extend the `UpperHex` and `LowerHex`
//! traits to slices, as well as the integers it is currently implemented for.
//!
//! # Examples
//!
//! ```rust
//! extern crate hex_slice;
//! use hex_slice::AsHex;
//!
//! fn main() {
//!     let foo = vec![0u32, 1 ,2 ,3];
//!     println!("{:x}", foo.as_hex());
//! }
//! ```


use std::fmt;

pub struct Hex<'a, T: 'a>(&'a [T]);

pub trait AsHex {
    type Item;
    fn as_hex<'a>(&'a self) -> Hex<'a, Self::Item>;
}

impl<'a, T> Hex<'a, T> {
    pub fn hex(slice: &'a [T]) -> Hex<'a, T> {
        Hex(slice)
    }
}

impl<'a, T: fmt::LowerHex> fmt::LowerHex for Hex<'a, T> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        try!(write!(f, "["));
        for (i, val) in self.0.iter().enumerate() {
            try!(write!(f, "{}{:x}", if i > 0 { " " } else { "" }, val ))
        }
        try!(write!(f, "]"));
        Ok(())
    }
}

impl<'a, T: fmt::UpperHex> fmt::UpperHex for Hex<'a, T> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        try!(write!(f, "["));
        for (i, val) in self.0.iter().enumerate() {
            try!(write!(f, "{}{:X}", if i > 0 { " " } else { "" }, val ))
        }
        try!(write!(f, "]"));
        Ok(())
    }
}

impl<T> AsHex for [T] {
    type Item = T;
    fn as_hex<'a>(&'a self) -> Hex<'a, Self::Item> {
        Hex::hex(self)
    }
}