blob: ff085d6744217b5f15012eec0ef9cd25226af2cf [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001#!/usr/bin/env python3
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002
3# This script has subcommands which operate against your bitbake layers, either
4# displaying useful information, or acting against them.
5# See the help output for details on available commands.
6
7# Copyright (C) 2011 Mentor Graphics Corporation
8# Copyright (C) 2011-2015 Intel Corporation
9#
Brad Bishopc342db32019-05-15 21:57:59 -040010# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011#
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012
13import logging
14import os
15import sys
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016import argparse
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017
18bindir = os.path.dirname(__file__)
19topdir = os.path.dirname(bindir)
20sys.path[0:0] = [os.path.join(topdir, 'lib')]
21
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022import bb.tinfoil
Brad Bishop6e60e8b2018-02-01 10:27:11 -050023import bb.msg
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024
Brad Bishop6e60e8b2018-02-01 10:27:11 -050025logger = bb.msg.logger_create('bitbake-layers', sys.stdout)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027def main():
Patrick Williamsc0f7c042017-02-23 20:41:17 -060028 parser = argparse.ArgumentParser(
29 description="BitBake layers utility",
30 epilog="Use %(prog)s <subcommand> --help to get help on a specific command",
31 add_help=False)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032 parser.add_argument('-d', '--debug', help='Enable debug output', action='store_true')
33 parser.add_argument('-q', '--quiet', help='Print only errors', action='store_true')
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034 parser.add_argument('-F', '--force', help='Force add without recipe parse verification', action='store_true')
Patrick Williamsc0f7c042017-02-23 20:41:17 -060035 parser.add_argument('--color', choices=['auto', 'always', 'never'], default='auto', help='Colorize output (where %(metavar)s is %(choices)s)', metavar='COLOR')
36
37 global_args, unparsed_args = parser.parse_known_args()
38
39 # Help is added here rather than via add_help=True, as we don't want it to
40 # be handled by parse_known_args()
41 parser.add_argument('-h', '--help', action='help', default=argparse.SUPPRESS,
42 help='show this help message and exit')
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043 subparsers = parser.add_subparsers(title='subcommands', metavar='<subcommand>')
Patrick Williamsc0f7c042017-02-23 20:41:17 -060044 subparsers.required = True
Patrick Williamsc124f4f2015-09-15 14:41:29 -050045
Patrick Williamsc0f7c042017-02-23 20:41:17 -060046 if global_args.debug:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047 logger.setLevel(logging.DEBUG)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060048 elif global_args.quiet:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050049 logger.setLevel(logging.ERROR)
50
Brad Bishop6e60e8b2018-02-01 10:27:11 -050051 # Need to re-run logger_create with color argument
52 # (will be the same logger since it has the same name)
Andrew Geissler82c905d2020-04-13 13:39:40 -050053 bb.msg.logger_create('bitbake-layers', output=sys.stdout,
54 color=global_args.color,
55 level=logger.getEffectiveLevel())
Patrick Williamsc124f4f2015-09-15 14:41:29 -050056
Patrick Williamsc0f7c042017-02-23 20:41:17 -060057 plugins = []
Brad Bishop6e60e8b2018-02-01 10:27:11 -050058 tinfoil = bb.tinfoil.Tinfoil(tracking=True)
59 tinfoil.logger.setLevel(logger.getEffectiveLevel())
Patrick Williamsc0f7c042017-02-23 20:41:17 -060060 try:
Brad Bishop6e60e8b2018-02-01 10:27:11 -050061 tinfoil.prepare(True)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060062 for path in ([topdir] +
Brad Bishop6e60e8b2018-02-01 10:27:11 -050063 tinfoil.config_data.getVar('BBPATH').split(':')):
Patrick Williamsc0f7c042017-02-23 20:41:17 -060064 pluginpath = os.path.join(path, 'lib', 'bblayers')
65 bb.utils.load_plugins(logger, plugins, pluginpath)
66
67 registered = False
68 for plugin in plugins:
69 if hasattr(plugin, 'register_commands'):
70 registered = True
71 plugin.register_commands(subparsers)
72 if hasattr(plugin, 'tinfoil_init'):
73 plugin.tinfoil_init(tinfoil)
74
75 if not registered:
76 logger.error("No commands registered - missing plugins?")
77 sys.exit(1)
78
79 args = parser.parse_args(unparsed_args, namespace=global_args)
80
81 if getattr(args, 'parserecipes', False):
82 tinfoil.config_data.disableTracking()
Brad Bishopd7bf8c12018-02-25 22:55:05 -050083 tinfoil.parse_recipes()
Patrick Williamsc0f7c042017-02-23 20:41:17 -060084 tinfoil.config_data.enableTracking()
85
86 return args.func(args)
87 finally:
88 tinfoil.shutdown()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050089
90
91if __name__ == "__main__":
92 try:
93 ret = main()
Patrick Williamsc0f7c042017-02-23 20:41:17 -060094 except bb.BBHandledException:
95 ret = 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -050096 except Exception:
97 ret = 1
98 import traceback
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050099 traceback.print_exc()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500100 sys.exit(ret)