diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-06-17 09:56:44 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:47:33 +0100 |
commit | 5daadf85eddf6c5898fe2b9a9ef7b1e9ed434d84 (patch) | |
tree | 22c66f274b871c0f325b450bce5a59b1496ba271 /scripts/lib | |
parent | cfe64126c8d9afce907e51093e33c9805fa71b25 (diff) | |
download | poky-5daadf85eddf6c5898fe2b9a9ef7b1e9ed434d84.tar.gz |
wic: Integrated plugin docstrings into 'wic help plugins' output
Added mechanism to show docstrings of plugin classes as a part of
plugins help page.
For missing plugins the following warning message is shown:
<class '<plugin class spec>'> is missing docstring.
[YOCTO #7118]
(From OE-Core rev: 0997208266686473d23aed0fab58a1fd7c5d8cae)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/image/help.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index adfe976716..ce42627cdb 100644 --- a/scripts/lib/image/help.py +++ b/scripts/lib/image/help.py | |||
@@ -28,6 +28,7 @@ | |||
28 | import subprocess | 28 | import subprocess |
29 | import logging | 29 | import logging |
30 | 30 | ||
31 | from wic.plugin import pluginmgr, PLUGIN_TYPES | ||
31 | 32 | ||
32 | def subcommand_error(args): | 33 | def subcommand_error(args): |
33 | logging.info("invalid subcommand %s" % args[0]) | 34 | logging.info("invalid subcommand %s" % args[0]) |
@@ -55,6 +56,23 @@ def wic_help(args, usage_str, subcommands): | |||
55 | print(usage_str) | 56 | print(usage_str) |
56 | 57 | ||
57 | 58 | ||
59 | def get_wic_plugins_help(): | ||
60 | """ | ||
61 | Combine wic_plugins_help with the help for every known | ||
62 | source plugin. | ||
63 | """ | ||
64 | result = wic_plugins_help | ||
65 | for plugin_type in PLUGIN_TYPES: | ||
66 | result += '\n\n%s PLUGINS\n\n' % plugin_type.upper() | ||
67 | for name, plugin in pluginmgr.get_plugins(plugin_type).iteritems(): | ||
68 | result += "\n %s plugin:\n" % name | ||
69 | if plugin.__doc__: | ||
70 | result += plugin.__doc__ | ||
71 | else: | ||
72 | result += "\n %s is missing docstring\n" % plugin | ||
73 | return result | ||
74 | |||
75 | |||
58 | def invoke_subcommand(args, parser, main_command_usage, subcommands): | 76 | def invoke_subcommand(args, parser, main_command_usage, subcommands): |
59 | """ | 77 | """ |
60 | Dispatch to subcommand handler borrowed from combo-layer. | 78 | Dispatch to subcommand handler borrowed from combo-layer. |