hledger/Ledger/Utils.hs

253 lines
7.4 KiB
Haskell
Raw Normal View History

{-|
2008-12-04 22:32:30 +03:00
This is the bottom of the module hierarchy. It provides a number of
standard modules and utilities which are useful everywhere (or, are needed
low in the hierarchy). The "hledger prelude".
-}
module Ledger.Utils (
module Char,
2008-10-10 15:52:15 +04:00
module Control.Monad,
module Data.List,
2008-10-10 06:19:53 +04:00
--module Data.Map,
module Data.Maybe,
2008-10-10 06:19:53 +04:00
module Data.Ord,
module Data.Tree,
2008-11-22 15:18:19 +03:00
module Data.Time.Clock,
module Data.Time.Calendar,
module Data.Time.LocalTime,
module Debug.Trace,
2008-10-10 06:19:53 +04:00
module Ledger.Utils,
module Text.Printf,
module Text.Regex,
module Test.HUnit,
)
where
2007-07-03 23:01:13 +04:00
import Char
2008-10-10 15:52:15 +04:00
import Control.Monad
2007-02-16 14:51:30 +03:00
import Data.List
2008-10-10 06:19:53 +04:00
--import qualified Data.Map as Map
import Data.Maybe
2008-10-10 06:19:53 +04:00
import Data.Ord
import Data.Tree
2008-11-22 15:18:19 +03:00
import Data.Time.Clock
import Data.Time.Calendar
import Data.Time.LocalTime
2008-10-10 06:19:53 +04:00
import Debug.Trace
import Test.HUnit
2008-10-10 06:19:53 +04:00
import Text.Printf
import Text.Regex
import Text.ParserCombinators.Parsec
2008-10-10 11:39:20 +04:00
2008-11-22 12:06:44 +03:00
-- strings
2008-11-27 09:32:31 +03:00
lowercase = map toLower
uppercase = map toUpper
2009-03-15 06:57:19 +03:00
strip = dropws . reverse . dropws . reverse where dropws = dropWhile (`elem` " \t")
2008-11-27 00:11:44 +03:00
2008-10-15 23:14:34 +04:00
elideLeft width s =
case length s > width of
True -> ".." ++ (reverse $ take (width - 2) $ reverse s)
False -> s
elideRight width s =
case length s > width of
True -> take (width - 2) s ++ ".."
False -> s
2008-11-22 12:06:44 +03:00
-- | Join multi-line strings as side-by-side rectangular strings of the same height, top-padded.
concatTopPadded :: [String] -> String
concatTopPadded strs = intercalate "\n" $ map concat $ transpose padded
where
lss = map lines strs
h = maximum $ map length lss
ypad ls = replicate (difforzero h (length ls)) "" ++ ls
xpad ls = map (padleft w) ls where w | null ls = 0
| otherwise = maximum $ map length ls
padded = map (xpad . ypad) lss
-- | Join multi-line strings as side-by-side rectangular strings of the same height, bottom-padded.
concatBottomPadded :: [String] -> String
concatBottomPadded strs = intercalate "\n" $ map concat $ transpose padded
where
lss = map lines strs
h = maximum $ map length lss
ypad ls = ls ++ replicate (difforzero h (length ls)) ""
xpad ls = map (padleft w) ls where w | null ls = 0
| otherwise = maximum $ map length ls
padded = map (xpad . ypad) lss
-- | Convert a multi-line string to a rectangular string top-padded to the specified height.
padtop :: Int -> String -> String
padtop h s = intercalate "\n" xpadded
where
ls = lines s
sh = length ls
sw | null ls = 0
| otherwise = maximum $ map length ls
ypadded = replicate (difforzero h sh) "" ++ ls
xpadded = map (padleft sw) ypadded
-- | Convert a multi-line string to a rectangular string bottom-padded to the specified height.
padbottom :: Int -> String -> String
padbottom h s = intercalate "\n" xpadded
where
ls = lines s
sh = length ls
sw | null ls = 0
| otherwise = maximum $ map length ls
ypadded = ls ++ replicate (difforzero h sh) ""
xpadded = map (padleft sw) ypadded
-- | Convert a multi-line string to a rectangular string left-padded to the specified width.
padleft :: Int -> String -> String
padleft w "" = concat $ replicate w " "
padleft w s = intercalate "\n" $ map (printf (printf "%%%ds" w)) $ lines s
-- | Convert a multi-line string to a rectangular string right-padded to the specified width.
padright :: Int -> String -> String
padright w "" = concat $ replicate w " "
padright w s = intercalate "\n" $ map (printf (printf "%%-%ds" w)) $ lines s
2008-12-06 10:15:19 +03:00
-- | Clip a multi-line string to the specified width and height from the top left.
cliptopleft :: Int -> Int -> String -> String
cliptopleft w h s = intercalate "\n" $ take h $ map (take w) $ lines s
-- | Clip and pad a multi-line string to fill the specified width and height.
fitto :: Int -> Int -> String -> String
fitto w h s = intercalate "\n" $ take h $ rows ++ repeat blankline
where
rows = map (fit w) $ lines s
fit w s = take w $ s ++ repeat ' '
blankline = replicate w ' '
2008-11-22 12:06:44 +03:00
-- math
difforzero :: (Num a, Ord a) => a -> a -> a
difforzero a b = maximum [(a - b), 0]
2008-10-09 11:08:36 +04:00
-- regexps
instance Show Regex where show r = "a Regex"
containsRegex :: Regex -> String -> Bool
containsRegex r s = case matchRegex r s of
Just _ -> True
otherwise -> False
2007-07-03 03:54:17 +04:00
-- lists
splitAtElement :: Eq a => a -> [a] -> [[a]]
splitAtElement e l =
case dropWhile (e==) l of
[] -> []
l' -> first : splitAtElement e rest
where
(first,rest) = break (e==) l'
2007-07-03 03:54:17 +04:00
-- trees
root = rootLabel
2008-10-10 15:52:15 +04:00
subs = subForest
branches = subForest
2008-12-04 22:32:42 +03:00
-- | List just the leaf nodes of a tree
leaves :: Tree a -> [a]
leaves (Node v []) = [v]
leaves (Node _ branches) = concatMap leaves branches
2008-10-11 08:18:26 +04:00
-- | get the sub-tree rooted at the first (left-most, depth-first) occurrence
-- of the specified node value
subtreeat :: Eq a => a -> Tree a -> Maybe (Tree a)
subtreeat v t
| root t == v = Just t
| otherwise = subtreeinforest v $ subs t
-- | get the sub-tree for the specified node value in the first tree in
-- forest in which it occurs.
subtreeinforest :: Eq a => a -> [Tree a] -> Maybe (Tree a)
subtreeinforest v [] = Nothing
subtreeinforest v (t:ts) = case (subtreeat v t) of
Just t' -> Just t'
Nothing -> subtreeinforest v ts
-- | remove all nodes past a certain depth
2007-03-11 02:05:30 +03:00
treeprune :: Int -> Tree a -> Tree a
treeprune 0 t = Node (root t) []
2007-07-02 20:43:14 +04:00
treeprune d t = Node (root t) (map (treeprune $ d-1) $ branches t)
2007-03-11 02:05:30 +03:00
2008-10-11 08:18:26 +04:00
-- | apply f to all tree nodes
treemap :: (a -> b) -> Tree a -> Tree b
treemap f t = Node (f $ root t) (map (treemap f) $ branches t)
2008-10-11 08:18:26 +04:00
-- | remove all subtrees whose nodes do not fulfill predicate
treefilter :: (a -> Bool) -> Tree a -> Tree a
treefilter f t = Node
(root t)
(map (treefilter f) $ filter (treeany f) $ branches t)
2008-10-11 08:18:26 +04:00
-- | is predicate true in any node of tree ?
treeany :: (a -> Bool) -> Tree a -> Bool
treeany f t = (f $ root t) || (any (treeany f) $ branches t)
-- treedrop -- remove the leaves which do fulfill predicate.
-- treedropall -- do this repeatedly.
2008-10-11 08:18:26 +04:00
-- | show a compact ascii representation of a tree
2008-10-09 16:59:05 +04:00
showtree :: Show a => Tree a -> String
2008-10-10 15:11:55 +04:00
showtree = unlines . filter (containsRegex (mkRegex "[^ |]")) . lines . drawTree . treemap show
2008-10-09 16:59:05 +04:00
2008-10-11 08:18:26 +04:00
-- | show a compact ascii representation of a forest
showforest :: Show a => Forest a -> String
showforest = concatMap showtree
2007-07-02 20:43:14 +04:00
-- debugging
2008-12-10 10:08:50 +03:00
-- | trace (print on stdout at runtime) a showable expression
-- (for easily tracing in the middle of a complex expression)
strace :: Show a => a -> a
2008-10-11 08:18:26 +04:00
strace a = trace (show a) a
2009-03-15 06:58:43 +03:00
-- | labelled trace - like strace, with a newline and a label prepended
ltrace :: Show a => String -> a -> a
2009-04-01 08:57:05 +04:00
ltrace l a = trace (l ++ ": " ++ show a) a
2008-10-11 08:18:26 +04:00
-- parsing
parsewith :: Parser a -> String -> Either ParseError a
2008-10-11 08:18:26 +04:00
parsewith p ts = parse p "" ts
fromparse :: Either ParseError a -> a
2008-12-10 10:08:50 +03:00
fromparse = either (\e -> error $ "parse error at "++(show e)) id
2008-10-11 08:18:26 +04:00
nonspace :: GenParser Char st Char
nonspace = satisfy (not . isSpace)
spacenonewline :: GenParser Char st Char
spacenonewline = satisfy (\c -> c `elem` " \v\f\t")
restofline :: GenParser Char st String
restofline = anyChar `manyTill` newline
2008-10-11 08:18:26 +04:00
2009-01-25 09:47:05 +03:00
-- time
getCurrentLocalTime :: IO LocalTime
getCurrentLocalTime = do
t <- getCurrentTime
tz <- getCurrentTimeZone
return $ utcToLocalTime tz t
isLeft :: Either a b -> Bool
isLeft (Left _) = True
isLeft _ = False
isRight :: Either a b -> Bool
isRight = not . isLeft