]> matita.cs.unibo.it Git - helm.git/commitdiff
- enable header to output graphs attributes and graph-wide node and edge
authorStefano Zacchiroli <zack@upsilon.cc>
Wed, 19 Jul 2006 17:29:44 +0000 (17:29 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Wed, 19 Jul 2006 17:29:44 +0000 (17:29 +0000)
  attributes
- quote nodes only when needed

components/extlib/graphvizPp.ml
components/extlib/graphvizPp.mli

index aa472f76982945843304c7e1a3e589d17f4350ed..4804699e0a7ef048dae9851641411e7e768be6e5 100644 (file)
@@ -29,7 +29,11 @@ type attribute = string * string  (* <key, value> pair *)
 
 module type GraphvizFormatter =
   sig
-    val header: ?name:string -> Format.formatter -> unit
+    val header:
+      ?name:string -> ?graph_attrs:(attribute list) ->
+      ?node_attrs:(attribute list) -> ?edge_attrs:(attribute list) ->
+      Format.formatter ->
+        unit
     val node: string -> ?attrs:(attribute list) -> Format.formatter -> unit
     val edge:
       string -> string -> ?attrs:(attribute list) -> Format.formatter ->
@@ -45,11 +49,24 @@ module Dot =
     let attribute fmt (k, v) = fprintf fmt "@[<hv2>%s=@,\"%s\",@]" k v
     let attributes attrs fmt = List.iter (attribute fmt) attrs
 
-    let header ?(name = "g") fmt = fprintf fmt "@[<hv2>digraph %s {@," name
-    let node name ?(attrs = []) fmt =
-      fprintf fmt "@[<hov2>\"%s\"@ [" name;
+    let node name ~quote ?(attrs = []) fmt =
+      let quote_string = if quote then "\"" else "" in
+      fprintf fmt "@[<hov2>%s%s%s@ [" quote_string name quote_string;
       attributes attrs fmt;
       fprintf fmt "];@]@,"
+
+    let header ?(name = "g") ?(graph_attrs = []) ?node_attrs ?edge_attrs fmt =
+      fprintf fmt "@[<hv2>strict digraph %s {@," name;
+      List.iter (fun (k, v) -> fprintf fmt "@[<hv2>%s=@,%s;@]@," k v)
+        graph_attrs;
+      (match node_attrs with
+      | Some attrs -> node "node" ~quote:false ~attrs fmt
+      | None -> ());
+      (match edge_attrs with
+      | Some attrs -> node "edge" ~quote:false ~attrs fmt
+      | None -> ())
+
+    let node = node ~quote:true
     let edge name1 name2 ?(attrs = []) fmt =
       fprintf fmt "@[<hov2>\"%s\" ->@ \"%s\"@ [" name1 name2;
       attributes attrs fmt;
index fa635a9719a9d18111a62cfd93b10443aa0e822b..a10831dca7f959d2454973bed2e097ac7d77ec2d 100644 (file)
@@ -31,7 +31,15 @@ type attribute = string * string  (* <key, value> pair *)
 
 module type GraphvizFormatter =
   sig
-    val header: ?name:string -> Format.formatter -> unit
+    (** @param name graph name
+     * @param graph_attrs graph attributes
+     * @param node_attrs graph-wide node attributes
+     * @param edge_attrs graph-wide edge attributes *)
+    val header:
+      ?name:string -> ?graph_attrs:(attribute list) ->
+      ?node_attrs:(attribute list) -> ?edge_attrs:(attribute list) ->
+      Format.formatter ->
+        unit
     val node: string -> ?attrs:(attribute list) -> Format.formatter -> unit
     val edge:
       string -> string -> ?attrs:(attribute list) -> Format.formatter ->