completion.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Copyright (c) 2019 Nordic Semiconductor ASA
  2. #
  3. # SPDX-License-Identifier: Apache-2.0
  4. import argparse
  5. import os
  6. from west import log
  7. from west.commands import WestCommand
  8. # Relative to the folder where this script lives
  9. COMPLETION_REL_PATH = 'completion/west-completion'
  10. class Completion(WestCommand):
  11. def __init__(self):
  12. super().__init__(
  13. 'completion',
  14. # Keep this in sync with the string in west-commands.yml.
  15. 'display shell completion scripts',
  16. 'Display shell completion scripts.',
  17. accepts_unknown_args=False)
  18. def do_add_parser(self, parser_adder):
  19. parser = parser_adder.add_parser(
  20. self.name,
  21. help=self.help,
  22. formatter_class=argparse.RawDescriptionHelpFormatter,
  23. description=self.description)
  24. # Remember to update west-completion.bash if you add or remove
  25. # flags
  26. parser.add_argument('shell', nargs=1, choices=['bash'],
  27. help='''Select the shell that which the completion
  28. script is intended for.
  29. Currently only bash is supported.''')
  30. return parser
  31. def do_run(self, args, unknown_args):
  32. cf = os.path.join(os.path.dirname(os.path.realpath(__file__)),
  33. *COMPLETION_REL_PATH.split('/'))
  34. cf += '.' + args.shell[0]
  35. try:
  36. with open(cf, 'r') as f:
  37. print(f.read())
  38. except FileNotFoundError as e:
  39. log.die('Unable to find completion file: {}'.format(e))