definition:
|
viewDot :: Maybe String -> Int -> DotGraph -> IO ()
viewDot withviewer num = view . showDotGraph
where
view dottxt = do
let outpdf = "ICURRYDOT" ++ (if num>0 then show num else "") ++ ".pdf"
dothdl <- connectToCommand $ "dot -Tpdf -o" ++ outpdf
hPutStr dothdl dottxt
hClose dothdl
maybe (return ())
(\c -> do
system $ unwords [c, outpdf, "2> /dev/null", "> /dev/null", "&"]
return ())
withviewer
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Views a dot graph as PDF.
--- If the first argument is `(Just c)`, the command `c`
--- (e.g., "evince" or "okular --noraise") to view the
--- generated PDF is started in background, otherwise the viewer is not invoked.
--- The second argument is the step number and used to index the output files
--- if it is positive.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {.._#lambda508}}
|
name:
|
viewDot
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
Prelude.Maybe String -> Prelude.Int -> Data.GraphViz.DotGraph -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|