definition:
|
readAndPrintEvents :: (String -> IO ()) -> ViewConf -> IO ()
readAndPrintEvents outstr viewConf =
getDirectoryContents logDir >>= \files ->
mapM_ (\label -> readFile (logFile label) >>= \eventStr ->
printCatEvents outstr viewConf (label,readTrace eventStr))
(eventLabels files)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Read trace file and print it with parameter function:
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readAndPrintEvents
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(String -> Prelude.IO ()) -> ViewConf -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|