imag/libimagrt/src/configuration.rs

189 lines
5.3 KiB
Rust
Raw Normal View History

2016-01-10 14:04:06 +00:00
use std::path::PathBuf;
use std::result::Result as RResult;
2016-03-26 18:49:58 +00:00
use std::ops::Deref;
2016-01-10 14:04:06 +00:00
use toml::{Parser, Value};
2016-01-10 14:04:06 +00:00
generate_error_module!(
generate_error_types!(ConfigError, ConfigErrorKind,
NoConfigFileFound => "No config file found"
);
);
use self::error::{ConfigError, ConfigErrorKind};
2016-01-21 20:19:31 +00:00
/**
* Result type of this module. Either `T` or `ConfigError`
2016-01-21 20:19:31 +00:00
*/
pub type Result<T> = RResult<T, ConfigError>;
/// `Configuration` object
///
/// Holds all config variables which are globally available plus the configuration object from the
/// config parser, which can be accessed.
#[derive(Debug)]
2016-01-10 14:04:06 +00:00
pub struct Configuration {
2016-01-21 20:19:31 +00:00
/// The plain configuration object for direct access if necessary
config: Value,
/// The verbosity the program should run with
2016-01-10 14:04:06 +00:00
verbosity: bool,
2016-01-21 20:19:31 +00:00
/// The editor which should be used
2016-01-10 14:04:06 +00:00
editor: Option<String>,
2016-01-21 20:19:31 +00:00
///The options the editor should get when opening some file
2016-01-10 14:04:06 +00:00
editor_opts: String,
}
impl Configuration {
/// Get a new configuration object.
///
/// The passed runtimepath is used for searching the configuration file, whereas several file
/// names are tested. If that does not work, the home directory and the XDG basedir are tested
/// with all variants.
///
/// If that doesn't work either, an error is returned.
pub fn new(rtp: &PathBuf) -> Result<Configuration> {
fetch_config(&rtp).map(|cfg| {
let verbosity = get_verbosity(&cfg);
let editor = get_editor(&cfg);
let editor_opts = get_editor_opts(&cfg);
2016-01-10 14:04:06 +00:00
debug!("Building configuration");
debug!(" - verbosity : {:?}", verbosity);
debug!(" - editor : {:?}", editor);
debug!(" - editor-opts: {}", editor_opts);
Configuration {
config: cfg,
2016-01-10 14:04:06 +00:00
verbosity: verbosity,
editor: editor,
editor_opts: editor_opts,
}
2016-01-10 14:04:06 +00:00
})
}
pub fn editor(&self) -> Option<&String> {
self.editor.as_ref()
}
#[allow(dead_code)] // Why do I actually need this annotation on a pub function?
pub fn config(&self) -> &Value {
&self.config
}
2016-03-05 17:42:59 +00:00
pub fn store_config(&self) -> Option<&Value> {
match self.config {
Value::Table(ref tabl) => tabl.get("store"),
2016-03-05 17:42:59 +00:00
_ => None,
}
}
2016-01-10 14:04:06 +00:00
}
2016-03-26 18:49:58 +00:00
impl Deref for Configuration {
type Target = Value;
fn deref(&self) -> &Value {
&self.config
}
}
fn get_verbosity(v: &Value) -> bool {
match *v {
Value::Table(ref t) => t.get("verbose")
.map_or(false, |v| match *v { Value::Boolean(b) => b, _ => false, }),
_ => false,
}
}
fn get_editor(v: &Value) -> Option<String> {
match *v {
Value::Table(ref t) => t.get("editor")
.and_then(|v| match *v { Value::String(ref s) => Some(s.clone()), _ => None, }),
_ => None,
}
}
fn get_editor_opts(v: &Value) -> String {
match *v {
Value::Table(ref t) => t.get("editor-opts")
.and_then(|v| match *v { Value::String(ref s) => Some(s.clone()), _ => None, })
.unwrap_or_default(),
_ => String::new(),
}
}
2016-01-21 20:19:31 +00:00
/**
* Helper to fetch the config file
*
* Tests several variants for the config file path and uses the first one which works.
*/
fn fetch_config(rtp: &PathBuf) -> Result<Value> {
2016-01-10 14:04:06 +00:00
use std::env;
use std::fs::File;
use std::io::Read;
use std::io::Write;
use std::io::stderr;
2016-01-10 14:04:06 +00:00
use xdg_basedir;
use itertools::Itertools;
use libimagutil::variants::generate_variants as gen_vars;
let variants = vec!["config", "config.toml", "imagrc", "imagrc.toml"];
let modifier = |base: &PathBuf, v: &'static str| {
let mut base = base.clone();
base.push(String::from(v));
2016-01-10 14:04:06 +00:00
base
};
vec![
vec![rtp.clone()],
2016-01-10 14:04:06 +00:00
gen_vars(rtp.clone(), variants.clone(), &modifier),
env::var("HOME").map(|home| gen_vars(PathBuf::from(home), variants.clone(), &modifier))
.unwrap_or(vec![]),
xdg_basedir::get_data_home().map(|data_dir| gen_vars(data_dir, variants.clone(), &modifier))
.unwrap_or(vec![]),
].iter()
.flatten()
2016-03-25 14:10:32 +00:00
.filter(|path| path.exists() && path.is_file())
.map(|path| {
let content = {
let mut s = String::new();
2016-03-25 15:01:11 +00:00
let f = File::open(path);
if f.is_err() {
return None
}
let mut f = f.unwrap();
2016-03-25 15:01:42 +00:00
f.read_to_string(&mut s).ok();
s
};
let mut parser = Parser::new(&content[..]);
let res = parser.parse();
if res.is_none() {
2016-04-17 18:48:17 +00:00
write!(stderr(), "Config file parser error:").ok();
for error in parser.errors {
2016-04-17 18:48:17 +00:00
write!(stderr(), "At [{}][{}] <> {}", error.lo, error.hi, error).ok();
write!(stderr(), "in: '{}'", &content[error.lo..error.hi]).ok();
}
None
} else {
res
}
})
.filter(|loaded| loaded.is_some())
2016-01-10 14:04:06 +00:00
.nth(0)
.map(|inner| Value::Table(inner.unwrap()))
2016-05-27 08:27:06 +00:00
.ok_or(ConfigErrorKind::NoConfigFileFound.into())
2016-01-10 14:04:06 +00:00
}