diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2021-03-02 22:17:38 -0500 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2021-03-04 11:33:22 -0500 |
commit | ba9bfd2bd84985d8915f79d2415bffe68e9deada (patch) | |
tree | afd108657534f73fec6610c327bbaa721fe14409 /mesonbuild/mintro.py | |
parent | 1e69908be5fb738cd787f0e4825da395e9b356b2 (diff) | |
download | meson-ba9bfd2bd84985d8915f79d2415bffe68e9deada.zip meson-ba9bfd2bd84985d8915f79d2415bffe68e9deada.tar.gz meson-ba9bfd2bd84985d8915f79d2415bffe68e9deada.tar.bz2 |
Simplify module API
- ModuleState is now a real class that will have methods in the future
for actions modules needs, instead of using interpreter internal API.
- New ModuleObject base class, similar to InterpreterObject, that should
be used by all objects returned by modules. Its methods gets the
ModuleState passed as first argument. It has a `methods` dictionary to
define what is public API that can be called from build definition.
- Method return value is not required to be a ModuleReturnValue any
more, it can be any type that interpreter can holderify, including
ModuleObject.
- Legacy module API is maintained until we port all modules.
In the future modules should be updated:
- Use methods dict.
- Remove snippets.
- Custom objects returned by modules should all be subclass of
ModuleObject to get the state iface in their methods.
- Modules should never call into interpreter directly and instead state
object should have wrapper API.
- Stop using ModuleReturnValue in methods that just return simple
objects like strings. Possibly remove ModuleReturnValue completely
since all objects that needs to be processed by interpreter (e.g.
CustomTarget) should be created through ModuleState API.
Diffstat (limited to 'mesonbuild/mintro.py')
0 files changed, 0 insertions, 0 deletions