All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kurz <groug@kaod.org>
To: Markus Armbruster <armbru@redhat.com>
Cc: peter.maydell@linaro.org, vsementsov@virtuozzo.com,
	berrange@redhat.com, ehabkost@redhat.com, qemu-block@nongnu.org,
	qemu-devel@nongnu.org, pbonzini@redhat.com
Subject: Re: [PATCH v4 02/45] error: Improve error.h's big comment
Date: Tue, 7 Jul 2020 21:42:38 +0200	[thread overview]
Message-ID: <20200707214238.15ac8fc4@bahia.lan> (raw)
In-Reply-To: <20200707160613.848843-3-armbru@redhat.com>

On Tue,  7 Jul 2020 18:05:30 +0200
Markus Armbruster <armbru@redhat.com> wrote:

> Add headlines to the big comment.
> 
> Explain examples for NULL, &error_abort and &error_fatal argument
> better.
> 
> Tweak rationale for error_propagate_prepend().
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---

Reviewed-by: Greg Kurz <groug@kaod.org>

>  include/qapi/error.h | 51 +++++++++++++++++++++++++++++++-------------
>  1 file changed, 36 insertions(+), 15 deletions(-)
> 
> diff --git a/include/qapi/error.h b/include/qapi/error.h
> index e8960eaad5..6d079c58b7 100644
> --- a/include/qapi/error.h
> +++ b/include/qapi/error.h
> @@ -15,6 +15,8 @@
>  /*
>   * Error reporting system loosely patterned after Glib's GError.
>   *
> + * = Creating errors =
> + *
>   * Create an error:
>   *     error_setg(&err, "situation normal, all fouled up");
>   *
> @@ -27,6 +29,8 @@
>   *     error_setg(&err, "invalid quark\n" // WRONG!
>   *                "Valid quarks are up, down, strange, charm, top, bottom.");
>   *
> + * = Reporting and destroying errors =
> + *
>   * Report an error to the current monitor if we have one, else stderr:
>   *     error_report_err(err);
>   * This frees the error object.
> @@ -40,6 +44,30 @@
>   *     error_free(err);
>   * Note that this loses hints added with error_append_hint().
>   *
> + * Call a function ignoring errors:
> + *     foo(arg, NULL);
> + * This is more concise than
> + *     Error *err = NULL;
> + *     foo(arg, &err);
> + *     error_free(err); // don't do this
> + *
> + * Call a function aborting on errors:
> + *     foo(arg, &error_abort);
> + * This is more concise and fails more nicely than
> + *     Error *err = NULL;
> + *     foo(arg, &err);
> + *     assert(!err); // don't do this
> + *
> + * Call a function treating errors as fatal:
> + *     foo(arg, &error_fatal);
> + * This is more concise than
> + *     Error *err = NULL;
> + *     foo(arg, &err);
> + *     if (err) { // don't do this
> + *         error_report_err(err);
> + *         exit(1);
> + *     }
> + *
>   * Handle an error without reporting it (just for completeness):
>   *     error_free(err);
>   *
> @@ -47,6 +75,11 @@
>   * reporting it (primarily useful in testsuites):
>   *     error_free_or_abort(&err);
>   *
> + * = Passing errors around =
> + *
> + * Errors get passed to the caller through the conventional @errp
> + * parameter.
> + *
>   * Pass an existing error to the caller:
>   *     error_propagate(errp, err);
>   * where Error **errp is a parameter, by convention the last one.
> @@ -54,11 +87,10 @@
>   * Pass an existing error to the caller with the message modified:
>   *     error_propagate_prepend(errp, err,
>   *                             "Could not frobnicate '%s': ", name);
> - *
> - * Avoid
> - *     error_propagate(errp, err);
> + * This is more concise than
> + *     error_propagate(errp, err); // don't do this
>   *     error_prepend(errp, "Could not frobnicate '%s': ", name);
> - * because this fails to prepend when @errp is &error_fatal.
> + * and works even when @errp is &error_fatal.
>   *
>   * Create a new error and pass it to the caller:
>   *     error_setg(errp, "situation normal, all fouled up");
> @@ -70,15 +102,6 @@
>   *         handle the error...
>   *     }
>   *
> - * Call a function ignoring errors:
> - *     foo(arg, NULL);
> - *
> - * Call a function aborting on errors:
> - *     foo(arg, &error_abort);
> - *
> - * Call a function treating errors as fatal:
> - *     foo(arg, &error_fatal);
> - *
>   * Receive an error and pass it on to the caller:
>   *     Error *err = NULL;
>   *     foo(arg, &err);
> @@ -86,8 +109,6 @@
>   *         handle the error...
>   *         error_propagate(errp, err);
>   *     }
> - * where Error **errp is a parameter, by convention the last one.
> - *
>   * Do *not* "optimize" this to
>   *     foo(arg, errp);
>   *     if (*errp) { // WRONG!



  parent reply	other threads:[~2020-07-07 19:43 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-07 16:05 [PATCH v4 00/45] Less clumsy error checking Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 01/45] error: Fix examples in error.h's big comment Markus Armbruster
2020-07-07 18:35   ` Eric Blake
2020-07-07 16:05 ` [PATCH v4 02/45] error: Improve " Markus Armbruster
2020-07-07 18:38   ` Eric Blake
2020-07-07 19:42   ` Greg Kurz [this message]
2020-07-07 16:05 ` [PATCH v4 03/45] error: Document Error API usage rules Markus Armbruster
2020-07-07 18:46   ` Eric Blake
2020-07-07 19:23     ` Markus Armbruster
2020-07-07 19:47       ` Eric Blake
2020-07-07 16:05 ` [PATCH v4 04/45] qdev: Use returned bool to check for qdev_realize() etc. failure Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 05/45] macio: Tidy up error handling in macio_newworld_realize() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 06/45] virtio-crypto-pci: Tidy up virtio_crypto_pci_realize() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 07/45] qemu-option: Check return value instead of @err where convenient Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 08/45] qemu-option: Make uses of find_desc_by_name() more similar Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 09/45] qemu-option: Factor out helper find_default_by_name() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 10/45] qemu-option: Simplify around find_default_by_name() Markus Armbruster
2020-07-07 19:46   ` Greg Kurz
2020-07-07 16:05 ` [PATCH v4 11/45] qemu-option: Factor out helper opt_create() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 12/45] qemu-option: Replace opt_set() by cleaner opt_validate() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 13/45] qemu-option: Make functions taking Error ** return bool, not void Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 14/45] qemu-option: Use returned bool to check for failure Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 15/45] block: Avoid error accumulation in bdrv_img_create() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 16/45] hmp: Eliminate a variable in hmp_migrate_set_parameter() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 17/45] qapi: Make visitor functions taking Error ** return bool, not void Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 18/45] qapi: Use returned bool to check for failure, Coccinelle part Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 19/45] qapi: Use returned bool to check for failure, manual part Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 20/45] s390x/pci: Fix harmless mistake in zpci's property fid's setter Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 21/45] qom: Use error_reportf_err() instead of g_printerr() in examples Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 22/45] qom: Rename qdev_get_type() to object_get_type() Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 23/45] qom: Crash more nicely on object_property_get_link() failure Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 24/45] qom: Don't handle impossible " Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 25/45] qom: Use return values to check for error where that's simpler Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 26/45] qom: Put name parameter before value / visitor parameter Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 27/45] qom: Make functions taking Error ** return bool, not void Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 28/45] qom: Use returned bool to check for failure, Coccinelle part Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 29/45] qom: Use returned bool to check for failure, manual part Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 30/45] qom: Make functions taking Error ** return bool, not 0/-1 Markus Armbruster
2020-07-07 16:05 ` [PATCH v4 31/45] qdev: Make functions taking Error ** return bool, not void Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 32/45] qdev: Use returned bool to check for failure, Coccinelle part Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 33/45] error: Avoid unnecessary error_propagate() after error_setg() Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 34/45] error: Eliminate error_propagate() with Coccinelle, part 1 Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 35/45] error: Eliminate error_propagate() with Coccinelle, part 2 Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 36/45] error: Eliminate error_propagate() manually Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 37/45] error: Reduce unnecessary error propagation Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 38/45] block/parallels: Simplify parallels_open() after previous commit Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 39/45] qapi: Smooth another visitor error checking pattern Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 40/45] qapi: Smooth visitor error checking in generated code Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 41/45] qapi: Purge error_propagate() from QAPI core Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 42/45] error: Avoid error_propagate() after migrate_add_blocker() Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 43/45] qemu-img: Ignore Error objects where the return value suffices Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 44/45] qdev: " Markus Armbruster
2020-07-07 16:06 ` [PATCH v4 45/45] hmp: " Markus Armbruster
2020-07-07 16:27 ` [PATCH v4 00/45] Less clumsy error checking Markus Armbruster
2020-07-07 17:10 ` no-reply

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=20200707214238.15ac8fc4@bahia.lan \
    --to=groug@kaod.org \
    --cc=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.