2019-08-15 07:02:02 +02:00
|
|
|
use crate::commands::WholeStreamCommand;
|
2019-09-05 18:23:42 +02:00
|
|
|
use crate::data::{config, Value};
|
2019-09-09 19:10:52 +02:00
|
|
|
use crate::errors::ShellError;
|
2019-09-11 05:23:22 +02:00
|
|
|
use crate::parser::hir::SyntaxShape;
|
2019-08-02 21:15:07 +02:00
|
|
|
use crate::parser::registry::{self};
|
2019-09-10 12:08:01 +02:00
|
|
|
use crate::prelude::*;
|
2019-07-03 22:31:15 +02:00
|
|
|
use std::iter::FromIterator;
|
2019-09-10 12:08:01 +02:00
|
|
|
use std::path::PathBuf;
|
2019-06-01 07:50:16 +02:00
|
|
|
|
|
|
|
pub struct Config;
|
|
|
|
|
2019-08-02 21:15:07 +02:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct ConfigArgs {
|
2019-09-10 12:08:01 +02:00
|
|
|
load: Option<Tagged<PathBuf>>,
|
2019-08-09 06:51:21 +02:00
|
|
|
set: Option<(Tagged<String>, Tagged<Value>)>,
|
|
|
|
get: Option<Tagged<String>>,
|
|
|
|
clear: Tagged<bool>,
|
|
|
|
remove: Option<Tagged<String>>,
|
|
|
|
path: Tagged<bool>,
|
2019-08-02 21:15:07 +02:00
|
|
|
}
|
2019-07-24 00:22:11 +02:00
|
|
|
|
2019-08-15 07:02:02 +02:00
|
|
|
impl WholeStreamCommand for Config {
|
2019-06-01 07:50:16 +02:00
|
|
|
fn name(&self) -> &str {
|
|
|
|
"config"
|
|
|
|
}
|
|
|
|
|
2019-08-02 21:15:07 +02:00
|
|
|
fn signature(&self) -> Signature {
|
|
|
|
Signature::build("config")
|
2019-09-11 05:23:22 +02:00
|
|
|
.named("load", SyntaxShape::Path)
|
|
|
|
.named("set", SyntaxShape::Any)
|
|
|
|
.named("get", SyntaxShape::Any)
|
|
|
|
.named("remove", SyntaxShape::Any)
|
2019-08-02 21:15:07 +02:00
|
|
|
.switch("clear")
|
|
|
|
.switch("path")
|
2019-06-01 07:50:16 +02:00
|
|
|
}
|
|
|
|
|
2019-08-30 00:52:32 +02:00
|
|
|
fn usage(&self) -> &str {
|
|
|
|
"Configuration management."
|
|
|
|
}
|
|
|
|
|
2019-08-02 21:15:07 +02:00
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
args: CommandArgs,
|
|
|
|
registry: ®istry::CommandRegistry,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
|
|
|
args.process(registry, config)?.run()
|
|
|
|
}
|
|
|
|
}
|
2019-06-01 07:50:16 +02:00
|
|
|
|
2019-08-02 21:15:07 +02:00
|
|
|
pub fn config(
|
|
|
|
ConfigArgs {
|
2019-09-10 12:08:01 +02:00
|
|
|
load,
|
2019-08-02 21:15:07 +02:00
|
|
|
set,
|
|
|
|
get,
|
|
|
|
clear,
|
|
|
|
remove,
|
|
|
|
path,
|
|
|
|
}: ConfigArgs,
|
|
|
|
RunnableContext { name, .. }: RunnableContext,
|
|
|
|
) -> Result<OutputStream, ShellError> {
|
2019-09-10 12:08:01 +02:00
|
|
|
let name_span = name;
|
|
|
|
|
|
|
|
let configuration = if let Some(supplied) = load {
|
|
|
|
Some(supplied.item().clone())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut result = crate::data::config::read(name_span, &configuration)?;
|
2019-08-02 21:15:07 +02:00
|
|
|
|
|
|
|
if let Some(v) = get {
|
|
|
|
let key = v.to_string();
|
2019-06-01 07:50:16 +02:00
|
|
|
let value = result
|
|
|
|
.get(&key)
|
|
|
|
.ok_or_else(|| ShellError::string(&format!("Missing key {} in config", key)))?;
|
|
|
|
|
2019-09-10 12:08:01 +02:00
|
|
|
let mut results = VecDeque::new();
|
|
|
|
|
|
|
|
match value {
|
|
|
|
Tagged {
|
|
|
|
item: Value::Table(list),
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
for l in list {
|
|
|
|
results.push_back(ReturnSuccess::value(l.clone()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x => results.push_back(ReturnSuccess::value(x.clone())),
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(results.to_output_stream());
|
2019-06-01 07:50:16 +02:00
|
|
|
}
|
|
|
|
|
2019-08-02 21:15:07 +02:00
|
|
|
if let Some((key, value)) = set {
|
|
|
|
result.insert(key.to_string(), value.clone());
|
2019-06-01 07:50:16 +02:00
|
|
|
|
2019-09-10 12:08:01 +02:00
|
|
|
config::write(&result, &configuration)?;
|
2019-06-01 07:50:16 +02:00
|
|
|
|
2019-09-11 05:23:22 +02:00
|
|
|
return Ok(stream![Value::Row(result.into()).tagged(value.tag())].from_input_stream());
|
2019-06-01 07:50:16 +02:00
|
|
|
}
|
|
|
|
|
2019-09-11 05:23:22 +02:00
|
|
|
if let Tagged { item: true, tag } = clear {
|
2019-06-01 07:50:16 +02:00
|
|
|
result.clear();
|
|
|
|
|
2019-09-10 12:08:01 +02:00
|
|
|
config::write(&result, &configuration)?;
|
2019-06-01 07:50:16 +02:00
|
|
|
|
2019-09-11 05:23:22 +02:00
|
|
|
return Ok(stream![Value::Row(result.into()).tagged(tag)].from_input_stream());
|
2019-06-01 07:50:16 +02:00
|
|
|
}
|
|
|
|
|
2019-09-11 05:23:22 +02:00
|
|
|
if let Tagged { item: true, tag } = path {
|
2019-09-10 12:08:01 +02:00
|
|
|
let path = config::default_path_for(&configuration)?;
|
2019-08-02 21:15:07 +02:00
|
|
|
|
2019-09-11 05:23:22 +02:00
|
|
|
return Ok(stream![Value::Primitive(Primitive::Path(path)).tagged(tag)].from_input_stream());
|
2019-08-02 21:15:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(v) = remove {
|
|
|
|
let key = v.to_string();
|
2019-06-01 07:50:16 +02:00
|
|
|
|
|
|
|
if result.contains_key(&key) {
|
2019-09-09 12:03:01 +02:00
|
|
|
result.swap_remove(&key);
|
2019-09-10 12:08:01 +02:00
|
|
|
config::write(&result, &configuration)?;
|
2019-06-01 07:50:16 +02:00
|
|
|
} else {
|
|
|
|
return Err(ShellError::string(&format!(
|
|
|
|
"{} does not exist in config",
|
|
|
|
key
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
2019-09-11 05:23:22 +02:00
|
|
|
let obj = VecDeque::from_iter(vec![Value::Row(result.into()).tagged(v.tag())]);
|
2019-07-03 22:31:15 +02:00
|
|
|
return Ok(obj.from_input_stream());
|
2019-06-01 07:50:16 +02:00
|
|
|
}
|
|
|
|
|
2019-09-11 05:23:22 +02:00
|
|
|
return Ok(vec![Value::Row(result.into()).tagged(name)].into());
|
2019-06-01 07:50:16 +02:00
|
|
|
}
|