2009-12-09 23:51:00 +03:00
|
|
|
{-# LANGUAGE StandaloneDeriving #-}
|
2008-10-01 04:29:58 +04:00
|
|
|
{-|
|
2008-10-03 06:04:15 +04:00
|
|
|
An 'Amount' is some quantity of money, shares, or anything else.
|
|
|
|
|
2008-10-18 23:16:44 +04:00
|
|
|
A simple amount is a 'Commodity', quantity pair:
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
$1
|
|
|
|
£-50
|
|
|
|
EUR 3.44
|
|
|
|
GOOG 500
|
|
|
|
1.5h
|
2009-12-13 00:10:39 +03:00
|
|
|
90 apples
|
2007-03-13 07:11:39 +03:00
|
|
|
0
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2009-12-13 00:10:39 +03:00
|
|
|
An amount may also have a per-unit price, or conversion rate, in terms
|
|
|
|
of some other commodity. If present, this is displayed after \@:
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2009-12-13 00:10:39 +03:00
|
|
|
EUR 3 \@ $1.35
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2009-12-13 00:10:39 +03:00
|
|
|
A 'MixedAmount' is zero or more simple amounts. Mixed amounts are
|
|
|
|
usually normalised so that there is no more than one amount in each
|
|
|
|
commodity, and no zero amounts (or, there is just a single zero amount
|
|
|
|
and no others.):
|
2009-11-25 16:31:08 +03:00
|
|
|
|
|
|
|
@
|
2009-12-13 00:10:39 +03:00
|
|
|
$50 + EUR 3
|
|
|
|
16h + $13.55 + AAPL 500 + 6 oranges
|
|
|
|
0
|
2008-10-01 13:33:05 +04:00
|
|
|
@
|
2009-11-25 16:31:08 +03:00
|
|
|
|
|
|
|
We can do limited arithmetic with simple or mixed amounts: either
|
|
|
|
price-preserving arithmetic with similarly-priced amounts, or
|
|
|
|
price-discarding arithmetic which ignores and discards prices.
|
|
|
|
|
2007-03-13 07:11:39 +03:00
|
|
|
-}
|
|
|
|
|
2008-10-03 04:40:06 +04:00
|
|
|
module Ledger.Amount
|
2008-10-01 04:29:58 +04:00
|
|
|
where
|
2008-10-03 04:05:16 +04:00
|
|
|
import Ledger.Utils
|
2008-10-03 04:12:59 +04:00
|
|
|
import Ledger.Types
|
2008-10-13 01:52:48 +04:00
|
|
|
import Ledger.Commodity
|
2008-10-01 04:29:58 +04:00
|
|
|
|
2008-10-10 05:53:39 +04:00
|
|
|
|
2008-10-15 04:37:38 +04:00
|
|
|
instance Show Amount where show = showAmount
|
2008-10-18 14:38:01 +04:00
|
|
|
instance Show MixedAmount where show = showMixedAmount
|
2009-12-09 23:51:00 +03:00
|
|
|
deriving instance Show HistoricalPrice
|
2007-07-04 05:38:56 +04:00
|
|
|
|
2008-10-18 12:39:08 +04:00
|
|
|
instance Num Amount where
|
2008-11-22 19:26:01 +03:00
|
|
|
abs (Amount c q p) = Amount c (abs q) p
|
|
|
|
signum (Amount c q p) = Amount c (signum q) p
|
|
|
|
fromInteger i = Amount (comm "") (fromInteger i) Nothing
|
2008-10-18 12:39:08 +04:00
|
|
|
(+) = amountop (+)
|
|
|
|
(-) = amountop (-)
|
|
|
|
(*) = amountop (*)
|
|
|
|
|
2008-11-22 23:30:43 +03:00
|
|
|
instance Ord Amount where
|
|
|
|
compare (Amount ac aq ap) (Amount bc bq bp) = compare (ac,aq,ap) (bc,bq,bp)
|
|
|
|
|
2008-10-18 12:39:08 +04:00
|
|
|
instance Num MixedAmount where
|
2008-11-22 19:26:01 +03:00
|
|
|
fromInteger i = Mixed [Amount (comm "") (fromInteger i) Nothing]
|
2008-11-22 23:30:43 +03:00
|
|
|
negate (Mixed as) = Mixed $ map negateAmountPreservingPrice as
|
2008-12-05 07:36:32 +03:00
|
|
|
(+) (Mixed as) (Mixed bs) = normaliseMixedAmount $ Mixed $ as ++ bs
|
2008-10-18 14:38:01 +04:00
|
|
|
(*) = error "programming error, mixed amounts do not support multiplication"
|
|
|
|
abs = error "programming error, mixed amounts do not support abs"
|
2008-10-18 12:39:08 +04:00
|
|
|
signum = error "programming error, mixed amounts do not support signum"
|
2008-10-18 14:38:01 +04:00
|
|
|
|
2008-11-22 23:30:43 +03:00
|
|
|
instance Ord MixedAmount where
|
|
|
|
compare (Mixed as) (Mixed bs) = compare as bs
|
|
|
|
|
|
|
|
negateAmountPreservingPrice a = (-a){price=price a}
|
|
|
|
|
2009-11-25 22:42:13 +03:00
|
|
|
-- | Apply a binary arithmetic operator to two amounts, converting to the
|
|
|
|
-- second one's commodity (and display precision), discarding any price
|
|
|
|
-- information. (Using the second commodity is best since sum and other
|
|
|
|
-- folds start with a no-commodity amount.)
|
2008-10-19 00:27:25 +04:00
|
|
|
amountop :: (Double -> Double -> Double) -> Amount -> Amount -> Amount
|
2009-06-05 13:44:20 +04:00
|
|
|
amountop op a@(Amount _ _ _) (Amount bc bq _) =
|
2009-09-22 15:55:11 +04:00
|
|
|
Amount bc (quantity (convertAmountTo bc a) `op` bq) Nothing
|
2008-10-17 07:14:23 +04:00
|
|
|
|
2009-11-25 22:42:13 +03:00
|
|
|
-- | Convert an amount to the specified commodity using the appropriate
|
|
|
|
-- exchange rate (which is currently always 1).
|
|
|
|
convertAmountTo :: Commodity -> Amount -> Amount
|
|
|
|
convertAmountTo c2 (Amount c1 q _) = Amount c2 (q * conversionRate c1 c2) Nothing
|
|
|
|
|
2010-02-04 19:40:30 +03:00
|
|
|
-- | Convert mixed amount to the specified commodity
|
|
|
|
convertMixedAmountTo :: Commodity -> MixedAmount -> Amount
|
|
|
|
convertMixedAmountTo c2 (Mixed ams) = Amount c2 total Nothing
|
|
|
|
where
|
|
|
|
total = sum . map (quantity . convertAmountTo c2) $ ams
|
|
|
|
|
2008-11-22 23:32:58 +03:00
|
|
|
-- | Convert an amount to the commodity of its saved price, if any.
|
|
|
|
costOfAmount :: Amount -> Amount
|
|
|
|
costOfAmount a@(Amount _ _ Nothing) = a
|
2009-06-05 13:44:20 +04:00
|
|
|
costOfAmount (Amount _ q (Just price))
|
2008-11-22 23:32:58 +03:00
|
|
|
| isZeroMixedAmount price = nullamt
|
|
|
|
| otherwise = Amount pc (pq*q) Nothing
|
|
|
|
where (Amount pc pq _) = head $ amounts price
|
|
|
|
|
2008-10-13 01:52:48 +04:00
|
|
|
-- | Get the string representation of an amount, based on its commodity's
|
|
|
|
-- display settings.
|
2008-10-15 04:37:38 +04:00
|
|
|
showAmount :: Amount -> String
|
2009-06-05 13:44:20 +04:00
|
|
|
showAmount (Amount (Commodity {symbol="AUTO"}) _ _) = "" -- can appear in an error message
|
|
|
|
showAmount a@(Amount (Commodity {symbol=sym,side=side,spaced=spaced}) _ pri) =
|
|
|
|
case side of
|
|
|
|
L -> printf "%s%s%s%s" sym space quantity price
|
|
|
|
R -> printf "%s%s%s%s" quantity space sym price
|
2008-10-13 01:52:48 +04:00
|
|
|
where
|
|
|
|
space = if spaced then " " else ""
|
2008-11-24 00:26:38 +03:00
|
|
|
quantity = showAmount' a
|
2008-11-22 19:26:01 +03:00
|
|
|
price = case pri of (Just pamt) -> " @ " ++ showMixedAmount pamt
|
|
|
|
Nothing -> ""
|
2008-10-15 05:06:05 +04:00
|
|
|
|
2010-03-07 00:47:10 +03:00
|
|
|
-- XXX refactor
|
|
|
|
-- | Get the unambiguous string representation of an amount, for debugging.
|
|
|
|
showAmountDebug :: Amount -> String
|
|
|
|
showAmountDebug (Amount c q pri) = printf "Amount {commodity = %s, quantity = %s, price = %s}"
|
|
|
|
(show c) (show q) (maybe "" showMixedAmountDebug pri)
|
|
|
|
|
2009-11-25 15:57:30 +03:00
|
|
|
-- | Get the string representation of an amount, without any \@ price.
|
2009-11-25 15:19:02 +03:00
|
|
|
showAmountWithoutPrice :: Amount -> String
|
|
|
|
showAmountWithoutPrice a = showAmount a{price=Nothing}
|
|
|
|
|
2008-11-24 00:26:38 +03:00
|
|
|
-- | Get the string representation (of the number part of) of an amount
|
|
|
|
showAmount' :: Amount -> String
|
|
|
|
showAmount' (Amount (Commodity {comma=comma,precision=p}) q _) = quantity
|
|
|
|
where
|
|
|
|
quantity = commad $ printf ("%."++show p++"f") q
|
|
|
|
commad = if comma then punctuatethousands else id
|
|
|
|
|
2008-10-15 05:06:05 +04:00
|
|
|
-- | Add thousands-separating commas to a decimal number string
|
|
|
|
punctuatethousands :: String -> String
|
|
|
|
punctuatethousands s =
|
2009-09-22 20:51:27 +04:00
|
|
|
sign ++ addcommas int ++ frac
|
2008-10-15 05:06:05 +04:00
|
|
|
where
|
|
|
|
(sign,num) = break isDigit s
|
|
|
|
(int,frac) = break (=='.') num
|
|
|
|
addcommas = reverse . concat . intersperse "," . triples . reverse
|
|
|
|
triples [] = []
|
2009-09-23 13:22:53 +04:00
|
|
|
triples l = take 3 l : triples (drop 3 l)
|
2007-07-04 05:38:56 +04:00
|
|
|
|
2008-10-19 00:27:25 +04:00
|
|
|
-- | Does this amount appear to be zero when displayed with its given precision ?
|
2008-10-03 12:21:35 +04:00
|
|
|
isZeroAmount :: Amount -> Bool
|
2009-11-25 15:19:02 +03:00
|
|
|
isZeroAmount = null . filter (`elem` "123456789") . showAmountWithoutPrice
|
2009-05-17 02:54:12 +04:00
|
|
|
|
|
|
|
-- | Is this amount "really" zero, regardless of the display precision ?
|
|
|
|
-- Since we are using floating point, for now just test to some high precision.
|
|
|
|
isReallyZeroAmount :: Amount -> Bool
|
2009-09-22 19:56:59 +04:00
|
|
|
isReallyZeroAmount = null . filter (`elem` "123456789") . printf "%.10f" . quantity
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2008-10-19 00:27:25 +04:00
|
|
|
-- | Access a mixed amount's components.
|
|
|
|
amounts :: MixedAmount -> [Amount]
|
|
|
|
amounts (Mixed as) = as
|
|
|
|
|
|
|
|
-- | Does this mixed amount appear to be zero - empty, or
|
|
|
|
-- containing only simple amounts which appear to be zero ?
|
2008-10-17 07:14:23 +04:00
|
|
|
isZeroMixedAmount :: MixedAmount -> Bool
|
2008-10-18 14:38:01 +04:00
|
|
|
isZeroMixedAmount = all isZeroAmount . amounts . normaliseMixedAmount
|
2008-10-17 07:14:23 +04:00
|
|
|
|
2009-05-17 02:54:12 +04:00
|
|
|
-- | Is this mixed amount "really" zero ? See isReallyZeroAmount.
|
|
|
|
isReallyZeroMixedAmount :: MixedAmount -> Bool
|
|
|
|
isReallyZeroMixedAmount = all isReallyZeroAmount . amounts . normaliseMixedAmount
|
|
|
|
|
2010-02-27 21:06:29 +03:00
|
|
|
-- | Is this mixed amount "really" zero, after converting to cost
|
|
|
|
-- commodities where possible ?
|
|
|
|
isReallyZeroMixedAmountCost :: MixedAmount -> Bool
|
|
|
|
isReallyZeroMixedAmountCost = isReallyZeroMixedAmount . costOfMixedAmount
|
|
|
|
|
2009-01-17 21:07:20 +03:00
|
|
|
-- | MixedAmount derives Eq in Types.hs, but that doesn't know that we
|
|
|
|
-- want $0 = EUR0 = 0. Yet we don't want to drag all this code in there.
|
|
|
|
-- When zero equality is important, use this, for now; should be used
|
|
|
|
-- everywhere.
|
|
|
|
mixedAmountEquals :: MixedAmount -> MixedAmount -> Bool
|
|
|
|
mixedAmountEquals a b = amounts a' == amounts b' || (isZeroMixedAmount a' && isZeroMixedAmount b')
|
|
|
|
where a' = normaliseMixedAmount a
|
|
|
|
b' = normaliseMixedAmount b
|
|
|
|
|
2008-10-19 00:27:25 +04:00
|
|
|
-- | Get the string representation of a mixed amount, showing each of
|
2008-12-05 07:36:32 +03:00
|
|
|
-- its component amounts. NB a mixed amount can have an empty amounts
|
2008-12-10 08:52:26 +03:00
|
|
|
-- list in which case it shows as \"\".
|
2008-10-19 00:27:25 +04:00
|
|
|
showMixedAmount :: MixedAmount -> String
|
2010-03-07 00:47:10 +03:00
|
|
|
showMixedAmount m = vConcatRightAligned $ map show $ amounts $ normaliseMixedAmount m
|
|
|
|
|
|
|
|
-- | Get an unambiguous string representation of a mixed amount for debugging.
|
|
|
|
showMixedAmountDebug :: MixedAmount -> String
|
|
|
|
showMixedAmountDebug m = printf "Mixed [%s]" as
|
|
|
|
where as = intercalate "\n " $ map showAmountDebug $ amounts $ normaliseMixedAmount m
|
2008-10-15 06:11:30 +04:00
|
|
|
|
2009-11-25 15:19:02 +03:00
|
|
|
-- | Get the string representation of a mixed amount, but without
|
2009-11-25 15:57:30 +03:00
|
|
|
-- any \@ prices.
|
2009-11-25 15:19:02 +03:00
|
|
|
showMixedAmountWithoutPrice :: MixedAmount -> String
|
|
|
|
showMixedAmountWithoutPrice m = concat $ intersperse "\n" $ map showfixedwidth as
|
|
|
|
where
|
|
|
|
(Mixed as) = normaliseMixedAmountIgnoringPrice m
|
|
|
|
width = maximum $ map (length . show) as
|
|
|
|
showfixedwidth = printf (printf "%%%ds" width) . showAmountWithoutPrice
|
|
|
|
|
2008-10-19 00:27:25 +04:00
|
|
|
-- | Get the string representation of a mixed amount, and if it
|
|
|
|
-- appears to be all zero just show a bare 0, ledger-style.
|
|
|
|
showMixedAmountOrZero :: MixedAmount -> String
|
|
|
|
showMixedAmountOrZero a
|
|
|
|
| isZeroMixedAmount a = "0"
|
|
|
|
| otherwise = showMixedAmount a
|
2007-03-13 07:11:39 +03:00
|
|
|
|
2009-11-25 15:19:02 +03:00
|
|
|
-- | Get the string representation of a mixed amount, or a bare 0,
|
2009-11-25 15:57:30 +03:00
|
|
|
-- without any \@ prices.
|
2009-11-25 15:19:02 +03:00
|
|
|
showMixedAmountOrZeroWithoutPrice :: MixedAmount -> String
|
|
|
|
showMixedAmountOrZeroWithoutPrice a
|
|
|
|
| isZeroMixedAmount a = "0"
|
|
|
|
| otherwise = showMixedAmountWithoutPrice a
|
|
|
|
|
2008-11-22 23:30:43 +03:00
|
|
|
-- | Simplify a mixed amount by combining any component amounts which have
|
2009-11-25 15:19:02 +03:00
|
|
|
-- the same commodity and the same price. Also removes zero amounts,
|
|
|
|
-- or adds a single zero amount if there are no amounts at all.
|
2008-10-19 00:27:25 +04:00
|
|
|
normaliseMixedAmount :: MixedAmount -> MixedAmount
|
2008-12-05 07:36:32 +03:00
|
|
|
normaliseMixedAmount (Mixed as) = Mixed as''
|
2008-10-19 00:27:25 +04:00
|
|
|
where
|
2009-11-25 15:19:02 +03:00
|
|
|
as'' = map sumSamePricedAmountsPreservingPrice $ group $ sort as'
|
2008-11-22 23:30:43 +03:00
|
|
|
sort = sortBy cmpsymbolandprice
|
|
|
|
cmpsymbolandprice a1 a2 = compare (sym a1,price a1) (sym a2,price a2)
|
|
|
|
group = groupBy samesymbolandprice
|
|
|
|
samesymbolandprice a1 a2 = (sym a1 == sym a2) && (price a1 == price a2)
|
|
|
|
sym = symbol . commodity
|
2008-12-05 07:36:32 +03:00
|
|
|
as' | null nonzeros = [head $ zeros ++ [nullamt]]
|
|
|
|
| otherwise = nonzeros
|
2009-11-25 22:42:13 +03:00
|
|
|
(zeros,nonzeros) = partition isReallyZeroAmount as
|
2008-11-22 23:30:43 +03:00
|
|
|
|
2009-11-25 15:19:02 +03:00
|
|
|
sumSamePricedAmountsPreservingPrice [] = nullamt
|
|
|
|
sumSamePricedAmountsPreservingPrice as = (sum as){price=price $ head as}
|
|
|
|
|
|
|
|
-- | Simplify a mixed amount by combining any component amounts which have
|
|
|
|
-- the same commodity, ignoring and discarding their unit prices if any.
|
|
|
|
-- Also removes zero amounts, or adds a single zero amount if there are no
|
|
|
|
-- amounts at all.
|
|
|
|
normaliseMixedAmountIgnoringPrice :: MixedAmount -> MixedAmount
|
|
|
|
normaliseMixedAmountIgnoringPrice (Mixed as) = Mixed as''
|
|
|
|
where
|
|
|
|
as'' = map sumAmountsDiscardingPrice $ group $ sort as'
|
|
|
|
group = groupBy samesymbol where samesymbol a1 a2 = sym a1 == sym a2
|
|
|
|
sort = sortBy (comparing sym)
|
|
|
|
sym = symbol . commodity
|
|
|
|
as' | null nonzeros = [head $ zeros ++ [nullamt]]
|
|
|
|
| otherwise = nonzeros
|
|
|
|
where (zeros,nonzeros) = partition isZeroAmount as
|
|
|
|
|
|
|
|
sumAmountsDiscardingPrice [] = nullamt
|
|
|
|
sumAmountsDiscardingPrice as = (sum as){price=Nothing}
|
2008-10-19 00:27:25 +04:00
|
|
|
|
2008-11-22 23:32:58 +03:00
|
|
|
-- | Convert a mixed amount's component amounts to the commodity of their
|
|
|
|
-- saved price, if any.
|
|
|
|
costOfMixedAmount :: MixedAmount -> MixedAmount
|
|
|
|
costOfMixedAmount (Mixed as) = Mixed $ map costOfAmount as
|
2008-11-22 20:21:49 +03:00
|
|
|
|
|
|
|
-- | The empty simple amount.
|
|
|
|
nullamt :: Amount
|
|
|
|
nullamt = Amount unknown 0 Nothing
|
|
|
|
|
2008-10-19 00:27:25 +04:00
|
|
|
-- | The empty mixed amount.
|
2008-11-22 20:21:49 +03:00
|
|
|
nullmixedamt :: MixedAmount
|
|
|
|
nullmixedamt = Mixed []
|
2008-10-15 06:11:30 +04:00
|
|
|
|
2008-10-19 00:27:25 +04:00
|
|
|
-- | A temporary value for parsed transactions which had no amount specified.
|
2008-10-19 00:29:42 +04:00
|
|
|
missingamt :: MixedAmount
|
2009-09-22 20:51:27 +04:00
|
|
|
missingamt = Mixed [Amount Commodity {symbol="AUTO",side=L,spaced=False,comma=False,precision=0} 0 Nothing]
|
2008-10-19 00:27:25 +04:00
|
|
|
|
2010-03-09 07:03:51 +03:00
|
|
|
|
|
|
|
tests_Amount = TestList [
|
|
|
|
|
|
|
|
"showMixedAmount" ~: do
|
|
|
|
showMixedAmount (Mixed []) ~?= "0"
|
|
|
|
|
|
|
|
,"amount arithmetic" ~: do
|
|
|
|
let a1 = dollars 1.23
|
|
|
|
let a2 = Amount (comm "$") (-1.23) Nothing
|
|
|
|
let a3 = Amount (comm "$") (-1.23) Nothing
|
|
|
|
(a1 + a2) `is` Amount (comm "$") 0 Nothing
|
|
|
|
(a1 + a3) `is` Amount (comm "$") 0 Nothing
|
|
|
|
(a2 + a3) `is` Amount (comm "$") (-2.46) Nothing
|
|
|
|
(a3 + a3) `is` Amount (comm "$") (-2.46) Nothing
|
|
|
|
sum [a2,a3] `is` Amount (comm "$") (-2.46) Nothing
|
|
|
|
sum [a3,a3] `is` Amount (comm "$") (-2.46) Nothing
|
|
|
|
sum [a1,a2,a3,-a3] `is` Amount (comm "$") 0 Nothing
|
|
|
|
let dollar0 = dollar{precision=0}
|
|
|
|
(sum [Amount dollar 1.25 Nothing, Amount dollar0 (-1) Nothing, Amount dollar (-0.25) Nothing])
|
|
|
|
`is` (Amount dollar 0 Nothing)
|
|
|
|
|
|
|
|
,"mixed amount arithmetic" ~: do
|
|
|
|
let dollar0 = dollar{precision=0}
|
|
|
|
(sum $ map (Mixed . (\a -> [a]))
|
|
|
|
[Amount dollar 1.25 Nothing,
|
|
|
|
Amount dollar0 (-1) Nothing,
|
|
|
|
Amount dollar (-0.25) Nothing])
|
|
|
|
`is` Mixed [Amount dollar 0 Nothing]
|
|
|
|
|
|
|
|
|
|
|
|
]
|