hledger/hledger.hs

123 lines
4.0 KiB
Haskell
Raw Normal View History

2007-05-02 11:37:08 +04:00
#!/usr/bin/env runhaskell
2008-10-01 11:04:47 +04:00
{-|
hledger - a ledger-compatible text-based accounting tool.
Copyright (c) 2007-2008 Simon Michael <simon@joyful.com>
Released under GPL version 3 or later.
2008-10-01 11:04:47 +04:00
This is a minimal haskell clone of John Wiegley's ledger
<http://newartisans.com/software/ledger.html>. hledger generates
simple ledger-compatible register & balance reports from a plain text
ledger file, and demonstrates a (naive) purely functional
implementation of ledger.
2008-10-01 11:04:47 +04:00
This module includes some helpers for working with your ledger in ghci. Examples:
> $ rm -f hledger.o
> $ ghci hledger.hs
2008-10-03 07:15:16 +04:00
> *Main> l <- ledger
> Ledger with 696 entries, 132 accounts
> *Main> putStr $ drawTree $ treemap show $ accountnametree l
> ...
> *Main> putStr $ showLedgerAccountBalances l 1
> ...
> *Main> printregister l
> ...
> *Main> accounts l
> ...
> *Main> accountnamed "expenses:food:groceries"
> Account expenses:food:groceries with 60 transactions
-}
2007-01-28 13:30:24 +03:00
2007-02-16 14:51:30 +03:00
module Main
2007-02-10 22:16:56 +03:00
where
import System
2008-09-28 07:43:59 +04:00
import qualified Data.Map as Map (lookup)
2007-01-28 00:51:59 +03:00
2007-01-30 12:07:12 +03:00
import Options
2008-10-03 01:47:11 +04:00
import Tests (hunit, quickcheck)
import Ledger.Parse (parseLedgerFile, printParseError)
import Ledger.Utils hiding (test)
2008-10-03 07:15:16 +04:00
import Ledger hiding (rawledger)
2007-02-09 03:18:20 +03:00
2007-02-09 03:18:20 +03:00
main :: IO ()
2007-01-30 12:07:12 +03:00
main = do
(opts, cmd, args) <- parseArguments
run cmd opts args
where run cmd opts args
2008-10-01 16:29:51 +04:00
| Help `elem` opts = putStr usage
2008-10-10 05:36:21 +04:00
| Version `elem` opts = putStr version
| cmd `isPrefixOf` "selftest" = selftest opts args
| cmd `isPrefixOf` "print" = print_ opts args
| cmd `isPrefixOf` "register" = register opts args
| cmd `isPrefixOf` "balance" = balance opts args
2008-10-01 16:29:51 +04:00
| otherwise = putStr usage
2008-10-08 21:24:59 +04:00
type Command = [Opt] -> [String] -> IO ()
2007-02-09 06:17:12 +03:00
2008-10-01 16:29:51 +04:00
selftest :: Command
selftest _ _ = do
2008-10-03 01:47:11 +04:00
hunit
quickcheck
2007-07-03 22:20:45 +04:00
return ()
2008-10-01 16:29:51 +04:00
print_ :: Command
print_ opts args = parseLedgerAndDo opts args printentries
2008-10-01 16:29:51 +04:00
register :: Command
register opts args = parseLedgerAndDo opts args printregister
2008-10-01 16:29:51 +04:00
2007-07-09 22:54:41 +04:00
balance :: Command
balance opts args = parseLedgerAndDo opts args printbalance
where
printbalance :: Ledger -> IO ()
printbalance l = putStr $ showLedgerAccountBalances l depth
where
showsubs = (ShowSubs `elem` opts)
pats@(acctpats,descpats) = parseAccountDescriptionArgs args
depth = case (pats, showsubs) of
-- when there is no -s or pattern args, show with depth 1
(([],[]), False) -> 1
otherwise -> 9999
-- | parse the user's specified ledger file and do some action with it
-- (or report a parse error). This function makes the whole thing go.
2008-10-08 21:24:59 +04:00
parseLedgerAndDo :: [Opt] -> [String] -> (Ledger -> IO ()) -> IO ()
2008-10-08 21:48:11 +04:00
parseLedgerAndDo opts args cmd =
ledgerFilePathFromOpts opts >>= parseLedgerFile >>= either printParseError runthecommand
2008-10-08 21:48:11 +04:00
where
runthecommand = cmd . cacheLedger aregex . filterLedgerEntries begin end aregex dregex
2008-10-08 21:48:11 +04:00
begin = beginDateFromOpts opts
end = endDateFromOpts opts
aregex = regexFor acctpats
dregex = regexFor descpats
(acctpats,descpats) = parseAccountDescriptionArgs args
-- ghci helpers
2008-09-28 07:43:59 +04:00
2008-10-03 07:15:16 +04:00
-- | get a RawLedger from the file your LEDGER environment variable points to
-- or (WARNING) an empty one if there was a problem.
2008-10-03 07:15:16 +04:00
rawledger :: IO RawLedger
rawledger = do
parsed <- ledgerFilePathFromOpts [] >>= parseLedgerFile
2008-10-03 07:15:16 +04:00
return $ either (\_ -> RawLedger [] [] [] "") id parsed
-- | as above, and convert it to a cached Ledger
ledger :: IO Ledger
ledger = do
l <- rawledger
return $ cacheLedger wildcard $ filterLedgerEntries "" "" wildcard wildcard l
-- | get a Ledger from the given file path
2008-10-03 07:15:16 +04:00
rawledgerfromfile :: String -> IO RawLedger
rawledgerfromfile f = do
parsed <- ledgerFilePathFromOpts [File f] >>= parseLedgerFile
2008-10-03 07:15:16 +04:00
return $ either (\_ -> RawLedger [] [] [] "") id parsed
-- | get a named account from your ledger file
accountnamed :: AccountName -> IO Account
2008-10-03 07:15:16 +04:00
accountnamed a = ledger >>= (return . fromMaybe nullacct . Map.lookup a . accounts)