Only list changed plan settings in summary (#333)
* Only list changed plan settings in summary * List all settings when `--explain`ing * Sort the settings output
This commit is contained in:
parent
c6abf95f02
commit
1861d48d59
|
@ -137,12 +137,31 @@ impl Planner for MyPlanner {
|
|||
Ok(map)
|
||||
}
|
||||
|
||||
async fn configured_settings(
|
||||
&self,
|
||||
) -> Result<HashMap<String, serde_json::Value>, PlannerError> {
|
||||
let default = Self::default().await?.settings()?;
|
||||
let configured = self.settings()?;
|
||||
|
||||
let mut settings: HashMap<String, serde_json::Value> = HashMap::new();
|
||||
for (key, value) in configured.iter() {
|
||||
if default.get(key) != Some(value) {
|
||||
settings.insert(key.clone(), value.clone());
|
||||
}
|
||||
}
|
||||
|
||||
Ok(settings)
|
||||
}
|
||||
|
||||
#[cfg(feature = "diagnostics")]
|
||||
async fn diagnostic_data(&self) -> Result<nix_installer::diagnostics::DiagnosticData, PlannerError> {
|
||||
Ok(nix_installer::diagnostics::DiagnosticData::new(
|
||||
self.common.diagnostic_endpoint.clone(),
|
||||
self.typetag_name().into(),
|
||||
self.configured_settings().await?,
|
||||
self.configured_settings()
|
||||
.await?
|
||||
.into_keys()
|
||||
.collect::<Vec<_>>(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -158,6 +158,7 @@ impl CommandExecute for Install {
|
|||
match interaction::prompt(
|
||||
install_plan
|
||||
.describe_install(currently_explaining)
|
||||
.await
|
||||
.map_err(|e| eyre!(e))?,
|
||||
PromptChoice::Yes,
|
||||
currently_explaining,
|
||||
|
|
43
src/plan.rs
43
src/plan.rs
|
@ -65,34 +65,55 @@ impl InstallPlan {
|
|||
})
|
||||
}
|
||||
#[tracing::instrument(level = "debug", skip_all)]
|
||||
pub fn describe_install(&self, explain: bool) -> Result<String, NixInstallerError> {
|
||||
pub async fn describe_install(&self, explain: bool) -> Result<String, NixInstallerError> {
|
||||
let Self {
|
||||
planner,
|
||||
actions,
|
||||
version,
|
||||
..
|
||||
} = self;
|
||||
|
||||
let plan_settings = if explain {
|
||||
// List all settings when explaining
|
||||
planner.settings()?
|
||||
} else {
|
||||
// Otherwise, only list user-configured settings
|
||||
planner.configured_settings().await?
|
||||
};
|
||||
let mut plan_settings = plan_settings
|
||||
.into_iter()
|
||||
.map(|(k, v)| format!("* {k}: {v}", k = k.bold()))
|
||||
.collect::<Vec<_>>();
|
||||
// Stabilize output order
|
||||
plan_settings.sort();
|
||||
|
||||
let buf = format!(
|
||||
"\
|
||||
Nix install plan (v{version})\n\
|
||||
\n\
|
||||
Planner: {planner}\n\
|
||||
\n\
|
||||
Planner settings:\n\
|
||||
\n\
|
||||
{plan_settings}\n\
|
||||
\n\
|
||||
{maybe_plan_settings}\
|
||||
\
|
||||
The following actions will be taken:\n\
|
||||
\n\
|
||||
{actions}\n\
|
||||
",
|
||||
planner = planner.typetag_name(),
|
||||
plan_settings = planner
|
||||
.settings()?
|
||||
.into_iter()
|
||||
.map(|(k, v)| format!("* {k}: {v}", k = k.bold()))
|
||||
.collect::<Vec<_>>()
|
||||
.join("\n"),
|
||||
maybe_plan_settings = if plan_settings.is_empty() {
|
||||
String::new()
|
||||
} else {
|
||||
// TODO: "Changed planner settings"?
|
||||
format!(
|
||||
"\
|
||||
Planner settings:\n\
|
||||
\n\
|
||||
{plan_settings}\n\
|
||||
\n\
|
||||
",
|
||||
plan_settings = plan_settings.join("\n")
|
||||
)
|
||||
},
|
||||
actions = actions
|
||||
.iter()
|
||||
.map(|v| v.describe_execute())
|
||||
|
|
|
@ -105,12 +105,31 @@ impl Planner for Linux {
|
|||
Ok(map)
|
||||
}
|
||||
|
||||
async fn configured_settings(
|
||||
&self,
|
||||
) -> Result<HashMap<String, serde_json::Value>, PlannerError> {
|
||||
let default = Self::default().await?.settings()?;
|
||||
let configured = self.settings()?;
|
||||
|
||||
let mut settings: HashMap<String, serde_json::Value> = HashMap::new();
|
||||
for (key, value) in configured.iter() {
|
||||
if default.get(key) != Some(value) {
|
||||
settings.insert(key.clone(), value.clone());
|
||||
}
|
||||
}
|
||||
|
||||
Ok(settings)
|
||||
}
|
||||
|
||||
#[cfg(feature = "diagnostics")]
|
||||
async fn diagnostic_data(&self) -> Result<crate::diagnostics::DiagnosticData, PlannerError> {
|
||||
Ok(crate::diagnostics::DiagnosticData::new(
|
||||
self.settings.diagnostic_endpoint.clone(),
|
||||
self.typetag_name().into(),
|
||||
self.configured_settings().await?,
|
||||
self.configured_settings()
|
||||
.await?
|
||||
.into_keys()
|
||||
.collect::<Vec<_>>(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -175,12 +175,31 @@ impl Planner for Macos {
|
|||
Ok(map)
|
||||
}
|
||||
|
||||
async fn configured_settings(
|
||||
&self,
|
||||
) -> Result<HashMap<String, serde_json::Value>, PlannerError> {
|
||||
let default = Self::default().await?.settings()?;
|
||||
let configured = self.settings()?;
|
||||
|
||||
let mut settings: HashMap<String, serde_json::Value> = HashMap::new();
|
||||
for (key, value) in configured.iter() {
|
||||
if default.get(key) != Some(value) {
|
||||
settings.insert(key.clone(), value.clone());
|
||||
}
|
||||
}
|
||||
|
||||
Ok(settings)
|
||||
}
|
||||
|
||||
#[cfg(feature = "diagnostics")]
|
||||
async fn diagnostic_data(&self) -> Result<crate::diagnostics::DiagnosticData, PlannerError> {
|
||||
Ok(crate::diagnostics::DiagnosticData::new(
|
||||
self.settings.diagnostic_endpoint.clone(),
|
||||
self.typetag_name().into(),
|
||||
self.configured_settings().await?,
|
||||
self.configured_settings()
|
||||
.await?
|
||||
.into_keys()
|
||||
.collect::<Vec<_>>(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,12 +53,31 @@ impl Planner for MyPlanner {
|
|||
Ok(map)
|
||||
}
|
||||
|
||||
async fn configured_settings(
|
||||
&self,
|
||||
) -> Result<HashMap<String, serde_json::Value>, PlannerError> {
|
||||
let default = Self::default().await?.settings()?;
|
||||
let configured = self.settings()?;
|
||||
|
||||
let mut settings: HashMap<String, serde_json::Value> = HashMap::new();
|
||||
for (key, value) in configured.iter() {
|
||||
if default.get(key) != Some(value) {
|
||||
settings.insert(key.clone(), value.clone());
|
||||
}
|
||||
}
|
||||
|
||||
Ok(settings)
|
||||
}
|
||||
|
||||
#[cfg(feature = "diagnostics")]
|
||||
async fn diagnostic_data(&self) -> Result<nix_installer::diagnostics::DiagnosticData, PlannerError> {
|
||||
Ok(nix_installer::diagnostics::DiagnosticData::new(
|
||||
self.common.diagnostic_endpoint.clone(),
|
||||
self.typetag_name().into(),
|
||||
self.configured_settings().await?,
|
||||
self.configured_settings()
|
||||
.await?
|
||||
.into_keys()
|
||||
.collect::<Vec<_>>(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
@ -111,21 +130,8 @@ pub trait Planner: std::fmt::Debug + Send + Sync + dyn_clone::DynClone {
|
|||
/// The settings being used by the planner
|
||||
fn settings(&self) -> Result<HashMap<String, serde_json::Value>, InstallSettingsError>;
|
||||
|
||||
async fn configured_settings(&self) -> Result<Vec<String>, PlannerError>
|
||||
where
|
||||
Self: Sized,
|
||||
{
|
||||
let default = Self::default().await?.settings()?;
|
||||
let configured = self.settings()?;
|
||||
|
||||
let mut keys: Vec<String> = Vec::new();
|
||||
for (key, value) in configured.iter() {
|
||||
if default.get(key) != Some(value) {
|
||||
keys.push(key.clone())
|
||||
}
|
||||
}
|
||||
Ok(keys)
|
||||
}
|
||||
async fn configured_settings(&self)
|
||||
-> Result<HashMap<String, serde_json::Value>, PlannerError>;
|
||||
|
||||
/// A boxed, type erased planner
|
||||
fn boxed(self) -> Box<dyn Planner>
|
||||
|
@ -200,7 +206,9 @@ impl BuiltinPlanner {
|
|||
Ok(built)
|
||||
}
|
||||
|
||||
pub async fn configured_settings(&self) -> Result<Vec<String>, PlannerError> {
|
||||
pub async fn configured_settings(
|
||||
&self,
|
||||
) -> Result<HashMap<String, serde_json::Value>, PlannerError> {
|
||||
match self {
|
||||
#[cfg(target_os = "linux")]
|
||||
BuiltinPlanner::Linux(inner) => inner.configured_settings().await,
|
||||
|
|
|
@ -257,12 +257,31 @@ impl Planner for SteamDeck {
|
|||
Ok(map)
|
||||
}
|
||||
|
||||
async fn configured_settings(
|
||||
&self,
|
||||
) -> Result<HashMap<String, serde_json::Value>, PlannerError> {
|
||||
let default = Self::default().await?.settings()?;
|
||||
let configured = self.settings()?;
|
||||
|
||||
let mut settings: HashMap<String, serde_json::Value> = HashMap::new();
|
||||
for (key, value) in configured.iter() {
|
||||
if default.get(key) != Some(value) {
|
||||
settings.insert(key.clone(), value.clone());
|
||||
}
|
||||
}
|
||||
|
||||
Ok(settings)
|
||||
}
|
||||
|
||||
#[cfg(feature = "diagnostics")]
|
||||
async fn diagnostic_data(&self) -> Result<crate::diagnostics::DiagnosticData, PlannerError> {
|
||||
Ok(crate::diagnostics::DiagnosticData::new(
|
||||
self.settings.diagnostic_endpoint.clone(),
|
||||
self.typetag_name().into(),
|
||||
self.configured_settings().await?,
|
||||
self.configured_settings()
|
||||
.await?
|
||||
.into_keys()
|
||||
.collect::<Vec<_>>(),
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue