From 21706eb103ab8585d8c15769bcd8d60ad1534a54 Mon Sep 17 00:00:00 2001 From: alxndrv <> Date: Thu, 13 Feb 2025 12:28:00 +0200 Subject: [PATCH] `lscpu`: Move code around as per the review comments --- src/uu/lscpu/src/lscpu.rs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/uu/lscpu/src/lscpu.rs b/src/uu/lscpu/src/lscpu.rs index 0676a1d..3150e53 100644 --- a/src/uu/lscpu/src/lscpu.rs +++ b/src/uu/lscpu/src/lscpu.rs @@ -78,11 +78,6 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> { }; let mut cpu_infos = CpuInfos::new(); - cpu_infos.push(CpuInfo::new( - "CPU(s)", - &format!("{}", system.cpus().len()), - None, - )); let mut arch_info = CpuInfo::new("Architecture", &get_architecture(), None); @@ -103,6 +98,11 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> { } cpu_infos.push(arch_info); + cpu_infos.push(CpuInfo::new( + "CPU(s)", + &format!("{}", system.cpus().len()), + None, + )); // TODO: This is currently quite verbose and doesn't strictly respect the hierarchy of `/proc/cpuinfo` contents // ie. the file might contain multiple sections, each with their own vendor_id/model name etc. but right now @@ -155,14 +155,6 @@ fn print_output(infos: CpuInfos, out_opts: OutputOptions) { cmp::max(own_width, max_child_width) } - // Used later to align all values to the same column - let max_field_width = infos - .lscpu - .iter() - .map(|info| get_max_field_width(info, 0)) - .max() - .unwrap(); - fn print_entries( entries: &Vec<CpuInfo>, depth: usize, @@ -183,6 +175,14 @@ fn print_output(infos: CpuInfos, out_opts: OutputOptions) { } } + // Used to align all values to the same column + let max_field_width = infos + .lscpu + .iter() + .map(|info| get_max_field_width(info, 0)) + .max() + .unwrap(); + print_entries(&infos.lscpu, 0, max_field_width, &out_opts); }