file.py 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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.file: Address and transaction file routines for the 'mmgen-tool' utility
  20. """
  21. from .common import tool_cmd_base, options_annot_str
  22. class tool_cmd(tool_cmd_base):
  23. "utilities for viewing/checking MMGen address and transaction files"
  24. need_proto = True
  25. def __init__(self, cfg, *, cmdname=None, proto=None, mmtype=None):
  26. if cmdname == 'txview':
  27. self.need_amt = True
  28. super().__init__(cfg=cfg, cmdname=cmdname, proto=proto, mmtype=mmtype)
  29. def _file_chksum(self, mmgen_addrfile, obj):
  30. kwargs = {'skip_chksum_msg':True}
  31. if not obj.__name__ == 'PasswordList':
  32. kwargs.update({'key_address_validity_check':False})
  33. ret = obj(self.cfg, self.proto, infile=mmgen_addrfile, **kwargs)
  34. if self.cfg.verbose:
  35. from ..util import msg, capfirst
  36. if ret.al_id.mmtype.name == 'password':
  37. msg('Passwd fmt: {}\nPasswd len: {}\nID string: {}'.format(
  38. capfirst(ret.pw_info[ret.pw_fmt].desc),
  39. ret.pw_len,
  40. ret.pw_id_str))
  41. else:
  42. msg(f'Base coin: {ret.base_coin} {capfirst(ret.network)}')
  43. msg(f'MMType: {capfirst(ret.al_id.mmtype.name)}')
  44. msg(f'List length: {len(ret.data)}')
  45. return ret.chksum
  46. def addrfile_chksum(self, mmgen_addrfile: str):
  47. "compute checksum for MMGen address file"
  48. from ..addrlist import AddrList
  49. return self._file_chksum(mmgen_addrfile, AddrList)
  50. def keyaddrfile_chksum(self, mmgen_keyaddrfile: str):
  51. "compute checksum for MMGen key-address file"
  52. from ..addrlist import KeyAddrList
  53. return self._file_chksum(mmgen_keyaddrfile, KeyAddrList)
  54. def viewkeyaddrfile_chksum(self, mmgen_viewkeyaddrfile: str):
  55. "compute checksum for MMGen key-address file"
  56. from ..addrlist import ViewKeyAddrList
  57. return self._file_chksum(mmgen_viewkeyaddrfile, ViewKeyAddrList)
  58. def passwdfile_chksum(self, mmgen_passwdfile: str):
  59. "compute checksum for MMGen password file"
  60. from ..passwdlist import PasswordList
  61. return self._file_chksum(mmgen_passwdfile, PasswordList)
  62. async def txview(
  63. self,
  64. varargs_call_sig = { # hack to allow for multiple filenames - must be second argument!
  65. 'args': (
  66. 'mmgen_tx_file(s)',
  67. 'pager',
  68. 'terse',
  69. 'sort',
  70. 'filesort'),
  71. 'dfls': (False, False, 'addr', 'mtime'),
  72. 'annots': {
  73. 'mmgen_tx_file(s)': str,
  74. 'pager': 'send output to pager',
  75. 'terse': 'produce compact tabular output',
  76. 'sort': 'sort order for transaction inputs and outputs ' + options_annot_str(['addr', 'raw']),
  77. 'filesort': 'file sort order ' + options_annot_str(['mtime', 'ctime', 'atime']),
  78. }
  79. },
  80. *infiles,
  81. **kwargs):
  82. "display specified raw or signed MMGen transaction files in human-readable form"
  83. terse = bool(kwargs.get('terse'))
  84. tx_sort = kwargs.get('sort') or 'addr'
  85. file_sort = kwargs.get('filesort') or 'mtime'
  86. from ..filename import MMGenFileList
  87. from ..tx import completed, CompletedTX
  88. flist = MMGenFileList(infiles, base_class=completed.Completed, proto=self.proto)
  89. flist.sort_by_age(key=file_sort) # in-place sort
  90. async def process_file(f):
  91. return (await CompletedTX(
  92. cfg = self.cfg,
  93. filename = f.name,
  94. quiet_open = True)).info.format(terse=terse, sort=tx_sort)
  95. return ('—'*77+'\n').join([await process_file(f) for f in flist]).rstrip()