2008-10-01 04:29:58 +04:00
{- |
2011-08-31 21:22:53 +04:00
A simple 'Amount' is some quantity of money , shares , or anything else .
2016-05-08 02:18:04 +03:00
It has a ( possibly null ) 'CommoditySymbol' and a numeric quantity :
2007-03-13 07:11:39 +03:00
2008-10-01 13:33:05 +04:00
@
2014-09-11 00:07:53 +04:00
$ 1
2007-03-13 07:11:39 +03:00
£ - 50
2014-09-11 00:07:53 +04:00
EUR 3.44
2007-03-13 07:11:39 +03:00
GOOG 500
1.5 h
2009-12-13 00:10:39 +03:00
90 apples
2014-09-11 00:07:53 +04:00
0
2008-10-01 13:33:05 +04:00
@
2007-03-13 07:11:39 +03:00
2011-08-31 21:22:53 +04:00
It may also have an assigned 'Price' , representing this amount's per - unit
or total cost in a different commodity . If present , this is rendered like
so :
2007-03-13 07:11:39 +03:00
2008-10-01 13:33:05 +04:00
@
2011-08-31 21:22:53 +04:00
EUR 2 \@ $ 1.50 ( unit price )
EUR 2 \@\@ $ 3 ( total price )
2008-10-01 13:33:05 +04:00
@
2007-03-13 07:11:39 +03:00
2011-08-31 21:22:53 +04:00
A 'MixedAmount' is zero or more simple amounts , so can represent multiple
2011-08-30 17:16:30 +04:00
commodities ; this is the type most often used :
2009-11-25 16:31:08 +03:00
@
2011-08-30 17:16:30 +04:00
0
2009-12-13 00:10:39 +03:00
$ 50 + EUR 3
16 h + $ 13.55 + AAPL 500 + 6 oranges
2008-10-01 13:33:05 +04:00
@
2009-11-25 16:31:08 +03:00
2011-08-30 17:16:30 +04:00
When a mixed amount has been \ " normalised \ " , it has no more than one amount
in each commodity and no zero amounts ; or it has just a single zero amount
and no others .
2011-08-31 21:22:53 +04:00
Limited arithmetic with simple and mixed amounts is supported , best used
with similar amounts since it mostly ignores assigned prices and commodity
exchange rates .
2009-11-25 16:31:08 +03:00
2007-03-13 07:11:39 +03:00
- }
2020-12-22 14:11:09 +03:00
{- # LANGUAGE OverloadedStrings # -}
{- # LANGUAGE RecordWildCards # -}
{- # LANGUAGE StandaloneDeriving # -}
lib: textification: commodity symbols
hledger -f data/100x100x10.journal stats
<<ghc: 39288536 bytes, 77 GCs, 196608/269560 avg/max bytes residency (3 samples), 2M in use, 0.000 INIT (0.001 elapsed), 0.016 MUT (0.028 elapsed), 0.009 GC (0.012 elapsed) :ghc>>
<<ghc: 39290808 bytes, 77 GCs, 196608/269560 avg/max bytes residency (3 samples), 2M in use, 0.000 INIT (0.003 elapsed), 0.015 MUT (0.021 elapsed), 0.009 GC (0.011 elapsed) :ghc>>
hledger -f data/1000x100x10.journal stats
<<ghc: 314268960 bytes, 612 GCs, 2143219/6826152 avg/max bytes residency (7 samples), 16M in use, 0.000 INIT (0.009 elapsed), 0.135 MUT (0.151 elapsed), 0.065 GC (0.178 elapsed) :ghc>>
<<ghc: 314254512 bytes, 612 GCs, 2072377/6628024 avg/max bytes residency (7 samples), 16M in use, 0.000 INIT (0.000 elapsed), 0.130 MUT (0.134 elapsed), 0.064 GC (0.075 elapsed) :ghc>>
hledger -f data/10000x100x10.journal stats
<<ghc: 3070016592 bytes, 5965 GCs, 13138220/64266016 avg/max bytes residency (10 samples), 128M in use, 0.000 INIT (0.000 elapsed), 1.272 MUT (1.322 elapsed), 0.527 GC (0.595 elapsed) :ghc>>
<<ghc: 3069989896 bytes, 5973 GCs, 12687877/62848920 avg/max bytes residency (10 samples), 124M in use, 0.000 INIT (0.002 elapsed), 1.295 MUT (1.324 elapsed), 0.511 GC (0.570 elapsed) :ghc>>
hledger -f data/100000x100x10.journal stats
<<ghc: 30753448072 bytes, 59763 GCs, 121502982/673169248 avg/max bytes residency (14 samples), 1640M in use, 0.000 INIT (0.007 elapsed), 12.421 MUT (12.672 elapsed), 6.240 GC (7.812 elapsed) :ghc>>
<<ghc: 30753350528 bytes, 59811 GCs, 117616668/666703600 avg/max bytes residency (14 samples), 1588M in use, 0.001 INIT (0.011 elapsed), 13.209 MUT (13.683 elapsed), 6.137 GC (7.117 elapsed) :ghc>>
2016-05-24 05:13:43 +03:00
2010-12-27 23:26:22 +03:00
module Hledger.Data.Amount (
2011-08-31 20:54:10 +04:00
-- * Amount
2012-11-20 01:20:10 +04:00
amount ,
2011-08-31 20:54:10 +04:00
nullamt ,
2012-05-27 22:14:20 +04:00
missingamt ,
2012-11-20 06:22:20 +04:00
num ,
2012-11-20 01:20:10 +04:00
usd ,
eur ,
gbp ,
2019-11-11 23:06:58 +03:00
per ,
2012-11-20 01:20:10 +04:00
hrs ,
at ,
( @@ ) ,
2011-09-02 04:42:41 +04:00
amountWithCommodity ,
2011-08-31 20:54:10 +04:00
-- ** arithmetic
2020-06-01 01:48:08 +03:00
amountCost ,
2020-05-30 04:57:22 +03:00
amountIsZero ,
amountLooksZero ,
2011-08-31 20:54:10 +04:00
divideAmount ,
2018-07-17 01:36:06 +03:00
multiplyAmount ,
2018-11-14 04:43:15 +03:00
divideAmountAndPrice ,
multiplyAmountAndPrice ,
2018-11-14 02:37:42 +03:00
amountTotalPriceToUnitPrice ,
2011-08-31 20:54:10 +04:00
-- ** rendering
2020-12-22 15:35:20 +03:00
AmountDisplayOpts ( .. ) ,
noColour ,
noPrice ,
oneLine ,
2012-11-20 01:20:10 +04:00
amountstyle ,
2018-04-20 22:18:28 +03:00
styleAmount ,
2019-10-20 17:08:45 +03:00
styleAmountExceptPrecision ,
2020-11-14 22:08:01 +03:00
amountUnstyled ,
2020-12-22 15:35:20 +03:00
showAmountB ,
2011-08-31 20:54:10 +04:00
showAmount ,
2017-04-26 04:34:09 +03:00
cshowAmount ,
2014-07-28 17:32:09 +04:00
showAmountWithZeroCommodity ,
2011-08-31 20:54:10 +04:00
showAmountDebug ,
showAmountWithoutPrice ,
2012-11-20 01:20:10 +04:00
setAmountPrecision ,
withPrecision ,
2019-01-17 01:45:50 +03:00
setFullPrecision ,
2018-08-04 18:44:50 +03:00
setAmountInternalPrecision ,
withInternalPrecision ,
setAmountDecimalPoint ,
withDecimalPoint ,
2012-11-20 01:20:10 +04:00
canonicaliseAmount ,
2011-08-31 20:54:10 +04:00
-- * MixedAmount
nullmixedamt ,
2012-05-27 22:14:20 +04:00
missingmixedamt ,
2012-11-20 03:17:55 +04:00
mixed ,
2011-08-31 20:54:10 +04:00
amounts ,
2014-07-02 18:35:06 +04:00
filterMixedAmount ,
2014-07-19 03:45:46 +04:00
filterMixedAmountByCommodity ,
2020-01-21 04:09:07 +03:00
mapMixedAmount ,
2014-07-28 17:32:09 +04:00
normaliseMixedAmountSquashPricesForDisplay ,
normaliseMixedAmount ,
2020-06-24 16:38:17 +03:00
unifyMixedAmount ,
2020-01-22 22:57:42 +03:00
mixedAmountStripPrices ,
2011-08-31 20:54:10 +04:00
-- ** arithmetic
2020-06-01 01:48:08 +03:00
mixedAmountCost ,
2011-08-31 20:54:10 +04:00
divideMixedAmount ,
2018-07-17 01:36:06 +03:00
multiplyMixedAmount ,
2018-11-14 04:43:15 +03:00
divideMixedAmountAndPrice ,
multiplyMixedAmountAndPrice ,
2014-12-26 22:04:23 +03:00
averageMixedAmounts ,
2016-12-10 18:04:48 +03:00
isNegativeAmount ,
2011-08-31 20:54:10 +04:00
isNegativeMixedAmount ,
2020-05-30 04:57:22 +03:00
mixedAmountIsZero ,
mixedAmountLooksZero ,
2018-11-14 02:37:42 +03:00
mixedAmountTotalPriceToUnitPrice ,
2011-08-31 20:54:10 +04:00
-- ** rendering
2018-04-20 22:18:28 +03:00
styleMixedAmount ,
2020-11-14 22:08:01 +03:00
mixedAmountUnstyled ,
2011-08-31 20:54:10 +04:00
showMixedAmount ,
2015-10-30 04:05:02 +03:00
showMixedAmountOneLine ,
2011-08-31 20:54:10 +04:00
showMixedAmountDebug ,
showMixedAmountWithoutPrice ,
2014-07-28 17:32:09 +04:00
showMixedAmountOneLineWithoutPrice ,
2020-06-26 22:14:49 +03:00
showMixedAmountElided ,
2014-07-28 17:32:09 +04:00
showMixedAmountWithZeroCommodity ,
2020-09-14 09:22:07 +03:00
showMixed ,
2020-12-25 08:38:26 +03:00
showMixedLines ,
2012-11-20 01:20:10 +04:00
setMixedAmountPrecision ,
canonicaliseMixedAmount ,
2011-08-31 20:54:10 +04:00
-- * misc.
2012-11-12 20:31:43 +04:00
ltraceamount ,
2018-09-06 23:08:26 +03:00
tests_Amount
2011-08-31 20:54:10 +04:00
) where
2020-06-24 16:38:17 +03:00
import Control.Monad ( foldM )
2020-12-21 15:10:07 +03:00
import Data.Decimal ( DecimalRaw ( .. ) , decimalPlaces , normalizeDecimal , roundTo )
2020-12-22 14:11:09 +03:00
import Data.Default ( Default ( .. ) )
2014-07-28 17:32:09 +04:00
import Data.Function ( on )
2020-12-22 15:35:20 +03:00
import Data.List ( groupBy , intercalate , intersperse , mapAccumL , partition ,
sortBy )
2020-12-21 15:10:07 +03:00
import Data.List.NonEmpty ( NonEmpty ( .. ) , nonEmpty )
2019-06-02 01:28:10 +03:00
import qualified Data.Map as M
2010-11-15 02:29:04 +03:00
import Data.Map ( findWithDefault )
2020-09-14 09:22:07 +03:00
import Data.Maybe ( fromMaybe )
lib: textification: commodity symbols
hledger -f data/100x100x10.journal stats
<<ghc: 39288536 bytes, 77 GCs, 196608/269560 avg/max bytes residency (3 samples), 2M in use, 0.000 INIT (0.001 elapsed), 0.016 MUT (0.028 elapsed), 0.009 GC (0.012 elapsed) :ghc>>
<<ghc: 39290808 bytes, 77 GCs, 196608/269560 avg/max bytes residency (3 samples), 2M in use, 0.000 INIT (0.003 elapsed), 0.015 MUT (0.021 elapsed), 0.009 GC (0.011 elapsed) :ghc>>
hledger -f data/1000x100x10.journal stats
<<ghc: 314268960 bytes, 612 GCs, 2143219/6826152 avg/max bytes residency (7 samples), 16M in use, 0.000 INIT (0.009 elapsed), 0.135 MUT (0.151 elapsed), 0.065 GC (0.178 elapsed) :ghc>>
<<ghc: 314254512 bytes, 612 GCs, 2072377/6628024 avg/max bytes residency (7 samples), 16M in use, 0.000 INIT (0.000 elapsed), 0.130 MUT (0.134 elapsed), 0.064 GC (0.075 elapsed) :ghc>>
hledger -f data/10000x100x10.journal stats
<<ghc: 3070016592 bytes, 5965 GCs, 13138220/64266016 avg/max bytes residency (10 samples), 128M in use, 0.000 INIT (0.000 elapsed), 1.272 MUT (1.322 elapsed), 0.527 GC (0.595 elapsed) :ghc>>
<<ghc: 3069989896 bytes, 5973 GCs, 12687877/62848920 avg/max bytes residency (10 samples), 124M in use, 0.000 INIT (0.002 elapsed), 1.295 MUT (1.324 elapsed), 0.511 GC (0.570 elapsed) :ghc>>
hledger -f data/100000x100x10.journal stats
<<ghc: 30753448072 bytes, 59763 GCs, 121502982/673169248 avg/max bytes residency (14 samples), 1640M in use, 0.000 INIT (0.007 elapsed), 12.421 MUT (12.672 elapsed), 6.240 GC (7.812 elapsed) :ghc>>
<<ghc: 30753350528 bytes, 59811 GCs, 117616668/666703600 avg/max bytes residency (14 samples), 1588M in use, 0.001 INIT (0.011 elapsed), 13.209 MUT (13.683 elapsed), 6.137 GC (7.117 elapsed) :ghc>>
2016-05-24 05:13:43 +03:00
import qualified Data.Text as T
2020-12-21 15:10:07 +03:00
import qualified Data.Text.Lazy.Builder as TB
2020-08-09 15:31:16 +03:00
import Data.Word ( Word8 )
2020-12-22 15:35:20 +03:00
import Safe ( headDef , lastDef , lastMay )
2020-09-14 09:22:07 +03:00
import Text.Printf ( printf )
2010-11-15 02:29:04 +03:00
2010-05-20 03:08:53 +04:00
import Hledger.Data.Types
import Hledger.Data.Commodity
2019-07-15 13:28:52 +03:00
import Hledger.Utils
2008-10-01 04:29:58 +04:00
2015-08-10 02:20:02 +03:00
deriving instance Show MarketPrice
2007-07-04 05:38:56 +04:00
2018-04-20 22:18:28 +03:00
2020-12-22 15:35:20 +03:00
-- | Options for the display of Amount and MixedAmount.
2020-12-22 14:11:09 +03:00
data AmountDisplayOpts = AmountDisplayOpts
2020-12-22 15:35:20 +03:00
{ displayPrice :: Bool -- ^ Whether to display the Price of an Amount.
, displayZeroCommodity :: Bool -- ^ If the Amount rounds to 0, whether to display its commodity string.
, displayColour :: Bool -- ^ Whether to colourise negative Amounts.
, displayNormalised :: Bool -- ^ Whether to normalise MixedAmounts before displaying.
, displayOneLine :: Bool -- ^ Whether to display on one line.
, displayMinWidth :: Maybe Int -- ^ Minimum width to pad to
, displayMaxWidth :: Maybe Int -- ^ Maximum width to clip to
2020-12-22 14:11:09 +03:00
} deriving ( Show )
instance Default AmountDisplayOpts where
def = AmountDisplayOpts { displayPrice = True
, displayColour = True
, displayZeroCommodity = False
, displayNormalised = True
, displayOneLine = False
2020-12-22 15:35:20 +03:00
, displayMinWidth = Nothing
, displayMaxWidth = Nothing
2020-12-22 14:11:09 +03:00
}
2020-12-22 15:35:20 +03:00
-- | Display Amount and MixedAmount with no colour.
noColour :: AmountDisplayOpts
noColour = def { displayColour = False }
-- | Display Amount and MixedAmount with no prices.
noPrice :: AmountDisplayOpts
noPrice = def { displayPrice = False }
-- | Display Amount and MixedAmount on one line with no prices.
oneLine :: AmountDisplayOpts
oneLine = def { displayOneLine = True , displayPrice = False }
2018-04-20 22:18:28 +03:00
-------------------------------------------------------------------------------
-- Amount styles
2019-07-15 13:28:52 +03:00
-- | Default amount style
2020-08-13 14:15:41 +03:00
amountstyle = AmountStyle L False ( Precision 0 ) ( Just '.' ) Nothing
2012-11-20 01:20:10 +04:00
2011-08-31 20:54:10 +04:00
-------------------------------------------------------------------------------
-- Amount
2008-10-18 12:39:08 +04:00
instance Num Amount where
2012-11-20 01:20:10 +04:00
abs a @ Amount { aquantity = q } = a { aquantity = abs q }
signum a @ Amount { aquantity = q } = a { aquantity = signum q }
fromInteger i = nullamt { aquantity = fromInteger i }
2018-02-16 04:28:23 +03:00
negate a @ Amount { aquantity = q } = a { aquantity = - q }
2012-11-20 01:20:10 +04:00
( + ) = similarAmountsOp ( + )
( - ) = similarAmountsOp ( - )
( * ) = similarAmountsOp ( * )
2008-10-18 12:39:08 +04:00
2011-08-31 20:54:10 +04:00
-- | The empty simple amount.
2012-11-20 02:39:08 +04:00
amount , nullamt :: Amount
2019-06-08 00:23:19 +03:00
amount = Amount { acommodity = " " , aquantity = 0 , aprice = Nothing , astyle = amountstyle , aismultiplier = False }
2012-11-20 01:20:10 +04:00
nullamt = amount
2014-07-28 17:32:09 +04:00
-- | A temporary value for parsed transactions which had no amount specified.
missingamt :: Amount
missingamt = amount { acommodity = " AUTO " }
2015-02-27 16:23:07 +03:00
-- Handy amount constructors for tests.
-- usd/eur/gbp round their argument to a whole number of pennies/cents.
2012-11-20 06:22:20 +04:00
num n = amount { acommodity = " " , aquantity = n }
2020-08-13 14:15:41 +03:00
hrs n = amount { acommodity = " h " , aquantity = n , astyle = amountstyle { asprecision = Precision 2 , ascommodityside = R } }
usd n = amount { acommodity = " $ " , aquantity = roundTo 2 n , astyle = amountstyle { asprecision = Precision 2 } }
eur n = amount { acommodity = " € " , aquantity = roundTo 2 n , astyle = amountstyle { asprecision = Precision 2 } }
gbp n = amount { acommodity = " £ " , aquantity = roundTo 2 n , astyle = amountstyle { asprecision = Precision 2 } }
per n = amount { acommodity = " % " , aquantity = n , astyle = amountstyle { asprecision = Precision 1 , ascommodityside = R , ascommodityspaced = True } }
2019-06-08 00:23:19 +03:00
amt ` at ` priceamt = amt { aprice = Just $ UnitPrice priceamt }
amt @@ priceamt = amt { aprice = Just $ TotalPrice priceamt }
2012-11-20 01:20:10 +04:00
2014-07-28 17:32:09 +04:00
-- | Apply a binary arithmetic operator to two amounts, which should
-- be in the same commodity if non-zero (warning, this is not checked).
-- A zero result keeps the commodity of the second amount.
-- The result's display style is that of the second amount, with
-- precision set to the highest of either amount.
-- Prices are ignored and discarded.
2014-10-18 21:45:17 +04:00
-- Remember: the caller is responsible for ensuring both amounts have the same commodity.
2014-10-18 23:09:43 +04:00
similarAmountsOp :: ( Quantity -> Quantity -> Quantity ) -> Amount -> Amount -> Amount
2014-07-28 17:32:09 +04:00
similarAmountsOp op Amount { acommodity = _ , aquantity = q1 , astyle = AmountStyle { asprecision = p1 } }
Amount { acommodity = c2 , aquantity = q2 , astyle = s2 @ AmountStyle { asprecision = p2 } } =
-- trace ("a1:"++showAmountDebug a1) $ trace ("a2:"++showAmountDebug a2) $ traceWith (("= :"++).showAmountDebug)
amount { acommodity = c2 , aquantity = q1 ` op ` q2 , astyle = s2 { asprecision = max p1 p2 } }
2014-09-11 00:07:53 +04:00
-- c1==c2 || q1==0 || q2==0 =
2012-11-20 03:36:36 +04:00
-- otherwise = error "tried to do simple arithmetic with amounts in different commodities"
2011-04-22 17:44:08 +04:00
2011-08-31 20:54:10 +04:00
-- | Convert an amount to the specified commodity, ignoring and discarding
-- any assigned prices and assuming an exchange rate of 1.
2016-05-08 02:18:04 +03:00
amountWithCommodity :: CommoditySymbol -> Amount -> Amount
2019-06-08 00:23:19 +03:00
amountWithCommodity c a = a { acommodity = c , aprice = Nothing }
2010-02-04 19:40:30 +03:00
2020-06-01 01:48:08 +03:00
-- | Convert a amount to its "cost" or "selling price" in another commodity,
-- using its attached transaction price if it has one. Notes:
2011-08-31 21:44:31 +04:00
--
2020-06-01 01:48:08 +03:00
-- - price amounts must be MixedAmounts with exactly one component Amount
-- (or there will be a runtime error XXX)
2011-08-31 21:44:31 +04:00
--
2020-06-01 01:48:08 +03:00
-- - price amounts should be positive
-- (though this is currently not enforced)
amountCost :: Amount -> Amount
amountCost a @ Amount { aquantity = q , aprice = mp } =
2019-06-08 00:23:19 +03:00
case mp of
Nothing -> a
Just ( UnitPrice p @ Amount { aquantity = pq } ) -> p { aquantity = pq * q }
Just ( TotalPrice p @ Amount { aquantity = pq } ) -> p { aquantity = pq * signum q }
2008-10-15 05:06:05 +04:00
2018-11-14 02:37:42 +03:00
-- | Replace an amount's TotalPrice, if it has one, with an equivalent UnitPrice.
-- Has no effect on amounts without one.
-- Also increases the unit price's display precision to show one extra decimal place,
2019-07-15 13:28:52 +03:00
-- to help keep transaction amounts balancing.
2018-11-14 02:37:42 +03:00
-- Does Decimal division, might be some rounding/irrational number issues.
amountTotalPriceToUnitPrice :: Amount -> Amount
2019-07-15 13:28:52 +03:00
amountTotalPriceToUnitPrice
2020-08-13 14:15:41 +03:00
a @ Amount { aquantity = q , aprice = Just ( TotalPrice pa @ Amount { aquantity = pq , astyle = ps } ) }
= a { aprice = Just $ UnitPrice pa { aquantity = abs ( pq / q ) , astyle = ps { asprecision = pp } } }
where
-- Increase the precision by 1, capping at the max bound.
pp = case asprecision ps of
NaturalPrecision -> NaturalPrecision
Precision p -> Precision $ if p == maxBound then maxBound else p + 1
2018-11-14 02:37:42 +03:00
amountTotalPriceToUnitPrice a = a
2011-08-31 20:54:10 +04:00
-- | Divide an amount's quantity by a constant.
2018-11-14 04:25:32 +03:00
divideAmount :: Quantity -> Amount -> Amount
divideAmount n a @ Amount { aquantity = q } = a { aquantity = q / n }
2011-08-31 20:54:10 +04:00
2018-07-17 01:36:06 +03:00
-- | Multiply an amount's quantity by a constant.
2018-11-14 04:25:32 +03:00
multiplyAmount :: Quantity -> Amount -> Amount
multiplyAmount n a @ Amount { aquantity = q } = a { aquantity = q * n }
2018-07-17 01:36:06 +03:00
2018-11-14 04:43:15 +03:00
-- | Divide an amount's quantity (and its total price, if it has one) by a constant.
-- The total price will be kept positive regardless of the multiplier's sign.
divideAmountAndPrice :: Quantity -> Amount -> Amount
2019-06-08 00:23:19 +03:00
divideAmountAndPrice n a @ Amount { aquantity = q , aprice = p } = a { aquantity = q / n , aprice = f <$> p }
2018-11-14 04:43:15 +03:00
where
f ( TotalPrice a ) = TotalPrice $ abs $ n ` divideAmount ` a
f p = p
-- | Multiply an amount's quantity (and its total price, if it has one) by a constant.
-- The total price will be kept positive regardless of the multiplier's sign.
multiplyAmountAndPrice :: Quantity -> Amount -> Amount
2019-06-08 00:23:19 +03:00
multiplyAmountAndPrice n a @ Amount { aquantity = q , aprice = p } = a { aquantity = q * n , aprice = f <$> p }
2018-11-14 04:43:15 +03:00
where
f ( TotalPrice a ) = TotalPrice $ abs $ n ` multiplyAmount ` a
f p = p
2011-08-31 20:54:10 +04:00
-- | Is this amount negative ? The price is ignored.
isNegativeAmount :: Amount -> Bool
2012-11-20 01:20:10 +04:00
isNegativeAmount Amount { aquantity = q } = q < 0
2011-08-31 20:54:10 +04:00
2020-08-21 04:51:50 +03:00
-- | Round an Amount's Quantity to its specified display precision. If that is
2020-08-13 14:15:41 +03:00
-- NaturalPrecision, this does nothing.
amountRoundedQuantity :: Amount -> Quantity
amountRoundedQuantity Amount { aquantity = q , astyle = AmountStyle { asprecision = p } } = case p of
NaturalPrecision -> q
Precision p' -> roundTo p' q
2020-05-30 04:57:22 +03:00
-- | Does mixed amount appear to be zero when rendered with its
-- display precision ?
amountLooksZero :: Amount -> Bool
2020-08-13 14:15:41 +03:00
amountLooksZero = ( 0 == ) . amountRoundedQuantity
2011-08-31 20:54:10 +04:00
2020-05-30 04:57:22 +03:00
-- | Is this amount exactly zero, ignoring its display precision ?
amountIsZero :: Amount -> Bool
amountIsZero Amount { aquantity = q } = q == 0
2011-08-31 20:54:10 +04:00
2012-11-20 01:20:10 +04:00
-- | Set an amount's display precision, flipped.
2020-08-13 14:15:41 +03:00
withPrecision :: Amount -> AmountPrecision -> Amount
2012-11-20 01:20:10 +04:00
withPrecision = flip setAmountPrecision
2010-11-13 18:10:06 +03:00
2019-12-01 03:56:45 +03:00
-- | Set an amount's display precision.
2020-08-13 14:15:41 +03:00
setAmountPrecision :: AmountPrecision -> Amount -> Amount
2019-12-01 03:56:45 +03:00
setAmountPrecision p a @ Amount { astyle = s } = a { astyle = s { asprecision = p } }
2020-08-13 14:15:41 +03:00
-- | Increase an amount's display precision, if needed, to enough decimal places
-- to show it exactly (showing all significant decimal digits, excluding trailing
-- zeros).
2019-01-17 01:45:50 +03:00
setFullPrecision :: Amount -> Amount
setFullPrecision a = setAmountPrecision p a
where
2020-01-21 04:09:07 +03:00
p = max displayprecision naturalprecision
2019-01-17 01:45:50 +03:00
displayprecision = asprecision $ astyle a
2020-08-13 14:15:41 +03:00
naturalprecision = Precision . decimalPlaces . normalizeDecimal $ aquantity a
2019-06-15 04:32:45 +03:00
2019-07-15 13:28:52 +03:00
-- | Set an amount's internal precision, ie rounds the Decimal representing
2018-08-04 18:44:50 +03:00
-- the amount's quantity to some number of decimal places.
-- Rounding is done with Data.Decimal's default roundTo function:
-- "If the value ends in 5 then it is rounded to the nearest even value (Banker's Rounding)".
-- Does not change the amount's display precision.
2019-07-15 13:28:52 +03:00
-- Intended only for internal use, eg when comparing amounts in tests.
2020-08-09 15:31:16 +03:00
setAmountInternalPrecision :: Word8 -> Amount -> Amount
2019-07-15 13:28:52 +03:00
setAmountInternalPrecision p a @ Amount { aquantity = q , astyle = s } = a {
2020-08-13 14:15:41 +03:00
astyle = s { asprecision = Precision p }
2020-08-09 15:31:16 +03:00
, aquantity = roundTo p q
2018-08-04 18:44:50 +03:00
}
-- | Set an amount's internal precision, flipped.
2019-07-15 13:28:52 +03:00
-- Intended only for internal use, eg when comparing amounts in tests.
2020-08-09 15:31:16 +03:00
withInternalPrecision :: Amount -> Word8 -> Amount
2018-08-04 18:44:50 +03:00
withInternalPrecision = flip setAmountInternalPrecision
-- | Set (or clear) an amount's display decimal point.
setAmountDecimalPoint :: Maybe Char -> Amount -> Amount
setAmountDecimalPoint mc a @ Amount { astyle = s } = a { astyle = s { asdecimalpoint = mc } }
-- | Set (or clear) an amount's display decimal point, flipped.
withDecimalPoint :: Amount -> Maybe Char -> Amount
withDecimalPoint = flip setAmountDecimalPoint
2020-12-22 05:52:04 +03:00
showAmountPrice :: Maybe AmountPrice -> WideBuilder
2020-12-22 14:11:09 +03:00
showAmountPrice Nothing = mempty
2020-12-22 15:35:20 +03:00
showAmountPrice ( Just ( UnitPrice pa ) ) = WideBuilder ( TB . fromString " @ " ) 3 <> showAmountB noColour pa
showAmountPrice ( Just ( TotalPrice pa ) ) = WideBuilder ( TB . fromString " @@ " ) 4 <> showAmountB noColour pa
2011-04-22 17:40:55 +04:00
2019-06-08 00:23:19 +03:00
showAmountPriceDebug :: Maybe AmountPrice -> String
showAmountPriceDebug Nothing = " "
showAmountPriceDebug ( Just ( UnitPrice pa ) ) = " @ " ++ showAmountDebug pa
showAmountPriceDebug ( Just ( TotalPrice pa ) ) = " @@ " ++ showAmountDebug pa
2011-04-22 17:40:55 +04:00
2020-06-01 01:48:08 +03:00
-- | Given a map of standard commodity display styles, apply the
-- appropriate one to this amount. If there's no standard style for
-- this amount's commodity, return the amount unchanged.
2018-04-20 22:18:28 +03:00
styleAmount :: M . Map CommoditySymbol AmountStyle -> Amount -> Amount
styleAmount styles a =
case M . lookup ( acommodity a ) styles of
Just s -> a { astyle = s }
2019-07-15 13:28:52 +03:00
Nothing -> a
2018-04-20 22:18:28 +03:00
2019-10-20 17:08:45 +03:00
-- | Like styleAmount, but keep the number of decimal places unchanged.
styleAmountExceptPrecision :: M . Map CommoditySymbol AmountStyle -> Amount -> Amount
styleAmountExceptPrecision styles a @ Amount { astyle = AmountStyle { asprecision = origp } } =
case M . lookup ( acommodity a ) styles of
Just s -> a { astyle = s { asprecision = origp } }
Nothing -> a
2020-11-14 22:08:01 +03:00
-- | Reset this amount's display style to the default.
amountUnstyled :: Amount -> Amount
amountUnstyled a = a { astyle = amountstyle }
2014-07-28 17:32:09 +04:00
-- | Get the string representation of an amount, based on its
-- commodity's display settings. String representations equivalent to
-- zero are converted to just \"0\". The special "missing" amount is
-- displayed as the empty string.
2011-04-22 17:40:55 +04:00
showAmount :: Amount -> String
2020-12-22 15:35:20 +03:00
showAmount = wbUnpack . showAmountB noColour
2020-12-22 14:11:09 +03:00
-- | Get the string representation of an amount, based on its
-- commodity's display settings and the display options. The
-- special "missing" amount is displayed as the empty string.
showAmountB :: AmountDisplayOpts -> Amount -> WideBuilder
showAmountB _ Amount { acommodity = " AUTO " } = mempty
showAmountB opts a @ Amount { astyle = style } =
color $ case ascommodityside style of
L -> c' <> space <> quantity' <> price
R -> quantity' <> space <> c' <> price
where
quantity = showamountquantity a
( quantity' , c ) | amountLooksZero a && not ( displayZeroCommodity opts ) = ( WideBuilder ( TB . singleton '0' ) 1 , " " )
2020-12-22 15:35:20 +03:00
| otherwise = ( quantity , quoteCommoditySymbolIfNeeded $ acommodity a )
2020-12-22 14:11:09 +03:00
space = if not ( T . null c ) && ascommodityspaced style then WideBuilder ( TB . singleton ' ' ) 1 else mempty
c' = WideBuilder ( TB . fromText c ) ( textWidth c )
price = if displayPrice opts then showAmountPrice ( aprice a ) else mempty
color = if displayColour opts && isNegativeAmount a then colorB Dull Red else id
2014-07-28 17:32:09 +04:00
2019-07-15 13:28:52 +03:00
-- | Colour version. For a negative amount, adds ANSI codes to change the colour,
2017-04-26 04:34:09 +03:00
-- currently to hard-coded red.
cshowAmount :: Amount -> String
2020-12-22 14:11:09 +03:00
cshowAmount = wbUnpack . showAmountB def
2020-09-14 09:22:07 +03:00
-- | Get the string representation of an amount, without any \@ price.
showAmountWithoutPrice :: Amount -> String
2020-12-22 15:35:20 +03:00
showAmountWithoutPrice = wbUnpack . showAmountB noPrice { displayColour = False }
2017-04-26 04:34:09 +03:00
2014-07-28 17:32:09 +04:00
-- | Like showAmount, but show a zero amount's commodity if it has one.
showAmountWithZeroCommodity :: Amount -> String
2020-12-22 15:35:20 +03:00
showAmountWithZeroCommodity = wbUnpack . showAmountB noColour { displayZeroCommodity = True }
2014-07-28 17:32:09 +04:00
2020-09-14 09:22:07 +03:00
-- | Get a string representation of an amount for debugging,
-- appropriate to the current debug level. 9 shows maximum detail.
showAmountDebug :: Amount -> String
showAmountDebug Amount { acommodity = " AUTO " } = " (missing) "
showAmountDebug Amount { .. } = printf " Amount {acommodity=%s, aquantity=%s, aprice=%s, astyle=%s} " ( show acommodity ) ( show aquantity ) ( showAmountPriceDebug aprice ) ( show astyle )
2020-12-21 15:10:07 +03:00
-- | Get a Text Builder for the string representation of the number part of of an amount,
-- using the display settings from its commodity. Also returns the width of the
-- number.
showamountquantity :: Amount -> WideBuilder
2020-08-13 14:15:41 +03:00
showamountquantity amt @ Amount { astyle = AmountStyle { asdecimalpoint = mdec , asdigitgroups = mgrps } } =
2020-12-21 15:10:07 +03:00
signB <> intB <> fracB
where
Decimal e n = amountRoundedQuantity amt
2020-12-22 15:35:20 +03:00
strN = T . pack . show $ abs n
len = T . length strN
2020-12-21 15:10:07 +03:00
intLen = max 1 $ len - fromIntegral e
dec = fromMaybe '.' mdec
2020-12-22 15:35:20 +03:00
padded = T . replicate ( fromIntegral e + 1 - len ) " 0 " <> strN
( intPart , fracPart ) = T . splitAt intLen padded
2020-12-21 15:10:07 +03:00
intB = applyDigitGroupStyle mgrps intLen $ if e == 0 then strN else intPart
signB = if n < 0 then WideBuilder ( TB . singleton '-' ) 1 else mempty
2020-12-22 15:35:20 +03:00
fracB = if e > 0 then WideBuilder ( TB . singleton dec <> TB . fromText fracPart ) ( fromIntegral e + 1 ) else mempty
2020-12-21 15:10:07 +03:00
-- | Split a string representation into chunks according to DigitGroupStyle,
-- returning a Text builder and the number of separators used.
2020-12-22 15:35:20 +03:00
applyDigitGroupStyle :: Maybe DigitGroupStyle -> Int -> T . Text -> WideBuilder
applyDigitGroupStyle Nothing l s = WideBuilder ( TB . fromText s ) l
applyDigitGroupStyle ( Just ( DigitGroups _ [] ) ) l s = WideBuilder ( TB . fromText s ) l
2020-12-21 15:10:07 +03:00
applyDigitGroupStyle ( Just ( DigitGroups c ( g : gs ) ) ) l s = addseps ( g :| gs ) ( toInteger l ) s
look harder for decimal point & digit groups (fixes #196)
Amount display styles have been reworked a bit; they are now calculated
after journal parsing, not during it. This allows the fix for #196:
we now search through the amounts until a decimal point is detected,
instead of just looking at the first one; likewise for digit groups.
Digit groups are now implemented with a better type.
Digit group size detection has been improved a little:
1000,000 now gives group sizes [3,4,4,...], not [3,3,...], and
10,000 gives groups sizes [3,3,...] not [3,2,2,..].
(To get [3,2,2,...] you'd use eg 00,00,000.)
There are still some old (or new ?) issues; I don't think we handle
inconsistent decimal points & digit groups too well. But for now all
tests pass.
2014-07-03 10:26:16 +04:00
where
2020-12-21 15:10:07 +03:00
addseps ( g :| gs ) l s
2020-12-22 15:35:20 +03:00
| l' > 0 = addseps gs' l' rest <> WideBuilder ( TB . singleton c <> TB . fromText part ) ( fromIntegral g + 1 )
| otherwise = WideBuilder ( TB . fromText s ) ( fromInteger l )
2020-12-21 15:10:07 +03:00
where
2020-12-22 15:35:20 +03:00
( rest , part ) = T . splitAt ( fromInteger l' ) s
2020-12-21 15:10:07 +03:00
gs' = fromMaybe ( g :| [] ) $ nonEmpty gs
l' = l - toInteger g
2011-01-19 15:32:18 +03:00
2012-11-20 01:20:10 +04:00
-- like journalCanonicaliseAmounts
-- | Canonicalise an amount's display style using the provided commodity style map.
2016-05-08 02:18:04 +03:00
canonicaliseAmount :: M . Map CommoditySymbol AmountStyle -> Amount -> Amount
2012-11-20 01:20:10 +04:00
canonicaliseAmount styles a @ Amount { acommodity = c , astyle = s } = a { astyle = s' }
2011-08-31 20:54:10 +04:00
where
2012-11-20 01:20:10 +04:00
s' = findWithDefault s c styles
2011-08-31 20:54:10 +04:00
-------------------------------------------------------------------------------
-- MixedAmount
instance Num MixedAmount where
2012-11-20 01:20:10 +04:00
fromInteger i = Mixed [ fromInteger i ]
2011-08-31 20:54:10 +04:00
negate ( Mixed as ) = Mixed $ map negate as
2014-07-28 17:32:09 +04:00
( + ) ( Mixed as ) ( Mixed bs ) = normaliseMixedAmount $ Mixed $ as ++ bs
2020-09-03 19:49:28 +03:00
( * ) = error ' " e r r o r , m i x e d a m o u n t s d o n o t s u p p o r t m u l t i p l i c a t i o n " - - P A R T I A L :
2014-07-28 17:32:09 +04:00
abs = error ' " e r r o r , m i x e d a m o u n t s d o n o t s u p p o r t a b s "
signum = error ' " e r r o r , m i x e d a m o u n t s d o n o t s u p p o r t s i g n u m "
2011-08-31 20:54:10 +04:00
-- | The empty mixed amount.
nullmixedamt :: MixedAmount
nullmixedamt = Mixed []
-- | A temporary value for parsed transactions which had no amount specified.
2012-05-27 22:14:20 +04:00
missingmixedamt :: MixedAmount
missingmixedamt = Mixed [ missingamt ]
2014-07-28 17:32:09 +04:00
-- | Convert amounts in various commodities into a normalised MixedAmount.
mixed :: [ Amount ] -> MixedAmount
mixed = normaliseMixedAmount . Mixed
2012-11-12 20:31:43 +04:00
2014-07-28 17:32:09 +04:00
-- | Simplify a mixed amount's component amounts:
--
-- * amounts in the same commodity are combined unless they have different prices or total prices
--
balance, etc: fix amount style loss (fixes #230, #276)
hledger-lib-0.24's "track the commodity of zero amounts when
possible (useful eg for hledger-web's multi-commodity charts)" preserved
the commodity when normalising a zero mixed amount, but not the amount
style. This showed up as occasionally incorrect amount style (commodity
symbol placement, decimal point character, etc.) in balance reports with
certain journals, like this:
$ hledger bal
€3000.00 a <------ not using the canonical € style
4000,58€ 1
-1000,58€ D
-3000,00€ e
--------------------
0
I thought this would require a big rewrite of amount arithmetic, but it
seems that just being a little more careful is enough. When normalising
a mixed amount containing multiple zeros in the same commodity, we now
preserve the last zero with its amount style, instead of replacing them
all with a new one.
2015-09-03 02:09:49 +03:00
-- * multiple zero amounts, all with the same non-null commodity, are replaced by just the last of them, preserving the commodity and amount style (all but the last zero amount are discarded)
2014-07-28 17:32:09 +04:00
--
balance, etc: fix amount style loss (fixes #230, #276)
hledger-lib-0.24's "track the commodity of zero amounts when
possible (useful eg for hledger-web's multi-commodity charts)" preserved
the commodity when normalising a zero mixed amount, but not the amount
style. This showed up as occasionally incorrect amount style (commodity
symbol placement, decimal point character, etc.) in balance reports with
certain journals, like this:
$ hledger bal
€3000.00 a <------ not using the canonical € style
4000,58€ 1
-1000,58€ D
-3000,00€ e
--------------------
0
I thought this would require a big rewrite of amount arithmetic, but it
seems that just being a little more careful is enough. When normalising
a mixed amount containing multiple zeros in the same commodity, we now
preserve the last zero with its amount style, instead of replacing them
all with a new one.
2015-09-03 02:09:49 +03:00
-- * multiple zero amounts with multiple commodities, or no commodities, are replaced by one commodity-less zero amount
--
-- * an empty amount list is replaced by one commodity-less zero amount
2014-07-28 17:32:09 +04:00
--
-- * the special "missing" mixed amount remains unchanged
--
normaliseMixedAmount :: MixedAmount -> MixedAmount
normaliseMixedAmount = normaliseHelper False
normaliseHelper :: Bool -> MixedAmount -> MixedAmount
normaliseHelper squashprices ( Mixed as )
| missingamt ` elem ` as = missingmixedamt -- missingamt should always be alone, but detect it even if not
| null nonzeros = Mixed [ newzero ]
| otherwise = Mixed nonzeros
where
2020-07-10 05:07:40 +03:00
newzero = lastDef nullamt $ filter ( not . T . null . acommodity ) zeros
2020-05-30 04:57:22 +03:00
( zeros , nonzeros ) = partition amountIsZero $
2014-07-28 17:32:09 +04:00
map sumSimilarAmountsUsingFirstPrice $
groupBy groupfn $
2018-02-16 04:28:23 +03:00
sortBy sortfn
2014-07-28 17:32:09 +04:00
as
sortfn | squashprices = compare ` on ` acommodity
| otherwise = compare ` on ` \ a -> ( acommodity a , aprice a )
groupfn | squashprices = ( == ) ` on ` acommodity
| otherwise = \ a1 a2 -> acommodity a1 == acommodity a2 && combinableprices a1 a2
2019-06-08 00:23:19 +03:00
combinableprices Amount { aprice = Nothing } Amount { aprice = Nothing } = True
combinableprices Amount { aprice = Just ( UnitPrice p1 ) } Amount { aprice = Just ( UnitPrice p2 ) } = p1 == p2
2014-07-28 17:32:09 +04:00
combinableprices _ _ = False
-- | Like normaliseMixedAmount, but combine each commodity's amounts
-- into just one by throwing away all prices except the first. This is
-- only used as a rendering helper, and could show a misleading price.
normaliseMixedAmountSquashPricesForDisplay :: MixedAmount -> MixedAmount
normaliseMixedAmountSquashPricesForDisplay = normaliseHelper True
2020-06-24 16:38:17 +03:00
-- | Unify a MixedAmount to a single commodity value if possible.
-- Like normaliseMixedAmount, this consolidates amounts of the same commodity
-- and discards zero amounts; but this one insists on simplifying to
-- a single commodity, and will return Nothing if this is not possible.
unifyMixedAmount :: MixedAmount -> Maybe Amount
unifyMixedAmount = foldM combine 0 . amounts
where
combine amount result
| amountIsZero amount = Just result
| amountIsZero result = Just amount
| acommodity amount == acommodity result = Just $ amount + result
| otherwise = Nothing
2014-07-28 17:32:09 +04:00
-- | Sum same-commodity amounts in a lossy way, applying the first
-- price to the result and discarding any other prices. Only used as a
-- rendering helper.
sumSimilarAmountsUsingFirstPrice :: [ Amount ] -> Amount
sumSimilarAmountsUsingFirstPrice [] = nullamt
2017-01-13 03:24:53 +03:00
sumSimilarAmountsUsingFirstPrice as = ( sumStrict as ) { aprice = aprice $ head as }
2014-07-28 17:32:09 +04:00
2016-08-03 19:29:22 +03:00
-- -- | Sum same-commodity amounts. If there were different prices, set
-- -- the price to a special marker indicating "various". Only used as a
-- -- rendering helper.
2014-07-28 17:32:09 +04:00
-- sumSimilarAmountsNotingPriceDifference :: [Amount] -> Amount
-- sumSimilarAmountsNotingPriceDifference [] = nullamt
-- sumSimilarAmountsNotingPriceDifference as = undefined
2010-07-28 03:20:20 +04:00
2011-08-30 17:16:30 +04:00
-- | Get a mixed amount's component amounts.
2008-10-19 00:27:25 +04:00
amounts :: MixedAmount -> [ Amount ]
amounts ( Mixed as ) = as
2014-07-02 18:35:06 +04:00
-- | Filter a mixed amount's component amounts by a predicate.
filterMixedAmount :: ( Amount -> Bool ) -> MixedAmount -> MixedAmount
filterMixedAmount p ( Mixed as ) = Mixed $ filter p as
2014-07-19 03:45:46 +04:00
-- | Return an unnormalised MixedAmount containing exactly one Amount
-- with the specified commodity and the quantity of that commodity
-- found in the original. NB if Amount's quantity is zero it will be
-- discarded next time the MixedAmount gets normalised.
2016-05-08 02:18:04 +03:00
filterMixedAmountByCommodity :: CommoditySymbol -> MixedAmount -> MixedAmount
2014-07-19 03:45:46 +04:00
filterMixedAmountByCommodity c ( Mixed as ) = Mixed as'
where
as' = case filter ( ( == c ) . acommodity ) as of
[] -> [ nullamt { acommodity = c } ]
as'' -> [ sum as'' ]
2018-11-14 04:25:32 +03:00
-- | Apply a transform to a mixed amount's component 'Amount's.
mapMixedAmount :: ( Amount -> Amount ) -> MixedAmount -> MixedAmount
mapMixedAmount f ( Mixed as ) = Mixed $ map f as
2020-06-01 01:48:08 +03:00
-- | Convert all component amounts to cost/selling price where
-- possible (see amountCost).
mixedAmountCost :: MixedAmount -> MixedAmount
mixedAmountCost ( Mixed as ) = Mixed $ map amountCost as
2019-05-23 22:15:54 +03:00
2011-08-31 20:54:10 +04:00
-- | Divide a mixed amount's quantities by a constant.
2018-11-14 04:25:32 +03:00
divideMixedAmount :: Quantity -> MixedAmount -> MixedAmount
divideMixedAmount n = mapMixedAmount ( divideAmount n )
2011-08-31 20:54:10 +04:00
2018-07-17 01:36:06 +03:00
-- | Multiply a mixed amount's quantities by a constant.
2018-11-14 04:25:32 +03:00
multiplyMixedAmount :: Quantity -> MixedAmount -> MixedAmount
multiplyMixedAmount n = mapMixedAmount ( multiplyAmount n )
2018-07-17 01:36:06 +03:00
2018-11-14 04:43:15 +03:00
-- | Divide a mixed amount's quantities (and total prices, if any) by a constant.
-- The total prices will be kept positive regardless of the multiplier's sign.
divideMixedAmountAndPrice :: Quantity -> MixedAmount -> MixedAmount
divideMixedAmountAndPrice n = mapMixedAmount ( divideAmountAndPrice n )
-- | Multiply a mixed amount's quantities (and total prices, if any) by a constant.
-- The total prices will be kept positive regardless of the multiplier's sign.
multiplyMixedAmountAndPrice :: Quantity -> MixedAmount -> MixedAmount
multiplyMixedAmountAndPrice n = mapMixedAmount ( multiplyAmountAndPrice n )
2014-12-26 22:04:23 +03:00
-- | Calculate the average of some mixed amounts.
averageMixedAmounts :: [ MixedAmount ] -> MixedAmount
averageMixedAmounts [] = 0
2020-08-09 15:59:04 +03:00
averageMixedAmounts as = fromIntegral ( length as ) ` divideMixedAmount ` sum as
2014-12-26 22:04:23 +03:00
2020-05-29 23:07:02 +03:00
-- | Is this mixed amount negative, if we can tell that unambiguously?
-- Ie when normalised, are all individual commodity amounts negative ?
2011-08-31 20:54:10 +04:00
isNegativeMixedAmount :: MixedAmount -> Maybe Bool
2020-05-29 23:07:02 +03:00
isNegativeMixedAmount m =
case amounts $ normaliseMixedAmountSquashPricesForDisplay m of
[] -> Just False
[ a ] -> Just $ isNegativeAmount a
as | all isNegativeAmount as -> Just True
2020-06-02 00:27:08 +03:00
as | not ( any isNegativeAmount as ) -> Just False
2020-05-29 23:07:02 +03:00
_ -> Nothing -- multiple amounts with different signs
2020-05-30 04:57:22 +03:00
-- | Does this mixed amount appear to be zero when rendered with its
-- display precision ?
mixedAmountLooksZero :: MixedAmount -> Bool
mixedAmountLooksZero = all amountLooksZero . amounts . normaliseMixedAmountSquashPricesForDisplay
2011-08-31 20:54:10 +04:00
2020-05-30 04:57:22 +03:00
-- | Is this mixed amount exactly zero, ignoring display precisions ?
mixedAmountIsZero :: MixedAmount -> Bool
mixedAmountIsZero = all amountIsZero . amounts . normaliseMixedAmountSquashPricesForDisplay
2010-02-27 21:06:29 +03:00
2011-08-31 20:54:10 +04:00
-- -- | MixedAmount derived Eq instance in Types.hs doesn't know that we
-- -- want $0 = EUR0 = 0. Yet we don't want to drag all this code over there.
-- -- For now, use this when cross-commodity zero equality is important.
2010-12-27 23:26:22 +03:00
-- mixedAmountEquals :: MixedAmount -> MixedAmount -> Bool
2020-05-30 04:57:22 +03:00
-- mixedAmountEquals a b = amounts a' == amounts b' || (mixedAmountLooksZero a' && mixedAmountLooksZero b')
2014-07-28 17:32:09 +04:00
-- where a' = normaliseMixedAmountSquashPricesForDisplay a
-- b' = normaliseMixedAmountSquashPricesForDisplay b
2009-01-17 21:07:20 +03:00
2020-06-01 01:48:08 +03:00
-- | Given a map of standard commodity display styles, apply the
-- appropriate one to each individual amount.
2018-04-20 22:18:28 +03:00
styleMixedAmount :: M . Map CommoditySymbol AmountStyle -> MixedAmount -> MixedAmount
2019-07-15 13:28:52 +03:00
styleMixedAmount styles ( Mixed as ) = Mixed $ map ( styleAmount styles ) as
2018-04-20 22:18:28 +03:00
2020-11-14 22:08:01 +03:00
-- | Reset each individual amount's display style to the default.
mixedAmountUnstyled :: MixedAmount -> MixedAmount
mixedAmountUnstyled = mapMixedAmount amountUnstyled
2014-07-28 17:32:09 +04:00
-- | Get the string representation of a mixed amount, after
-- normalising it to one amount per commodity. Assumes amounts have
-- no or similar prices, otherwise this can show misleading prices.
2008-10-19 00:27:25 +04:00
showMixedAmount :: MixedAmount -> String
2020-12-22 15:35:20 +03:00
showMixedAmount = wbUnpack . showMixed noColour
2014-07-28 17:32:09 +04:00
2015-10-30 04:05:02 +03:00
-- | Get the one-line string representation of a mixed amount.
showMixedAmountOneLine :: MixedAmount -> String
2020-12-22 15:35:20 +03:00
showMixedAmountOneLine = wbUnpack . showMixed oneLine { displayColour = False }
2015-10-30 04:05:02 +03:00
2020-09-14 09:22:07 +03:00
-- | Like showMixedAmount, but zero amounts are shown with their
-- commodity if they have one.
showMixedAmountWithZeroCommodity :: MixedAmount -> String
2020-12-22 15:35:20 +03:00
showMixedAmountWithZeroCommodity = wbUnpack . showMixed noColour { displayZeroCommodity = True }
2018-02-16 13:26:39 +03:00
-- | Get the string representation of a mixed amount, without showing any transaction prices.
2020-06-26 22:59:47 +03:00
-- With a True argument, adds ANSI codes to show negative amounts in red.
showMixedAmountWithoutPrice :: Bool -> MixedAmount -> String
2020-12-22 15:35:20 +03:00
showMixedAmountWithoutPrice c = wbUnpack . showMixed noPrice { displayColour = c }
2018-02-16 04:28:23 +03:00
2014-07-03 18:45:55 +04:00
-- | Get the one-line string representation of a mixed amount, but without
-- any \@ prices.
2020-06-26 22:59:47 +03:00
-- With a True argument, adds ANSI codes to show negative amounts in red.
showMixedAmountOneLineWithoutPrice :: Bool -> MixedAmount -> String
2020-12-22 15:35:20 +03:00
showMixedAmountOneLineWithoutPrice c = wbUnpack . showMixed oneLine { displayColour = c }
2017-04-26 04:34:09 +03:00
2020-09-15 09:53:14 +03:00
-- | Like showMixedAmountOneLineWithoutPrice, but show at most the given width,
2020-09-14 09:22:07 +03:00
-- with an elision indicator if there are more.
2020-06-26 22:59:47 +03:00
-- With a True argument, adds ANSI codes to show negative amounts in red.
2020-09-15 09:53:14 +03:00
showMixedAmountElided :: Int -> Bool -> MixedAmount -> String
2020-12-22 15:35:20 +03:00
showMixedAmountElided w c = wbUnpack . showMixed oneLine { displayColour = c , displayMaxWidth = Just w }
2020-09-14 09:22:07 +03:00
-- | Get an unambiguous string representation of a mixed amount for debugging.
showMixedAmountDebug :: MixedAmount -> String
showMixedAmountDebug m | m == missingmixedamt = " (missing) "
| otherwise = printf " Mixed [%s] " as
where as = intercalate " \ n " $ map showAmountDebug $ amounts m
2020-12-22 15:35:20 +03:00
-- | General function to generate a WideBuilder for a MixedAmount,
-- according the supplied AmountDisplayOpts. If a maximum width is
-- given then:
-- - If displayed on one line, it will display as many Amounts as can
-- fit in the given width, and further Amounts will be elided.
-- - If displayed on multiple lines, any Amounts longer than the
-- maximum width will be elided.
showMixed :: AmountDisplayOpts -> MixedAmount -> WideBuilder
showMixed opts ma
| displayOneLine opts = showMixedOneLine opts ma
| otherwise = WideBuilder ( wbBuilder . mconcat $ intersperse sep lines ) width
where
lines = showMixedLines opts ma
width = headDef 0 $ map wbWidth lines
sep = WideBuilder ( TB . singleton '\ n' ) 0
-- | Helper for showMixed to show a MixedAmount on multiple lines. This returns
-- the list of WideBuilders: one for each Amount in the MixedAmount (possibly
-- normalised), and padded/elided to the appropriate width. This does not
-- honour displayOneLine: all amounts will be displayed as if displayOneLine
-- were False.
showMixedLines :: AmountDisplayOpts -> MixedAmount -> [ WideBuilder ]
showMixedLines opts @ AmountDisplayOpts { displayMaxWidth = mmax , displayMinWidth = mmin } ma =
map ( adBuilder . pad ) elided
2020-06-26 22:14:49 +03:00
where
2020-12-22 15:35:20 +03:00
Mixed amts = if displayNormalised opts then normaliseMixedAmountSquashPricesForDisplay ma else ma
2020-09-14 09:22:07 +03:00
2020-12-22 15:35:20 +03:00
astrs = amtDisplayList ( wbWidth sep ) ( showAmountB opts ) amts
sep = WideBuilder ( TB . singleton '\ n' ) 0
width = maximum $ fromMaybe 0 mmin : map ( wbWidth . adBuilder ) elided
pad amt = amt { adBuilder = WideBuilder ( TB . fromText $ T . replicate w " " ) w <> adBuilder amt }
where w = width - wbWidth ( adBuilder amt )
2020-09-14 09:22:07 +03:00
elided = maybe id elideTo mmax astrs
2020-10-26 05:19:50 +03:00
elideTo m xs = maybeAppend elisionStr short
where
2020-12-22 15:35:20 +03:00
elisionStr = elisionDisplay ( Just m ) ( wbWidth sep ) ( length long ) $ lastDef nullAmountDisplay short
( short , long ) = partition ( ( m >= ) . wbWidth . adBuilder ) xs
-- | Helper for showMixed to deal with single line displays. This does not
-- honour displayOneLine: all amounts will be displayed as if displayOneLine
-- were True.
showMixedOneLine :: AmountDisplayOpts -> MixedAmount -> WideBuilder
showMixedOneLine opts @ AmountDisplayOpts { displayMaxWidth = mmax , displayMinWidth = mmin } ma =
WideBuilder ( wbBuilder . pad . mconcat . intersperse sep $ map adBuilder elided ) . max width $ fromMaybe 0 mmin
2020-09-14 09:22:07 +03:00
where
2020-12-22 15:35:20 +03:00
Mixed amts = if displayNormalised opts then normaliseMixedAmountSquashPricesForDisplay ma else ma
width = maybe 0 adTotal $ lastMay elided
astrs = amtDisplayList ( wbWidth sep ) ( showAmountB opts ) amts
sep = WideBuilder ( TB . fromString " , " ) 2
n = length amts
2020-09-14 09:22:07 +03:00
2020-12-22 15:35:20 +03:00
pad = ( WideBuilder ( TB . fromText $ T . replicate w " " ) w <> )
where w = fromMaybe 0 mmin - width
2020-09-14 09:22:07 +03:00
elided = maybe id elideTo mmax astrs
2020-10-26 05:19:50 +03:00
elideTo m = addElide . takeFitting m . withElided
-- Add the last elision string to the end of the display list
addElide [] = []
addElide xs = maybeAppend ( snd $ last xs ) $ map fst xs
-- Return the elements of the display list which fit within the maximum width
-- (including their elision strings)
2020-11-04 05:20:46 +03:00
takeFitting m = dropWhileRev ( \ ( a , e ) -> m < adTotal ( fromMaybe a e ) )
dropWhileRev p = foldr ( \ x xs -> if null xs && p x then [] else x : xs ) []
2020-10-26 05:19:50 +03:00
-- Add the elision strings (if any) to each amount
2020-12-22 15:35:20 +03:00
withElided = zipWith ( \ num amt -> ( amt , elisionDisplay Nothing ( wbWidth sep ) num amt ) ) [ n - 1 , n - 2 .. 0 ]
2020-09-14 09:22:07 +03:00
data AmountDisplay = AmountDisplay
2020-12-22 15:35:20 +03:00
{ adBuilder :: ! WideBuilder -- ^ String representation of the Amount
, adTotal :: ! Int -- ^ Cumulative length of MixedAmount this Amount is part of,
-- including separators
}
2020-10-26 05:19:50 +03:00
nullAmountDisplay :: AmountDisplay
2020-12-22 15:35:20 +03:00
nullAmountDisplay = AmountDisplay mempty 0
2020-09-14 09:22:07 +03:00
2020-12-22 15:35:20 +03:00
amtDisplayList :: Int -> ( Amount -> WideBuilder ) -> [ Amount ] -> [ AmountDisplay ]
2020-09-14 09:22:07 +03:00
amtDisplayList sep showamt = snd . mapAccumL display ( - sep )
where
2020-12-22 15:35:20 +03:00
display tot amt = ( tot' , AmountDisplay str tot' )
2020-06-26 22:14:49 +03:00
where
2020-09-14 09:22:07 +03:00
str = showamt amt
2020-12-22 15:35:20 +03:00
tot' = tot + ( wbWidth str ) + sep
2020-09-14 09:22:07 +03:00
-- The string "m more", added to the previous running total
elisionDisplay :: Maybe Int -> Int -> Int -> AmountDisplay -> Maybe AmountDisplay
elisionDisplay mmax sep n lastAmt
2020-12-22 15:35:20 +03:00
| n > 0 = Just $ AmountDisplay ( WideBuilder ( TB . fromText str ) len ) ( adTotal lastAmt + len )
2020-09-14 09:22:07 +03:00
| otherwise = Nothing
where
2020-12-22 15:35:20 +03:00
fullString = T . pack $ show n ++ " more.. "
2020-09-14 09:22:07 +03:00
-- sep from the separator, 7 from " more..", 1 + floor (logBase 10 n) from number
fullLength = sep + 8 + floor ( logBase 10 $ fromIntegral n )
2020-12-22 15:35:20 +03:00
str | Just m <- mmax , fullLength > m = T . take ( m - 2 ) fullString <> " .. "
2020-09-14 09:22:07 +03:00
| otherwise = fullString
len = case mmax of Nothing -> fullLength
Just m -> max 2 $ min m fullLength
maybeAppend :: Maybe a -> [ a ] -> [ a ]
maybeAppend Nothing = id
maybeAppend ( Just a ) = ( ++ [ a ] )
-- | Compact labelled trace of a mixed amount, for debugging.
ltraceamount :: String -> MixedAmount -> MixedAmount
ltraceamount s = traceWith ( ( ( s ++ " : " ) ++ ) . showMixedAmount )
-- | Set the display precision in the amount's commodities.
setMixedAmountPrecision :: AmountPrecision -> MixedAmount -> MixedAmount
setMixedAmountPrecision p ( Mixed as ) = Mixed $ map ( setAmountPrecision p ) as
mixedAmountStripPrices :: MixedAmount -> MixedAmount
mixedAmountStripPrices ( Mixed as ) = Mixed $ map ( \ a -> a { aprice = Nothing } ) as
2020-06-26 22:14:49 +03:00
2012-11-20 01:20:10 +04:00
-- | Canonicalise a mixed amount's display styles using the provided commodity style map.
2016-05-08 02:18:04 +03:00
canonicaliseMixedAmount :: M . Map CommoditySymbol AmountStyle -> MixedAmount -> MixedAmount
2012-11-20 01:20:10 +04:00
canonicaliseMixedAmount styles ( Mixed as ) = Mixed $ map ( canonicaliseAmount styles ) as
2018-11-14 02:37:42 +03:00
-- | Replace each component amount's TotalPrice, if it has one, with an equivalent UnitPrice.
2019-07-15 13:28:52 +03:00
-- Has no effect on amounts without one.
2018-11-14 02:37:42 +03:00
-- Does Decimal division, might be some rounding/irrational number issues.
mixedAmountTotalPriceToUnitPrice :: MixedAmount -> MixedAmount
mixedAmountTotalPriceToUnitPrice ( Mixed as ) = Mixed $ map amountTotalPriceToUnitPrice as
2018-04-20 22:18:28 +03:00
2011-08-31 20:54:10 +04:00
-------------------------------------------------------------------------------
2018-09-04 20:01:26 +03:00
-- tests
2018-09-06 23:08:26 +03:00
tests_Amount = tests " Amount " [
2018-09-04 20:01:26 +03:00
tests " Amount " [
2020-06-01 01:48:08 +03:00
test " amountCost " $ do
amountCost ( eur 1 ) @?= eur 1
amountCost ( eur 2 ) { aprice = Just $ UnitPrice $ usd 2 } @?= usd 4
amountCost ( eur 1 ) { aprice = Just $ TotalPrice $ usd 2 } @?= usd 2
amountCost ( eur ( - 1 ) ) { aprice = Just $ TotalPrice $ usd 2 } @?= usd ( - 2 )
2019-11-27 23:46:29 +03:00
2020-05-30 04:57:22 +03:00
, test " amountLooksZero " $ do
assertBool " " $ amountLooksZero amount
assertBool " " $ amountLooksZero $ usd 0
2019-11-27 23:46:29 +03:00
2019-11-29 02:29:03 +03:00
, test " negating amounts " $ do
2019-11-27 23:46:29 +03:00
negate ( usd 1 ) @?= ( usd 1 ) { aquantity = - 1 }
let b = ( usd 1 ) { aprice = Just $ UnitPrice $ eur 2 } in negate b @?= b { aquantity = - 1 }
2019-11-29 02:29:03 +03:00
, test " adding amounts without prices " $ do
2019-11-27 23:46:29 +03:00
( usd 1.23 + usd ( - 1.23 ) ) @?= usd 0
( usd 1.23 + usd ( - 1.23 ) ) @?= usd 0
( usd ( - 1.23 ) + usd ( - 1.23 ) ) @?= usd ( - 2.46 )
sum [ usd 1.23 , usd ( - 1.23 ) , usd ( - 1.23 ) , - ( usd ( - 1.23 ) ) ] @?= usd 0
-- highest precision is preserved
2020-08-13 14:15:41 +03:00
asprecision ( astyle $ sum [ usd 1 ` withPrecision ` Precision 1 , usd 1 ` withPrecision ` Precision 3 ] ) @?= Precision 3
asprecision ( astyle $ sum [ usd 1 ` withPrecision ` Precision 3 , usd 1 ` withPrecision ` Precision 1 ] ) @?= Precision 3
2019-11-27 23:46:29 +03:00
-- adding different commodities assumes conversion rate 1
2020-05-30 04:57:22 +03:00
assertBool " " $ amountLooksZero ( usd 1.23 - eur 1.23 )
2019-11-27 23:46:29 +03:00
2019-11-29 02:29:03 +03:00
, test " showAmount " $ do
2019-11-27 23:46:29 +03:00
showAmount ( usd 0 + gbp 0 ) @?= " 0 "
2011-04-22 17:40:55 +04:00
2010-03-09 07:03:51 +03:00
]
2018-09-04 20:01:26 +03:00
, tests " MixedAmount " [
2019-11-29 02:29:03 +03:00
test " adding mixed amounts to zero, the commodity and amount style are preserved " $
2018-09-04 20:01:26 +03:00
sum ( map ( Mixed . ( : [] ) )
[ usd 1.25
2020-08-13 14:15:41 +03:00
, usd ( - 1 ) ` withPrecision ` Precision 3
2018-09-04 20:01:26 +03:00
, usd ( - 0.25 )
] )
2020-08-13 14:15:41 +03:00
@?= Mixed [ usd 0 ` withPrecision ` Precision 3 ]
2019-07-15 13:28:52 +03:00
2019-11-29 02:29:03 +03:00
, test " adding mixed amounts with total prices " $ do
2018-09-04 20:01:26 +03:00
sum ( map ( Mixed . ( : [] ) )
[ usd 1 @@ eur 1
, usd ( - 2 ) @@ eur 1
] )
2019-11-27 23:46:29 +03:00
@?= Mixed [ usd 1 @@ eur 1
2018-09-04 20:01:26 +03:00
, usd ( - 2 ) @@ eur 1
]
2019-07-15 13:28:52 +03:00
2019-11-29 02:29:03 +03:00
, test " showMixedAmount " $ do
2019-11-27 23:46:29 +03:00
showMixedAmount ( Mixed [ usd 1 ] ) @?= " $1.00 "
showMixedAmount ( Mixed [ usd 1 ` at ` eur 2 ] ) @?= " $1.00 @ €2.00 "
showMixedAmount ( Mixed [ usd 0 ] ) @?= " 0 "
showMixedAmount ( Mixed [] ) @?= " 0 "
showMixedAmount missingmixedamt @?= " "
2019-07-15 13:28:52 +03:00
2019-11-29 02:29:03 +03:00
, test " showMixedAmountWithoutPrice " $ do
2019-11-27 23:46:29 +03:00
let a = usd 1 ` at ` eur 2
2020-06-26 22:59:47 +03:00
showMixedAmountWithoutPrice False ( Mixed [ a ] ) @?= " $1.00 "
showMixedAmountWithoutPrice False ( Mixed [ a , - a ] ) @?= " 0 "
2019-07-15 13:28:52 +03:00
2018-09-04 20:01:26 +03:00
, tests " normaliseMixedAmount " [
2019-11-29 02:29:03 +03:00
test " a missing amount overrides any other amounts " $
2019-11-27 23:46:29 +03:00
normaliseMixedAmount ( Mixed [ usd 1 , missingamt ] ) @?= missingmixedamt
2019-11-29 02:29:03 +03:00
, test " unpriced same-commodity amounts are combined " $
2019-11-27 23:46:29 +03:00
normaliseMixedAmount ( Mixed [ usd 0 , usd 2 ] ) @?= Mixed [ usd 2 ]
2019-11-29 02:29:03 +03:00
, test " amounts with same unit price are combined " $
2019-11-27 23:46:29 +03:00
normaliseMixedAmount ( Mixed [ usd 1 ` at ` eur 1 , usd 1 ` at ` eur 1 ] ) @?= Mixed [ usd 2 ` at ` eur 1 ]
2019-11-29 02:29:03 +03:00
, test " amounts with different unit prices are not combined " $
2019-11-27 23:46:29 +03:00
normaliseMixedAmount ( Mixed [ usd 1 ` at ` eur 1 , usd 1 ` at ` eur 2 ] ) @?= Mixed [ usd 1 ` at ` eur 1 , usd 1 ` at ` eur 2 ]
2019-11-29 02:29:03 +03:00
, test " amounts with total prices are not combined " $
2019-11-27 23:46:29 +03:00
normaliseMixedAmount ( Mixed [ usd 1 @@ eur 1 , usd 1 @@ eur 1 ] ) @?= Mixed [ usd 1 @@ eur 1 , usd 1 @@ eur 1 ]
2018-09-04 20:01:26 +03:00
]
2019-07-15 13:28:52 +03:00
2019-11-29 02:29:03 +03:00
, test " normaliseMixedAmountSquashPricesForDisplay " $ do
2019-11-27 23:46:29 +03:00
normaliseMixedAmountSquashPricesForDisplay ( Mixed [] ) @?= Mixed [ nullamt ]
2020-05-30 04:57:22 +03:00
assertBool " " $ mixedAmountLooksZero $ normaliseMixedAmountSquashPricesForDisplay
2018-09-04 20:01:26 +03:00
( Mixed [ usd 10
, usd 10 @@ eur 7
, usd ( - 10 )
, usd ( - 10 ) @@ eur 7
] )
]
]