mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-24 21:57:41 +00:00
feat(spack): Add Spack
module (#3639)
* feat/add readme + presets * feat/add spack module * feat/add spack config * feat/spack to handle * feat/add spack to modules and root * fix/readme formattign * fix/readme typo * fix/readme formatting * feat/replace module_config_derive with serde * feat/add macros to generate schema + schema
This commit is contained in:
parent
c89c13038a
commit
3014284e95
41
.github/config-schema.json
vendored
41
.github/config-schema.json
vendored
@ -1237,6 +1237,20 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"spack": {
|
||||||
|
"default": {
|
||||||
|
"disabled": false,
|
||||||
|
"format": "via [$symbol$environment]($style) ",
|
||||||
|
"style": "blue bold",
|
||||||
|
"symbol": "🅢 ",
|
||||||
|
"truncation_length": 1
|
||||||
|
},
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"$ref": "#/definitions/SpackConfig"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"default": {
|
"default": {
|
||||||
"disabled": true,
|
"disabled": true,
|
||||||
@ -4220,6 +4234,33 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"SpackConfig": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"truncation_length": {
|
||||||
|
"default": 1,
|
||||||
|
"type": "integer",
|
||||||
|
"format": "uint",
|
||||||
|
"minimum": 0.0
|
||||||
|
},
|
||||||
|
"format": {
|
||||||
|
"default": "via [$symbol$environment]($style) ",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"symbol": {
|
||||||
|
"default": "🅢 ",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"style": {
|
||||||
|
"default": "blue bold",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"disabled": {
|
||||||
|
"default": false,
|
||||||
|
"type": "boolean"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"StatusConfig": {
|
"StatusConfig": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -124,6 +124,9 @@ format = '\[[$symbol($version)]($style)\]'
|
|||||||
[scala]
|
[scala]
|
||||||
format = '\[[$symbol($version)]($style)\]'
|
format = '\[[$symbol($version)]($style)\]'
|
||||||
|
|
||||||
|
[spack]
|
||||||
|
format = '\[[$symbol$environment]($style)\]'
|
||||||
|
|
||||||
[sudo]
|
[sudo]
|
||||||
format = '\[[as $symbol]\]'
|
format = '\[[as $symbol]\]'
|
||||||
|
|
||||||
|
@ -58,5 +58,8 @@ symbol = " "
|
|||||||
[package]
|
[package]
|
||||||
symbol = " "
|
symbol = " "
|
||||||
|
|
||||||
|
[spack]
|
||||||
|
symbol = "🅢 "
|
||||||
|
|
||||||
[rust]
|
[rust]
|
||||||
symbol = " "
|
symbol = " "
|
||||||
|
@ -112,6 +112,9 @@ symbol = "rs "
|
|||||||
[scala]
|
[scala]
|
||||||
symbol = "scala "
|
symbol = "scala "
|
||||||
|
|
||||||
|
[spack]
|
||||||
|
symbol = "spack "
|
||||||
|
|
||||||
[sudo]
|
[sudo]
|
||||||
symbol = "sudo "
|
symbol = "sudo "
|
||||||
|
|
||||||
|
@ -247,6 +247,7 @@ $vagrant\
|
|||||||
$zig\
|
$zig\
|
||||||
$nix_shell\
|
$nix_shell\
|
||||||
$conda\
|
$conda\
|
||||||
|
$spack\
|
||||||
$memory_usage\
|
$memory_usage\
|
||||||
$aws\
|
$aws\
|
||||||
$gcloud\
|
$gcloud\
|
||||||
@ -3167,6 +3168,39 @@ and `$SINGULARITY_NAME` is set.
|
|||||||
format = '[📦 \[$env\]]($style) '
|
format = '[📦 \[$env\]]($style) '
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Spack
|
||||||
|
|
||||||
|
The `spack` module shows the current [Spack](https://spack.readthedocs.io/en/latest/) environment, if `$SPACK_ENV` is set.
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
| Option | Default | Description |
|
||||||
|
| ------------------- | -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
|
| `truncation_length` | `1` | The number of directories the environment path should be truncated to. `0` means no truncation. Also see the [`directory`](#directory) module. |
|
||||||
|
| `symbol` | `"🅢 "` | The symbol used before the environment name. |
|
||||||
|
| `style` | `"bold blue"` | The style for the module. |
|
||||||
|
| `format` | `"via [$symbol$environment]($style) "` | The format for the module. |
|
||||||
|
| `disabled` | `false` | Disables the `spack` module. |
|
||||||
|
|
||||||
|
### Variables
|
||||||
|
|
||||||
|
| Variable | Example | Description |
|
||||||
|
| ----------- | ------------ | ------------------------------------ |
|
||||||
|
| environment | `astronauts` | The current spack environment |
|
||||||
|
| symbol | | Mirrors the value of option `symbol` |
|
||||||
|
| style\* | | Mirrors the value of option `style` |
|
||||||
|
|
||||||
|
*: This variable can only be used as a part of a style string
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[spack]
|
||||||
|
format = "[$symbol$environment](dimmed blue) "
|
||||||
|
```
|
||||||
|
|
||||||
## Status
|
## Status
|
||||||
|
|
||||||
The `status` module displays the exit code of the previous command.
|
The `status` module displays the exit code of the previous command.
|
||||||
|
@ -63,6 +63,7 @@ pub mod scala;
|
|||||||
pub mod shell;
|
pub mod shell;
|
||||||
pub mod shlvl;
|
pub mod shlvl;
|
||||||
pub mod singularity;
|
pub mod singularity;
|
||||||
|
pub mod spack;
|
||||||
mod starship_root;
|
mod starship_root;
|
||||||
pub mod status;
|
pub mod status;
|
||||||
pub mod sudo;
|
pub mod sudo;
|
||||||
@ -210,6 +211,8 @@ pub struct FullConfig<'a> {
|
|||||||
#[serde(borrow)]
|
#[serde(borrow)]
|
||||||
singularity: singularity::SingularityConfig<'a>,
|
singularity: singularity::SingularityConfig<'a>,
|
||||||
#[serde(borrow)]
|
#[serde(borrow)]
|
||||||
|
spack: spack::SpackConfig<'a>,
|
||||||
|
#[serde(borrow)]
|
||||||
status: status::StatusConfig<'a>,
|
status: status::StatusConfig<'a>,
|
||||||
#[serde(borrow)]
|
#[serde(borrow)]
|
||||||
sudo: sudo::SudoConfig<'a>,
|
sudo: sudo::SudoConfig<'a>,
|
||||||
|
24
src/configs/spack.rs
Normal file
24
src/configs/spack.rs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
#[derive(Clone, Deserialize, Serialize)]
|
||||||
|
#[cfg_attr(feature = "config-schema", derive(schemars::JsonSchema))]
|
||||||
|
#[serde(default)]
|
||||||
|
pub struct SpackConfig<'a> {
|
||||||
|
pub truncation_length: usize,
|
||||||
|
pub format: &'a str,
|
||||||
|
pub symbol: &'a str,
|
||||||
|
pub style: &'a str,
|
||||||
|
pub disabled: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> Default for SpackConfig<'a> {
|
||||||
|
fn default() -> Self {
|
||||||
|
SpackConfig {
|
||||||
|
truncation_length: 1,
|
||||||
|
format: "via [$symbol$environment]($style) ",
|
||||||
|
symbol: "🅢 ",
|
||||||
|
style: "blue bold",
|
||||||
|
disabled: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -74,6 +74,7 @@ pub const PROMPT_ORDER: &[&str] = &[
|
|||||||
"buf",
|
"buf",
|
||||||
"nix_shell",
|
"nix_shell",
|
||||||
"conda",
|
"conda",
|
||||||
|
"spack",
|
||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"gcloud",
|
"gcloud",
|
||||||
|
@ -70,6 +70,7 @@ pub const ALL_MODULES: &[&str] = &[
|
|||||||
"shell",
|
"shell",
|
||||||
"shlvl",
|
"shlvl",
|
||||||
"singularity",
|
"singularity",
|
||||||
|
"spack",
|
||||||
"status",
|
"status",
|
||||||
"sudo",
|
"sudo",
|
||||||
"swift",
|
"swift",
|
||||||
|
@ -60,6 +60,7 @@ mod scala;
|
|||||||
mod shell;
|
mod shell;
|
||||||
mod shlvl;
|
mod shlvl;
|
||||||
mod singularity;
|
mod singularity;
|
||||||
|
mod spack;
|
||||||
mod status;
|
mod status;
|
||||||
mod sudo;
|
mod sudo;
|
||||||
mod swift;
|
mod swift;
|
||||||
@ -150,6 +151,7 @@ pub fn handle<'a>(module: &str, context: &'a Context) -> Option<Module<'a>> {
|
|||||||
"shell" => shell::module(context),
|
"shell" => shell::module(context),
|
||||||
"shlvl" => shlvl::module(context),
|
"shlvl" => shlvl::module(context),
|
||||||
"singularity" => singularity::module(context),
|
"singularity" => singularity::module(context),
|
||||||
|
"spack" => spack::module(context),
|
||||||
"swift" => swift::module(context),
|
"swift" => swift::module(context),
|
||||||
"status" => status::module(context),
|
"status" => status::module(context),
|
||||||
"sudo" => sudo::module(context),
|
"sudo" => sudo::module(context),
|
||||||
@ -245,6 +247,7 @@ pub fn description(module: &str) -> &'static str {
|
|||||||
"shell" => "The currently used shell indicator",
|
"shell" => "The currently used shell indicator",
|
||||||
"shlvl" => "The current value of SHLVL",
|
"shlvl" => "The current value of SHLVL",
|
||||||
"singularity" => "The currently used Singularity image",
|
"singularity" => "The currently used Singularity image",
|
||||||
|
"spack" => "The current spack environment, if $SPACK_ENV is set",
|
||||||
"status" => "The status of the last command",
|
"status" => "The status of the last command",
|
||||||
"sudo" => "The sudo credentials are currently cached",
|
"sudo" => "The sudo credentials are currently cached",
|
||||||
"swift" => "The currently installed version of Swift",
|
"swift" => "The currently installed version of Swift",
|
||||||
|
84
src/modules/spack.rs
Normal file
84
src/modules/spack.rs
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
use super::{Context, Module, ModuleConfig};
|
||||||
|
|
||||||
|
use super::utils::directory::truncate;
|
||||||
|
use crate::configs::spack::SpackConfig;
|
||||||
|
use crate::formatter::StringFormatter;
|
||||||
|
|
||||||
|
/// Creates a module with the current Spack environment
|
||||||
|
///
|
||||||
|
/// Will display the Spack environment if `$SPACK_ENV` is set.
|
||||||
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
||||||
|
let spack_env = context.get_env("SPACK_ENV").unwrap_or_default();
|
||||||
|
if spack_env.trim().is_empty() {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut module = context.new_module("spack");
|
||||||
|
let config: SpackConfig = SpackConfig::try_load(module.config);
|
||||||
|
|
||||||
|
let spack_env = truncate(&spack_env, config.truncation_length).unwrap_or(spack_env);
|
||||||
|
|
||||||
|
let parsed = StringFormatter::new(config.format).and_then(|formatter| {
|
||||||
|
formatter
|
||||||
|
.map_meta(|variable, _| match variable {
|
||||||
|
"symbol" => Some(config.symbol),
|
||||||
|
_ => None,
|
||||||
|
})
|
||||||
|
.map_style(|variable| match variable {
|
||||||
|
"style" => Some(Ok(config.style)),
|
||||||
|
_ => None,
|
||||||
|
})
|
||||||
|
.map(|variable| match variable {
|
||||||
|
"environment" => Some(Ok(spack_env.as_str())),
|
||||||
|
_ => None,
|
||||||
|
})
|
||||||
|
.parse(None, Some(context))
|
||||||
|
});
|
||||||
|
|
||||||
|
module.set_segments(match parsed {
|
||||||
|
Ok(segments) => segments,
|
||||||
|
Err(error) => {
|
||||||
|
log::warn!("Error in module `spack`:\n{}", error);
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
Some(module)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use crate::test::ModuleRenderer;
|
||||||
|
use ansi_term::Color;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn not_in_env() {
|
||||||
|
let actual = ModuleRenderer::new("spack").collect();
|
||||||
|
|
||||||
|
let expected = None;
|
||||||
|
|
||||||
|
assert_eq!(expected, actual);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn env_set() {
|
||||||
|
let actual = ModuleRenderer::new("spack")
|
||||||
|
.env("SPACK_ENV", "astronauts")
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let expected = Some(format!("via {} ", Color::Blue.bold().paint("🅢 astronauts")));
|
||||||
|
|
||||||
|
assert_eq!(expected, actual);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn truncate() {
|
||||||
|
let actual = ModuleRenderer::new("spack")
|
||||||
|
.env("SPACK_ENV", "/some/really/long/and/really/annoying/path/that/shouldnt/be/displayed/fully/spack/my_env")
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let expected = Some(format!("via {} ", Color::Blue.bold().paint("🅢 my_env")));
|
||||||
|
|
||||||
|
assert_eq!(expected, actual);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user