summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-07-28 12:55:50 +0200
committerCarl Hetherington <cth@carlh.net>2020-07-28 12:55:50 +0200
commit266640cb61f2ade148e991b4d87d7d5b508e85a0 (patch)
tree5fbfff930fd01f7345bd73c2553cb791bde46804
parent357b68f229341904d1c6f6a63e33d62969e2f4e3 (diff)
Add dependencies command.
-rwxr-xr-xcdist20
1 files changed, 17 insertions, 3 deletions
diff --git a/cdist b/cdist
index ffcce29..7262702 100755
--- a/cdist
+++ b/cdist
@@ -985,7 +985,7 @@ class Tree(object):
def dependencies(self, options):
"""
yield details of the dependencies of this tree. Each dependency is returned
- as a tuple of (tree, options). The 'options' parameter are the options that
+ as a tuple of (tree, options, parent_tree). The 'options' parameter are the options that
we want to force for 'self'.
"""
if not 'dependencies' in self.cscript:
@@ -1007,7 +1007,7 @@ class Tree(object):
dep_options = d[2] if len(d) > 2 else {}
for i in dep.dependencies(dep_options):
yield i
- yield (dep, dep_options)
+ yield (dep, dep_options, self)
def checkout_dependencies(self, options={}):
for i in self.dependencies(options):
@@ -1058,7 +1058,8 @@ def main():
"test": "run the project's unit tests",
"shell": "build the project then start a shell",
"checkout": "check out the project",
- "revision": "print the head git revision number"
+ "revision": "print the head git revision number",
+ "dependencies" : "print details of the project's dependencies as a .dot file"
}
one_of = "Command is one of:\n"
@@ -1306,6 +1307,19 @@ def main():
shutil.copytree('.', args.output)
target.cleanup()
+ elif globals.command == 'dependencies':
+ if args.target is None:
+ raise Error('you must specify -t or --target')
+ if args.checkout is None:
+ raise Error('you must specify -c or --checkout')
+
+ target = target_factory(args)
+ tree = globals.trees.get(args.project, args.checkout, target)
+ print("strict digraph {")
+ for d in list(tree.dependencies({})):
+ print("%s -> %s;" % (d[2].name.replace("-", "-"), d[0].name.replace("-", "_")))
+ print("}")
+
else:
raise Error('invalid command %s' % globals.command)