2007-02-18 21:12:02 +03:00
|
|
|
module AccountName
|
|
|
|
where
|
|
|
|
import Utils
|
2007-07-02 18:54:36 +04:00
|
|
|
import Types
|
2007-02-18 21:12:02 +03:00
|
|
|
|
|
|
|
-- AccountNames are strings like "assets:cash:petty"; from these we build
|
|
|
|
-- the chart of accounts, which should be a simple hierarchy.
|
|
|
|
|
|
|
|
accountNameComponents :: AccountName -> [String]
|
|
|
|
accountNameComponents = splitAtElement ':'
|
|
|
|
|
|
|
|
accountNameFromComponents :: [String] -> AccountName
|
|
|
|
accountNameFromComponents = concat . intersperse ":"
|
|
|
|
|
|
|
|
accountLeafName :: AccountName -> String
|
2007-03-11 00:24:57 +03:00
|
|
|
accountLeafName = last . accountNameComponents
|
2007-02-18 21:12:02 +03:00
|
|
|
|
|
|
|
accountNameLevel :: AccountName -> Int
|
|
|
|
accountNameLevel = length . accountNameComponents
|
|
|
|
|
|
|
|
-- ["a:b:c","d:e"] -> ["a","a:b","a:b:c","d","d:e"]
|
|
|
|
expandAccountNames :: [AccountName] -> [AccountName]
|
|
|
|
expandAccountNames as = nub $ concat $ map expand as
|
|
|
|
where expand as = map accountNameFromComponents (tail $ inits $ accountNameComponents as)
|
|
|
|
|
|
|
|
-- ["a:b:c","d:e"] -> ["a","d"]
|
|
|
|
topAccountNames :: [AccountName] -> [AccountName]
|
|
|
|
topAccountNames as = [a | a <- expandAccountNames as, accountNameLevel a == 1]
|
|
|
|
|
2007-02-20 00:20:06 +03:00
|
|
|
parentAccountName :: AccountName -> AccountName
|
2007-03-11 00:24:57 +03:00
|
|
|
parentAccountName a = accountNameFromComponents $ init $ accountNameComponents a
|
2007-02-20 00:20:06 +03:00
|
|
|
|
|
|
|
parentAccountNames :: AccountName -> [AccountName]
|
|
|
|
parentAccountNames a = parentAccountNames' $ parentAccountName a
|
|
|
|
where
|
|
|
|
parentAccountNames' "" = []
|
|
|
|
parentAccountNames' a = [a] ++ (parentAccountNames' $ parentAccountName a)
|
2007-02-18 21:12:02 +03:00
|
|
|
|
|
|
|
s `isSubAccountNameOf` p =
|
|
|
|
((p ++ ":") `isPrefixOf` s) && (accountNameLevel s == (accountNameLevel p + 1))
|
|
|
|
|
|
|
|
subAccountNamesFrom :: [AccountName] -> AccountName -> [AccountName]
|
|
|
|
subAccountNamesFrom accts a = filter (`isSubAccountNameOf` a) accts
|
|
|
|
|
|
|
|
matchAccountName :: String -> AccountName -> Bool
|
|
|
|
matchAccountName s a =
|
|
|
|
case matchRegex (mkRegex s) a of
|
|
|
|
Nothing -> False
|
|
|
|
otherwise -> True
|
|
|
|
|
2007-02-20 00:20:06 +03:00
|
|
|
indentAccountName :: Int -> AccountName -> String
|
|
|
|
indentAccountName indentcorrection a =
|
|
|
|
replicate (indentlevel * 2) ' ' ++ (accountLeafName a)
|
|
|
|
where indentlevel = ((accountNameLevel a) - 1) + indentcorrection
|
2007-02-18 21:12:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
-- We could almost get by with just the above, but we need smarter
|
|
|
|
-- structures to eg display the account tree with boring accounts elided.
|
|
|
|
-- first, here is a tree of AccountNames; Account and Account tree are
|
|
|
|
-- defined later.
|
|
|
|
|
|
|
|
accountNameTreeFrom_props =
|
|
|
|
[
|
2007-03-10 06:16:19 +03:00
|
|
|
accountNameTreeFrom ["a"] == Node "top" [Node "a" []],
|
|
|
|
accountNameTreeFrom ["a","b"] == Node "top" [Node "a" [], Node "b" []],
|
|
|
|
accountNameTreeFrom ["a","a:b"] == Node "top" [Node "a" [Node "a:b" []]],
|
|
|
|
accountNameTreeFrom ["a:b"] == Node "top" [Node "a" [Node "a:b" []]]
|
2007-02-18 21:12:02 +03:00
|
|
|
]
|
|
|
|
accountNameTreeFrom :: [AccountName] -> Tree AccountName
|
|
|
|
accountNameTreeFrom accts =
|
2007-03-10 06:16:19 +03:00
|
|
|
Node "top" (accountsFrom (topAccountNames accts))
|
2007-02-18 21:12:02 +03:00
|
|
|
where
|
|
|
|
accountsFrom :: [AccountName] -> [Tree AccountName]
|
|
|
|
accountsFrom [] = []
|
2007-03-10 06:16:19 +03:00
|
|
|
accountsFrom as = [Node a (accountsFrom $ subs a) | a <- as]
|
2007-02-18 21:12:02 +03:00
|
|
|
subs = (subAccountNamesFrom accts)
|
|
|
|
|
2007-03-11 02:05:30 +03:00
|
|
|
filterAccountNameTree :: [String] -> Bool -> Int -> Tree AccountName -> Tree AccountName
|
|
|
|
filterAccountNameTree pats keepsubs maxdepth =
|
|
|
|
treefilter (\a -> matchpats a || (keepsubs && issubofmatch a)) .
|
|
|
|
treeprune maxdepth
|
2007-03-11 01:03:48 +03:00
|
|
|
where
|
2007-03-11 01:29:09 +03:00
|
|
|
matchpats a = any (match a) pats
|
2007-03-11 01:03:48 +03:00
|
|
|
match a pat = matchAccountName pat $ accountLeafName a
|
2007-03-11 01:29:09 +03:00
|
|
|
issubofmatch a = any matchpats $ parentAccountNames a
|
2007-02-18 21:12:02 +03:00
|
|
|
|