public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Christoph Heiss <c.heiss@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH installer 5/7] tui: install progress: handle errors in ui message loop more gracefully
Date: Wed, 26 Jul 2023 16:03:59 +0200	[thread overview]
Message-ID: <20230726140406.1048552-6-c.heiss@proxmox.com> (raw)
In-Reply-To: <20230726140406.1048552-1-c.heiss@proxmox.com>

This at least gives /some/ feedback to the user he can potentially
report, instead of a single, hardcoded message.

Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
---
 .../src/views/install_progress.rs             | 33 +++++++++++++------
 1 file changed, 23 insertions(+), 10 deletions(-)

diff --git a/proxmox-tui-installer/src/views/install_progress.rs b/proxmox-tui-installer/src/views/install_progress.rs
index 3046a26..2025a4c 100644
--- a/proxmox-tui-installer/src/views/install_progress.rs
+++ b/proxmox-tui-installer/src/views/install_progress.rs
@@ -149,29 +149,36 @@ fn progress_task(
     };
 
     let inner = || {
-        let reader = child.stdout.take().map(BufReader::new)?;
-        let mut writer = child.stdin.take()?;
+        let reader = child
+            .stdout
+            .take()
+            .map(BufReader::new)
+            .ok_or("failed to get stdin reader")?;
 
-        serde_json::to_writer(&mut writer, &InstallConfig::from(options)).unwrap();
-        writeln!(writer).unwrap();
+        let mut writer = child.stdin.take().ok_or("failed to get stdin writer")?;
+
+        serde_json::to_writer(&mut writer, &InstallConfig::from(options))
+            .map_err(|err| format!("failed to serialize install config: {err}"))?;
+        writeln!(writer).map_err(|err| format!("failed to write install config: {err}"))?;
 
         let writer = Arc::new(Mutex::new(writer));
 
         for line in reader.lines() {
             let line = match line {
                 Ok(line) => line,
-                Err(_) => break,
+                Err(err) => return Err(format!("low-level installer exited early: {err}")),
             };
 
             let msg = match line.parse::<UiMessage>() {
                 Ok(msg) => msg,
                 Err(stray) => {
+                    // Not a fatal error, so don't abort the installation by returning
                     eprintln!("low-level installer: {stray}");
                     continue;
                 }
             };
 
-            match msg {
+            let result = match msg.clone() {
                 UiMessage::Info(s) => cb_sink.send(Box::new(|siv| {
                     siv.add_layer(Dialog::info(s).title("Information"));
                 })),
@@ -192,18 +199,23 @@ fn progress_task(
                     progress_text.set_content(msg.to_owned());
                     cb_sink.send(Box::new(move |siv| prepare_for_reboot(siv, success, &msg)))
                 }
+            };
+
+            if let Err(err) = result {
+                eprintln!("error during message handling: {err}");
+                eprintln!("  message was: '{msg:?}'");
             }
-            .unwrap();
         }
 
-        Some(())
+        Ok(())
     };
 
-    if inner().is_none() {
+    if let Err(err) = inner() {
+        let message = format!("install failed: {err}");
         cb_sink
             .send(Box::new(|siv| {
                 siv.add_layer(
-                    Dialog::text("low-level installer exited early")
+                    Dialog::text(message)
                         .title("Error")
                         .button("Exit", Cursive::quit),
                 );
@@ -216,6 +228,7 @@ impl ViewWrapper for InstallProgressView {
     cursive::wrap_impl!(self.view: PaddedView<LinearLayout>);
 }
 
+#[derive(Debug, Clone)]
 enum UiMessage {
     Info(String),
     Error(String),
-- 
2.41.0





  parent reply	other threads:[~2023-07-26 14:04 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-26 14:03 [pve-devel] [PATCH installer 0/7] refactor; improve installation progress Christoph Heiss
2023-07-26 14:03 ` [pve-devel] [PATCH installer 1/7] tui: move install progress dialog into own view module Christoph Heiss
2023-07-26 14:03 ` [pve-devel] [PATCH installer 2/7] tui: install progress: split out low-level installer spawing into own function Christoph Heiss
2023-07-26 14:03 ` [pve-devel] [PATCH installer 3/7] tui: install progress: split out reboot handling " Christoph Heiss
2023-07-26 14:03 ` [pve-devel] [PATCH installer 4/7] tui: install progress: split out prompt logic " Christoph Heiss
2023-07-26 14:03 ` Christoph Heiss [this message]
2023-07-26 14:04 ` [pve-devel] [PATCH installer 6/7] low-level: avoid open-coding config reading, parsing and merging Christoph Heiss
2023-07-26 14:04 ` [pve-devel] [PATCH installer 7/7] low-level, tui: count down auto-reboot timeout Christoph Heiss

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230726140406.1048552-6-c.heiss@proxmox.com \
    --to=c.heiss@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal