qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] Error propagation in generated visitors and command marshallers
@ 2014-04-09 15:48 Markus Armbruster
  2014-04-09 16:34 ` Eric Blake
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Markus Armbruster @ 2014-04-09 15:48 UTC (permalink / raw)
  To: qemu-devel
  Cc: Paolo Bonzini, Cole Robinson, Michael Roth, Anthony Liguori,
	Luiz Capitulino

I stumbled over this while trying to purge error_is_set() from the code.


Here's how we commonly use the Error API:

    Error *err = NULL;

    foo(arg, &err)
    if (err) {
        goto out;
    }
    bar(arg, &err)
    if (err) {
        goto out;
    }

This ensures that err is null on entry, both for foo() and for bar().
Many functions rely on that, like this:

    void foo(ArgType arg, Error **errp)
    {
        if (frobnicate(arg) < 0) {
            error_setg(errp, "Can't frobnicate");
                                // This asserts errp != NULL
        }
    }


Here's how some of our visitor code uses the Error API (for real code,
check out generated qmp-marshal.c):

    Error *err = NULL;
    QmpInputVisitor *mi = qmp_input_visitor_new_strict(QOBJECT(args));
    Visitor *v = qmp_input_get_visitor(mi);
    char *foo = NULL;
    char *bar = NULL;

    visit_type_str(v, &foo, "foo", &err);
    visit_type_str(v, &bar, "bar", &err);
    if (err) {
        goto out;
    }

Unlike above, this may pass a non-null errp to the second
visit_type_str(), namely when the first one fails.

The visitor functions guard against that, like this:

    void visit_type_str(Visitor *v, char **obj, const char *name, Error **errp)
    {
        if (!error_is_set(errp)) {
            v->type_str(v, obj, name, errp);
        }
    }

As discussed before, error_is_set() is almost almost wrong, fragile or
unclean.  What if errp is null?  Then we fail to stop visiting after an
error.

The function could be improved like this:

    void visit_type_str(Visitor *v, char **obj, const char *name, Error **errp)
    {
        assert(errp);
        if (!*errp) {
            v->type_str(v, obj, name, errp);
        }
    }


But: is it a good idea to have both patterns in the code?  Should we
perhaps use the common pattern for visiting, too?  Like this:

    visit_type_str(v, &foo, "foo", &err);
    if (err) {
        goto out;
    }
    visit_type_str(v, &bar, "bar", &err);
    if (err) {
        goto out;
    }

Then we can assume *errp is clear on function entry, like this:

    void visit_type_str(Visitor *v, char **obj, const char *name, Error **errp)
    {
        v->type_str(v, obj, name, errp);
    }

Should execute roughly the same number of conditional branches.

Tedious repetition of "if (err) goto out" in the caller, but that's what
we do elsewhere, and unlike elsewhere, these one's are generated.

Opinions?

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2014-04-11 22:46 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-09 15:48 [Qemu-devel] Error propagation in generated visitors and command marshallers Markus Armbruster
2014-04-09 16:34 ` Eric Blake
2014-04-09 16:36 ` Anthony Liguori
2014-04-11  8:20   ` Markus Armbruster
2014-04-09 17:23 ` Dr. David Alan Gilbert
2014-04-11  8:24   ` Markus Armbruster
2014-04-11  8:37     ` Dr. David Alan Gilbert
2014-04-10 11:24 ` Kevin Wolf
2014-04-11  8:28   ` Markus Armbruster
2014-04-11 10:10     ` Kevin Wolf
2014-04-11 11:59 ` Peter Crosthwaite
2014-04-11 13:41   ` Markus Armbruster
2014-04-11 22:46     ` Peter Crosthwaite

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).