forked from moneyphp/money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBigMoney.php
385 lines (340 loc) · 10.4 KB
/
BigMoney.php
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
<?php
/**
* This file is part of the Money library
*
* Copyright (c) 2011-2013 Mathias Verraes
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Money;
use Litipk\BigNumbers\Decimal;
class BigMoney
{
const ROUND_HALF_UP = PHP_ROUND_HALF_UP;
const ROUND_HALF_DOWN = PHP_ROUND_HALF_DOWN;
const ROUND_HALF_EVEN = PHP_ROUND_HALF_EVEN;
const ROUND_HALF_ODD = PHP_ROUND_HALF_ODD;
/** @var Decimal */
private $amount;
/** @var Currency */
private $currency;
/**
* Create a BigMoney instance
* @param Decimal $amount Amount, expressed in the smallest units of $currency (eg cents)
* @param Currency $currency
*/
public function __construct(Decimal $amount, Currency $currency)
{
$this->amount = $amount;
$this->currency = $currency;
}
/**
* @param integer $amount
* @param Currency $currency
* @return Decimal
*/
public static function fromInteger($amount, Currency $currency)
{
if (!is_int($amount)) {
throw new InvalidArgumentException("The amount parameter of must be an integer. It's the amount, expressed in the smallest units of currency (eg cents)");
}
return new self(Decimal::fromInteger($amount), $currency);
}
/**
* @param float $amount
* @param Currency $currency
* @return Decimal
*/
public static function fromFloat($amount, Currency $currency)
{
if (!is_float($amount)) {
throw new InvalidArgumentException("The amount parameter of must be a float. It's the amount, expressed in the smallest units of currency (eg cents)");
}
if (self::isDecimal($amount)) {
throw new InvalidArgumentException("Amount can not contains decimals");
}
return new self(Decimal::fromFloat($amount, 0), $currency);
}
private static function isDecimal($amount)
{
return is_numeric($amount) && floor($amount) != $amount;
}
/**
* @param string $amount
* @param Currency $currency
* @return Decimal
* @throws InvalidArgumentException
*/
public static function fromString($amount, Currency $currency)
{
$decimalAmount = Decimal::fromString($amount, 0);
if (!$decimalAmount->floor()->equals($decimalAmount)) {
throw new InvalidArgumentException("Amount can not contains decimals");
}
return new self($decimalAmount, $currency);
}
/**
* Convenience factory method for a Money object
* @example $fiveDollar = Money::USD(500);
* @param string $method
* @param array $arguments
* @return \Money\Money
*/
public static function __callStatic($method, $arguments)
{
return new Money($arguments[0], new Currency($method));
}
/**
* @param $string
* @throws \Money\InvalidArgumentException
* @return int
*/
public static function stringToUnits($string)
{
$sign = "(?P<sign>[-\+])?";
$digits = "(?P<digits>\d*)";
$separator = "(?P<separator>[.,])?";
$decimals = "(?P<decimal1>\d)?(?P<decimal2>\d)?";
$pattern = "/^" . $sign . $digits . $separator . $decimals . "$/";
if (!preg_match($pattern, trim($string), $matches)) {
throw new InvalidArgumentException("The value could not be parsed as money");
}
$units = $matches['sign'] == "-" ? "-" : "";
$units .= $matches['digits'];
$units .= isset($matches['decimal1']) ? $matches['decimal1'] : "0";
$units .= isset($matches['decimal2']) ? $matches['decimal2'] : "0";
return (int)$units;
}
/**
* @param BigMoney $other
* @return bool
*/
public function equals(BigMoney $other)
{
return
$this->isSameCurrency($other)
&& $this->amount == $other->amount;
}
/**
* @param BigMoney $other
* @return bool
*/
public function isSameCurrency(BigMoney $other)
{
return $this->currency->equals($other->currency);
}
/**
* @param BigMoney $other
* @return bool
*/
public function greaterThan(BigMoney $other)
{
return 1 == $this->compare($other);
}
/**
* @param BigMoney $other
* @return int
*/
public function compare(BigMoney $other)
{
$this->assertSameCurrency($other);
if ($this->amount < $other->amount) {
return -1;
} elseif ($this->amount == $other->amount) {
return 0;
} else {
return 1;
}
}
/**
* @param BigMoney $other
* @throws \Money\InvalidArgumentException
*/
private function assertSameCurrency(BigMoney $other)
{
if (!$this->isSameCurrency($other)) {
throw new InvalidArgumentException('Different currencies');
}
}
/**
* @param BigMoney $other
* @return bool
*/
public function greaterThanOrEqual(BigMoney $other)
{
return 0 >= $this->compare($other);
}
/**
* @param BigMoney $other
* @return bool
*/
public function lessThan(BigMoney $other)
{
return -1 == $this->compare($other);
}
/**
* @param BigMoney $other
* @return bool
*/
public function lessThanOrEqual(BigMoney $other)
{
return 0 <= $this->compare($other);
}
/**
* @deprecated Use getAmount() instead
* @return int
*/
public function getUnits()
{
return $this->amount;
}
/**
* @return int
*/
public function getAmount()
{
return $this->amount;
}
/**
* @return \Money\Currency
*/
public function getCurrency()
{
return $this->currency;
}
/**
* @param BigMoney $addend
* @return BigMoney
*/
public function add(BigMoney $addend)
{
$this->assertSameCurrency($addend);
return new self($this->amount->add($addend->amount), $this->currency);
}
/**
* @param BigMoney $subtrahend
* @return BigMoney
*/
public function subtract(BigMoney $subtrahend)
{
$this->assertSameCurrency($subtrahend);
return new self($this->amount->sub($subtrahend->amount), $this->currency);
}
/**
* @param $multiplier
* @param int $rounding_mode
* @return Money
* @throws \Exception
*/
public function multiply($multiplier, $rounding_mode = self::ROUND_HALF_UP)
{
$this->assertOperand($multiplier);
$this->assertRoundingMode($rounding_mode);
$product = $this->amount->mul(Decimal::create($multiplier));
switch ($rounding_mode) {
case self::ROUND_HALF_UP:
return new self($product->ceil(), $this->currency);
break;
case PHP_ROUND_HALF_DOWN:
return new self($product->floor(), $this->currency);
break;
default:
throw new \Exception('Not implemented');
}
}
/**
* @param $operand
* @throws \Money\InvalidArgumentException
*/
private function assertOperand($operand)
{
if (!is_int($operand) && !is_float($operand)) {
throw new InvalidArgumentException('Operand should be an integer or a float');
}
}
/**
* @param $rounding_mode
* @throws \Money\InvalidArgumentException
*/
private function assertRoundingMode($rounding_mode)
{
if (!in_array($rounding_mode, array(self::ROUND_HALF_DOWN, self::ROUND_HALF_EVEN, self::ROUND_HALF_ODD, self::ROUND_HALF_UP))) {
throw new InvalidArgumentException('Rounding mode should be Money::ROUND_HALF_DOWN | Money::ROUND_HALF_EVEN | Money::ROUND_HALF_ODD | Money::ROUND_HALF_UP');
}
}
/**
* @param $divisor
* @param int $rounding_mode
* @return Money
* @throws \Exception
*/
public function divide($divisor, $rounding_mode = self::ROUND_HALF_UP)
{
$this->assertOperand($divisor);
$this->assertRoundingMode($rounding_mode);
$quotient = $this->amount->div(Decimal::create($divisor));
$fractionalPart = $quotient->abs()->sub($quotient->floor()->abs());
switch ($rounding_mode) {
case self::ROUND_HALF_UP:
if ($fractionalPart->comp(Decimal::fromFloat(0.5)) == 1) {
// fractionalPart > 0.5
return new self($quotient->ceil(), $this->currency);
} else {
// fractionalPart <= 0.5
return new self($quotient->floor(), $this->currency);
}
break;
case PHP_ROUND_HALF_DOWN:
if ($fractionalPart->comp(Decimal::fromFloat(0.5)) == -1) {
// fractionalPart < 0.5
return new self($quotient->ceil(), $this->currency);
} else {
// fractionalPart >= 0.5
return new self($quotient->floor(), $this->currency);
}
break;
default:
throw new \Exception('Not implemented');
}
}
/**
* Allocate the money according to a list of ratio's
* @param array $ratios List of ratio's
* @return \Money\Money
*/
public function allocate(array $ratios)
{
$remainder = $this->amount;
$results = array();
$total = array_sum($ratios);
foreach ($ratios as $ratio) {
$share = $this->amount->mul(Decimal::fromFloat((float)$ratio))->div(Decimal::fromFloat((float)$total))->floor();
$results[] = new BigMoney($share, $this->currency);
$remainder = $remainder->sub($share);
}
$i = 0;
while ($remainder->comp(Decimal::fromInteger(0)) == 1) {
$results[$i] = new BigMoney($results[$i]->amount->add(Decimal::fromInteger(1)), $this->currency);
/** @var Decimal $remainder */
$remainder = $remainder->sub(Decimal::fromInteger(1));
$i++;
}
return $results;
}
/** @return bool */
public function isZero()
{
return $this->amount === 0;
}
/** @return bool */
public function isPositive()
{
return $this->amount > 0;
}
/** @return bool */
public function isNegative()
{
return $this->amount < 0;
}
}