summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2014-04-13 22:42:39 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-04-14 20:56:20 +0200
commit12c5e68ea803a0ea05afab55e2f81d02a812b130 (patch)
tree5cfb85c368ff898807145379caa5a19bcdac2711 /support
parent3d37950ec171944aacf3e6fd4ec2a349181db617 (diff)
downloadbuildroot-12c5e68ea803a0ea05afab55e2f81d02a812b130.tar.gz
buildroot-12c5e68ea803a0ea05afab55e2f81d02a812b130.zip
support/graph-depends: add option to limit the depth of the graph
Currently, the complete dependency chain of a package is used to generate the dependency graph. When this dependency chain is long, the generated graph becomes almost unreadable. However, it is often sufficient to get the first few levels of dependency of a package. Add a new variable BR2_GRAPH_DEPTH, that the user can set to limit the depth of the dependency list. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/scripts/graph-depends49
1 files changed, 37 insertions, 12 deletions
diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends
index fc3cadde87..ebf511bc36 100755
--- a/support/scripts/graph-depends
+++ b/support/scripts/graph-depends
@@ -8,6 +8,8 @@
# dependencies for the current configuration.
# If '-p <package-name>' is specified, graph-depends will draw a graph
# of dependencies for the given package name.
+# If '-d <depth>' is specified, graph-depends will limit the depth of
+# the dependency graph to 'depth' levels.
#
# Limitations
#
@@ -31,10 +33,13 @@ FULL_MODE = 1
PKG_MODE = 2
mode = 0
+max_depth = 0
parser = argparse.ArgumentParser(description="Graph pacakges dependencies")
parser.add_argument("--package", '-p', metavar="PACKAGE",
help="Graph the dependencies of PACKAGE")
+parser.add_argument("--depth", '-d', metavar="DEPTH",
+ help="Limit the dependency graph to DEPTH levels")
args = parser.parse_args()
if args.package == None:
@@ -43,6 +48,9 @@ else:
mode = PKG_MODE
rootpkg = args.package
+if args.depth != None:
+ max_depth = int(args.depth)
+
allpkgs = []
# Execute the "make show-targets" command to get the list of the main
@@ -193,6 +201,7 @@ if mode == FULL_MODE:
deps = get_all_depends(filtered_targets)
if deps != None:
dependencies += deps
+ rootpkg = 'all'
# In pkg mode, start directly with get_all_depends() on the requested
# package
@@ -201,26 +210,42 @@ elif mode == PKG_MODE:
dependencies = remove_redundant_deps(dependencies)
-# Start printing the graph data
-print "digraph G {"
-
-# First, the dependencies. Usage of set allows to remove duplicated
-# dependencies in the graph
-for dep in set(dependencies):
- print "%s -> %s" % (pkg_node_name(dep[0]), pkg_node_name(dep[1]))
+# Make the dependencies a dictionnary { 'pkg':[dep1, dep2, ...] }
+dict_deps = {}
+for dep in dependencies:
+ if not dict_deps.has_key(dep[0]):
+ dict_deps[dep[0]] = []
+ dict_deps[dep[0]].append(dep[1])
-# Then, the node attributes: color, style and label.
-for pkg in allpkgs:
+# Print the attributes of a node: label and fill-color
+def print_attrs(pkg):
if pkg == 'all':
print "all [label = \"ALL\"]"
print "all [color=lightblue,style=filled]"
- continue
-
+ return
print "%s [label = \"%s\"]" % (pkg_node_name(pkg), pkg)
-
if mode == PKG_MODE and pkg == rootpkg:
print "%s [color=lightblue,style=filled]" % pkg_node_name(rootpkg)
else:
print "%s [color=grey,style=filled]" % pkg_node_name(pkg)
+# Print the dependency graph of a package
+def print_pkg_deps(depth, pkg):
+ if pkg in done_deps:
+ return
+ done_deps.append(pkg)
+ print_attrs(pkg)
+ if not dict_deps.has_key(pkg):
+ return
+ if max_depth == 0 or depth < max_depth:
+ for d in dict_deps[pkg]:
+ print "%s -> %s" % (pkg_node_name(pkg), pkg_node_name(d))
+ print_pkg_deps(depth+1, d)
+
+# Start printing the graph data
+print "digraph G {"
+
+done_deps = []
+print_pkg_deps(0, rootpkg)
+
print "}"
OpenPOWER on IntegriCloud