2
0
Эх сурвалжийг харах

qapi: Remove wildcard includes

Wildcard includes become hard to manage when refactoring and dealing
with circular dependencies with strictly typed mypy.

flake8 also flags each one as a warning, as it is not smart enough to
know which names exist in the imported file.

Remove them and include things explicitly by name instead.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20201009161558.107041-7-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
John Snow 4 жил өмнө
parent
commit
5af8263d40

+ 1 - 1
scripts/qapi/commands.py

@@ -13,7 +13,7 @@
 See the COPYING file in the top-level directory.
 See the COPYING file in the top-level directory.
 """
 """
 
 
-from .common import *
+from .common import build_params, c_name, mcgen
 from .gen import QAPIGenCCode, QAPISchemaModularCVisitor, ifcontext
 from .gen import QAPIGenCCode, QAPISchemaModularCVisitor, ifcontext
 
 
 
 

+ 6 - 1
scripts/qapi/events.py

@@ -12,7 +12,12 @@
 See the COPYING file in the top-level directory.
 See the COPYING file in the top-level directory.
 """
 """
 
 
-from .common import *
+from .common import (
+    build_params,
+    c_enum_const,
+    c_name,
+    mcgen,
+)
 from .gen import QAPISchemaModularCVisitor, ifcontext
 from .gen import QAPISchemaModularCVisitor, ifcontext
 from .schema import QAPISchemaEnumMember
 from .schema import QAPISchemaEnumMember
 from .types import gen_enum, gen_enum_lookup
 from .types import gen_enum, gen_enum_lookup

+ 9 - 3
scripts/qapi/gen.py

@@ -11,13 +11,19 @@
 # This work is licensed under the terms of the GNU GPL, version 2.
 # This work is licensed under the terms of the GNU GPL, version 2.
 # See the COPYING file in the top-level directory.
 # See the COPYING file in the top-level directory.
 
 
-
+from contextlib import contextmanager
 import errno
 import errno
 import os
 import os
 import re
 import re
-from contextlib import contextmanager
 
 
-from .common import *
+from .common import (
+    c_fname,
+    gen_endif,
+    gen_if,
+    guardend,
+    guardstart,
+    mcgen,
+)
 from .schema import QAPISchemaVisitor
 from .schema import QAPISchemaVisitor
 
 
 
 

+ 6 - 1
scripts/qapi/introspect.py

@@ -10,7 +10,12 @@
 See the COPYING file in the top-level directory.
 See the COPYING file in the top-level directory.
 """
 """
 
 
-from .common import *
+from .common import (
+    c_name,
+    gen_endif,
+    gen_if,
+    mcgen,
+)
 from .gen import QAPISchemaMonolithicCVisitor
 from .gen import QAPISchemaMonolithicCVisitor
 from .schema import (QAPISchemaArrayType, QAPISchemaBuiltinType,
 from .schema import (QAPISchemaArrayType, QAPISchemaBuiltinType,
                      QAPISchemaType)
                      QAPISchemaType)

+ 7 - 1
scripts/qapi/types.py

@@ -13,7 +13,13 @@
 # See the COPYING file in the top-level directory.
 # See the COPYING file in the top-level directory.
 """
 """
 
 
-from .common import *
+from .common import (
+    c_enum_const,
+    c_name,
+    gen_endif,
+    gen_if,
+    mcgen,
+)
 from .gen import QAPISchemaModularCVisitor, ifcontext
 from .gen import QAPISchemaModularCVisitor, ifcontext
 from .schema import QAPISchemaEnumMember, QAPISchemaObjectType
 from .schema import QAPISchemaEnumMember, QAPISchemaObjectType
 
 

+ 9 - 1
scripts/qapi/visit.py

@@ -13,7 +13,15 @@
 See the COPYING file in the top-level directory.
 See the COPYING file in the top-level directory.
 """
 """
 
 
-from .common import *
+from .common import (
+    c_enum_const,
+    c_name,
+    gen_endif,
+    gen_if,
+    mcgen,
+    pop_indent,
+    push_indent,
+)
 from .gen import QAPISchemaModularCVisitor, ifcontext
 from .gen import QAPISchemaModularCVisitor, ifcontext
 from .schema import QAPISchemaObjectType
 from .schema import QAPISchemaObjectType