-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use relative imports in matter.idl module #38196
base: master
Are you sure you want to change the base?
Conversation
PR #38196: Size comparison from bd2b4f5 to 6b9b384 Full report (75 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
PR #38196: Size comparison from bd2b4f5 to e4bad1b Full report (75 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
from .generators.generator import FileSystemGeneratorStorage, GeneratorStorage | ||
from .matter_idl_parser import CreateParser | ||
|
||
__all__ = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did we flatten the exported parts? In particular:
backwards_compatibility
seems cleaner thancompatibility
(compatibility with what)- IDL generally is the
matter files
. Pulling XMLs is a bit unclear as those are different types and should probably be separate namespace (especially for ParseSource ... what source) types
seems a bit generic and likely to name clash
The others seem somewhat reasonable, however overally "why?"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The others seem somewhat reasonable, however overally "why?"
I've created this top level imports in order to simplify mater.idl imports in case of using this package directly from the source (without installing). Then the import can look like this:
try:
from matter import idl
except ImportError:
sys.path.append(str(Path(__file__).resolve().parent / "py_matter_idl" / "matter"))
import idl
Anyway, if it seems off for the idl package to have top level imports I will remove it. The try/except will be longer, though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've simply pulled all submodules into the matter.idl
without any aliasing. So, in the scripts we can do simple from matter import idl
and hopefully every class/function usage will be clear now.
PR #38196: Size comparison from 86e1daf to c89b15b Full report (75 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
Problem
During transition to
matter
namespace it will be necessary to install all modules in a single location, otherwise Python will not be able to import modules properly. As a workaround for using package without installation instead of importing frommatter
namespace we can import the module directly, i.e.from matter.idl import ...
->from idl import ...
. To do that in build scripts we need to adjust import paths accordingly. Also, we have to use relative imports inmatter.idl
to allowfrom idl import ...
.Changes
matter.idl
modulescripts
directory outside of thematter.idl
module - this allows to run scripts if the matter-idl package is not installed after transition to relative importsmatter.idl.generators
module to break circular dependencyWarning
The names and location of the
matter.idl
scripts were changed. Now all command line tools are available atscripts/py_matter_idl/scripts/*.py
.Testing
CI will verify