qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, armbru@redhat.com, aliguori@amazon.com
Subject: [Qemu-devel] [PATCH v2 2/2] vl.c: reduce exit on error code duplication
Date: Mon, 20 Oct 2014 14:29:55 +0200	[thread overview]
Message-ID: <1413808195-7428-3-git-send-email-imammedo@redhat.com> (raw)
In-Reply-To: <1413808195-7428-1-git-send-email-imammedo@redhat.com>

use error_report_fatal() helper instead of a bunch of
    if (local_err) {
        error_report(foo);
        error_free(local_err);
        exit(1);
    }
code blocks

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
---
 * s/exit_if_error/error_report_fatal/
 * move error_report_fatal() into util/error.c
---
 include/qemu/error-report.h |  2 ++
 util/error.c                | 24 ++++++++++++++++++++++++
 vl.c                        | 34 ++++++----------------------------
 3 files changed, 32 insertions(+), 28 deletions(-)

diff --git a/include/qemu/error-report.h b/include/qemu/error-report.h
index 7ab2355..a80a1a7 100644
--- a/include/qemu/error-report.h
+++ b/include/qemu/error-report.h
@@ -16,6 +16,7 @@
 #include <stdarg.h>
 #include <stdbool.h>
 #include "qemu/compiler.h"
+#include "qapi/error.h"
 
 typedef struct Location {
     /* all members are private to qemu-error.c */
@@ -40,6 +41,7 @@ void error_printf_unless_qmp(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
 void error_set_progname(const char *argv0);
 void error_vreport(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
 void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
+void error_report_fatal(Error *err, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
 const char *error_get_progname(void);
 extern bool enable_timestamp_msg;
 
diff --git a/util/error.c b/util/error.c
index 2ace0d8..61d6d21 100644
--- a/util/error.c
+++ b/util/error.c
@@ -171,3 +171,27 @@ void error_propagate(Error **dst_errp, Error *local_err)
         error_free(local_err);
     }
 }
+
+void error_report_fatal(Error *err, const char *fmt, ...)
+{
+    va_list ap;
+
+    if (!err) {
+        return;
+    }
+
+    if (fmt) {
+        char *optional_msg = NULL;
+
+        va_start(ap, fmt);
+        optional_msg = g_strdup_vprintf(fmt, ap);
+        va_end(ap);
+        error_report("%s: %s", optional_msg, error_get_pretty(err));
+        g_free(optional_msg);
+    } else {
+        error_report("%s", error_get_pretty(err));
+    }
+
+    error_free(err);
+    exit(EXIT_FAILURE);
+}
diff --git a/vl.c b/vl.c
index 528c289..4f03b96 100644
--- a/vl.c
+++ b/vl.c
@@ -2264,11 +2264,7 @@ static int chardev_init_func(QemuOpts *opts, void *opaque)
     Error *local_err = NULL;
 
     qemu_chr_new_from_opts(opts, NULL, &local_err);
-    if (local_err) {
-        error_report("%s", error_get_pretty(local_err));
-        error_free(local_err);
-        return -1;
-    }
+    error_report_fatal(local_err, NULL);
     return 0;
 }
 
@@ -2674,12 +2670,7 @@ static int machine_set_property(const char *name, const char *value,
     string_input_visitor_cleanup(siv);
     g_free(qom_name);
 
-    if (local_err) {
-        qerror_report_err(local_err);
-        error_free(local_err);
-        return -1;
-    }
-
+    error_report_fatal(local_err, NULL);
     return 0;
 }
 
@@ -4074,11 +4065,7 @@ int main(int argc, char **argv, char **envp)
 
     if (qtest_chrdev) {
         qtest_init(qtest_chrdev, qtest_log, &local_err);
-        if (local_err) {
-            error_report("%s", error_get_pretty(local_err));
-            error_free(local_err);
-            exit(1);
-        }
+        error_report_fatal(local_err, NULL);
     }
 
     machine_opts = qemu_get_machine_opts();
@@ -4318,12 +4305,8 @@ int main(int argc, char **argv, char **envp)
     if (vnc_display) {
         vnc_display_init(ds);
         vnc_display_open(ds, vnc_display, &local_err);
-        if (local_err != NULL) {
-            error_report("Failed to start VNC server on `%s': %s",
-                         vnc_display, error_get_pretty(local_err));
-            error_free(local_err);
-            exit(1);
-        }
+        error_report_fatal(local_err, "Failed to start VNC server on '%s'",
+                           vnc_display);
 
         if (show_vnc_port) {
             printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
@@ -4371,12 +4354,7 @@ int main(int argc, char **argv, char **envp)
 
     if (incoming) {
         qemu_start_incoming_migration(incoming, &local_err);
-        if (local_err) {
-            error_report("-incoming %s: %s", incoming,
-                         error_get_pretty(local_err));
-            error_free(local_err);
-            exit(1);
-        }
+        error_report_fatal(local_err, "-incoming %s", incoming);
     } else if (autostart) {
         vm_start();
     }
-- 
1.9.3

  parent reply	other threads:[~2014-10-20 12:30 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-20 12:29 [Qemu-devel] [PATCH v2 0/2] vl.c: unify exit on error handling Igor Mammedov
2014-10-20 12:29 ` [Qemu-devel] [PATCH v2 1/2] vl.c: use single local_err throughout main() Igor Mammedov
2014-10-20 12:29 ` Igor Mammedov [this message]
2014-10-20 16:48   ` [Qemu-devel] [PATCH v2 2/2] vl.c: reduce exit on error code duplication Eric Blake

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=1413808195-7428-3-git-send-email-imammedo@redhat.com \
    --to=imammedo@redhat.com \
    --cc=aliguori@amazon.com \
    --cc=armbru@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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;
as well as URLs for NNTP newsgroup(s).