{- | Module : Data.GraphViz.Commands Description : Functions to run Graphviz commands. Copyright : (c) Matthew Sackman, Ivan Lazar Miljenovic License : 3-Clause BSD-style Maintainer : Ivan.Miljenovic@gmail.com This module defines functions to call the various Graphviz commands. It is based upon code originally written for version 0.5 of /Graphalyze/: Whilst various output formats are supported (see 'GraphvizOutput' for a complete list), it is not yet possible to choose a desired renderer and formatter. Being able to determine which renderers and formatters are applicable for a specific 'GraphvizOutput' is not easy (there is no listing of available renderers or formatters on the Graphviz website), and for the most part the default ones do the job well. Please note that for 'GraphvizOutput' and 'GraphvizCanvas', you will see that they are instances of a @GraphvizResult@ class; this is an internal class that should not be visible outside this module, but Haddock is being too helpful for its own good. -} module Data.GraphViz.Commands ( -- * The different Graphviz tools available. GraphvizCommand(..) , dirCommand , undirCommand , commandFor -- * The possible outputs that Graphviz supports. -- $outputs , GraphvizOutput(..) , GraphvizCanvas(..) -- * Running Graphviz. , RunResult(..) , maybeErr , runGraphviz , runGraphvizCommand , addExtension , runGraphvizCanvas , runGraphvizCanvas' , graphvizWithHandle -- * Helper utilities. , hGetContents' ) where -- Want to use the extensible-exception version import Prelude hiding (catch) import Data.GraphViz.Types -- This is here just for Haddock linking purposes. import Data.GraphViz.Attributes(Attribute(Z)) import qualified Data.ByteString as B import System.IO( Handle, hClose, hPutStr , hGetContents, hSetBinaryMode) import System.Exit(ExitCode(ExitSuccess)) import System.Process(runInteractiveProcess, waitForProcess) import Control.Concurrent(MVar, forkIO, newEmptyMVar, putMVar, takeMVar) import Control.Exception.Extensible( SomeException(..), catch , bracket, evaluate, handle) import Control.Monad(liftM) import System.FilePath((<.>)) -- ----------------------------------------------------------------------------- -- | The available Graphviz commands. The following directions are -- based upon those in the Graphviz man page (available online at -- , or if installed on your -- system @man graphviz@). Note that any command can be used on -- both directed and undirected graphs. data GraphvizCommand = Dot -- ^ For hierachical graphs (ideal for -- directed graphs). | Neato -- ^ For symmetric layouts of graphs -- (ideal for undirected graphs). | TwoPi -- ^ For radial layout of graphs. | Circo -- ^ For circular layout of graphs. | Fdp -- ^ For symmetric layout of graphs. deriving (Eq, Ord, Show, Read) showCmd :: GraphvizCommand -> String showCmd Dot = "dot" showCmd Neato = "neato" showCmd TwoPi = "twopi" showCmd Circo = "circo" showCmd Fdp = "fdp" -- | The default command for directed graphs. dirCommand :: GraphvizCommand dirCommand = Dot -- | The default command for undirected graphs. undirCommand :: GraphvizCommand undirCommand = Neato -- | The appropriate (default) Graphviz command for the given graph. commandFor :: (DotRepr dg n) => dg n -> GraphvizCommand commandFor dg = if graphIsDirected dg then dirCommand else undirCommand -- ----------------------------------------------------------------------------- {- $outputs The list of output types supported by Graphviz is dependent upon how it is built on your system. To determine which actual formats are available on your system, run @dot -T?@. Trying to use an output type that is not supported by your installation of Graphviz will result in an error. The outputs defined here in 'GraphvizOutput' and 'GraphvizCanvas' are those from the default list of available outputs. For more information, see: -} -- | This class is for those data types that are valid options for the -- Graphviz tools to use with the @-T@ argument. class GraphvizResult o where outputCall :: o -> String isBinary :: o -> Bool -- | The possible Graphviz output formats (that is, those that -- actually produce a file). data GraphvizOutput = Bmp -- ^ Windows Bitmap Format. | Canon -- ^ Pretty-printed Dot output with no -- layout performed. | DotOutput -- ^ Reproduces the input along with -- layout information. | XDot -- ^ As with 'DotOutput', but provides -- even more information on how the -- graph is drawn. | Eps -- ^ Encapsulated PostScript. | Fig -- ^ FIG graphics language. | Gd -- ^ Internal GD library format. | Gd2 -- ^ Compressed version of 'Gd'. | Gif -- ^ Graphics Interchange Format. | Ico -- ^ Icon image file format. | Imap -- ^ Server-side imagemap. | Cmapx -- ^ Client-side imagemap. | ImapNP -- ^ As for 'Imap', except only -- rectangles are used as active -- areas. | CmapxNP -- ^ As for 'Cmapx', except only -- rectangles are used as active -- areas. | Jpeg -- ^ The JPEG image format. | Pdf -- ^ Portable Document Format. | Plain -- ^ Simple text format. | PlainExt -- ^ As for 'Plain', but provides port -- names on head and tail nodes when -- applicable. | Png -- ^ Portable Network Graphics format. | Ps -- ^ PostScript. | Ps2 -- ^ PostScript for PDF. | Svg -- ^ Scalable Vector Graphics format. | SvgZ -- ^ Compressed SVG format. | Tiff -- ^ Tagged Image File Format. | Vml -- ^ Vector Markup Language; 'Svg' is -- usually preferred. | VmlZ -- ^ Compressed VML format; 'SvgZ' is -- usually preferred. | Vrml -- ^ Virtual Reality Modeling Language -- format; requires nodes to have a -- 'Z' attribute. | WBmp -- ^ Wireless BitMap format; -- monochrome format usually used -- for mobile computing devices. deriving (Eq, Ord, Bounded, Enum, Show, Read) instance GraphvizResult GraphvizOutput where outputCall Bmp = "bmp" outputCall Canon = "canon" outputCall DotOutput = "dot" outputCall XDot = "xdot" outputCall Eps = "eps" outputCall Fig = "fig" outputCall Gd = "gd" outputCall Gd2 = "gd2" outputCall Gif = "gif" outputCall Ico = "ico" outputCall Imap = "imap" outputCall Cmapx = "cmapx" outputCall ImapNP = "imap_np" outputCall CmapxNP = "cmapx_np" outputCall Jpeg = "jpeg" outputCall Pdf = "pdf" outputCall Plain = "plain" outputCall PlainExt = "plain-ext" outputCall Png = "png" outputCall Ps = "ps" outputCall Ps2 = "ps2" outputCall Svg = "svg" outputCall SvgZ = "svgz" outputCall Tiff = "tiff" outputCall Vml = "vml" outputCall VmlZ = "vmlz" outputCall Vrml = "vrml" outputCall WBmp = "wbmp" -- These are the known text-based outputs. isBinary Canon = False isBinary DotOutput = False isBinary XDot = False isBinary Eps = False isBinary Fig = False isBinary Imap = False isBinary Cmapx = False isBinary ImapNP = False isBinary CmapxNP = False isBinary Plain = False isBinary PlainExt = False isBinary Ps = False isBinary Svg = False isBinary Vml = False isBinary Vrml = False isBinary _ = True -- | A default file extension for each 'GraphvizOutput'. defaultExtension :: GraphvizOutput -> String defaultExtension Bmp = "bmp" defaultExtension Canon = "dot" defaultExtension DotOutput = "dot" defaultExtension XDot = "dot" defaultExtension Eps = "eps" defaultExtension Fig = "fig" defaultExtension Gd = "gd" defaultExtension Gd2 = "gd2" defaultExtension Gif = "gif" defaultExtension Ico = "ico" defaultExtension Imap = "map" defaultExtension Cmapx = "map" defaultExtension ImapNP = "map" defaultExtension CmapxNP = "map" defaultExtension Jpeg = "jpg" defaultExtension Pdf = "pdf" defaultExtension Plain = "txt" defaultExtension PlainExt = "txt" defaultExtension Png = "png" defaultExtension Ps = "ps" defaultExtension Ps2 = "ps" defaultExtension Svg = "svg" defaultExtension SvgZ = "svgz" defaultExtension Tiff = "tif" defaultExtension Vml = "vml" defaultExtension VmlZ = "vmlz" defaultExtension Vrml = "vrml" defaultExtension WBmp = "wbmp" -- | Unlike 'GraphvizOutput', these items do not produce an output -- file; instead, they directly draw a canvas (i.e. a window) with -- the resulting image. data GraphvizCanvas = Gtk | Xlib deriving (Eq, Ord, Bounded, Enum, Read, Show) instance GraphvizResult GraphvizCanvas where outputCall Gtk = "gtk" outputCall Xlib = "xlib" -- Since there's no output, we arbitrarily choose binary mode. isBinary _ = True -- ----------------------------------------------------------------------------- -- | Represents the result of running a command. data RunResult = Error String | Success deriving (Eq, Ord, Read, Show) -- | Return the error if there is one, otherwise return Success. maybeErr :: Either String a -> RunResult maybeErr = either Error (const Success) -- | Run the recommended Graphviz command on this graph, saving the result -- to the file provided (note: file extensions are /not/ checked). runGraphviz :: (DotRepr dg n) => dg n -> GraphvizOutput -> FilePath -> IO (Either String FilePath) runGraphviz gr = runGraphvizCommand (commandFor gr) gr -- | Run the chosen Graphviz command on this graph, saving the result -- to the file provided (note: file extensions are /not/ checked). runGraphvizCommand :: (DotRepr dg n) => GraphvizCommand -> dg n -> GraphvizOutput -> FilePath -> IO (Either String FilePath) runGraphvizCommand cmd gr t fp = liftM (either (Left . addFl) (const $ Right fp)) $ graphvizWithHandle cmd gr t toFile where addFl = (++) ("Unable to create " ++ fp ++ "\n") toFile h = B.hGetContents h >>= B.writeFile fp -- | Append the default extension for the provided 'GraphvizOutput' to -- the provided 'FilePath' for the output file. addExtension :: (GraphvizOutput -> FilePath -> a) -> GraphvizOutput -> FilePath -> a addExtension cmd t fp = cmd t fp' where fp' = fp <.> defaultExtension t -- | Run the chosen Graphviz command on this graph, but send the -- result to the given handle rather than to a file. -- -- Note that the @'Handle' -> 'IO' a@ function /must/ fully consume -- the input from the 'Handle'; 'hGetContents'' is a version of -- 'hGetContents' that will ensure this happens. -- -- If the command was unsuccessful, then @'Left' error@ is returned. graphvizWithHandle :: (DotRepr dg n) => GraphvizCommand -- ^ Which command to run -> dg n -- ^ The 'DotRepr' to use -> GraphvizOutput -- ^ The 'GraphvizOutput' type -> (Handle -> IO a) -- ^ Extract the output -> IO (Either String a) -- ^ The error or the result. graphvizWithHandle = graphvizWithHandle' -- This version is not exported as we don't want to let arbitrary -- @Handle -> IO a@ functions to be used for GraphvizCanvas outputs. graphvizWithHandle' :: (DotRepr dg n, GraphvizResult o) => GraphvizCommand -> dg n -> o -> (Handle -> IO a) -> IO (Either String a) graphvizWithHandle' cmd gr t f = handle notRunnable $ bracket (runInteractiveProcess cmd' args Nothing Nothing) (\(inh,outh,errh,_) -> hClose inh >> hClose outh >> hClose errh) $ \(inp,outp,errp,prc) -> do -- The input and error are text, not binary hSetBinaryMode inp False hSetBinaryMode errp False hSetBinaryMode outp $ isBinary t -- Depends on output type -- Make sure we close the input or it will hang!!!!!!! forkIO $ hPutStr inp (printDotGraph gr) >> hClose inp -- Need to make sure both the output and error handles are -- really fully consumed. mvOutput <- newEmptyMVar mvErr <- newEmptyMVar forkIO $ signalWhenDone hGetContents' errp mvErr forkIO $ signalWhenDone f' outp mvOutput -- When these are both able to be taken, then the forks are finished err <- takeMVar mvErr output <- takeMVar mvOutput exitCode <- waitForProcess prc case exitCode of ExitSuccess -> return output _ -> return $ Left $ othErr ++ err where notRunnable e@SomeException{} = return . Left $ unwords [ "Unable to call the Graphviz command " , cmd' , " with the arguments: " , unwords args , " because of: " , show e ] cmd' = showCmd cmd args = ["-T" ++ outputCall t] -- Augmenting the f function to let it work within the forkIO: f' h = liftM Right (f h) `catch` (\e@SomeException{} -> return . Left $ fErr ++ show e) fErr = "Error re-directing the output from " ++ cmd' ++ ": " othErr = "Error messages from " ++ cmd' ++ ":\n" -- | Store the result of the 'Handle' consumption into the 'MVar'. signalWhenDone :: (Handle -> IO a) -> Handle -> MVar a -> IO () signalWhenDone f h mv = f h >>= putMVar mv >> return () -- | Run the chosen Graphviz command on this graph and render it using -- the given canvas type. runGraphvizCanvas :: (DotRepr dg n) => GraphvizCommand -> dg n -> GraphvizCanvas -> IO RunResult runGraphvizCanvas cmd gr c = liftM maybeErr $ graphvizWithHandle' cmd gr c nullHandle where nullHandle :: Handle -> IO () nullHandle = liftM (const ()) . hGetContents' -- | Run the recommended Graphviz command on this graph and render it -- using the given canvas type. runGraphvizCanvas' :: (DotRepr dg n) => dg n -> GraphvizCanvas -> IO RunResult runGraphvizCanvas' d = runGraphvizCanvas (commandFor d) d -- ----------------------------------------------------------------------------- -- Utility functions -- | A version of 'hGetContents' that fully evaluates the contents of -- the 'Handle' (that is, until EOF is reached). The 'Handle' is -- not closed. hGetContents' :: Handle -> IO String hGetContents' h = do r <- hGetContents h evaluate $ length r return r