blob: 6e920f8c6017129681d2abe36a718418f38b03f6 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
-----------------------------------------------------------------------------
-- CmdLine.hs
-- (c) Simon Marlow 2005
-----------------------------------------------------------------------------
module CmdLine where
import System.Console.GetOpt
import System.Environment ( getArgs )
import System.IO.Unsafe ( unsafePerformIO )
-----------------------------------------------------------------------------
-- Command line arguments
args = unsafePerformIO getArgs
(flags, other_args, cmdline_errors) = getOpt Permute argInfo args
default_tooquick_threshold = 0.2 {- secs -} :: Float
tooquick_threshold
= case [ i | OptIgnoreSmallTimes i <- flags ] of
[] -> default_tooquick_threshold
(i:_) -> i
devs = OptDeviations `elem` flags
nodevs = OptNoDeviations `elem` flags
default_title = "NoFib Results"
reportTitle = case [ t | OptTitle t <- flags ] of
[] -> default_title
(t:_) -> t
data CLIFlags
= OptASCIIOutput
| OptLaTeXOutput
| OptHTMLOutput
| OptIgnoreSmallTimes Float
| OptDeviations
| OptNoDeviations
| OptTitle String
| OptColumns String
| OptRows String
| OptHelp
deriving Eq
argInfo :: [ OptDescr CLIFlags ]
argInfo =
[ Option ['?'] ["help"] (NoArg OptHelp)
"Display this message"
, Option ['a'] ["ascii"] (NoArg OptASCIIOutput)
"Produce ASCII output (default)"
, Option ['h'] ["html"] (NoArg OptHTMLOutput)
"Produce HTML output"
, Option ['i'] ["ignore"] (ReqArg (OptIgnoreSmallTimes . read) "secs")
"Ignore runtimes smaller than <secs>"
, Option ['d'] ["deviations"] (NoArg OptDeviations)
"Display deviations (default)"
, Option ['l'] ["latex"] (NoArg OptLaTeXOutput)
"Produce LaTeX output"
, Option [] ["columns"] (ReqArg OptColumns "COLUMNS")
"Specify columns for summary table (comma separates)"
, Option [] ["rows"] (ReqArg OptRows "ROWS")
"Specify rows for summary table (comma separates)"
, Option ['n'] ["nodeviations"] (NoArg OptNoDeviations)
"Hide deviations"
, Option ['t'] ["title"] (ReqArg OptTitle "title")
"Specify report title"
]
|