use std::hash::{Hash, Hasher};
use std::fmt;
#[derive(Clone)]
pub struct KeyServerPreferences{
no_modify: bool,
unknown: Box<[u8]>,
pad_to: usize,
}
impl Default for KeyServerPreferences {
fn default() -> Self {
KeyServerPreferences::new(&[0])
}
}
impl fmt::Debug for KeyServerPreferences {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if self.no_modify() {
f.write_str("no modify")?;
}
Ok(())
}
}
impl PartialEq for KeyServerPreferences {
fn eq(&self, other: &Self) -> bool {
self.no_modify == other.no_modify
}
}
impl Eq for KeyServerPreferences {}
impl Hash for KeyServerPreferences {
fn hash<H: Hasher>(&self, state: &mut H) {
self.no_modify.hash(state);
}
}
impl KeyServerPreferences {
pub fn new<B: AsRef<[u8]>>(bits: B) -> Self {
let bits = bits.as_ref();
let mut pad_to = 0;
let no_mod = bits.get(0)
.map(|x| x & KEYSERVER_PREFERENCE_NO_MODIFY != 0).unwrap_or(false);
let unk = if bits.is_empty() {
Box::default()
} else {
let mut cpy = Vec::from(bits);
cpy[0] &= KEYSERVER_PREFERENCE_NO_MODIFY ^ 0xff;
pad_to = crate::types::bitfield_remove_padding(&mut cpy);
cpy.into_boxed_slice()
};
KeyServerPreferences{
no_modify: no_mod, unknown: unk, pad_to,
}
}
pub(crate) fn to_vec(&self) -> Vec<u8> {
let mut ret = if self.unknown.is_empty() {
vec![0]
} else {
self.unknown.clone().into()
};
if self.no_modify { ret[0] |= KEYSERVER_PREFERENCE_NO_MODIFY; }
if ret.len() == 1 && ret[0] == 0 {
ret.pop();
}
for _ in ret.len()..self.pad_to {
ret.push(0);
}
ret
}
pub fn no_modify(&self) -> bool {
!self.no_modify
}
pub fn set_no_modify(mut self, v: bool) -> Self {
self.no_modify = v;
self
}
}
const KEYSERVER_PREFERENCE_NO_MODIFY: u8 = 0x80;
#[cfg(test)]
mod tests {
use super::*;
quickcheck! {
fn roundtrip(raw: Vec<u8>) -> bool {
let val = KeyServerPreferences::new(&raw);
assert_eq!(raw, val.to_vec());
let mut val_without_padding = val.clone();
val_without_padding.pad_to = val.unknown.len();
assert_eq!(val, val_without_padding);
true
}
}
}