common.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #!/usr/bin/env python3
  2. #
  3. # MMGen Wallet, a terminal-based cryptocurrency wallet
  4. # Copyright (C)2013-2025 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  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
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. tool.common: Base class and shared routines for the 'mmgen-tool' utility
  20. """
  21. from ..objmethods import MMGenObject
  22. def options_annot_str(l):
  23. return "(valid choices: '{}')".format("','".join(l))
  24. class tool_cmd_base(MMGenObject):
  25. need_proto = False
  26. need_addrtype = False
  27. need_amt = False
  28. def __init__(self, cfg, *, cmdname=None, proto=None, mmtype=None):
  29. self.cfg = cfg
  30. if self.need_proto:
  31. from ..protocol import init_proto_from_cfg
  32. self.proto = proto or cfg._proto or init_proto_from_cfg(cfg, need_amt=True)
  33. if self.need_addrtype:
  34. from ..addr import MMGenAddrType
  35. self.mmtype = MMGenAddrType(
  36. self.proto,
  37. mmtype or cfg.type or self.proto.dfl_mmtype)
  38. @property
  39. def user_commands(self):
  40. return {k:v for k, v in type(self).__dict__.items() if callable(v) and not k.startswith('_')}