From: Joshua Lock <josh@linux.intel.com>
To: bitbake-devel@lists.openembedded.org
Subject: Re: [RFC PATCH 0/1] Don't use set() for datastore variables
Date: Mon, 12 Sep 2011 13:42:51 -0700 [thread overview]
Message-ID: <1315860185.2184.14.camel@scimitar> (raw)
In-Reply-To: <cover.1315406971.git.josh@linux.intel.com>
On Wed, 2011-09-07 at 14:27 -0700, Joshua Lock wrote:
> This is an RFC patch.
>
> I recently implemented a check within the hob gui to ensure that it's running with the
> required pre and post configuration files. However this check uses a variable from the data
> store which is a Python set container.
>
> The Python xmlrpclib is unable to marshal sets and therefore the patch I added breaks hob
> when using the xmlrpc server backend.
"Why can't xmlrpclib marshal a set?" - I pretend to hear you ask.
xmlrpclib will only marshal objects with a type which can be serialized
to XML. A set has no direct XML equivalent, so the marshalling fails.
As alluded to in my original mail, we could approach this in alternative
ways. The most obvious being to add an extra step to serialise the set,
or any other passed objects, to some more appropriate form. We already
use the pickle module in various places and this is an obvious contender
here, however I'm not clear on how we would introduce this *just* for
the xmlrpc server.
Would profiling data make this change more palatable? If so what sort of
profiling would people like to see?
Comments appreciated,
Joshua
--
Joshua Lock
Yocto Project "Johannes factotum"
Intel Open Source Technology Centre
next prev parent reply other threads:[~2011-09-12 20:48 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-07 21:27 [RFC PATCH 0/1] Don't use set() for datastore variables Joshua Lock
2011-09-07 21:27 ` [PATCH 1/1] cache|cooker|parse: switch __depends from a set to a dict Joshua Lock
2011-09-12 20:42 ` Joshua Lock [this message]
2011-09-13 12:55 ` [RFC PATCH 0/1] Don't use set() for datastore variables Bernhard Reutner-Fischer
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=1315860185.2184.14.camel@scimitar \
--to=josh@linux.intel.com \
--cc=bitbake-devel@lists.openembedded.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 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.