mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-15 00:27:46 +03:00
115 lines
4.7 KiB
Haskell
115 lines
4.7 KiB
Haskell
{-|
|
|
|
|
A 'RawLedger' is a parsed ledger file. We call it raw to distinguish from
|
|
the cached 'Ledger'.
|
|
|
|
-}
|
|
|
|
module Ledger.RawLedger
|
|
where
|
|
import qualified Data.Map as Map
|
|
import Ledger.Utils
|
|
import Ledger.Types
|
|
import Ledger.AccountName
|
|
import Ledger.Entry
|
|
import Ledger.Transaction
|
|
|
|
|
|
negativepatternchar = '-'
|
|
|
|
instance Show RawLedger where
|
|
show l = printf "RawLedger with %d entries, %d accounts: %s"
|
|
((length $ entries l) +
|
|
(length $ modifier_entries l) +
|
|
(length $ periodic_entries l))
|
|
(length accounts)
|
|
(show accounts)
|
|
where accounts = flatten $ rawLedgerAccountNameTree l
|
|
|
|
rawLedgerTransactions :: RawLedger -> [Transaction]
|
|
rawLedgerTransactions = txns . entries
|
|
where
|
|
txns :: [Entry] -> [Transaction]
|
|
txns es = concat $ map flattenEntry $ zip es (iterate (+1) 1)
|
|
|
|
rawLedgerAccountNamesUsed :: RawLedger -> [AccountName]
|
|
rawLedgerAccountNamesUsed = accountNamesFromTransactions . rawLedgerTransactions
|
|
|
|
rawLedgerAccountNames :: RawLedger -> [AccountName]
|
|
rawLedgerAccountNames = sort . expandAccountNames . rawLedgerAccountNamesUsed
|
|
|
|
rawLedgerAccountNameTree :: RawLedger -> Tree AccountName
|
|
rawLedgerAccountNameTree l = accountNameTreeFrom $ rawLedgerAccountNames l
|
|
|
|
-- | Remove ledger entries we are not interested in.
|
|
-- Keep only those which fall between the begin and end dates, and match
|
|
-- the description pattern.
|
|
filterRawLedger :: String -> String -> [String] -> RawLedger -> RawLedger
|
|
filterRawLedger begin end pats =
|
|
filterRawLedgerEntriesByDate begin end .
|
|
filterRawLedgerEntriesByDescription pats
|
|
|
|
-- | Keep only entries whose description matches the description pattern.
|
|
filterRawLedgerEntriesByDescription :: [String] -> RawLedger -> RawLedger
|
|
filterRawLedgerEntriesByDescription pats (RawLedger ms ps es f) =
|
|
RawLedger ms ps (filter matchdesc es) f
|
|
where
|
|
matchdesc :: Entry -> Bool
|
|
matchdesc = matchLedgerPatterns False pats . edescription
|
|
|
|
-- | Keep only entries which fall between begin and end dates.
|
|
-- We include entries on the begin date and exclude entries on the end
|
|
-- date, like ledger. An empty date string means no restriction.
|
|
filterRawLedgerEntriesByDate :: String -> String -> RawLedger -> RawLedger
|
|
filterRawLedgerEntriesByDate begin end (RawLedger ms ps es f) =
|
|
RawLedger ms ps (filter matchdate es) f
|
|
where
|
|
matchdate :: Entry -> Bool
|
|
matchdate e = (begin == "" || entrydate >= begindate) &&
|
|
(end == "" || entrydate < enddate)
|
|
where
|
|
begindate = parsedate begin :: UTCTime
|
|
enddate = parsedate end
|
|
entrydate = parsedate $ edate e
|
|
|
|
|
|
-- | Check if a set of ledger account/description patterns matches the
|
|
-- given account name or entry description, applying ledger's special
|
|
-- cases.
|
|
--
|
|
-- Patterns are regular expression strings, and those beginning with - are
|
|
-- negative patterns. The special case is that account patterns match the
|
|
-- full account name except in balance reports when the pattern does not
|
|
-- contain : and is a positive pattern, where it matches only the leaf
|
|
-- name.
|
|
matchLedgerPatterns :: Bool -> [String] -> String -> Bool
|
|
matchLedgerPatterns forbalancereport pats str =
|
|
(null positives || any ismatch positives) && (null negatives || (not $ any ismatch negatives))
|
|
where
|
|
isnegative = (== negativepatternchar) . head
|
|
(negatives,positives) = partition isnegative pats
|
|
ismatch pat = containsRegex (mkRegex pat') matchee
|
|
where
|
|
pat' = if isnegative pat then drop 1 pat else pat
|
|
matchee = if forbalancereport && (not $ ':' `elem` pat) && (not $ isnegative pat)
|
|
then accountLeafName str
|
|
else str
|
|
|
|
-- | Give amounts the display settings of the first one detected in each commodity.
|
|
normaliseRawLedgerAmounts :: RawLedger -> RawLedger
|
|
normaliseRawLedgerAmounts l@(RawLedger ms ps es f) = RawLedger ms ps es' f
|
|
where
|
|
es' = map normaliseEntryAmounts es
|
|
normaliseEntryAmounts (Entry d s c desc comm ts pre) = Entry d s c desc comm ts' pre
|
|
where ts' = map normaliseRawTransactionAmounts ts
|
|
normaliseRawTransactionAmounts (RawTransaction acct a c) = RawTransaction acct a' c
|
|
where a' = normaliseAmount a
|
|
normaliseAmount (Amount c q) = Amount (firstoccurrenceof c) q
|
|
firstcommodities = nubBy samesymbol $ allcommodities
|
|
allcommodities = map (commodity . amount) $ rawLedgerTransactions l
|
|
samesymbol (Commodity {symbol=s1}) (Commodity {symbol=s2}) = s1==s2
|
|
firstoccurrenceof c@(Commodity {symbol=s}) =
|
|
fromMaybe
|
|
(error "failed to normalise commodity") -- shouldn't happen
|
|
(find (\(Commodity {symbol=sym}) -> sym==s) firstcommodities)
|