use std::{
error::Error,
fmt::{self, Display, Formatter},
str::FromStr,
};
use yasna::models::ObjectIdentifier;
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct ObjectIdent(pub(crate) ObjectIdentifier);
impl ObjectIdent {
pub fn new(components: Vec<u64>) -> Self {
Self(ObjectIdentifier::new(components))
}
pub fn from_slice(components: &[u64]) -> Self {
Self(ObjectIdentifier::from_slice(components))
}
pub fn components(&self) -> &[u64] {
self.0.components()
}
}
impl Display for ObjectIdent {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
self.0.fmt(formatter)
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct ParseOidError;
impl Error for ParseOidError {}
impl Display for ParseOidError {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
"failed to parse OID".fmt(formatter)
}
}
impl FromStr for ObjectIdent {
type Err = ParseOidError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let result = ObjectIdentifier::from_str(s);
match result {
Ok(oid) => {
if oid.components().len() < 2 {
Err(ParseOidError)
} else {
Ok(Self(oid))
}
}
Err(_) => Err(ParseOidError),
}
}
}
impl From<Vec<u64>> for ObjectIdent {
fn from(components: Vec<u64>) -> Self {
Self::new(components)
}
}