refactor ledger preparation
This commit is contained in:
parent
b9bee776b5
commit
ae9636e55c
78
Utils.hs
78
Utils.hs
@ -8,50 +8,70 @@ module Utils
|
|||||||
where
|
where
|
||||||
import qualified Data.Map as Map (lookup)
|
import qualified Data.Map as Map (lookup)
|
||||||
import Text.ParserCombinators.Parsec
|
import Text.ParserCombinators.Parsec
|
||||||
|
import System.IO
|
||||||
import Options
|
import Options
|
||||||
import Ledger
|
import Ledger
|
||||||
|
|
||||||
|
|
||||||
|
-- | Convert a RawLedger to a canonicalised, cached and filtered Ledger
|
||||||
|
-- based on the command-line options/arguments and today's date.
|
||||||
|
prepareLedger :: [Opt] -> [String] -> Day -> RawLedger -> Ledger
|
||||||
|
prepareLedger opts args refdate rl =
|
||||||
|
cacheLedger apats $ filterRawLedger span dpats c r $ canonicaliseAmounts cb rl
|
||||||
|
where
|
||||||
|
(apats,dpats) = parseAccountDescriptionArgs [] args
|
||||||
|
span = dateSpanFromOpts refdate opts
|
||||||
|
c = Cleared `elem` opts
|
||||||
|
r = Real `elem` opts
|
||||||
|
cb = CostBasis `elem` opts
|
||||||
|
|
||||||
-- | Get a RawLedger from the given string, or raise an error.
|
-- | Get a RawLedger from the given string, or raise an error.
|
||||||
rawledgerfromstring :: String -> RawLedger
|
rawledgerfromstring :: String -> RawLedger
|
||||||
rawledgerfromstring = fromparse . parsewith ledgerfile
|
rawledgerfromstring = fromparse . parsewith ledgerfile
|
||||||
|
|
||||||
-- | Get a filtered and cached Ledger from the given string, or raise an error.
|
-- | Get a RawLedger from the given file path, or raise an error.
|
||||||
ledgerfromstring :: [String] -> String -> Ledger
|
|
||||||
ledgerfromstring args s =
|
|
||||||
cacheLedger apats $ filterRawLedger (DateSpan Nothing Nothing) dpats False False l
|
|
||||||
where
|
|
||||||
(apats,dpats) = parseAccountDescriptionArgs [] args
|
|
||||||
l = rawledgerfromstring s
|
|
||||||
|
|
||||||
-- | Get a RawLedger from the given file path, or a dummy one if there was an error.
|
|
||||||
rawledgerfromfile :: FilePath -> IO RawLedger
|
rawledgerfromfile :: FilePath -> IO RawLedger
|
||||||
rawledgerfromfile f = do
|
rawledgerfromfile f = openFile f ReadMode >>= hGetContents >>= return . rawledgerfromstring
|
||||||
parsed <- parseLedgerFile f
|
|
||||||
return $ either (\_ -> RawLedger [] [] [] "") id parsed
|
|
||||||
|
|
||||||
-- | Get a filtered and cached Ledger from the given file path, or a dummy
|
|
||||||
-- one if there was an error.
|
|
||||||
ledgerfromfile :: [String] -> FilePath -> IO Ledger
|
|
||||||
ledgerfromfile args f = do
|
|
||||||
l <- rawledgerfromfile f
|
|
||||||
return $ cacheLedger apats $ filterRawLedger (DateSpan Nothing Nothing) dpats False False l
|
|
||||||
where
|
|
||||||
(apats,dpats) = parseAccountDescriptionArgs [] args
|
|
||||||
|
|
||||||
-- | Get a RawLedger from the file your LEDGER environment variable
|
-- | Get a RawLedger from the file your LEDGER environment variable
|
||||||
-- variable points to, or a dummy one if there was a problem.
|
-- variable points to, or raise an error.
|
||||||
myrawledger :: IO RawLedger
|
myrawledger :: IO RawLedger
|
||||||
myrawledger = do
|
myrawledger = ledgerFilePathFromOpts [] >>= rawledgerfromfile
|
||||||
parsed <- ledgerFilePathFromOpts [] >>= parseLedgerFile
|
|
||||||
return $ either (\_ -> RawLedger [] [] [] "") id parsed
|
-- | Get a filtered and cached Ledger from the given string and arguments,
|
||||||
|
-- or raise an error. Does not handle all the command-line options that
|
||||||
|
-- parseLedgerAndDo does.
|
||||||
|
ledgerfromstring :: [String] -> String -> Ledger
|
||||||
|
ledgerfromstring args s =
|
||||||
|
cacheLedger apats $ filterRawLedger span dpats False False $ canonicaliseAmounts False l
|
||||||
|
where
|
||||||
|
(apats,dpats) = parseAccountDescriptionArgs [] args
|
||||||
|
span = (DateSpan Nothing Nothing)
|
||||||
|
l = rawledgerfromstring s
|
||||||
|
|
||||||
|
ledgerfromstringwithopts :: [Opt] -> [String] -> Day -> String -> Ledger
|
||||||
|
ledgerfromstringwithopts opts args refdate s =
|
||||||
|
prepareLedger opts args refdate $ rawledgerfromstring s
|
||||||
|
|
||||||
|
-- | Get a filtered and cached Ledger from the given file path and
|
||||||
|
-- arguments, or raise an error. Does not handle all the command-line
|
||||||
|
-- options that parseLedgerAndDo does.
|
||||||
|
ledgerfromfile :: [String] -> FilePath -> IO Ledger
|
||||||
|
ledgerfromfile args f =
|
||||||
|
rawledgerfromfile f >>= return .
|
||||||
|
cacheLedger apats .
|
||||||
|
filterRawLedger (DateSpan Nothing Nothing) dpats False False .
|
||||||
|
canonicaliseAmounts False
|
||||||
|
where
|
||||||
|
(apats,dpats) = parseAccountDescriptionArgs [] args
|
||||||
|
|
||||||
-- | Get a cached Ledger from the file your LEDGER environment variable
|
-- | Get a cached Ledger from the file your LEDGER environment variable
|
||||||
-- variable points to, or a dummy one if there was a problem.
|
-- variable points to, or raise an error. Assumes no command-line arguments.
|
||||||
myledger :: IO Ledger
|
myledger :: IO Ledger
|
||||||
myledger = do
|
myledger = myrawledger >>= return .
|
||||||
l <- myrawledger
|
cacheLedger [] .
|
||||||
return $ cacheLedger [] $ filterRawLedger (DateSpan Nothing Nothing) [] False False l
|
filterRawLedger (DateSpan Nothing Nothing) [] False False .
|
||||||
|
canonicaliseAmounts False
|
||||||
|
|
||||||
-- | Get a named account from your ledger file.
|
-- | Get a named account from your ledger file.
|
||||||
myaccount :: AccountName -> IO Account
|
myaccount :: AccountName -> IO Account
|
||||||
|
|||||||
10
hledger.hs
10
hledger.hs
@ -72,13 +72,7 @@ main = do
|
|||||||
-- (or report a parse error). This function makes the whole thing go.
|
-- (or report a parse error). This function makes the whole thing go.
|
||||||
parseLedgerAndDo :: [Opt] -> [String] -> ([Opt] -> [String] -> Ledger -> IO ()) -> IO ()
|
parseLedgerAndDo :: [Opt] -> [String] -> ([Opt] -> [String] -> Ledger -> IO ()) -> IO ()
|
||||||
parseLedgerAndDo opts args cmd = do
|
parseLedgerAndDo opts args cmd = do
|
||||||
day <- today
|
refdate <- today
|
||||||
let span = dateSpanFromOpts day opts
|
let runcmd = cmd opts args . prepareLedger opts args refdate
|
||||||
let runcmd = cmd opts args . cacheLedger apats . filterRawLedger span dpats c r . canonicaliseAmounts costbasis
|
|
||||||
ledgerFilePathFromOpts opts >>= parseLedgerFile >>= either printParseError runcmd
|
ledgerFilePathFromOpts opts >>= parseLedgerFile >>= either printParseError runcmd
|
||||||
where
|
|
||||||
(apats,dpats) = parseAccountDescriptionArgs opts args
|
|
||||||
c = Cleared `elem` opts
|
|
||||||
r = Real `elem` opts
|
|
||||||
costbasis = CostBasis `elem` opts
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user