2001-09-12 20:51:11 +04:00
|
|
|
#! perl -w
|
|
|
|
|
2001-09-18 09:46:45 +04:00
|
|
|
# Usage:
|
|
|
|
# module-graph.pl [directory [ directory ..] ] > foo.dot
|
|
|
|
#
|
|
|
|
# Description:
|
|
|
|
# Outputs a Graphviz-compatible graph description file for use
|
|
|
|
# with the utilities dot, sccmap, and so forth.
|
|
|
|
#
|
|
|
|
# Reccomendations:
|
|
|
|
# View the graphs by creating graphs with dot:
|
|
|
|
# > dot -Tpng foo.dot -o foo.png
|
|
|
|
#
|
|
|
|
|
2001-09-12 20:51:11 +04:00
|
|
|
# Todo:
|
|
|
|
# - eliminate arcs implied by transitive dependancies
|
|
|
|
# (i.e. in a -> b -> c; a->c;, eliminate a->c;
|
2001-09-12 22:46:31 +04:00
|
|
|
# (discovered that "tred" will do this, but isn't super-helpful)
|
2001-09-12 20:51:11 +04:00
|
|
|
# - group together strongly-connected components, where strongly connected
|
|
|
|
# means there exists a cycle, and all dependancies off the cycle.
|
2001-09-18 09:46:45 +04:00
|
|
|
# in the graph "a -> b <-> c -> d", b and c are strongly connected, and
|
|
|
|
# they depend on d, so b, c, and d should be grouped together.
|
2001-09-12 20:51:11 +04:00
|
|
|
|
2001-09-12 22:46:31 +04:00
|
|
|
if ($^O eq "linux") {
|
|
|
|
$makecommand = "make";
|
|
|
|
} elsif ($^O eq "MSWin32") {
|
|
|
|
$makecommand = "nmake /nologo /f makefile.win";
|
|
|
|
}
|
|
|
|
|
2001-09-12 20:51:11 +04:00
|
|
|
use Cwd;
|
|
|
|
$curdir = getcwd();
|
|
|
|
if (!@ARGV) {
|
|
|
|
@dirs = (getcwd());
|
|
|
|
} else {
|
|
|
|
@dirs = @ARGV;
|
|
|
|
# XXX does them in reverse order..
|
|
|
|
foreach $arg (@ARGV) {
|
|
|
|
push @dirs, "$curdir/$arg";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MFILE:
|
|
|
|
while ($#dirs != -1) {
|
|
|
|
my ($current_dirs, $current_module, $current_requires);
|
|
|
|
# pop the curdir
|
|
|
|
$curdir = pop @dirs;
|
|
|
|
|
2001-09-18 09:46:45 +04:00
|
|
|
print STDERR "Entering $curdir.. \r";
|
2001-09-12 20:51:11 +04:00
|
|
|
chdir "$curdir";
|
|
|
|
$current_dirs = "";
|
2001-09-12 22:46:31 +04:00
|
|
|
open(MAKEOUT, "$makecommand echo-dirs echo-module echo-requires|") || die "Can't make: $!\n";
|
2001-09-12 20:51:11 +04:00
|
|
|
|
|
|
|
$current_dirs = <MAKEOUT>; $current_dirs && chop $current_dirs;
|
|
|
|
$current_module = <MAKEOUT>; $current_module && chop $current_module;
|
|
|
|
$current_requires = <MAKEOUT>; $current_requires && chop $current_requires;
|
|
|
|
close MAKEOUT;
|
|
|
|
|
|
|
|
if ($current_module) {
|
|
|
|
#
|
|
|
|
# now keep a list of all dependancies of the module
|
|
|
|
#
|
|
|
|
my @require_list = split(/\s+/,$current_requires);
|
|
|
|
foreach $req (@require_list) {
|
|
|
|
$deps{$current_module}{$req}++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
next if !$current_dirs;
|
|
|
|
|
|
|
|
# now push all child directories onto the list
|
|
|
|
@local_dirs = split(/\s+/,$current_dirs);
|
|
|
|
for (@local_dirs) {
|
2001-09-18 09:46:45 +04:00
|
|
|
push @dirs,"$curdir/$_" if $_;
|
2001-09-12 20:51:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
print "digraph G {\n";
|
|
|
|
print " concentrate=true;\n";
|
|
|
|
|
|
|
|
# figure out the internal nodes, and place them in a cluster
|
|
|
|
|
|
|
|
print " subgraph cluster0 {\n";
|
|
|
|
print " node [style=fill];\n";
|
|
|
|
print " color=blue;\n";
|
|
|
|
|
|
|
|
foreach $module (sort { scalar keys %{$deps{$b}} <=> scalar keys %{$deps{$a}} } keys %deps) {
|
|
|
|
print " $module;\n";
|
|
|
|
}
|
|
|
|
print " };\n";
|
|
|
|
|
|
|
|
# try to figure out "strongly connected components" by looking for cycles
|
|
|
|
# keep a list of all visited modules in %clustered
|
2001-09-12 20:52:26 +04:00
|
|
|
#foreach $module (keys %deps) {
|
|
|
|
# next if ($clustered{$module});
|
|
|
|
#
|
|
|
|
#}
|
2001-09-12 20:51:11 +04:00
|
|
|
|
|
|
|
foreach $module (sort { scalar keys %{$deps{$b}} <=> scalar keys %{$deps{$a}} } keys %deps) {
|
|
|
|
foreach $req ( sort { $deps{$module}{$b} <=> $deps{$module}{$a} }
|
|
|
|
keys %{ $deps{$module} } ) {
|
|
|
|
# print " $module -> $req [weight=$deps{$module}{$req}];\n";
|
|
|
|
print " $module -> $req;\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print "}";
|