blob: 3a3c9b74450122584dd7a09ecd6c82e745c64358 [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001#!/usr/bin/env python3
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002
3# Recipe creation tool
4#
5# Copyright (C) 2014 Intel Corporation
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License version 2 as
9# published by the Free Software Foundation.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with this program; if not, write to the Free Software Foundation, Inc.,
18# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20import sys
21import os
22import argparse
23import glob
24import logging
25
26scripts_path = os.path.dirname(os.path.realpath(__file__))
27lib_path = scripts_path + '/lib'
28sys.path = sys.path + [lib_path]
29import scriptutils
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050030import argparse_oe
Patrick Williamsc124f4f2015-09-15 14:41:29 -050031logger = scriptutils.logger_create('recipetool')
32
33plugins = []
34
35def tinfoil_init(parserecipes):
36 import bb.tinfoil
37 import logging
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050038 tinfoil = bb.tinfoil.Tinfoil(tracking=True)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039 tinfoil.logger.setLevel(logger.getEffectiveLevel())
Brad Bishopd7bf8c12018-02-25 22:55:05 -050040 tinfoil.prepare(not parserecipes)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041 return tinfoil
42
43def main():
44
45 if not os.environ.get('BUILDDIR', ''):
46 logger.error("This script can only be run after initialising the build environment (e.g. by using oe-init-build-env)")
47 sys.exit(1)
48
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050049 parser = argparse_oe.ArgumentParser(description="OpenEmbedded recipe tool",
50 add_help=False,
51 epilog="Use %(prog)s <subcommand> --help to get help on a specific command")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052 parser.add_argument('-d', '--debug', help='Enable debug output', action='store_true')
53 parser.add_argument('-q', '--quiet', help='Print only errors', action='store_true')
54 parser.add_argument('--color', choices=['auto', 'always', 'never'], default='auto', help='Colorize output (where %(metavar)s is %(choices)s)', metavar='COLOR')
55
56 global_args, unparsed_args = parser.parse_known_args()
57
58 # Help is added here rather than via add_help=True, as we don't want it to
59 # be handled by parse_known_args()
60 parser.add_argument('-h', '--help', action='help', default=argparse.SUPPRESS,
61 help='show this help message and exit')
62 subparsers = parser.add_subparsers(title='subcommands', metavar='<subcommand>')
Patrick Williamsc0f7c042017-02-23 20:41:17 -060063 subparsers.required = True
Patrick Williamsc124f4f2015-09-15 14:41:29 -050064
65 if global_args.debug:
66 logger.setLevel(logging.DEBUG)
67 elif global_args.quiet:
68 logger.setLevel(logging.ERROR)
69
70 import scriptpath
71 bitbakepath = scriptpath.add_bitbake_lib_path()
72 if not bitbakepath:
73 logger.error("Unable to find bitbake by searching parent directory of this script or PATH")
74 sys.exit(1)
75 logger.debug('Found bitbake path: %s' % bitbakepath)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050076 scriptpath.add_oe_lib_path()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050077
78 scriptutils.logger_setup_color(logger, global_args.color)
79
80 tinfoil = tinfoil_init(False)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050081 try:
Brad Bishop6e60e8b2018-02-01 10:27:11 -050082 for path in (tinfoil.config_data.getVar('BBPATH').split(':')
83 + [scripts_path]):
Patrick Williamsc0f7c042017-02-23 20:41:17 -060084 pluginpath = os.path.join(path, 'lib', 'recipetool')
85 scriptutils.load_plugins(logger, plugins, pluginpath)
86
87 registered = False
88 for plugin in plugins:
89 if hasattr(plugin, 'register_commands'):
90 registered = True
91 plugin.register_commands(subparsers)
92 elif hasattr(plugin, 'register_command'):
93 # Legacy function name
94 registered = True
95 plugin.register_command(subparsers)
96 if hasattr(plugin, 'tinfoil_init'):
97 plugin.tinfoil_init(tinfoil)
98
99 if not registered:
100 logger.error("No commands registered - missing plugins?")
101 sys.exit(1)
102
103 args = parser.parse_args(unparsed_args, namespace=global_args)
104
105 try:
106 if getattr(args, 'parserecipes', False):
107 tinfoil.config_data.disableTracking()
108 tinfoil.parseRecipes()
109 tinfoil.config_data.enableTracking()
110 ret = args.func(args)
111 except bb.BBHandledException:
112 ret = 1
113 finally:
114 tinfoil.shutdown()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500115
116 return ret
117
118
119if __name__ == "__main__":
120 try:
121 ret = main()
122 except Exception:
123 ret = 1
124 import traceback
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500125 traceback.print_exc()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500126 sys.exit(ret)