2008-10-10 05:53:39 +04:00
|
|
|
module Options
|
2007-02-10 20:36:50 +03:00
|
|
|
where
|
2008-10-08 21:00:22 +04:00
|
|
|
import System
|
2007-01-30 12:07:12 +03:00
|
|
|
import System.Console.GetOpt
|
2007-03-12 10:40:33 +03:00
|
|
|
import System.Directory
|
2008-11-24 01:15:51 +03:00
|
|
|
import Text.Printf
|
2008-11-22 08:48:56 +03:00
|
|
|
import Ledger.AccountName (negativepatternchar)
|
2008-11-22 15:37:55 +03:00
|
|
|
import Ledger.Parse (smartparsedate)
|
|
|
|
import Ledger.Dates
|
2007-02-16 14:51:30 +03:00
|
|
|
|
2008-10-15 21:34:55 +04:00
|
|
|
usagehdr = "Usage: hledger [OPTS] balance|print|register [ACCTPATS] [-- DESCPATS]\n\nOptions"++warning++":"
|
|
|
|
warning = if negativepatternchar=='-' then " (must appear before command)" else " (can appear anywhere)"
|
2008-10-17 05:29:53 +04:00
|
|
|
usageftr = "\n" ++
|
|
|
|
"Commands (may be abbreviated):\n" ++
|
|
|
|
"balance - show account balances\n" ++
|
|
|
|
"print - show parsed and reformatted ledger entries\n" ++
|
|
|
|
"register - show register transactions\n" ++
|
|
|
|
"\n" ++
|
|
|
|
"Account and description patterns are regular expressions, optionally prefixed\n" ++
|
|
|
|
"with " ++ [negativepatternchar] ++ " to make them negative.\n"
|
2008-10-08 21:00:22 +04:00
|
|
|
defaultfile = "~/.ledger"
|
|
|
|
fileenvvar = "LEDGER"
|
2008-10-15 21:06:40 +04:00
|
|
|
optionorder = if negativepatternchar=='-' then RequireOrder else Permute
|
2007-02-16 12:00:17 +03:00
|
|
|
|
2008-10-08 21:24:59 +04:00
|
|
|
-- | Command-line options we accept.
|
|
|
|
options :: [OptDescr Opt]
|
|
|
|
options = [
|
|
|
|
Option ['f'] ["file"] (ReqArg File "FILE") "ledger file; - means use standard input",
|
2008-10-15 21:34:55 +04:00
|
|
|
Option ['b'] ["begin"] (ReqArg Begin "YYYY/MM/DD") "report on entries on or after this date",
|
|
|
|
Option ['e'] ["end"] (ReqArg End "YYYY/MM/DD") "report on entries prior to this date",
|
2008-10-16 13:50:16 +04:00
|
|
|
Option ['C'] ["cleared"] (NoArg Cleared) "report only on cleared entries",
|
2008-11-22 16:11:54 +03:00
|
|
|
Option [] ["depth"] (ReqArg Depth "N") "balance report: maximum account depth to show",
|
2008-11-22 12:39:58 +03:00
|
|
|
Option ['E'] ["empty"] (NoArg Empty) "balance report: show accounts with zero balance",
|
2008-10-16 13:50:16 +04:00
|
|
|
Option ['R'] ["real"] (NoArg Real) "report only on real (non-virtual) transactions",
|
2008-11-22 12:46:57 +03:00
|
|
|
Option ['n'] ["collapse"] (NoArg Collapse) "balance report: no grand total",
|
2008-11-22 12:40:22 +03:00
|
|
|
Option ['s'] ["subtotal"] (NoArg SubTotal) "balance report: show subaccounts",
|
2008-10-10 05:36:21 +04:00
|
|
|
Option ['h'] ["help","usage"] (NoArg Help) "show this help",
|
|
|
|
Option ['V'] ["version"] (NoArg Version) "show version"
|
2008-10-08 21:24:59 +04:00
|
|
|
]
|
2007-02-09 04:23:12 +03:00
|
|
|
|
2008-10-08 21:24:59 +04:00
|
|
|
-- | An option value from a command-line flag.
|
|
|
|
data Opt =
|
2007-03-12 10:40:33 +03:00
|
|
|
File String |
|
2008-10-08 21:00:22 +04:00
|
|
|
Begin String |
|
|
|
|
End String |
|
2008-10-16 13:04:44 +04:00
|
|
|
Cleared |
|
2008-11-22 16:11:54 +03:00
|
|
|
Depth String |
|
2008-11-22 12:39:58 +03:00
|
|
|
Empty |
|
2008-10-16 13:50:16 +04:00
|
|
|
Real |
|
2008-11-22 12:46:57 +03:00
|
|
|
Collapse |
|
2008-10-17 20:58:09 +04:00
|
|
|
SubTotal |
|
2007-05-01 09:55:35 +04:00
|
|
|
Help |
|
2007-03-12 10:40:33 +03:00
|
|
|
Version
|
|
|
|
deriving (Show,Eq)
|
2007-02-16 15:24:13 +03:00
|
|
|
|
2008-10-15 21:34:55 +04:00
|
|
|
usage = usageInfo usagehdr options ++ usageftr
|
2007-02-18 21:12:02 +03:00
|
|
|
|
2008-11-24 01:15:51 +03:00
|
|
|
versionno = "0.2"
|
|
|
|
version = printf "hledger version %s \n" versionno :: String
|
2008-10-10 05:36:21 +04:00
|
|
|
|
2008-10-08 21:00:22 +04:00
|
|
|
-- | Parse the command-line arguments into ledger options, ledger command
|
|
|
|
-- name, and ledger command arguments
|
2008-10-08 21:24:59 +04:00
|
|
|
parseArguments :: IO ([Opt], String, [String])
|
2008-10-08 21:00:22 +04:00
|
|
|
parseArguments = do
|
|
|
|
args <- getArgs
|
2008-10-15 21:06:40 +04:00
|
|
|
case (getOpt optionorder options args) of
|
2008-10-08 21:00:22 +04:00
|
|
|
(opts,cmd:args,[]) -> return (opts, cmd, args)
|
2008-10-16 01:47:56 +04:00
|
|
|
(opts,[],[]) -> return (opts, [], [])
|
2008-10-08 21:00:22 +04:00
|
|
|
(_,_,errs) -> ioError (userError (concat errs ++ usage))
|
2007-07-03 21:25:16 +04:00
|
|
|
|
2008-10-08 21:00:22 +04:00
|
|
|
-- | Get the ledger file path from options, an environment variable, or a default
|
2008-10-08 21:24:59 +04:00
|
|
|
ledgerFilePathFromOpts :: [Opt] -> IO String
|
2008-10-08 21:00:22 +04:00
|
|
|
ledgerFilePathFromOpts opts = do
|
|
|
|
envordefault <- getEnv fileenvvar `catch` \_ -> return defaultfile
|
2007-03-12 10:40:33 +03:00
|
|
|
paths <- mapM tildeExpand $ [envordefault] ++ (concatMap getfile opts)
|
|
|
|
return $ last paths
|
|
|
|
where
|
|
|
|
getfile (File s) = [s]
|
|
|
|
getfile _ = []
|
2007-02-18 21:12:02 +03:00
|
|
|
|
2008-10-08 21:00:22 +04:00
|
|
|
-- | Expand ~ in a file path (does not handle ~name).
|
|
|
|
tildeExpand :: FilePath -> IO FilePath
|
|
|
|
tildeExpand ('~':[]) = getHomeDirectory
|
|
|
|
tildeExpand ('~':'/':xs) = getHomeDirectory >>= return . (++ ('/':xs))
|
|
|
|
--handle ~name, requires -fvia-C or ghc 6.8:
|
|
|
|
--import System.Posix.User
|
|
|
|
-- tildeExpand ('~':xs) = do let (user, path) = span (/= '/') xs
|
|
|
|
-- pw <- getUserEntryForName user
|
|
|
|
-- return (homeDirectory pw ++ path)
|
2007-03-12 10:40:33 +03:00
|
|
|
tildeExpand xs = return xs
|
2008-10-08 21:00:22 +04:00
|
|
|
|
2008-11-22 15:37:55 +03:00
|
|
|
-- | Get the value of the begin date option, if any.
|
|
|
|
beginDateFromOpts :: [Opt] -> Maybe Date
|
2008-10-08 21:00:22 +04:00
|
|
|
beginDateFromOpts opts =
|
|
|
|
case beginopts of
|
2008-11-22 15:37:55 +03:00
|
|
|
(x:_) -> Just $ smartparsedate $ last beginopts
|
|
|
|
_ -> Nothing
|
2008-10-08 21:00:22 +04:00
|
|
|
where
|
|
|
|
beginopts = concatMap getbegindate opts
|
|
|
|
getbegindate (Begin s) = [s]
|
|
|
|
getbegindate _ = []
|
|
|
|
defaultdate = ""
|
|
|
|
|
2008-11-22 15:37:55 +03:00
|
|
|
-- | Get the value of the end date option, if any.
|
|
|
|
endDateFromOpts :: [Opt] -> Maybe Date
|
2008-10-08 21:00:22 +04:00
|
|
|
endDateFromOpts opts =
|
|
|
|
case endopts of
|
2008-11-22 15:37:55 +03:00
|
|
|
(x:_) -> Just $ smartparsedate $ last endopts
|
|
|
|
_ -> Nothing
|
2008-10-08 21:00:22 +04:00
|
|
|
where
|
|
|
|
endopts = concatMap getenddate opts
|
|
|
|
getenddate (End s) = [s]
|
|
|
|
getenddate _ = []
|
|
|
|
defaultdate = ""
|
2007-03-12 10:40:33 +03:00
|
|
|
|
2008-11-22 16:11:54 +03:00
|
|
|
-- | Get the value of the depth option, if any.
|
|
|
|
depthFromOpts :: [Opt] -> Maybe Int
|
|
|
|
depthFromOpts opts =
|
|
|
|
case depthopts of
|
|
|
|
(x:_) -> Just $ read x
|
|
|
|
_ -> Nothing
|
|
|
|
where
|
|
|
|
depthopts = concatMap getdepth opts
|
|
|
|
getdepth (Depth s) = [s]
|
|
|
|
getdepth _ = []
|
|
|
|
|
2008-10-08 22:02:34 +04:00
|
|
|
-- | Gather any ledger-style account/description pattern arguments into
|
|
|
|
-- two lists. These are 0 or more account patterns optionally followed by
|
2008-10-08 23:36:22 +04:00
|
|
|
-- -- and 0 or more description patterns.
|
2008-10-08 22:02:34 +04:00
|
|
|
parseAccountDescriptionArgs :: [String] -> ([String],[String])
|
|
|
|
parseAccountDescriptionArgs args = (as, ds')
|
2007-07-11 10:58:47 +04:00
|
|
|
where (as, ds) = break (=="--") args
|
|
|
|
ds' = dropWhile (=="--") ds
|
2007-07-11 09:46:20 +04:00
|
|
|
|
2008-10-08 21:00:22 +04:00
|
|
|
-- testoptions RequireOrder ["foo","-v"]
|
|
|
|
-- testoptions Permute ["foo","-v"]
|
|
|
|
-- testoptions (ReturnInOrder Arg) ["foo","-v"]
|
|
|
|
-- testoptions Permute ["foo","--","-v"]
|
|
|
|
-- testoptions Permute ["-?o","--name","bar","--na=baz"]
|
|
|
|
-- testoptions Permute ["--ver","foo"]
|
|
|
|
testoptions order cmdline = putStr $
|
|
|
|
case getOpt order options cmdline of
|
|
|
|
(o,n,[] ) -> "options=" ++ show o ++ " args=" ++ show n
|
|
|
|
(_,_,errs) -> concat errs ++ usage
|
|
|
|
|