blob: 58298c12ddfadfd0ce8e12a3763226ba958f550f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
module Utils where
import System.Exit
import System.IO
import Text.Regex.Posix
die :: Errors -> IO a
die errs = do mapM_ (hPutStrLn stderr) errs
exitFailure
dieOnErrors :: Either Errors a -> IO a
dieOnErrors (Left errs) = die errs
dieOnErrors (Right x) = return x
type Errors = [String]
maybeRead :: Read a => String -> Maybe a
maybeRead str = case reads str of
[(x, "")] -> Just x
_ -> Nothing
re :: String -> String -> Maybe [String]
re r str = case matchM r' str :: Maybe (String, String, String, [String]) of
Just (_, _, _, ms) -> Just ms
Nothing -> Nothing
where r' = makeRegex r :: Regex
|