docs: Implement our own dot->pic translator.
authorBen Pfaff <blp@nicira.com>
Wed, 3 Nov 2010 17:01:38 +0000 (10:01 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 5 Nov 2010 17:20:02 +0000 (10:20 -0700)
Recent versions of Graphviz no longer support output to PIC format, so this
commit adds our own internal translator from dot's "plain" output format
to PIC format.  The "plain" format works best with slightly different
"dot" input (advised by the Graphviz manual description of the "plain"
format) so this commit also adjusts ovsdb-dot's output.

ovsdb/dot2pic [new file with mode: 0755]
ovsdb/ovsdb-dot.in
vswitchd/automake.mk

diff --git a/ovsdb/dot2pic b/ovsdb/dot2pic
new file mode 100755 (executable)
index 0000000..3e2f308
--- /dev/null
@@ -0,0 +1,63 @@
+#! /usr/bin/perl
+
+# Copyright (c) 2009, 2010 Nicira Networks
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+use strict;
+use warnings;
+
+my ($scale) = 1;
+print ".PS\n";
+print "linethick = 1;\n";
+while (<>) {
+    if (/graph (\S+) (\S+) (\S+)/) {
+        $scale = $1;
+    } elsif (my ($name, $x, $y, $width, $height, $label, $style, $shape, $color, $fillcolor) = /node (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+) (\S+)/) {
+        $x *= $scale;
+        $y *= $scale;
+        $width *= $scale;
+        $height *= $scale;
+        print "box at $x,$y wid $width height $height \"$name\"\n";
+    } elsif (/edge/) {
+        my (undef, $tail, $head, $n, $rest) = split(' ', $_, 5);
+        my @xy;
+        for (1...$n) {
+            my ($x, $y);
+            ($x, $y, $rest) = split(' ', $rest, 3);
+            push(@xy, [$x * $scale, $y * $scale]);
+        }
+        my ($label, $xl, $yl);
+        if (scalar(my @junk = split(' ', $rest)) > 2) {
+            if ($rest =~ s/^"([^"]*)"\s+//) {
+                $label = $1;
+            } else {
+                ($label, $rest) = split(' ', $rest, 2);
+            }
+            ($xl, $yl, $rest) = split(' ', $rest, 3);
+            $xl *= $scale;
+            $yl *= $scale;
+        }
+        my ($style, $color) = split(' ', $rest);
+
+        print "spline -> from $xy[0][0],$xy[0][1]";
+        for (my ($i) = 0; $i <= $#xy; $i++) {
+            print " to $xy[$i][0],$xy[$i][1]";
+        }
+        print "\n";
+
+        print "\"$label\" at $xl,$yl\n" if defined($label);
+    }
+
+}
+print ".PE\n";
index 4569f2efdd5bb8d1769ae837d25c327cdcaafca1..cea89879d3c9d34e2a7725152e7c51d93bced53d 100755 (executable)
@@ -29,6 +29,7 @@ def schemaToDot(schemaFile):
         print '\tsize="6.5,4";'
         print '\tmargin="0";'
         print "\tnode [shape=box];"
+        print "\tedge [dir=none, arrowhead=none, arrowtail=none];"
         print "\t%s;" % tableName
         for columnName, column in table.columns.iteritems():
             if column.type.value:
index 93c6f92eaf6dfe7ac1eb0d8a88b4fa7b7cc48152..6ef776349e233f59c63b916273ae849c80ff9d1b 100644 (file)
@@ -50,12 +50,11 @@ vswitchd/vswitch-idl.ovsidl: $(VSWITCH_IDL_FILES)
 
 # vswitch E-R diagram
 if BUILD_ER_DIAGRAMS
-$(srcdir)/vswitchd/vswitch.pic: ovsdb/ovsdb-dot.in vswitchd/vswitch.ovsschema
+$(srcdir)/vswitchd/vswitch.pic: ovsdb/ovsdb-dot.in ovsdb/dot2pic \
+                                vswitchd/vswitch.ovsschema
        $(OVSDB_DOT) $(srcdir)/vswitchd/vswitch.ovsschema \
-               | dot -T pic \
-               | sed -e "/^'/d" \
-                     -e '/^box attrs0/d' \
-                     -e 's/linethick = 0;/linethick = 1;/' \
+               | dot -T plain \
+               | $(srcdir)/ovsdb/dot2pic \
                > $@.tmp
        mv $@.tmp $@
 else