-
Notifications
You must be signed in to change notification settings - Fork 33
/
GhcEvents.hs
252 lines (212 loc) · 10 KB
/
GhcEvents.hs
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
module Main where
import GHC.RTS.Events
import GHC.RTS.Events.Incremental
import GHC.RTS.Events.Merge
import GHC.RTS.Events.Analysis
import GHC.RTS.Events.Analysis.SparkThread
import GHC.RTS.Events.Analysis.Thread
import GHC.RTS.Events.Analysis.Capability
import qualified Data.ByteString.Lazy as BL
import System.Environment (getArgs)
import Data.Either (rights)
import qualified Data.Map as M
import Data.Version (showVersion)
import qualified Paths_ghc_events as P
import System.IO
import System.Exit
main :: IO ()
main = getArgs >>= command
command :: [String] -> IO ()
command ["--version"] = putStrLn $ "ghc-events version: " ++ showVersion P.version
command ["--help"] = putStr usage
command ["inc", file] = printEventsIncremental False file
command ["inc", "force", file] = printEventsIncremental True file
command ["show", "--pretty-time", file] = do
evtLog <- readLogOrDie file
putStrLn $ ppEventLog PrettyTime evtLog
command ["show", file] = do
evtLog <- readLogOrDie file
putStrLn $ ppEventLog RawTime evtLog
command ["show", "threads", file] = do
eventLog <- readLogOrDie file
let eventTypeMap = buildEventTypeMap . eventTypes . header $ eventLog
evts = sortEvents $ events $ dat eventLog
mappings = rights . validates capabilityThreadRunMachine $ evts
indexes = zipWith capabilityThreadIndexer mappings evts
threadMap = M.fromListWith (++) . reverse $ zip indexes (map return evts)
putStrLn "Event Types:"
putStrLn . unlines . map ppEventType . eventTypes . header $ eventLog
putStrLn "Thread Indexed Events:"
putStrLn . showMap
((++ "\n") . show)
(unlines . map ((" " ++) . ppEvent RawTime eventTypeMap)) $
threadMap
command ["show", "caps", file] = do
eventLog <- readLogOrDie file
let eventTypeMap = buildEventTypeMap . eventTypes . header $ eventLog
let evts = sortEvents . events . dat $ eventLog
indexes = map evCap evts
capMap = M.fromListWith (++) . reverse $ zip indexes (map return evts)
putStrLn "Event Types:"
putStrLn . unlines . map ppEventType . eventTypes . header $ eventLog
putStrLn "Cap Indexed Events:"
putStrLn . showMap
((++ "\n") . show)
(unlines . map ((" " ++) . ppEvent RawTime eventTypeMap)) $
capMap
command ["merge", out, file1, file2] = do
log1 <- readLogOrDie file1
log2 <- readLogOrDie file2
let m = mergeEventLogs log1 log2
writeEventLogToFile out m
command ["validate", "threads", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = validate (routeM capabilityThreadRunMachine
capabilityThreadIndexer
(refineM evSpec threadMachine))
evts
putStrLn $ showValidate (\(m, n) ->
"\nThread States:\n" ++ showIndexed show show m ++
"\nCap States:\n" ++ showIndexed show show n)
show result
command ["validate", "threadpool", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = validate capabilityThreadPoolMachine evts
putStrLn $ showValidate show show result
command ["validate", "threadrun", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = validate capabilityThreadRunMachine evts
putStrLn $ showValidate show show result
command ["validate", "taskpool", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = validate capabilityTaskPoolMachine evts
putStrLn $ showValidate show show result
command ["validate", "tasks", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = validate capabilityTaskOSMachine evts
putStrLn $ showValidate show show result
command ["validate", "sparks", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = validate
(routeM capabilitySparkThreadMachine capabilitySparkThreadIndexer
(refineM evSpec sparkThreadMachine))
evts
putStrLn $ showValidate show show result
command ["simulate", "threads", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = simulate (routeM capabilityThreadRunMachine
capabilityThreadIndexer
(refineM evSpec threadMachine))
evts
putStrLn . showProcess $ result
command ["simulate", "threadpool", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = simulate capabilityThreadPoolMachine evts
putStrLn . showProcess $ result
command ["simulate", "threadrun", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = simulate capabilityThreadRunMachine evts
putStrLn . showProcess $ result
command ["simulate", "taskpool", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = simulate capabilityTaskPoolMachine evts
putStrLn . showProcess $ result
command ["simulate", "tasks", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = simulate capabilityTaskOSMachine evts
putStrLn . showProcess $ result
command ["simulate", "sparks", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = simulate
(routeM capabilitySparkThreadMachine
capabilitySparkThreadIndexer
(refineM evSpec sparkThreadMachine)) evts
putStrLn . showProcess $ result
command ["profile", "threads", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = profileRouted
(refineM evSpec threadMachine)
capabilityThreadRunMachine
capabilityThreadIndexer evTime evts
putStrLn . showProcess $ result
command ["profile", "sparks", file] = do
eventLog <- readLogOrDie file
let evts = sortEvents . events . dat $ eventLog
let result = profileRouted
(refineM evSpec sparkThreadMachine)
capabilitySparkThreadMachine
capabilitySparkThreadIndexer
evTime evts
putStrLn . showProcess $ result
command _ = putStr usage >> die "Unrecognized command"
readLogOrDie :: FilePath -> IO EventLog
readLogOrDie file = do
res <- readEventLogOrFail <$> BL.readFile file
case res of
Left err -> die $ "Failed to parse " ++ file ++ ": " ++ err
Right eventlog -> return eventlog
usage :: String
usage = unlines $ map pad strings
where
align = 4 + (maximum . map (length . fst) $ strings)
pad (x, y) = zipWith const (x ++ repeat ' ') (replicate align ()) ++ y
strings = [ ("ghc-events --help:", "Display this help.")
, ("ghc-events --version", "Print the version of ghc-events.")
, ("ghc-events inc <file>:", "Pretty print an event log incrementally")
, ("ghc-events inc force <file>:", "Pretty print an event log incrementally. Retry on incomplete input (aka 'tail -f').")
, ("ghc-events show <file>:", "Pretty print an event log.")
, ("ghc-events show threads <file>:", "Pretty print an event log, ordered by threads.")
, ("ghc-events show caps <file>:", "Pretty print an event log, ordered by capabilities.")
, ("ghc-events merge <out> <in1> <in2>:", "Merge two event logs.")
, ("ghc-events sparks-csv <file>:", "Print spark information in CSV.")
, ("ghc-events validate threads <file>:", "Validate thread states.")
, ("ghc-events validate threadpool <file>:", "Validate thread pool state.")
, ("ghc-events validate threadrun <file>:", "Validate thread running state.")
, ("ghc-events validate tasks <file>:", "Validate task states.")
, ("ghc-events validate sparks <file>:", "Validate spark thread states.")
, ("ghc-events simulate threads <file>:", "Simulate thread states.")
, ("ghc-events simulate threadpool <file>:", "Simulate thread pool state.")
, ("ghc-events simulate threadrun <file>:", "Simulate thread running state.")
, ("ghc-events simulate tasks <file>:", "Simulate task states.")
, ("ghc-events simulate sparks <file>:", "Simulate spark thread states.")
, ("ghc-events profile threads <file>:", "Profile thread states.")
, ("ghc-events profile sparks <file>:", "Profile spark thread states.")
]
showValidate :: (s -> String) -> (i -> String) -> Either (s, i) s -> String
showValidate showState showInput (Left (state, input)) =
"Invalid event log:"
++ "\nState:\n" ++ showState state
++ "\nInput:\n" ++ showInput input
showValidate showState _ (Right state) =
"Valid event log: " ++ showState state
showProcess :: (Show e, Show a) => Process e a -> String
showProcess process =
"Trace:\n"
++ (unlines . map show . toList) process
++ "\n"
++ (maybe "Valid." (("Invalid:\n" ++) . show) . toMaybe) process
showIndexed :: (k -> String) -> (v -> String) -> M.Map k v -> String
showIndexed showKey showValue m
| M.null m = "Empty map\n"
| otherwise = "Indexed output:\n" ++
concatMap (\(k, v) -> "Key: " ++ showKey k ++ ", Value: "
++ showValue v ++ "\n")
(M.toList m)
showMap :: Ord k => (k -> String) -> (a -> String) -> M.Map k a -> String
showMap showKey showValue m =
concat $ zipWith (++)
(map showKey . M.keys $ m :: [String])
(map (showValue . (M.!) m) . M.keys $ m :: [String])