2017-03-10 11:43:32 +00:00
|
|
|
use serde_yaml;
|
|
|
|
|
|
|
|
use std::fs::File;
|
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
use ::util::*;
|
|
|
|
use ::chunker::ChunkerType;
|
|
|
|
|
|
|
|
|
|
|
|
impl HashMethod {
|
|
|
|
fn from_yaml(yaml: String) -> Result<Self, &'static str> {
|
|
|
|
HashMethod::from(&yaml)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_yaml(&self) -> String {
|
|
|
|
self.name().to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
impl ChecksumType {
|
|
|
|
fn from_yaml(yaml: String) -> Result<Self, &'static str> {
|
|
|
|
ChecksumType::from(&yaml)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_yaml(&self) -> String {
|
|
|
|
self.name().to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct ChunkerYaml {
|
|
|
|
method: String,
|
|
|
|
avg_size: usize,
|
|
|
|
seed: u64
|
|
|
|
}
|
|
|
|
impl Default for ChunkerYaml {
|
|
|
|
fn default() -> Self {
|
|
|
|
ChunkerYaml {
|
|
|
|
method: "fastcdc".to_string(),
|
|
|
|
avg_size: 16*1024,
|
|
|
|
seed: 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
serde_impl!(ChunkerYaml(String) {
|
|
|
|
method: String => "method",
|
|
|
|
avg_size: usize => "avg_size",
|
|
|
|
seed: u64 => "seed"
|
|
|
|
});
|
|
|
|
|
|
|
|
impl ChunkerType {
|
|
|
|
fn from_yaml(yaml: ChunkerYaml) -> Result<Self, &'static str> {
|
|
|
|
ChunkerType::from(&yaml.method, yaml.avg_size, yaml.seed)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_yaml(&self) -> ChunkerYaml {
|
|
|
|
ChunkerYaml {
|
|
|
|
method: self.name().to_string(),
|
|
|
|
avg_size: self.avg_size(),
|
|
|
|
seed: self.seed()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
impl Compression {
|
2017-03-14 15:07:52 +00:00
|
|
|
#[inline]
|
|
|
|
fn from_yaml(yaml: String) -> Result<Self, &'static str> {
|
|
|
|
Compression::from_string(&yaml)
|
2017-03-10 11:43:32 +00:00
|
|
|
}
|
|
|
|
|
2017-03-14 15:07:52 +00:00
|
|
|
#[inline]
|
|
|
|
fn to_yaml(&self) -> String {
|
|
|
|
self.to_string()
|
2017-03-10 11:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct ConfigYaml {
|
2017-03-14 15:07:52 +00:00
|
|
|
compression: Option<String>,
|
2017-03-10 11:43:32 +00:00
|
|
|
bundle_size: usize,
|
|
|
|
chunker: ChunkerYaml,
|
|
|
|
checksum: String,
|
|
|
|
hash: String,
|
|
|
|
}
|
|
|
|
impl Default for ConfigYaml {
|
|
|
|
fn default() -> Self {
|
|
|
|
ConfigYaml {
|
2017-03-14 15:07:52 +00:00
|
|
|
compression: Some("brotli/5".to_string()),
|
2017-03-10 11:43:32 +00:00
|
|
|
bundle_size: 25*1024*1024,
|
|
|
|
chunker: ChunkerYaml::default(),
|
2017-03-14 14:24:41 +00:00
|
|
|
checksum: "blake2_256".to_string(),
|
2017-03-10 11:43:32 +00:00
|
|
|
hash: "blake2".to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
serde_impl!(ConfigYaml(String) {
|
2017-03-14 15:07:52 +00:00
|
|
|
compression: Option<String> => "compression",
|
2017-03-10 11:43:32 +00:00
|
|
|
bundle_size: usize => "bundle_size",
|
|
|
|
chunker: ChunkerYaml => "chunker",
|
|
|
|
checksum: String => "checksum",
|
|
|
|
hash: String => "hash"
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Config {
|
|
|
|
pub compression: Option<Compression>,
|
|
|
|
pub bundle_size: usize,
|
|
|
|
pub chunker: ChunkerType,
|
|
|
|
pub checksum: ChecksumType,
|
|
|
|
pub hash: HashMethod
|
|
|
|
}
|
|
|
|
impl Config {
|
|
|
|
fn from_yaml(yaml: ConfigYaml) -> Result<Self, &'static str> {
|
|
|
|
let compression = if let Some(c) = yaml.compression {
|
|
|
|
Some(try!(Compression::from_yaml(c)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
Ok(Config{
|
|
|
|
compression: compression,
|
|
|
|
bundle_size: yaml.bundle_size,
|
|
|
|
chunker: try!(ChunkerType::from_yaml(yaml.chunker)),
|
|
|
|
checksum: try!(ChecksumType::from_yaml(yaml.checksum)),
|
|
|
|
hash: try!(HashMethod::from_yaml(yaml.hash))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_yaml(&self) -> ConfigYaml {
|
|
|
|
ConfigYaml {
|
|
|
|
compression: self.compression.as_ref().map(|c| c.to_yaml()),
|
|
|
|
bundle_size: self.bundle_size,
|
|
|
|
chunker: self.chunker.to_yaml(),
|
|
|
|
checksum: self.checksum.to_yaml(),
|
|
|
|
hash: self.hash.to_yaml()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn load<P: AsRef<Path>>(path: P) -> Result<Self, &'static str> {
|
|
|
|
let f = try!(File::open(path).map_err(|_| "Failed to open config"));
|
|
|
|
let config = try!(serde_yaml::from_reader(f).map_err(|_| "Failed to parse config"));
|
|
|
|
Config::from_yaml(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn save<P: AsRef<Path>>(&self, path: P) -> Result<(), &'static str> {
|
|
|
|
let mut f = try!(File::create(path).map_err(|_| "Failed to open config"));
|
|
|
|
try!(serde_yaml::to_writer(&mut f, &self.to_yaml()).map_err(|_| "Failed to wrtie config"));
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|