1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
#!/usr/bin/env python3
# © Copyright 2021-2022, Scott Gasch
"""An amount of money (USD) represented as an integral count of
cents."""
import re
from typing import Optional, Tuple
import math_utils
class CentCount(object):
"""A class for representing monetary amounts potentially with
different currencies meant to avoid floating point rounding
issues by treating amount as a simple integral count of cents.
"""
def __init__(self, centcount, currency: str = 'USD', *, strict_mode=False):
self.strict_mode = strict_mode
if isinstance(centcount, str):
ret = CentCount._parse(centcount)
if ret is None:
raise Exception(f'Unable to parse money string "{centcount}"')
centcount = ret[0]
currency = ret[1]
if isinstance(centcount, float):
centcount = int(centcount * 100.0)
if not isinstance(centcount, int):
centcount = int(centcount)
self.centcount = centcount
if not currency:
self.currency: Optional[str] = None
else:
self.currency = currency
def __repr__(self):
a = float(self.centcount)
a /= 100
a = round(a, 2)
s = f'{a:,.2f}'
if self.currency is not None:
return f'{s} {self.currency}'
else:
return f'${s}'
def __pos__(self):
return CentCount(centcount=self.centcount, currency=self.currency)
def __neg__(self):
return CentCount(centcount=-self.centcount, currency=self.currency)
def __add__(self, other):
if isinstance(other, CentCount):
if self.currency == other.currency:
return CentCount(
centcount=self.centcount + other.centcount,
currency=self.currency,
)
else:
raise TypeError('Incompatible currencies in add expression')
else:
if self.strict_mode:
raise TypeError('In strict_mode only two moneys can be added')
else:
return self.__add__(CentCount(other, self.currency))
def __sub__(self, other):
if isinstance(other, CentCount):
if self.currency == other.currency:
return CentCount(
centcount=self.centcount - other.centcount,
currency=self.currency,
)
else:
raise TypeError('Incompatible currencies in add expression')
else:
if self.strict_mode:
raise TypeError('In strict_mode only two moneys can be added')
else:
return self.__sub__(CentCount(other, self.currency))
def __mul__(self, other):
if isinstance(other, CentCount):
raise TypeError('can not multiply monetary quantities')
else:
return CentCount(
centcount=int(self.centcount * float(other)),
currency=self.currency,
)
def __truediv__(self, other):
if isinstance(other, CentCount):
raise TypeError('can not divide monetary quantities')
else:
return CentCount(
centcount=int(float(self.centcount) / float(other)),
currency=self.currency,
)
def __int__(self):
return self.centcount.__int__()
def __float__(self):
return self.centcount.__float__() / 100.0
def truncate_fractional_cents(self):
x = int(self)
self.centcount = int(math_utils.truncate_float(x))
return self.centcount
def round_fractional_cents(self):
x = int(self)
self.centcount = int(round(x, 2))
return self.centcount
__radd__ = __add__
def __rsub__(self, other):
if isinstance(other, CentCount):
if self.currency == other.currency:
return CentCount(
centcount=other.centcount - self.centcount,
currency=self.currency,
)
else:
raise TypeError('Incompatible currencies in sub expression')
else:
if self.strict_mode:
raise TypeError('In strict_mode only two moneys can be added')
else:
return CentCount(
centcount=int(other) - self.centcount,
currency=self.currency,
)
__rmul__ = __mul__
#
# Override comparison operators to also compare currency.
#
def __eq__(self, other):
if other is None:
return False
if isinstance(other, CentCount):
return self.centcount == other.centcount and self.currency == other.currency
if self.strict_mode:
raise TypeError("In strict mode only two CentCounts can be compared")
else:
return self.centcount == int(other)
def __ne__(self, other):
result = self.__eq__(other)
if result is NotImplemented:
return result
return not result
def __lt__(self, other):
if isinstance(other, CentCount):
if self.currency == other.currency:
return self.centcount < other.centcount
else:
raise TypeError('can not directly compare different currencies')
else:
if self.strict_mode:
raise TypeError('In strict mode, only two CentCounts can be compated')
else:
return self.centcount < int(other)
def __gt__(self, other):
if isinstance(other, CentCount):
if self.currency == other.currency:
return self.centcount > other.centcount
else:
raise TypeError('can not directly compare different currencies')
else:
if self.strict_mode:
raise TypeError('In strict mode, only two CentCounts can be compated')
else:
return self.centcount > int(other)
def __le__(self, other):
return self < other or self == other
def __ge__(self, other):
return self > other or self == other
def __hash__(self) -> int:
return hash(self.__repr__)
CENTCOUNT_RE = re.compile(r"^([+|-]?)(\d+)(\.\d+)$")
CURRENCY_RE = re.compile(r"^[A-Z][A-Z][A-Z]$")
@classmethod
def _parse(cls, s: str) -> Optional[Tuple[int, str]]:
centcount = None
currency = None
s = s.strip()
chunks = s.split(' ')
try:
for chunk in chunks:
if CentCount.CENTCOUNT_RE.match(chunk) is not None:
centcount = int(float(chunk) * 100.0)
elif CentCount.CURRENCY_RE.match(chunk) is not None:
currency = chunk
except Exception:
pass
if centcount is not None and currency is not None:
return (centcount, currency)
elif centcount is not None:
return (centcount, 'USD')
return None
@classmethod
def parse(cls, s: str) -> 'CentCount':
chunks = CentCount._parse(s)
if chunks is not None:
return CentCount(chunks[0], chunks[1])
raise Exception(f'Unable to parse money string "{s}"')
|