tools/manifestfile.py: Allow manifests to set metadata.
The metadata can be version, description, and license. After executing a manifest, the top-level metadata can be queried, and also each file output from the manifest will have the metadata of the containing manifest. Use the version metadata to "tag" files before freezing such that they have __version__ available.
This commit is contained in:
parent
bc23f207ce
commit
5852fd7708
@ -176,34 +176,36 @@ def main():
|
|||||||
str_paths = []
|
str_paths = []
|
||||||
mpy_files = []
|
mpy_files = []
|
||||||
ts_newest = 0
|
ts_newest = 0
|
||||||
for _file_type, full_path, target_path, timestamp, kind, version, opt in manifest.files():
|
for result in manifest.files():
|
||||||
if kind == manifestfile.KIND_FREEZE_AS_STR:
|
if result.kind == manifestfile.KIND_FREEZE_AS_STR:
|
||||||
str_paths.append(
|
str_paths.append(
|
||||||
(
|
(
|
||||||
full_path,
|
result.full_path,
|
||||||
target_path,
|
result.target_path,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
ts_outfile = timestamp
|
ts_outfile = result.timestamp
|
||||||
elif kind == manifestfile.KIND_FREEZE_AS_MPY:
|
elif result.kind == manifestfile.KIND_FREEZE_AS_MPY:
|
||||||
outfile = "{}/frozen_mpy/{}.mpy".format(args.build_dir, target_path[:-3])
|
outfile = "{}/frozen_mpy/{}.mpy".format(args.build_dir, result.target_path[:-3])
|
||||||
ts_outfile = get_timestamp(outfile, 0)
|
ts_outfile = get_timestamp(outfile, 0)
|
||||||
if timestamp >= ts_outfile:
|
if result.timestamp >= ts_outfile:
|
||||||
print("MPY", target_path)
|
print("MPY", result.target_path)
|
||||||
mkdir(outfile)
|
mkdir(outfile)
|
||||||
try:
|
# Add __version__ to the end of the file before compiling.
|
||||||
mpy_cross.compile(
|
with manifestfile.tagged_py_file(result.full_path, result.metadata) as tagged_path:
|
||||||
full_path,
|
try:
|
||||||
dest=outfile,
|
mpy_cross.compile(
|
||||||
src_path=target_path,
|
tagged_path,
|
||||||
opt=opt,
|
dest=outfile,
|
||||||
mpy_cross=MPY_CROSS,
|
src_path=result.target_path,
|
||||||
extra_args=args.mpy_cross_flags.split(),
|
opt=result.opt,
|
||||||
)
|
mpy_cross=MPY_CROSS,
|
||||||
except mpy_cross.CrossCompileError as ex:
|
extra_args=args.mpy_cross_flags.split(),
|
||||||
print("error compiling {}:".format(target_path))
|
)
|
||||||
print(ex.args[0])
|
except mpy_cross.CrossCompileError as ex:
|
||||||
raise SystemExit(1)
|
print("error compiling {}:".format(target_path))
|
||||||
|
print(ex.args[0])
|
||||||
|
raise SystemExit(1)
|
||||||
ts_outfile = get_timestamp(outfile)
|
ts_outfile = get_timestamp(outfile)
|
||||||
mpy_files.append(outfile)
|
mpy_files.append(outfile)
|
||||||
else:
|
else:
|
||||||
|
@ -26,9 +26,12 @@
|
|||||||
# THE SOFTWARE.
|
# THE SOFTWARE.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
import contextlib
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import glob
|
import glob
|
||||||
|
import tempfile
|
||||||
|
from collections import namedtuple
|
||||||
|
|
||||||
__all__ = ["ManifestFileError", "ManifestFile"]
|
__all__ = ["ManifestFileError", "ManifestFile"]
|
||||||
|
|
||||||
@ -63,6 +66,37 @@ class ManifestFileError(Exception):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
# The set of files that this manifest references.
|
||||||
|
ManifestOutput = namedtuple(
|
||||||
|
"ManifestOutput",
|
||||||
|
[
|
||||||
|
"file_type", # FILE_TYPE_*.
|
||||||
|
"full_path", # The input file full path.
|
||||||
|
"target_path", # The target path on the device.
|
||||||
|
"timestamp", # Last modified date of the input file.
|
||||||
|
"kind", # KIND_*.
|
||||||
|
"metadata", # Metadata for the containing package.
|
||||||
|
"opt", # Optimisation level (or None).
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
# Represent the metadata for a package.
|
||||||
|
class ManifestMetadata:
|
||||||
|
def __init__(self):
|
||||||
|
self.version = None
|
||||||
|
self.description = None
|
||||||
|
self.license = None
|
||||||
|
|
||||||
|
def update(self, description=None, version=None, license=None):
|
||||||
|
if description:
|
||||||
|
self.description = description
|
||||||
|
if version:
|
||||||
|
self.version = version
|
||||||
|
if license:
|
||||||
|
self.license = version
|
||||||
|
|
||||||
|
|
||||||
# Turns a dict of options into a object with attributes used to turn the
|
# Turns a dict of options into a object with attributes used to turn the
|
||||||
# kwargs passed to include() and require into the "options" global in the
|
# kwargs passed to include() and require into the "options" global in the
|
||||||
# included manifest.
|
# included manifest.
|
||||||
@ -87,11 +121,12 @@ class ManifestFile:
|
|||||||
self._mode = mode
|
self._mode = mode
|
||||||
# Path substition variables.
|
# Path substition variables.
|
||||||
self._path_vars = path_vars or {}
|
self._path_vars = path_vars or {}
|
||||||
# List of files references by this manifest.
|
# List of files (as ManifestFileResult) references by this manifest.
|
||||||
# Tuple of (file_type, full_path, target_path, timestamp, kind, version, opt)
|
|
||||||
self._manifest_files = []
|
self._manifest_files = []
|
||||||
# Don't allow including the same file twice.
|
# Don't allow including the same file twice.
|
||||||
self._visited = set()
|
self._visited = set()
|
||||||
|
# Stack of metadata for each level.
|
||||||
|
self._metadata = [ManifestMetadata()]
|
||||||
|
|
||||||
def _resolve_path(self, path):
|
def _resolve_path(self, path):
|
||||||
# Convert path to an absolute path, applying variable substitutions.
|
# Convert path to an absolute path, applying variable substitutions.
|
||||||
@ -121,7 +156,7 @@ class ManifestFile:
|
|||||||
def execute(self, manifest_file):
|
def execute(self, manifest_file):
|
||||||
if manifest_file.endswith(".py"):
|
if manifest_file.endswith(".py"):
|
||||||
# Execute file from filesystem.
|
# Execute file from filesystem.
|
||||||
self.include(manifest_file)
|
self.include(manifest_file, top_level=True)
|
||||||
else:
|
else:
|
||||||
# Execute manifest code snippet.
|
# Execute manifest code snippet.
|
||||||
try:
|
try:
|
||||||
@ -129,7 +164,7 @@ class ManifestFile:
|
|||||||
except Exception as er:
|
except Exception as er:
|
||||||
raise ManifestFileError("Error in manifest: {}".format(er))
|
raise ManifestFileError("Error in manifest: {}".format(er))
|
||||||
|
|
||||||
def _add_file(self, full_path, target_path, kind=KIND_AUTO, version=None, opt=None):
|
def _add_file(self, full_path, target_path, kind=KIND_AUTO, opt=None):
|
||||||
# Check file exists and get timestamp.
|
# Check file exists and get timestamp.
|
||||||
try:
|
try:
|
||||||
stat = os.stat(full_path)
|
stat = os.stat(full_path)
|
||||||
@ -156,7 +191,9 @@ class ManifestFile:
|
|||||||
kind = KIND_COMPILE_AS_MPY
|
kind = KIND_COMPILE_AS_MPY
|
||||||
|
|
||||||
self._manifest_files.append(
|
self._manifest_files.append(
|
||||||
(FILE_TYPE_LOCAL, full_path, target_path, timestamp, kind, version, opt)
|
ManifestOutput(
|
||||||
|
FILE_TYPE_LOCAL, full_path, target_path, timestamp, kind, self._metadata[-1], opt
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
def _search(self, base_path, package_path, files, exts, kind, opt=None, strict=False):
|
def _search(self, base_path, package_path, files, exts, kind, opt=None, strict=False):
|
||||||
@ -167,9 +204,7 @@ class ManifestFile:
|
|||||||
for file in files:
|
for file in files:
|
||||||
if package_path:
|
if package_path:
|
||||||
file = os.path.join(package_path, file)
|
file = os.path.join(package_path, file)
|
||||||
self._add_file(
|
self._add_file(os.path.join(base_path, file), file, kind=kind, opt=opt)
|
||||||
os.path.join(base_path, file), file, kind=kind, version=None, opt=opt
|
|
||||||
)
|
|
||||||
else:
|
else:
|
||||||
if base_path:
|
if base_path:
|
||||||
prev_cwd = os.getcwd()
|
prev_cwd = os.getcwd()
|
||||||
@ -185,7 +220,6 @@ class ManifestFile:
|
|||||||
os.path.join(base_path, file),
|
os.path.join(base_path, file),
|
||||||
file,
|
file,
|
||||||
kind=kind,
|
kind=kind,
|
||||||
version=None,
|
|
||||||
opt=opt,
|
opt=opt,
|
||||||
)
|
)
|
||||||
elif strict:
|
elif strict:
|
||||||
@ -194,11 +228,19 @@ class ManifestFile:
|
|||||||
if base_path:
|
if base_path:
|
||||||
os.chdir(prev_cwd)
|
os.chdir(prev_cwd)
|
||||||
|
|
||||||
def metadata(self, description=None, version=None):
|
def metadata(self, description=None, version=None, license=None):
|
||||||
# TODO
|
"""
|
||||||
pass
|
From within a manifest file, use this to set the metadata for the
|
||||||
|
package described by current manifest.
|
||||||
|
|
||||||
def include(self, manifest_path, **kwargs):
|
After executing a manifest file (via execute()), call this
|
||||||
|
to obtain the metadata for the top-level manifest file.
|
||||||
|
"""
|
||||||
|
|
||||||
|
self._metadata[-1].update(description, version, license)
|
||||||
|
return self._metadata[-1]
|
||||||
|
|
||||||
|
def include(self, manifest_path, top_level=False, **kwargs):
|
||||||
"""
|
"""
|
||||||
Include another manifest.
|
Include another manifest.
|
||||||
|
|
||||||
@ -235,6 +277,8 @@ class ManifestFile:
|
|||||||
if manifest_path in self._visited:
|
if manifest_path in self._visited:
|
||||||
return
|
return
|
||||||
self._visited.add(manifest_path)
|
self._visited.add(manifest_path)
|
||||||
|
if not top_level:
|
||||||
|
self._metadata.append(ManifestMetadata())
|
||||||
with open(manifest_path) as f:
|
with open(manifest_path) as f:
|
||||||
# Make paths relative to this manifest file while processing it.
|
# Make paths relative to this manifest file while processing it.
|
||||||
# Applies to includes and input files.
|
# Applies to includes and input files.
|
||||||
@ -247,6 +291,8 @@ class ManifestFile:
|
|||||||
"Error in manifest file: {}: {}".format(manifest_path, er)
|
"Error in manifest file: {}: {}".format(manifest_path, er)
|
||||||
)
|
)
|
||||||
os.chdir(prev_cwd)
|
os.chdir(prev_cwd)
|
||||||
|
if not top_level:
|
||||||
|
self._metadata.pop()
|
||||||
|
|
||||||
def require(self, name, version=None, unix_ffi=False, **kwargs):
|
def require(self, name, version=None, unix_ffi=False, **kwargs):
|
||||||
"""
|
"""
|
||||||
@ -308,7 +354,7 @@ class ManifestFile:
|
|||||||
if ext.lower() != ".py":
|
if ext.lower() != ".py":
|
||||||
raise ManifestFileError("module must be .py file")
|
raise ManifestFileError("module must be .py file")
|
||||||
# TODO: version None
|
# TODO: version None
|
||||||
self._add_file(os.path.join(base_path, module_path), module_path, version=None, opt=opt)
|
self._add_file(os.path.join(base_path, module_path), module_path, opt=opt)
|
||||||
|
|
||||||
def _freeze_internal(self, path, script, exts, kind, opt):
|
def _freeze_internal(self, path, script, exts, kind, opt):
|
||||||
if script is None:
|
if script is None:
|
||||||
@ -372,6 +418,24 @@ class ManifestFile:
|
|||||||
self._freeze_internal(path, script, exts=(".mpy"), kind=KIND_FREEZE_MPY, opt=opt)
|
self._freeze_internal(path, script, exts=(".mpy"), kind=KIND_FREEZE_MPY, opt=opt)
|
||||||
|
|
||||||
|
|
||||||
|
# Generate a temporary file with a line appended to the end that adds __version__.
|
||||||
|
@contextlib.contextmanager
|
||||||
|
def tagged_py_file(path, metadata):
|
||||||
|
dest_fd, dest_path = tempfile.mkstemp(suffix=".py", text=True)
|
||||||
|
try:
|
||||||
|
with os.fdopen(dest_fd, "w") as dest:
|
||||||
|
with open(path, "r") as src:
|
||||||
|
contents = src.read()
|
||||||
|
dest.write(contents)
|
||||||
|
|
||||||
|
# Don't overwrite a version definition if the file already has one in it.
|
||||||
|
if metadata.version and "__version__ =" not in contents:
|
||||||
|
dest.write("\n\n__version__ = {}\n".format(repr(metadata.version)))
|
||||||
|
yield dest_path
|
||||||
|
finally:
|
||||||
|
os.unlink(dest_path)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user