qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: qemu-devel@nongnu.org
Cc: armbru@redhat.com, "Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: [Qemu-devel] [PATCH v7 03/14] qapi: leave the ifcond attribute undefined until check()
Date: Tue,  3 Jul 2018 17:56:37 +0200	[thread overview]
Message-ID: <20180703155648.11933-4-marcandre.lureau@redhat.com> (raw)
In-Reply-To: <20180703155648.11933-1-marcandre.lureau@redhat.com>

We commonly initialize attributes to None in .init(), then set their
real value in .check().  Accessing the attribute before .check()
yields None.  If we're lucky, the code that accesses the attribute
prematurely chokes on None.

It won't for .ifcond, because None is a legitimate value.

Leave the ifcond attribute undefined until check().

Suggested-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
---
 scripts/qapi/common.py | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/scripts/qapi/common.py b/scripts/qapi/common.py
index 4f4014b387..46e33e23e4 100644
--- a/scripts/qapi/common.py
+++ b/scripts/qapi/common.py
@@ -1021,13 +1021,19 @@ class QAPISchemaEntity(object):
         # such place).
         self.info = info
         self.doc = doc
-        self.ifcond = listify_cond(ifcond)
+        self._ifcond = ifcond  # self.ifcond is set only after .check()
 
     def c_name(self):
         return c_name(self.name)
 
     def check(self, schema):
-        pass
+        if isinstance(self._ifcond, QAPISchemaType):
+            # inherit the condition from a type
+            typ = self._ifcond
+            typ.check(schema)
+            self.ifcond = typ.ifcond
+        else:
+            self.ifcond = listify_cond(self._ifcond)
 
     def is_implicit(self):
         return not self.info
@@ -1164,6 +1170,7 @@ class QAPISchemaEnumType(QAPISchemaType):
         self.prefix = prefix
 
     def check(self, schema):
+        QAPISchemaType.check(self, schema)
         seen = {}
         for v in self.values:
             v.check_clash(self.info, seen)
@@ -1196,8 +1203,10 @@ class QAPISchemaArrayType(QAPISchemaType):
         self.element_type = None
 
     def check(self, schema):
+        QAPISchemaType.check(self, schema)
         self.element_type = schema.lookup_type(self._element_type_name)
         assert self.element_type
+        self.element_type.check(schema)
         self.ifcond = self.element_type.ifcond
 
     def is_implicit(self):
@@ -1240,6 +1249,7 @@ class QAPISchemaObjectType(QAPISchemaType):
         self.members = None
 
     def check(self, schema):
+        QAPISchemaType.check(self, schema)
         if self.members is False:               # check for cycles
             raise QAPISemError(self.info,
                                "Object %s contains itself" % self.name)
@@ -1430,6 +1440,7 @@ class QAPISchemaAlternateType(QAPISchemaType):
         self.variants = variants
 
     def check(self, schema):
+        QAPISchemaType.check(self, schema)
         self.variants.tag_member.check(schema)
         # Not calling self.variants.check_clash(), because there's nothing
         # to clash with
@@ -1474,6 +1485,7 @@ class QAPISchemaCommand(QAPISchemaEntity):
         self.allow_preconfig = allow_preconfig
 
     def check(self, schema):
+        QAPISchemaEntity.check(self, schema)
         if self._arg_type_name:
             self.arg_type = schema.lookup_type(self._arg_type_name)
             assert (isinstance(self.arg_type, QAPISchemaObjectType) or
@@ -1509,6 +1521,7 @@ class QAPISchemaEvent(QAPISchemaEntity):
         self.boxed = boxed
 
     def check(self, schema):
+        QAPISchemaEntity.check(self, schema)
         if self._arg_type_name:
             self.arg_type = schema.lookup_type(self._arg_type_name)
             assert (isinstance(self.arg_type, QAPISchemaObjectType) or
@@ -1642,7 +1655,7 @@ class QAPISchema(object):
             # But it's not tight: the disjunction need not imply it.  We
             # may end up compiling useless wrapper types.
             # TODO kill simple unions or implement the disjunction
-            assert ifcond == typ.ifcond
+            assert ifcond == typ._ifcond # pylint: disable=protected-access
         else:
             self._def_entity(QAPISchemaObjectType(name, info, doc, ifcond,
                                                   None, members, None))
@@ -1688,7 +1701,7 @@ class QAPISchema(object):
             assert len(typ) == 1
             typ = self._make_array_type(typ[0], info)
         typ = self._make_implicit_object_type(
-            typ, info, None, self.lookup_type(typ).ifcond,
+            typ, info, None, self.lookup_type(typ),
             'wrapper', [self._make_member('data', typ, info)])
         return QAPISchemaObjectTypeVariant(case, typ)
 
-- 
2.18.0.rc1

  parent reply	other threads:[~2018-07-03 15:57 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-03 15:56 [Qemu-devel] [PATCH v7 00/14] qapi: add #if pre-processor conditions to generated code (part 1) Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 01/14] qapi: add 'if' to top-level expressions Marc-André Lureau
2018-07-03 16:21   ` Markus Armbruster
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 02/14] qapi: pass 'if' condition into QAPISchemaEntity objects Marc-André Lureau
2018-07-03 15:56 ` Marc-André Lureau [this message]
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 04/14] qapi: add 'ifcond' to visitor methods Marc-André Lureau
2018-07-03 16:22   ` Markus Armbruster
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 05/14] qapi: mcgen() shouldn't indent # lines Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 06/14] qapi: add #if/#endif helpers Marc-André Lureau
2018-07-03 16:35   ` Markus Armbruster
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 07/14] qapi-introspect: modify to_qlit() to append ', ' on level > 0 Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 08/14] qapi-introspect: add preprocessor conditions to generated QLit Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 09/14] qapi/commands: add #if conditions to commands Marc-André Lureau
2018-07-03 16:36   ` Markus Armbruster
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 10/14] qapi/events: add #if conditions to events Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 11/14] qapi-types: add #if conditions to types & visitors Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 12/14] qapi: add 'If:' section to generated documentation Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 13/14] qapi: add conditions to VNC type/commands/events on the schema Marc-André Lureau
2018-07-03 15:56 ` [Qemu-devel] [PATCH v7 14/14] qapi: add conditions to SPICE " Marc-André Lureau
2018-07-03 16:41 ` [Qemu-devel] [PATCH v7 00/14] qapi: add #if pre-processor conditions to generated code (part 1) Markus Armbruster

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=20180703155648.11933-4-marcandre.lureau@redhat.com \
    --to=marcandre.lureau@redhat.com \
    --cc=armbru@redhat.com \
    --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).