mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +00:00
54 lines
1.3 KiB
Rust
54 lines
1.3 KiB
Rust
|
use std::path::Path;
|
||
|
|
||
|
use nu_data::config::NuConfig;
|
||
|
use nu_protocol::ConfigPath;
|
||
|
|
||
|
/// ConfigHolder holds information which configs have been loaded.
|
||
|
#[derive(Clone)]
|
||
|
pub struct ConfigHolder {
|
||
|
pub global_config: Option<NuConfig>,
|
||
|
pub local_configs: Vec<NuConfig>,
|
||
|
}
|
||
|
|
||
|
impl Default for ConfigHolder {
|
||
|
fn default() -> Self {
|
||
|
Self::new()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl ConfigHolder {
|
||
|
pub fn new() -> ConfigHolder {
|
||
|
ConfigHolder {
|
||
|
global_config: None,
|
||
|
local_configs: vec![],
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn add_local_cfg(&mut self, cfg: NuConfig) {
|
||
|
self.local_configs.push(cfg);
|
||
|
}
|
||
|
|
||
|
pub fn set_global_cfg(&mut self, cfg: NuConfig) {
|
||
|
self.global_config = Some(cfg);
|
||
|
}
|
||
|
|
||
|
pub fn remove_cfg(&mut self, cfg_path: &ConfigPath) {
|
||
|
match cfg_path {
|
||
|
ConfigPath::Global(_) => self.global_config = None,
|
||
|
ConfigPath::Local(p) => self.remove_local_cfg(p),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn remove_local_cfg<P: AsRef<Path>>(&mut self, cfg_path: P) {
|
||
|
// Remove the first loaded local config with specified cfg_path
|
||
|
if let Some(index) = self
|
||
|
.local_configs
|
||
|
.iter()
|
||
|
.rev()
|
||
|
.position(|cfg| cfg.file_path == cfg_path.as_ref())
|
||
|
{
|
||
|
self.local_configs.remove(index);
|
||
|
}
|
||
|
}
|
||
|
}
|