forked from smartstore/SmartStoreNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMoney.cs
More file actions
483 lines (393 loc) · 14.4 KB
/
Copy pathMoney.cs
File metadata and controls
483 lines (393 loc) · 14.4 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Runtime.Serialization;
using SmartStore.Core.Domain.Directory;
namespace SmartStore
{
public class Money : IConvertible, IFormattable, IComparable, IComparable<Money>, IEquatable<Money>
{
public Money(Currency currency)
: this(0m, currency)
{
}
public Money(float amount, Currency currency)
: this((decimal)amount, currency, false)
{
}
public Money(double amount, Currency currency)
: this((decimal)amount, currency, false)
{
}
public Money(decimal amount, Currency currency)
: this(amount, currency, false)
{
}
public Money(decimal amount, Currency currency, bool hideCurrency)
{
Guard.NotNull(currency, nameof(currency));
Amount = amount;
Currency = currency;
HideCurrency = hideCurrency;
}
[IgnoreDataMember]
public bool HideCurrency
{
get;
internal set;
}
[IgnoreDataMember]
public Currency Currency
{
get;
internal set;
}
/// <summary>
/// Gets the number of decimal digits for the associated currency.
/// </summary>
public int DecimalDigits
{
get => string.Equals(Currency?.CurrencyCode, "btc", StringComparison.OrdinalIgnoreCase) ? 8 : Currency.NumberFormat.CurrencyDecimalDigits;
}
/// <summary>
/// The internal unrounded raw amount
/// </summary>
public decimal Amount
{
get;
set;
}
/// <summary>
/// Rounds the amount to the number of significant decimal digits
/// of the associated currency using MidpointRounding.AwayFromZero.
/// </summary>
public decimal RoundedAmount
{
get
{
return decimal.Round(Amount, DecimalDigits);
}
}
/// <summary>
/// Truncates the amount to the number of significant decimal digits
/// of the associated currency.
/// </summary>
public decimal TruncatedAmount
{
get => (decimal)((long)Math.Truncate(Amount * DecimalDigits)) / DecimalDigits;
}
/// <summary>
/// The formatted amount
/// </summary>
public string Formatted
{
get => ToString(true, false);
}
private static void GuardCurrenciesAreEqual(Money a, Money b)
{
if (a.Currency != b.Currency)
throw new InvalidOperationException("Cannot operate on money values with different currencies.");
}
#region Compare
public override int GetHashCode()
{
if (Amount == 0)
return 0;
return Amount.GetHashCode() ^ Currency.GetHashCode();
}
public int CompareTo(Money other)
{
return ((IComparable)this).CompareTo(other);
}
int IComparable.CompareTo(object obj)
{
if (obj == null || !(obj is Money))
return 1;
Money other = (Money)obj;
if (this.Amount == other.Amount)
return 0;
if (this.Amount < other.Amount)
return -1;
return 1;
}
public override bool Equals(object obj)
{
// Prevent stack overflow.
if (obj != null)
{
return Equals(obj as Money);
}
return false;
}
bool IEquatable<Money>.Equals(Money other)
{
if (other == null)
return false;
if (ReferenceEquals(this, other))
return true;
if (other.Amount == 0 && this.Amount == 0)
return true;
return other.Amount == this.Amount && other.Currency == this.Currency;
}
public static bool operator ==(Money a, Money b) => a.Equals(b);
public static bool operator !=(Money a, Money b) => !a.Equals(b);
public static bool operator >(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return a.Amount > b.Amount;
}
public static bool operator <(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return a.Amount < b.Amount;
}
public static bool operator <=(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return a.Amount <= b.Amount;
}
public static bool operator >=(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return a.Amount >= b.Amount;
}
public static bool operator ==(Money a, int b) => a.Amount == b;
public static bool operator !=(Money a, int b) => a.Amount != b;
public static bool operator >(Money a, int b) => a.Amount > b;
public static bool operator <(Money a, int b) => a.Amount < b;
public static bool operator <=(Money a, int b) => a.Amount <= b;
public static bool operator >=(Money a, int b) => a.Amount >= b;
public static bool operator ==(Money a, float b) => a.Amount == (decimal)b;
public static bool operator !=(Money a, float b) => a.Amount != (decimal)b;
public static bool operator >(Money a, float b) => a.Amount > (decimal)b;
public static bool operator <(Money a, float b) => a.Amount < (decimal)b;
public static bool operator <=(Money a, float b) => a.Amount <= (decimal)b;
public static bool operator >=(Money a, float b) => a.Amount >= (decimal)b;
public static bool operator ==(Money a, double b) => a.Amount == (decimal)b;
public static bool operator !=(Money a, double b) => a.Amount != (decimal)b;
public static bool operator >(Money a, double b) => a.Amount > (decimal)b;
public static bool operator <(Money a, double b) => a.Amount < (decimal)b;
public static bool operator <=(Money a, double b) => a.Amount <= (decimal)b;
public static bool operator >=(Money a, double b) => a.Amount >= (decimal)b;
public static bool operator ==(Money a, decimal b) => a.Amount == b;
public static bool operator !=(Money a, decimal b) => a.Amount != b;
public static bool operator >(Money a, decimal b) => a.Amount > b;
public static bool operator <(Money a, decimal b) => a.Amount < b;
public static bool operator <=(Money a, decimal b) => a.Amount <= b;
public static bool operator >=(Money a, decimal b) => a.Amount >= b;
#endregion
#region Format
string IFormattable.ToString(string format, IFormatProvider formatProvider)
{
return this.ToString(!HideCurrency, false);
}
string IConvertible.ToString(IFormatProvider provider)
{
return this.ToString(!HideCurrency, false);
}
public override string ToString()
{
return this.ToString(!HideCurrency, false);
}
public string ToString(bool showCurrency)
{
return this.ToString(showCurrency, false);
}
public string ToString(bool showCurrency, bool useISOCodeAsSymbol)
{
var fmt = Currency.NumberFormat;
if (Currency.CustomFormatting.HasValue())
{
return RoundedAmount.ToString(Currency.CustomFormatting, fmt);
}
else
{
if (!showCurrency || useISOCodeAsSymbol)
{
fmt = (NumberFormatInfo)Currency.NumberFormat.Clone();
fmt.CurrencySymbol = !showCurrency ? "" : Currency.CurrencyCode;
}
return RoundedAmount.ToString("C", fmt);
}
}
#endregion
#region Convert
// For truthy checks in templating
public static explicit operator bool(Money money) => money.Amount != 0;
public static explicit operator string(Money money) => money.ToString(true, false);
public static explicit operator byte(Money money) => System.Convert.ToByte(money.Amount);
public static explicit operator decimal(Money money) => money.Amount;
public static explicit operator double(Money money) => System.Convert.ToDouble(money.Amount);
public static explicit operator float(Money money) => System.Convert.ToSingle(money.Amount);
public static explicit operator int(Money money) => System.Convert.ToInt32(money.Amount);
public static explicit operator long(Money money) => System.Convert.ToInt64(money.Amount);
public static explicit operator sbyte(Money money) => System.Convert.ToSByte(money.Amount);
public static explicit operator short(Money money) => System.Convert.ToInt16(money.Amount);
public static explicit operator ushort(Money money) => System.Convert.ToUInt16(money.Amount);
public static explicit operator uint(Money money) => System.Convert.ToUInt32(money.Amount);
public static explicit operator ulong(Money money) => System.Convert.ToUInt64(money.Amount);
TypeCode IConvertible.GetTypeCode() => TypeCode.Decimal;
object IConvertible.ToType(Type conversionType, IFormatProvider provider) => System.Convert.ChangeType(this.Amount, conversionType, provider);
bool IConvertible.ToBoolean(IFormatProvider provider) => Amount != 0;
char IConvertible.ToChar(IFormatProvider provider) => throw Error.InvalidCast(typeof(Money), typeof(char));
DateTime IConvertible.ToDateTime(IFormatProvider provider) => throw Error.InvalidCast(typeof(Money), typeof(DateTime));
byte IConvertible.ToByte(IFormatProvider provider) => (byte)this.Amount;
decimal IConvertible.ToDecimal(IFormatProvider provider) => this.Amount;
double IConvertible.ToDouble(IFormatProvider provider) => (double)this.Amount;
short IConvertible.ToInt16(IFormatProvider provider) => (short)this.Amount;
int IConvertible.ToInt32(IFormatProvider provider) => (int)this.Amount;
long IConvertible.ToInt64(IFormatProvider provider) => (long)this.Amount;
sbyte IConvertible.ToSByte(IFormatProvider provider) => (sbyte)this.Amount;
float IConvertible.ToSingle(IFormatProvider provider) => (float)this.Amount;
ushort IConvertible.ToUInt16(IFormatProvider provider) => (ushort)this.Amount;
uint IConvertible.ToUInt32(IFormatProvider provider) => (uint)this.Amount;
ulong IConvertible.ToUInt64(IFormatProvider provider) => (ulong)this.Amount;
#endregion
#region Add
public static Money operator ++(Money a)
{
a.Amount++;
return a;
}
public static Money operator +(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return new Money(a.Amount + b.Amount, a.Currency);
}
public static Money operator +(Money a, int b) => a + (decimal)b;
public static Money operator +(Money a, float b) => a + (decimal)b;
public static Money operator +(Money a, double b) => a + (decimal)b;
public static Money operator +(Money a, decimal b) => new Money(a.Amount + b, a.Currency);
#endregion
#region Substract
public static Money operator --(Money a)
{
a.Amount--;
return a;
}
public static Money operator -(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return new Money(a.Amount - b.Amount, a.Currency);
}
public static Money operator -(Money a, int b) => a + (decimal)b;
public static Money operator -(Money a, float b) => a + (decimal)b;
public static Money operator -(Money a, double b) => a + (decimal)b;
public static Money operator -(Money a, decimal b) => new Money(a.Amount - b, a.Currency);
#endregion
#region Multiply
public static Money operator *(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return new Money(a.Amount - b.Amount, a.Currency);
}
public static Money operator *(Money a, int b) => a * (decimal)b;
public static Money operator *(Money a, float b) => a * (decimal)b;
public static Money operator *(Money a, double b) => a * (decimal)b;
public static Money operator *(Money a, decimal b) => new Money(a.Amount * b, a.Currency);
#endregion
#region Divide
public static Money operator /(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
return new Money(a.Amount / b.Amount, a.Currency);
}
public static Money operator /(Money a, int b) => a / (decimal)b;
public static Money operator /(Money a, float b) => a / (decimal)b;
public static Money operator /(Money a, double b) => a / (decimal)b;
public static Money operator /(Money a, decimal b) => new Money(a.Amount / b, a.Currency);
#endregion
#region Exchange & Math
///// <summary>
///// Rounds the amount if enabled for the currency or if <paramref name="force"/> is <c>true</c>
///// </summary>
///// <param name="force">Round also if disabled for the currency</param>
///// <returns>A new instance with the rounded amount</returns>
//public Money Round(bool force = false)
//{
//}
public Money ConvertTo(Currency toCurrency)
{
if (Currency == toCurrency)
return this;
return new Money((Amount * Currency.Rate) / toCurrency.Rate, toCurrency);
}
/// <summary>
/// Evenly distributes the amount over n parts, resolving remainders that occur due to rounding
/// errors, thereby garuanteeing the postcondition: result->sum(r|r.amount) = this.amount and
/// x elements in result are greater than at least one of the other elements, where x = amount mod n.
/// </summary>
/// <param name="n">Number of parts over which the amount is to be distibuted.</param>
/// <returns>Array with distributed Money amounts.</returns>
public Money[] Allocate(int n)
{
var cents = Math.Pow(10, DecimalDigits);
var lowResult = ((long)Math.Truncate((double)Amount / n * cents)) / cents;
var highResult = lowResult + 1.0d / cents;
var results = new Money[n];
var remainder = (int)(((double)Amount * cents) % n);
for (var i = 0; i < remainder; i++)
results[i] = new Money((decimal)highResult, Currency);
for (var i = remainder; i < n; i++)
results[i] = new Money((decimal)lowResult, Currency);
return results;
}
/// <summary>
/// Gets the ratio of one money to another.
/// </summary>
/// <param name="numerator">The numerator of the operation.</param>
/// <param name="denominator">The denominator of the operation.</param>
/// <returns>A decimal from 0.0 to 1.0 of the ratio between the two money values.</returns>
public static decimal GetRatio(Money numerator, Money denominator)
{
if (numerator == 0)
return 0;
if (denominator == 0)
throw new DivideByZeroException("Attempted to divide by zero!");
GuardCurrenciesAreEqual(numerator, denominator);
return numerator.Amount / denominator.Amount;
}
/// <summary>
/// Gets the smallest money, given the two values.
/// </summary>
/// <param name="m1">The first money to compare.</param>
/// <param name="m2">The second money to compare.</param>
/// <returns>The smallest money value of the arguments.</returns>
public static Money Min(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
if (a == b)
return a;
else if (a > b)
return b;
else
return a;
}
/// <summary>
/// Gets the largest money, given the two values.
/// </summary>
/// <param name="m1">The first money to compare.</param>
/// <param name="m2">The second money to compare.</param>
/// <returns>The largest money value of the arguments.</returns>
public static Money Max(Money a, Money b)
{
GuardCurrenciesAreEqual(a, b);
if (a == b)
return a;
else if (a > b)
return a;
else
return b;
}
/// <summary>
/// Gets the absolute value of the <see cref="Money"/>.
/// </summary>
/// <param name="value">The value of money to convert.</param>
/// <returns>The money value as an absolute value.</returns>
public static Money Abs(Money value)
{
return new Money(Math.Abs(value.Amount), value.Currency);
}
#endregion
}
}