2022-12-11 08:30:27 +01:00
|
|
|
# kas - setup tool for bitbake based projects
|
|
|
|
#
|
|
|
|
# Copyright (c) Siemens AG, 2017-2022
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
"""
|
|
|
|
This plugin implements the ``kas dump`` command.
|
|
|
|
|
2023-04-23 11:42:27 +02:00
|
|
|
When this command is executed in default mode, kas will parse all
|
|
|
|
referenced config files, expand includes and print a flattened yaml version
|
|
|
|
of the configuration to stdout. This config is semantically identical to
|
|
|
|
the input, but does not include any references to other configuration
|
|
|
|
files. The output of this command can be used to further analyse the build
|
2022-12-11 08:30:27 +01:00
|
|
|
configuration.
|
|
|
|
|
2023-04-23 11:42:27 +02:00
|
|
|
When running with --lock, a lock-file is created which only contains the
|
|
|
|
exact refspecs of each repository. This file can be used to pin the
|
|
|
|
refspecs of floating branches, while still keeping an easy update path.
|
|
|
|
|
2022-12-11 08:30:27 +01:00
|
|
|
Please note:
|
|
|
|
|
|
|
|
- the dumped config is semantically identical but not bit-by-bit identical
|
|
|
|
- all referenced repositories are checked out to resolve cross-repo configs
|
|
|
|
- all refspecs are resolved before patches are applied
|
|
|
|
|
|
|
|
For example, to get a single config representing the final build config of
|
2023-03-18 17:15:39 +01:00
|
|
|
``kas-project.yml:target-override.yml`` you could run::
|
2022-12-11 08:30:27 +01:00
|
|
|
|
|
|
|
kas dump kas-project.yml:target-override.yml > kas-project-expanded.yml
|
|
|
|
|
2023-03-18 17:15:39 +01:00
|
|
|
The generated config can be used as input for kas::
|
2022-12-11 08:30:27 +01:00
|
|
|
|
|
|
|
kas build kas-project-expanded.yml
|
2023-04-23 11:42:27 +02:00
|
|
|
|
|
|
|
Example of the locking mechanism (call again to regenerate lockfile):
|
|
|
|
|
|
|
|
kas dump --lock --inplace --update kas-project.yml
|
|
|
|
|
|
|
|
The generated lockfile will automatically be used to pin the revisions:
|
|
|
|
|
|
|
|
kas build kas-project.yml
|
|
|
|
|
2022-12-11 08:30:27 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import sys
|
|
|
|
import json
|
|
|
|
import yaml
|
2023-04-23 11:42:27 +02:00
|
|
|
from typing import TypeVar, TextIO
|
2022-12-11 08:30:27 +01:00
|
|
|
from collections import OrderedDict
|
|
|
|
from kas.context import get_context
|
|
|
|
from kas.plugins.checkout import Checkout
|
|
|
|
|
|
|
|
__license__ = 'MIT'
|
|
|
|
__copyright__ = 'Copyright (c) Siemens AG, 2022'
|
|
|
|
|
|
|
|
|
2023-04-23 11:42:27 +02:00
|
|
|
class IoTarget:
|
|
|
|
StrOrTextIO = TypeVar('StrOrTextIO', str, TextIO)
|
|
|
|
|
|
|
|
target: StrOrTextIO
|
|
|
|
managed: bool
|
|
|
|
|
|
|
|
def __init__(self, target, managed):
|
|
|
|
self.target = target
|
|
|
|
self.managed = managed
|
|
|
|
|
|
|
|
|
|
|
|
class IoTargetMonitor:
|
|
|
|
"""
|
|
|
|
Simple monitor to unify access to file targets that need
|
|
|
|
to be closed (files) and ambient ones (stdout / stderr)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, target: IoTarget):
|
|
|
|
self._target = target
|
|
|
|
self._file = None
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
if self._target.managed:
|
|
|
|
self._file = open(self._target.target, 'w')
|
|
|
|
return self._file
|
|
|
|
return self._target.target
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_value, traceback):
|
|
|
|
if self._target.managed:
|
|
|
|
self._file.close()
|
|
|
|
|
|
|
|
|
2022-12-11 08:30:27 +01:00
|
|
|
class Dump(Checkout):
|
|
|
|
"""
|
|
|
|
Implements a kas plugin that combines multiple kas configurations
|
|
|
|
and dumps the result.
|
|
|
|
"""
|
|
|
|
|
|
|
|
name = 'dump'
|
2022-12-11 08:30:31 +01:00
|
|
|
helpmsg = (
|
|
|
|
'Expand and dump the final config to stdout. When resolving refspecs, '
|
|
|
|
'these are resolved before patches are applied.'
|
|
|
|
)
|
2022-12-11 08:30:27 +01:00
|
|
|
|
|
|
|
class KasYamlDumper(yaml.Dumper):
|
|
|
|
"""
|
|
|
|
Yaml formatter (dumper) that generates output in a formatting which
|
|
|
|
is similar to kas example input files.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def represent_data(self, data):
|
|
|
|
if isinstance(data, str):
|
|
|
|
if data.count('\n') > 0:
|
|
|
|
return self.represent_scalar(
|
|
|
|
'tag:yaml.org,2002:str',
|
|
|
|
data,
|
|
|
|
style='|')
|
|
|
|
return self.represent_scalar('tag:yaml.org,2002:str', data)
|
|
|
|
elif isinstance(data, OrderedDict):
|
|
|
|
return self.represent_mapping(
|
|
|
|
'tag:yaml.org,2002:map',
|
|
|
|
data.items())
|
|
|
|
elif data is None:
|
|
|
|
return self.represent_scalar('tag:yaml.org,2002:null', '')
|
|
|
|
return super().represent_data(data)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setup_parser(cls, parser):
|
|
|
|
super().setup_parser(parser)
|
2023-04-23 11:42:27 +02:00
|
|
|
lk_or_env = parser.add_mutually_exclusive_group()
|
2022-12-11 08:30:27 +01:00
|
|
|
parser.add_argument('--format',
|
|
|
|
choices=['yaml', 'json'],
|
|
|
|
default='yaml',
|
|
|
|
help='Output format (default: yaml)')
|
|
|
|
parser.add_argument('--indent',
|
|
|
|
type=int,
|
|
|
|
default=4,
|
|
|
|
help='Line indent (# of spaces, default: 4)')
|
2022-12-11 08:30:31 +01:00
|
|
|
parser.add_argument('--resolve-refs',
|
|
|
|
action='store_true',
|
|
|
|
help='Replace floating refs with exact SHAs')
|
2023-04-23 11:42:27 +02:00
|
|
|
lk_or_env.add_argument('--resolve-env',
|
|
|
|
action='store_true',
|
|
|
|
help='Set env defaults to captured env value')
|
|
|
|
lk_or_env.add_argument('--lock',
|
|
|
|
action='store_true',
|
|
|
|
help='Create lockfile with exact SHAs')
|
|
|
|
parser.add_argument('-i', '--inplace',
|
2022-12-11 08:30:33 +01:00
|
|
|
action='store_true',
|
2023-04-23 11:42:27 +02:00
|
|
|
help='Update lockfile in-place (reqires --lock)')
|
2022-12-11 08:30:27 +01:00
|
|
|
|
|
|
|
def run(self, args):
|
|
|
|
args.skip += [
|
|
|
|
'setup_dir',
|
|
|
|
'repos_apply_patches',
|
|
|
|
'setup_environ',
|
|
|
|
'write_bbconfig',
|
|
|
|
]
|
|
|
|
|
|
|
|
super().run(args)
|
|
|
|
ctx = get_context()
|
2023-04-23 11:42:27 +02:00
|
|
|
schema_v = 14 if args.lock else 7
|
|
|
|
config_expanded = {'header': {'version': schema_v}} if args.lock \
|
|
|
|
else ctx.config.get_config()
|
|
|
|
repos = ctx.config.get_repos()
|
|
|
|
output = IoTarget(target=sys.stdout, managed=False)
|
|
|
|
|
|
|
|
if args.inplace and not args.lock:
|
|
|
|
logging.error('--inplace requires --lock')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if args.lock:
|
|
|
|
args.resolve_refs = True
|
|
|
|
# when locking, only consider repos managed by kas
|
|
|
|
repos = [r for r in repos if not r.operations_disabled]
|
|
|
|
config_expanded['overrides'] = \
|
|
|
|
{'repos': {r.name: {'refspec': r.revision} for r in repos}}
|
|
|
|
|
|
|
|
if args.lock and args.inplace:
|
|
|
|
lockfile = ctx.config.handler.get_lockfile()
|
|
|
|
output = IoTarget(target=lockfile, managed=True)
|
2022-12-11 08:30:27 +01:00
|
|
|
|
|
|
|
# includes are already expanded, delete the key
|
|
|
|
if 'includes' in config_expanded['header']:
|
|
|
|
del config_expanded['header']['includes']
|
|
|
|
|
2023-04-23 11:42:27 +02:00
|
|
|
if args.resolve_refs and not args.lock:
|
2022-12-11 08:30:31 +01:00
|
|
|
for r in repos:
|
|
|
|
if r.refspec:
|
|
|
|
config_expanded['repos'][r.name]['refspec'] = r.revision
|
|
|
|
|
2022-12-11 08:30:33 +01:00
|
|
|
if args.resolve_env and 'env' in config_expanded:
|
|
|
|
config_expanded['env'] = ctx.config.get_environment()
|
|
|
|
|
2023-04-23 11:42:27 +02:00
|
|
|
with IoTargetMonitor(output) as f:
|
|
|
|
if args.format == 'json':
|
|
|
|
json.dump(config_expanded, f, indent=args.indent)
|
2023-04-30 09:01:31 +02:00
|
|
|
f.write('\n')
|
2023-04-23 11:42:27 +02:00
|
|
|
elif args.format == 'yaml':
|
|
|
|
yaml.dump(
|
|
|
|
config_expanded, f,
|
|
|
|
indent=args.indent,
|
|
|
|
Dumper=self.KasYamlDumper)
|
|
|
|
else:
|
|
|
|
logging.error('invalid format %s', args.format)
|
|
|
|
sys.exit(1)
|
2022-12-11 08:30:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
__KAS_PLUGINS__ = [Dump]
|