hledger/hledger.hs

80 lines
2.5 KiB
Haskell
Raw Normal View History

2007-02-10 22:16:56 +03:00
#!/usr/bin/env runhaskell
2007-02-10 20:36:50 +03:00
-- hledger - ledger-compatible money management utilities (& haskell study)
-- GPLv3, (c) Simon Michael & contributors,
2007-02-09 03:18:20 +03:00
-- John Wiegley's ledger is at http://newartisans.com/ledger.html .
2007-01-28 13:30:24 +03:00
2007-02-11 02:42:22 +03:00
module Main -- application logic & most IO
2007-02-10 22:16:56 +03:00
where
2007-02-10 20:36:50 +03:00
import System.Environment (withArgs) -- for testing in old hugs
import System
import Data.List
2007-02-10 20:36:50 +03:00
import Test.HUnit (runTestTT)
2007-02-10 22:16:56 +03:00
import Test.QuickCheck (quickCheck)
2007-02-10 20:36:50 +03:00
import Text.ParserCombinators.Parsec (parseFromFile, ParseError)
2007-01-28 00:51:59 +03:00
2007-01-30 12:07:12 +03:00
import Options
2007-02-11 02:10:04 +03:00
import Models
2007-02-09 04:23:12 +03:00
import Parse
import Tests
2007-02-09 03:18:20 +03:00
main :: IO ()
2007-01-30 12:07:12 +03:00
main = do
(opts, args) <- (getArgs >>= getOptions)
if args == []
then register [] []
else
2007-02-10 22:16:56 +03:00
let (command, args') = (head args, tail args) in
if "reg" `isPrefixOf` command then (register opts args')
else if "bal" `isPrefixOf` command then balance opts args'
2007-02-10 22:16:56 +03:00
else if "test" `isPrefixOf` command then test
else putStr $ usageInfo usageHeader options
2007-02-09 06:17:12 +03:00
-- commands
2007-02-10 20:36:50 +03:00
test :: IO ()
test = do
hcounts <- runTestTT tests
qcounts <- mapM quickCheck props
2007-02-10 20:36:50 +03:00
return ()
where showHunitCounts c =
reverse $ tail $ reverse ("passed " ++ (unwords $ drop 5 $ words (show c)))
2007-02-10 20:36:50 +03:00
register :: [Flag] -> [String] -> IO ()
register opts args = do
getLedgerFilePath >>= parseLedgerFile >>= doWithParsed (printRegister opts args)
balance :: [Flag] -> [String] -> IO ()
balance opts args = do
getLedgerFilePath >>= parseLedgerFile >>= doWithParsed (printBalance opts args)
2007-02-10 20:36:50 +03:00
-- utils
-- doWithLedgerFile =
-- getLedgerFilePath >>= parseLedgerFile >>= doWithParsed
2007-02-10 20:36:50 +03:00
doWithParsed :: (a -> IO ()) -> (Either ParseError a) -> IO ()
doWithParsed a p = do
case p of Left e -> parseError e
Right v -> a v
2007-02-09 06:17:12 +03:00
printRegister :: [Flag] -> [String] -> Ledger -> IO ()
printRegister opts args ledger = do
putStr $ showTransactionsWithBalances
(ledgerTransactionsMatching (acctpats,descpats) ledger)
0
where (acctpats,descpats) = ledgerPatternArgs args
printBalance :: [Flag] -> [String] -> Ledger -> IO ()
printBalance opts args ledger = do
-- putStr $ showAccountWithBalances ledger (ledgerAccountsData l)
putStr $ showLedgerAccounts ledger acctpats depth
where
(acctpats,_) = ledgerPatternArgs args
depth = depthOption opts
-- showsubs = (ShowSubs `elem` opts)
-- accounts = case showsubs of
-- True -> expandAccountNamesMostly ledger (ledgerTopAccountNames ledger)
-- False -> [(a,indentAccountName a) | a <- ledgerAccountNamesMatching acctpats ledger]