-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(cli): Prepare for merging im config file
- Loading branch information
Showing
2 changed files
with
150 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
pub trait ConfigSource { | ||
/// Skip hidden files and directories. | ||
fn ignore_hidden(&self) -> Option<bool> { | ||
None | ||
} | ||
|
||
/// Respect ignore files. | ||
fn ignore_files(&self) -> Option<bool> { | ||
None | ||
} | ||
|
||
/// Respect .ignore files. | ||
fn ignore_dot(&self) -> Option<bool> { | ||
None | ||
} | ||
|
||
/// Respect ignore files in vcs directories. | ||
fn ignore_vcs(&self) -> Option<bool> { | ||
None | ||
} | ||
|
||
/// Respect global ignore files. | ||
fn ignore_global(&self) -> Option<bool> { | ||
None | ||
} | ||
|
||
/// Respect ignore files in parent directories. | ||
fn ignore_parent(&self) -> Option<bool> { | ||
None | ||
} | ||
} | ||
|
||
#[derive(Debug, Clone, Default, serde::Serialize, serde::Deserialize)] | ||
#[serde(deny_unknown_fields, default)] | ||
#[serde(rename_all = "kebab-case")] | ||
pub struct Config { | ||
pub ignore_hidden: Option<bool>, | ||
pub ignore_files: Option<bool>, | ||
pub ignore_dot: Option<bool>, | ||
pub ignore_vcs: Option<bool>, | ||
pub ignore_global: Option<bool>, | ||
pub ignore_parent: Option<bool>, | ||
} | ||
|
||
impl Config { | ||
pub fn update(&mut self, source: &dyn ConfigSource) { | ||
if let Some(source) = source.ignore_hidden() { | ||
self.ignore_hidden = Some(source); | ||
} | ||
if let Some(source) = source.ignore_files() { | ||
self.ignore_files = Some(source); | ||
self.ignore_dot = None; | ||
self.ignore_vcs = None; | ||
self.ignore_global = None; | ||
self.ignore_parent = None; | ||
} | ||
if let Some(source) = source.ignore_dot() { | ||
self.ignore_dot = Some(source); | ||
} | ||
if let Some(source) = source.ignore_vcs() { | ||
self.ignore_vcs = Some(source); | ||
self.ignore_global = None; | ||
} | ||
if let Some(source) = source.ignore_global() { | ||
self.ignore_global = Some(source); | ||
} | ||
if let Some(source) = source.ignore_parent() { | ||
self.ignore_parent = Some(source); | ||
} | ||
} | ||
|
||
pub fn ignore_hidden(&self) -> bool { | ||
self.ignore_hidden.unwrap_or(true) | ||
} | ||
|
||
pub fn ignore_dot(&self) -> bool { | ||
self.ignore_dot | ||
.or_else(|| self.ignore_files) | ||
.unwrap_or(true) | ||
} | ||
|
||
pub fn ignore_vcs(&self) -> bool { | ||
self.ignore_vcs | ||
.or_else(|| self.ignore_files) | ||
.unwrap_or(true) | ||
} | ||
|
||
pub fn ignore_global(&self) -> bool { | ||
self.ignore_global | ||
.or_else(|| self.ignore_vcs) | ||
.or_else(|| self.ignore_files) | ||
.unwrap_or(true) | ||
} | ||
|
||
pub fn ignore_parent(&self) -> bool { | ||
self.ignore_parent | ||
.or_else(|| self.ignore_files) | ||
.unwrap_or(true) | ||
} | ||
} | ||
|
||
impl ConfigSource for Config { | ||
fn ignore_hidden(&self) -> Option<bool> { | ||
self.ignore_hidden | ||
} | ||
|
||
fn ignore_files(&self) -> Option<bool> { | ||
self.ignore_files | ||
} | ||
|
||
fn ignore_dot(&self) -> Option<bool> { | ||
self.ignore_dot | ||
} | ||
|
||
fn ignore_vcs(&self) -> Option<bool> { | ||
self.ignore_vcs | ||
} | ||
|
||
fn ignore_global(&self) -> Option<bool> { | ||
self.ignore_global | ||
} | ||
|
||
fn ignore_parent(&self) -> Option<bool> { | ||
self.ignore_parent | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters