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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! Object ID (OID) representation

use std::fmt;
use std::slice;

use std::str::FromStr;
use std::num::ParseIntError;

/// Object ID (OID) representation
#[derive(PartialEq,Eq,Clone)]
pub struct Oid (Vec<u64>);

impl Oid {
    /// Build an OID from an array of `u64` integers
    pub fn from(s: &[u64]) -> Oid {
        Oid(s.to_owned())
    }

    /// Convert the OID to a string representation.
    /// The string contains the IDs separated by dots, for ex: "1.2.840.113549.1.1.5"
    pub fn to_string(&self) -> String {
        if self.0.is_empty() { return String::new(); }

        let mut s = self.0[0].to_string();

        for it in self.0.iter().skip(1) {
            s.push('.');
            s = s + &it.to_string();
        }

        s
    }

    /// Return an iterator on every ID
    pub fn iter(&self) -> slice::Iter<u64> {
        self.0.iter()
    }
}

impl fmt::Display for Oid {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str(&self.to_string())
    }
}

impl fmt::Debug for Oid {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str(&format!("OID({})", self.to_string()))
    }
}

impl FromStr for Oid {
    type Err = ParseIntError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let v : Result<Vec<_>,ParseIntError> =s.split(".").map(|c| {
                          c.parse::<u64>()
        }).collect();
        v.map(|v| Oid(v))
    }
}




#[cfg(test)]
mod tests {
    use oid::Oid;
    use std::str::FromStr;

#[test]
fn test_oid_fmt() {
    let oid = Oid::from(&[1, 2, 840, 113549, 1, 1, 5]);
    assert_eq!(format!("{}",oid), "1.2.840.113549.1.1.5".to_owned());
    assert_eq!(format!("{:?}",oid), "OID(1.2.840.113549.1.1.5)".to_owned());
}

#[test]
fn test_oid_from_str() {
    let oid_ref = Oid::from(&[1, 2, 840, 113549, 1, 1, 5]);
    let oid = Oid::from_str("1.2.840.113549.1.1.5").unwrap();
    assert_eq!(oid_ref, oid);
}

}