Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

add a python script to show the runtime packages' dependencies #725

Merged
merged 2 commits into from
Sep 12, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions scripts/runtime-dep.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# To run this script, you need to install the 'toml' python package and install the 'graphviz' package:
guanqun marked this conversation as resolved.
Show resolved Hide resolved
# pip install toml
# sudo apt-get install graphviz
# the first parameter is the runtime folder
# python ./scripts/runtime-dep.py ./substrate/runtime | dot -Tpng -o output.png
import sys
import os
import toml

if len(sys.argv) != 2:
print("needs the runtime folder.")
sys.exit(-1)

runtime_dir = sys.argv[1]

files = [os.path.join(runtime_dir, f, 'Cargo.toml') for f in os.listdir(runtime_dir) if os.path.isfile(os.path.join(runtime_dir, f, 'Cargo.toml')) and f != 'example']

print("digraph G {")


PREFIX = "substrate-runtime-"

for f in files:
manifest = toml.load(f)

package_name = manifest['package']['name']
deps = [d for d in manifest['dependencies'].keys() if d.startswith(PREFIX)]

for d in deps:
print(" \"{}\" -> \"{}\";".format(package_name, d))

print("}")