bal.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. tw.bal: Tracking wallet getbalance class for the MMGen suite
  20. """
  21. from ..base_obj import AsyncInit
  22. from ..objmethods import MMGenObject
  23. from ..obj import NonNegativeInt
  24. class TwGetBalance(MMGenObject, metaclass=AsyncInit):
  25. def __new__(cls, cfg, proto, *, minconf, quiet):
  26. return MMGenObject.__new__(proto.base_proto_subclass(cls, 'tw.bal'))
  27. async def __init__(self, cfg, proto, *, minconf, quiet):
  28. class BalanceInfo(dict):
  29. def __init__(self):
  30. amt0 = proto.coin_amt('0')
  31. data = {
  32. 'unconfirmed': amt0,
  33. 'lt_minconf': amt0,
  34. 'ge_minconf': amt0,
  35. 'spendable': amt0,
  36. }
  37. dict.__init__(self, **data)
  38. self.minconf = NonNegativeInt(minconf)
  39. self.balance_info = BalanceInfo
  40. self.quiet = quiet
  41. self.proto = proto
  42. self.data = {k:self.balance_info() for k in self.start_labels}
  43. if minconf < 2 and 'lt_minconf' in self.conf_cols:
  44. del self.conf_cols['lt_minconf']
  45. await self.create_data()
  46. def format(self, color):
  47. def gen_output():
  48. if self.quiet:
  49. yield str(self.data['TOTAL']['ge_minconf'] if self.data else 0)
  50. else:
  51. def get_col_iwidth(colname):
  52. return len(str(int(max(v[colname] for v in self.data.values())))) + iwidth_adj
  53. def make_col(label, col):
  54. return self.data[label][col].fmt(iwidths[col], color=color)
  55. if color:
  56. from ..color import green, yellow
  57. else:
  58. from ..color import nocolor
  59. green = yellow = nocolor
  60. add_w = self.proto.coin_amt.max_prec + 1 # 1 = len('.')
  61. iwidth_adj = 1 # so that min iwidth (1) + add_w + iwidth_adj >= len('Unconfirmed')
  62. col1_w = max(len(l) for l in self.start_labels) + 1 # 1 = len(':')
  63. iwidths = {colname: get_col_iwidth(colname) for colname in self.conf_cols}
  64. net_desc = self.proto.coin + ' ' + self.proto.network.upper()
  65. if net_desc != 'BTC MAINNET':
  66. yield f'Network: {green(net_desc)}'
  67. yield '{lbl:{w}} {cols}'.format(
  68. lbl = 'Wallet',
  69. w = col1_w + iwidth_adj,
  70. cols = ' '.join(v.format(minconf=self.minconf).ljust(iwidths[k]+add_w)
  71. for k, v in self.conf_cols.items())).rstrip()
  72. from ..addr import MMGenID
  73. for label in sorted(self.data.keys()):
  74. yield '{lbl} {cols}'.format(
  75. lbl = yellow((label + ' ' + self.proto.coin).ljust(col1_w)) if label == 'TOTAL'
  76. else MMGenID.hlc((label+':').ljust(col1_w), color=color),
  77. cols = ' '.join(make_col(label, col) for col in self.conf_cols)
  78. ).rstrip()
  79. return '\n'.join(gen_output())