1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-02 08:30:50 +00:00
starship/src/module.rs

229 lines
5.7 KiB
Rust
Raw Normal View History

use crate::context::Shell;
2019-05-01 20:34:24 +00:00
use crate::segment::Segment;
use crate::utils::wrap_colorseq_for_shell;
2019-05-01 20:34:24 +00:00
use ansi_term::{ANSIString, ANSIStrings};
use std::fmt;
use std::time::Duration;
2019-05-01 20:34:24 +00:00
// List of all modules
// Keep these ordered alphabetically.
// Default ordering is handled in configs/starship_root.rs
pub const ALL_MODULES: &[&str] = &[
"aws",
#[cfg(feature = "battery")]
"battery",
"character",
"cmake",
"cmd_duration",
2019-10-05 18:25:25 +00:00
"conda",
2020-07-29 15:38:23 +00:00
"dart",
"directory",
"docker_context",
"dotnet",
2020-03-02 03:29:27 +00:00
"elixir",
"elm",
"erlang",
"env_var",
"gcloud",
"git_branch",
2019-12-06 16:57:42 +00:00
"git_commit",
"git_state",
"git_status",
"golang",
"helm",
2019-12-02 22:37:18 +00:00
"hg_branch",
"hostname",
"java",
"jobs",
"julia",
"kubernetes",
"line_break",
"memory_usage",
"nim",
"nix_shell",
"nodejs",
"ocaml",
"openstack",
"package",
"perl",
"purescript",
"python",
"ruby",
"crystal",
"rust",
2019-12-05 18:04:27 +00:00
"php",
2020-07-29 15:36:49 +00:00
"swift",
"terraform",
"shlvl",
2020-02-26 16:18:19 +00:00
"singularity",
"status",
"time",
"username",
2020-05-21 16:49:49 +00:00
"zig",
];
2019-05-01 20:34:24 +00:00
/// A module is a collection of segments showing data for a single integration
/// (e.g. The git module shows the current git branch and status)
pub struct Module<'a> {
/// The module's configuration map if available
pub config: Option<&'a toml::Value>,
2019-05-01 20:34:24 +00:00
/// The module's name, to be used in configuration and logging.
name: String,
2019-05-01 20:34:24 +00:00
/// The module's description
description: String,
2019-05-01 20:34:24 +00:00
/// The collection of segments that compose this module.
pub segments: Vec<Segment>,
/// the time it took to compute this module
pub duration: Duration,
2019-05-01 20:34:24 +00:00
}
impl<'a> Module<'a> {
2019-05-01 20:34:24 +00:00
/// Creates a module with no segments.
pub fn new(name: &str, desc: &str, config: Option<&'a toml::Value>) -> Module<'a> {
2019-05-01 20:34:24 +00:00
Module {
config,
name: name.to_string(),
description: desc.to_string(),
2019-05-01 20:34:24 +00:00
segments: Vec::new(),
duration: Duration::default(),
2019-05-01 20:34:24 +00:00
}
}
/// Set segments in module
2020-04-07 09:58:10 +00:00
pub fn set_segments(&mut self, segments: Vec<Segment>) {
self.segments = segments;
}
/// Get module's name
pub fn get_name(&self) -> &String {
&self.name
}
/// Get module's description
pub fn get_description(&self) -> &String {
&self.description
}
/// Whether a module has non-empty segments
2019-05-14 04:43:11 +00:00
pub fn is_empty(&self) -> bool {
self.segments
.iter()
// no trim: if we add spaces/linebreaks it's not "empty" as we change the final output
.all(|segment| segment.value.is_empty())
2019-05-14 04:43:11 +00:00
}
/// Get values of the module's segments
pub fn get_segments(&self) -> Vec<&str> {
self.segments
.iter()
.map(|segment| segment.value.as_str())
.collect()
}
2019-05-01 20:34:24 +00:00
/// Returns a vector of colored ANSIString elements to be later used with
/// `ANSIStrings()` to optimize ANSI codes
pub fn ansi_strings(&self) -> Vec<ANSIString> {
self.ansi_strings_for_shell(Shell::Unknown)
}
pub fn ansi_strings_for_shell(&self, shell: Shell) -> Vec<ANSIString> {
let ansi_strings = self
2019-05-01 20:34:24 +00:00
.segments
.iter()
.map(Segment::ansi_string)
2019-05-01 20:34:24 +00:00
.collect::<Vec<ANSIString>>();
match shell {
Shell::Bash => ansi_strings_modified(ansi_strings, shell),
Shell::Zsh => ansi_strings_modified(ansi_strings, shell),
_ => ansi_strings,
}
2019-05-01 20:34:24 +00:00
}
}
impl<'a> fmt::Display for Module<'a> {
2019-05-01 20:34:24 +00:00
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let ansi_strings = self.ansi_strings();
write!(f, "{}", ANSIStrings(&ansi_strings))
}
}
fn ansi_strings_modified(ansi_strings: Vec<ANSIString>, shell: Shell) -> Vec<ANSIString> {
ansi_strings
.into_iter()
.map(|ansi| {
let wrapped = wrap_colorseq_for_shell(ansi.to_string(), shell);
ANSIString::from(wrapped)
})
.collect::<Vec<ANSIString>>()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_module_is_empty_with_no_segments() {
let name = "unit_test";
let desc = "This is a unit test";
let module = Module {
config: None,
name: name.to_string(),
description: desc.to_string(),
segments: Vec::new(),
duration: Duration::default(),
};
assert!(module.is_empty());
}
#[test]
fn test_module_is_empty_with_all_empty_segments() {
let name = "unit_test";
let desc = "This is a unit test";
let module = Module {
config: None,
name: name.to_string(),
description: desc.to_string(),
segments: vec![Segment::new(None, "")],
duration: Duration::default(),
};
assert!(module.is_empty());
}
#[test]
fn test_module_is_not_empty_with_linebreak_only() {
let name = "unit_test";
let desc = "This is a unit test";
let module = Module {
config: None,
name: name.to_string(),
description: desc.to_string(),
segments: vec![Segment::new(None, "\n")],
duration: Duration::default(),
};
assert!(!module.is_empty());
}
#[test]
fn test_module_is_not_empty_with_space_only() {
let name = "unit_test";
let desc = "This is a unit test";
let module = Module {
config: None,
name: name.to_string(),
description: desc.to_string(),
segments: vec![Segment::new(None, " ")],
duration: Duration::default(),
};
assert!(!module.is_empty());
}
}