zephyr_ext_common.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Copyright (c) 2018 Foundries.io
  2. #
  3. # SPDX-License-Identifier: Apache-2.0
  4. '''Helpers shared by multiple west extension command modules.
  5. Note that common helpers used by the flash and debug extension
  6. commands are in run_common -- that's for common code used by
  7. commands which specifically execute runners.'''
  8. import os
  9. from pathlib import Path
  10. from west import log
  11. from west.commands import WestCommand
  12. # This relies on this file being zephyr/scripts/foo/bar.py.
  13. # If you move this file, you'll break it, so be careful.
  14. THIS_ZEPHYR = Path(__file__).parent.parent.parent
  15. ZEPHYR_BASE = Path(os.environ.get('ZEPHYR_BASE', THIS_ZEPHYR))
  16. # FIXME we need a nicer way to handle imports from scripts and cmake than this.
  17. ZEPHYR_SCRIPTS = ZEPHYR_BASE / 'scripts'
  18. ZEPHYR_CMAKE = ZEPHYR_BASE / 'cmake'
  19. class Forceable(WestCommand):
  20. '''WestCommand subclass for commands with a --force option.'''
  21. @staticmethod
  22. def add_force_arg(parser):
  23. '''Add a -f / --force option to the parser.'''
  24. parser.add_argument('-f', '--force', action='store_true',
  25. help='ignore any errors and try to proceed')
  26. def check_force(self, cond, msg):
  27. '''Abort if the command needs to be forced and hasn't been.
  28. The "forced" predicate must be in self.args.forced.
  29. If cond and self.args.force are both False, scream and die
  30. with message msg. Otherwise, return. That is, "cond" is a
  31. condition which means everything is OK; if it's False, only
  32. self.args.force being True can allow execution to proceed.
  33. '''
  34. if not (cond or self.args.force):
  35. log.err(msg)
  36. log.die('refusing to proceed without --force due to above error')