2016-06-09 14:49:46 +00:00
|
|
|
use std::collections::BTreeMap;
|
|
|
|
|
|
|
|
use toml::Value;
|
|
|
|
|
|
|
|
use error::RefErrorKind as REK;
|
|
|
|
use result::Result;
|
|
|
|
|
|
|
|
pub struct RefFlags {
|
|
|
|
content_hashing: bool,
|
|
|
|
permission_tracking: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RefFlags {
|
|
|
|
|
|
|
|
/// Read the RefFlags from a TOML document
|
|
|
|
///
|
|
|
|
/// Assumes that the whole TOML tree is passed. So this looks up `ref.flags` to get the flags.
|
|
|
|
/// It assumes that this is a Map with Key = <name of the setting> and Value = boolean.
|
|
|
|
pub fn read(v: &Value) -> Result<RefFlags> {
|
2016-06-09 17:31:12 +00:00
|
|
|
fn get_field(v: &Value, key: &str) -> Result<bool> {
|
|
|
|
match v.lookup(key) {
|
|
|
|
Some(&Value::Boolean(b)) => Ok(b),
|
|
|
|
Some(_) => Err(REK::HeaderTypeError.into()),
|
|
|
|
None => Err(REK::HeaderFieldMissingError.into()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(RefFlags {
|
|
|
|
content_hashing: try!(get_field(v, "ref.flags.content_hashing")),
|
|
|
|
permission_tracking: try!(get_field(v, "ref.flags.permission_tracking")),
|
|
|
|
})
|
2016-06-09 14:49:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Alias for `RefFlags::content_hashing()`
|
2016-07-26 20:34:22 +00:00
|
|
|
pub fn is_often_moving(self, b: bool) -> RefFlags {
|
2016-06-09 14:49:46 +00:00
|
|
|
self.with_content_hashing(b)
|
|
|
|
}
|
|
|
|
|
2016-06-09 17:42:08 +00:00
|
|
|
pub fn with_content_hashing(mut self, b: bool) -> RefFlags {
|
|
|
|
self.content_hashing = b;
|
|
|
|
self
|
2016-06-09 14:49:46 +00:00
|
|
|
}
|
|
|
|
|
2016-06-09 17:42:20 +00:00
|
|
|
pub fn with_permission_tracking(mut self, b: bool) -> RefFlags {
|
2016-06-09 14:49:46 +00:00
|
|
|
self.permission_tracking = b;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn get_content_hashing(&self) -> bool {
|
2016-06-09 17:43:24 +00:00
|
|
|
self.content_hashing
|
2016-06-09 14:49:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_permission_tracking(&self) -> bool {
|
2016-06-09 17:43:43 +00:00
|
|
|
self.permission_tracking
|
2016-06-09 14:49:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-06-09 17:39:17 +00:00
|
|
|
impl Into<Value> for RefFlags {
|
|
|
|
|
|
|
|
/// Build a TOML::Value from this RefFlags object.
|
|
|
|
///
|
|
|
|
/// Returns a Map which should be set in `ref.flags` in the header.
|
|
|
|
fn into(self) -> Value {
|
|
|
|
let mut btm = BTreeMap::new();
|
|
|
|
btm.insert(String::from("content_hashing"), Value::Boolean(self.content_hashing));
|
|
|
|
btm.insert(String::from("permission_tracking"), Value::Boolean(self.permission_tracking));
|
|
|
|
return Value::Table(btm)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-06-26 09:35:16 +00:00
|
|
|
impl Default for RefFlags {
|
|
|
|
|
|
|
|
fn default() -> RefFlags {
|
|
|
|
RefFlags {
|
|
|
|
content_hashing: false,
|
|
|
|
permission_tracking: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|