summaryrefslogtreecommitdiff
path: root/src/GF/Conversion
diff options
context:
space:
mode:
authorpeb <unknown>2005-10-05 10:56:42 +0000
committerpeb <unknown>2005-10-05 10:56:42 +0000
commit1703bb826e314eb78c15f846af1e76784f7759e2 (patch)
treebd791d83e7a08c803799e3a6762326a1ce49f853 /src/GF/Conversion
parentfff9b01aa91cf8f2f2b78641d6234cda459370f1 (diff)
"Committed_by_peb"
Diffstat (limited to 'src/GF/Conversion')
-rw-r--r--src/GF/Conversion/TypeGraph.hs55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/GF/Conversion/TypeGraph.hs b/src/GF/Conversion/TypeGraph.hs
new file mode 100644
index 000000000..3a8d9f2d4
--- /dev/null
+++ b/src/GF/Conversion/TypeGraph.hs
@@ -0,0 +1,55 @@
+----------------------------------------------------------------------
+-- |
+-- Maintainer : PL
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date: 2005/10/05 11:56:42 $
+-- > CVS $Author: peb $
+-- > CVS $Revision: 1.1 $
+--
+-- Printing the type hierarchy of an abstract module in GraphViz format
+-----------------------------------------------------------------------------
+
+
+module GF.Conversion.TypeGraph (prtTypeGraph, prtFunctionGraph) where
+
+import GF.Formalism.GCFG
+import GF.Formalism.SimpleGFC
+import GF.Formalism.Utilities
+import GF.Conversion.Types
+
+import GF.Data.Operations ((++++), (+++++))
+import GF.Infra.Print
+
+----------------------------------------------------------------------
+-- | SimpleGFC to TypeGraph
+--
+-- assumes that the profiles in the Simple GFC names are trivial
+
+prtTypeGraph :: SGrammar -> String
+prtTypeGraph rules = "digraph TypeGraph {" ++++
+ "concentrate=true;" ++++
+ "node [shape=ellipse];" +++++
+ unlines (map prtTypeGraphRule rules) +++++
+ "}"
+
+prtTypeGraphRule :: SRule -> String
+prtTypeGraphRule (Rule (Abs cat cats (Name fun _prof)) _)
+ = unlines [ prtSCat c ++ " -> " ++ prtSCat cat ++ ";" | c <- cats ]
+
+prtFunctionGraph :: SGrammar -> String
+prtFunctionGraph rules = "digraph FunctionGraph {" ++++
+ "node [shape=ellipse];" +++++
+ unlines (map prtFunctionGraphRule rules) +++++
+ "}"
+
+prtFunctionGraphRule :: SRule -> String
+prtFunctionGraphRule (Rule (Abs cat cats (Name fun _prof)) _)
+ = prt fun ++ " [shape=box, style=dashed];" ++++
+ prt fun ++ " -> " ++ prtSCat cat ++ ";" ++++
+ unlines [ prtSCat c ++ " -> " ++ prt fun ++ ";" | c <- cats ]
+
+prtSCat (Decl var cat args) = prt cat
+
+