mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-08 07:09:28 +03:00
dd040f9ca2
Lets you navigate around the balance, register, print reports and the raw ledger, and drill down on a single account. Adds a dependency on vty.
85 lines
2.9 KiB
Haskell
85 lines
2.9 KiB
Haskell
#!/usr/bin/env runhaskell
|
|
{-|
|
|
hledger - a ledger-compatible text-based accounting tool.
|
|
|
|
Copyright (c) 2007-2009 Simon Michael <simon@joyful.com>
|
|
Released under GPL version 3 or later.
|
|
|
|
hledger is a haskell clone of John Wiegley's "ledger" text-based
|
|
accounting tool (http://newartisans.com/software/ledger.html).
|
|
It generates ledger-compatible register & balance reports from a plain
|
|
text ledger file, and demonstrates a functional implementation of ledger.
|
|
For more information, see hledger's home page: http://joyful.com/hledger
|
|
|
|
You can use the command line:
|
|
|
|
> $ hledger --help
|
|
|
|
or ghci:
|
|
|
|
> $ ghci hledger
|
|
> > l <- ledgerfromfile [] "sample.ledger"
|
|
> > balance [] [] l
|
|
> $-1 assets
|
|
> $2 expenses
|
|
> $-2 income
|
|
> $1 liabilities:debts
|
|
> > register [] ["income","expenses"] l
|
|
> 2007/01/01 income income:salary $-1 $-1
|
|
> 2007/01/01 gift income:gifts $-1 $-2
|
|
> 2007/01/01 eat & shop expenses:food $1 $-1
|
|
> expenses:supplies $1 0
|
|
|
|
-}
|
|
|
|
module Main (
|
|
module Main,
|
|
module Utils,
|
|
module Options,
|
|
module BalanceCommand,
|
|
module PrintCommand,
|
|
module RegisterCommand,
|
|
module UICommand,
|
|
)
|
|
where
|
|
import qualified Data.Map as Map (lookup)
|
|
import Ledger
|
|
import Utils
|
|
import Options
|
|
import BalanceCommand
|
|
import PrintCommand
|
|
import RegisterCommand
|
|
import UICommand
|
|
import Tests
|
|
|
|
|
|
main :: IO ()
|
|
main = do
|
|
(opts, cmd, args) <- parseArguments
|
|
run cmd opts args
|
|
where
|
|
run cmd opts args
|
|
| Help `elem` opts = putStr $ usage
|
|
| Version `elem` opts = putStr version
|
|
| cmd `isPrefixOf` "balance" = parseLedgerAndDo opts args balance
|
|
| cmd `isPrefixOf` "print" = parseLedgerAndDo opts args print'
|
|
| cmd `isPrefixOf` "register" = parseLedgerAndDo opts args register
|
|
| cmd `isPrefixOf` "ui" = parseLedgerAndDo opts args ui
|
|
| cmd `isPrefixOf` "test" = runtests opts args >> return ()
|
|
| otherwise = putStr $ usage
|
|
|
|
-- | 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.
|
|
parseLedgerAndDo :: [Opt] -> [String] -> ([Opt] -> [String] -> Ledger -> IO ()) -> IO ()
|
|
parseLedgerAndDo opts args cmd = do
|
|
day <- today
|
|
let span = dateSpanFromOpts day opts
|
|
let runcmd = cmd opts args . cacheLedger apats . filterRawLedger span dpats c r . canonicaliseAmounts costbasis
|
|
ledgerFilePathFromOpts opts >>= parseLedgerFile >>= either printParseError runcmd
|
|
where
|
|
(apats,dpats) = parseAccountDescriptionArgs opts args
|
|
c = Cleared `elem` opts
|
|
r = Real `elem` opts
|
|
costbasis = CostBasis `elem` opts
|
|
|