git-annex/Dot.hs

67 lines
1.8 KiB
Haskell
Raw Normal View History

2011-02-04 02:44:17 +00:00
{- a simple graphviz / dot(1) digraph description generator library
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Dot where -- import qualified
{- generates a graph description from a list of lines -}
graph :: [String] -> String
2011-02-04 04:36:36 +00:00
graph s = unlines $ [header] ++ map indent s ++ [footer]
2011-02-04 02:44:17 +00:00
where
header = "digraph map {"
footer= "}"
{- a node in the graph -}
graphNode :: String -> String -> String
2011-02-04 04:06:23 +00:00
graphNode nodeid desc = label desc $ quote nodeid
2011-02-04 02:44:17 +00:00
{- an edge between two nodes -}
graphEdge :: String -> String -> Maybe String -> String
2011-02-04 04:36:36 +00:00
graphEdge fromid toid desc = indent $
2011-02-04 04:06:23 +00:00
case desc of
Nothing -> edge
Just d -> label d edge
2011-02-04 02:44:17 +00:00
where
edge = quote fromid ++ " -> " ++ quote toid
2011-02-04 04:06:23 +00:00
{- adds a label to a node or edge -}
label :: String -> String -> String
label l s = attr "label" l s
2011-02-04 02:44:17 +00:00
2011-02-04 04:06:23 +00:00
{- adds an attribute to a node or edge
- (can be called multiple times for multiple attributes) -}
attr :: String -> String -> String -> String
attr a v s = s ++ " [ " ++ a ++ "=" ++ quote v ++ " ]"
2011-02-04 02:44:17 +00:00
2011-02-04 04:06:23 +00:00
{- fills a node with a color -}
fillColor :: String -> String -> String
fillColor color s = attr "fillcolor" color $ attr "style" "filled" $ s
2011-02-04 02:44:17 +00:00
{- apply to graphNode to put the node in a labeled box -}
2011-02-08 22:17:46 +00:00
subGraph :: String -> String -> String -> String -> String
subGraph subid l color s =
"subgraph " ++ name ++ " {\n" ++
ii setlabel ++
2011-02-08 22:26:38 +00:00
ii setfilled ++
2011-02-08 22:17:46 +00:00
ii setcolor ++
ii s ++
indent "}"
2011-02-04 02:44:17 +00:00
where
-- the "cluster_" makes dot draw a box
name = quote ("cluster_" ++ subid)
2011-02-04 04:36:36 +00:00
setlabel = "label=" ++ quote l
2011-02-08 22:26:38 +00:00
setfilled = "style=" ++ quote "filled"
2011-02-08 22:17:46 +00:00
setcolor = "fillcolor=" ++ quote color
2011-02-04 04:36:36 +00:00
ii x = (indent $ indent x) ++ "\n"
2011-02-04 04:06:23 +00:00
2011-02-04 04:36:36 +00:00
indent ::String -> String
indent s = "\t" ++ s
2011-02-04 04:06:23 +00:00
quote :: String -> String
quote s = "\"" ++ s' ++ "\""
where
s' = filter (/= '"') s