diff --git a/src/garage/cli/remote/layout.rs b/src/garage/cli/remote/layout.rs index dcd96e12..f350ab66 100644 --- a/src/garage/cli/remote/layout.rs +++ b/src/garage/cli/remote/layout.rs @@ -4,7 +4,6 @@ use format_table::format_table; use garage_util::error::*; use garage_api_admin::api::*; -use garage_rpc::layout; use crate::cli::remote::*; use crate::cli::structs::*; @@ -162,18 +161,17 @@ impl Cli { match config_opt.redundancy { None => (), Some(r_str) => { - let r = r_str - .parse::() - .ok_or_message("invalid zone redundancy value")?; + let r = parse_zone_redundancy(&r_str)?; self.api_request(UpdateClusterLayoutRequest { roles: vec![], - parameters: Some(LayoutParameters { - zone_redundancy: r.into(), - }), + parameters: Some(LayoutParameters { zone_redundancy: r }), }) .await?; - println!("The zone redundancy parameter has been set to '{}'.", r); + println!( + "The zone redundancy parameter has been set to '{}'.", + display_zone_redundancy(r) + ); did_something = true; } } @@ -403,7 +401,7 @@ pub fn print_cluster_layout(layout: &GetClusterLayoutResponse, empty_msg: &str) println!(); println!( "Zone redundancy: {}", - Into::::into(layout.parameters.zone_redundancy) + display_zone_redundancy(layout.parameters.zone_redundancy), ); } else { println!("{}", empty_msg); @@ -447,7 +445,7 @@ pub fn print_staging_role_changes(layout: &GetClusterLayoutResponse) -> bool { if let Some(p) = layout.staged_parameters.as_ref() { println!( "Zone redundancy: {}", - Into::::into(p.zone_redundancy) + display_zone_redundancy(p.zone_redundancy) ); } true @@ -455,3 +453,22 @@ pub fn print_staging_role_changes(layout: &GetClusterLayoutResponse) -> bool { false } } + +pub fn display_zone_redundancy(z: ZoneRedundancy) -> String { + match z { + ZoneRedundancy::Maximum => "maximum".into(), + ZoneRedundancy::AtLeast(x) => x.to_string(), + } +} + +pub fn parse_zone_redundancy(s: &str) -> Result { + match s { + "none" | "max" | "maximum" => Ok(ZoneRedundancy::Maximum), + x => { + let v = x.parse::().map_err(|_| { + Error::Message("zone redundancy must be 'none'/'max' or an integer".into()) + })?; + Ok(ZoneRedundancy::AtLeast(v)) + } + } +} diff --git a/src/rpc/layout/mod.rs b/src/rpc/layout/mod.rs index 0d8ed05f..cfd576a7 100644 --- a/src/rpc/layout/mod.rs +++ b/src/rpc/layout/mod.rs @@ -1,5 +1,3 @@ -use std::fmt; - use bytesize::ByteSize; use garage_util::crdt::{AutoCrdt, Crdt}; @@ -397,30 +395,6 @@ impl NodeRole { } } -impl fmt::Display for ZoneRedundancy { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - match self { - ZoneRedundancy::Maximum => write!(f, "maximum"), - ZoneRedundancy::AtLeast(x) => write!(f, "{}", x), - } - } -} - -impl core::str::FromStr for ZoneRedundancy { - type Err = &'static str; - fn from_str(s: &str) -> Result { - match s { - "none" | "max" | "maximum" => Ok(ZoneRedundancy::Maximum), - x => { - let v = x - .parse::() - .map_err(|_| "zone redundancy must be 'none'/'max' or an integer")?; - Ok(ZoneRedundancy::AtLeast(v)) - } - } - } -} - impl UpdateTracker { fn merge(&mut self, other: &UpdateTracker) -> bool { let mut changed = false;