Package dependency graph
Description
Originally discussed in https://github.com/fortran-lang/fpm/discussions/682.
When working with a large fpm project it can be of interest to study the dependency graph at different levels, including
- the package dependency graph, obtained by recursing through the project
dependencies - the module dependency graph, obtained by recursively scanning the project (and dependency) modules
The package dependency graph may be of interesting for auditing which packages are used, identifying critical packages (e.g. to provide additional support, or to avoid in case of concerns) and other tasks associated with control of the software supply chain.
Possible Solution
I propose adding a new sub-command for graph generation
> fpm graph [...options...] [-o file.dot]
By default fpm graph will write to standard output in the DOT language. This way the output can be piped directly to the dot command, e.g.
> fpm graph | dot -Tsvg -o graph.svg
A couple ideas for options what may be worth adding:
--exclude-dependencies <string or regex>(for hiding large packages)--max-depth N(to limit the depth; default would be unlimited)- further options controlling
graphvizattributes; we should have sane defaults so these should be rarely used. the user can always modify the.dotfile if needed
The implementation of this feature uses the information provided in the resolved dependency_tree_t and generates the DOT output. Here's an example of the result:
Additional Information
A related issue for module dependencies is in https://github.com/fortran-lang/fpm/issues/687.
I'm not sure yet if the module dependency graph should be a separate sub-command, a separate tool or just a switch of the build sub-command. Whereas the package graph only needs to recurse through the manifests, the module dependency graph requires the full model to be built first. Any opinions about this?
Besides the default DOT backend, there could be a Mermaid backend too. The flowchart is easy to generate and can be integrated in GitHub and GitLab markdown documents using a mermaid code block:
flowchart TD
N1[fpm]
N2[toml-f]
N3[M_CLI2]
N4[fortran-regex]
N5[jonquil]
N6[fortran-shlex]
N7[daglib]
click N1 href "https://fpm.fortran-lang.org/spec/manifest.html#project-homepage" "No homepage available for fpm"
click N2 href "https://toml-f.github.io/toml-f" "TOML parser implementation for data serialization and deserialization"
click N3 href "https://github.com/urbanjost/M_CLI2.git" "Unix-style commandline parsing using a prototype command"
click N4 href "https://github.com/perazz/fortran-regex" "Fortran regex library"
click N5 href "https://toml-f.readthedocs.io/en/latest/how-to/jonquil/" "Bringing TOML blooms to JSON land"
click N6 href "https://fpm.fortran-lang.org/spec/manifest.html#project-homepage" "No homepage available for fortran-shlex"
click N7 href "https://github.com/jacobwilliams/daglib" "Directed Acyclic Graphs With Modern Fortran"
N1-->N2
N1-->N3
N1-->N4
N1-->N5
N1-->N6
N1-->N7
N5-->N2
I've got this working already in my local fork.
The dependency generator lives here (https://github.com/ivan-pi/fpm-deps) for the time being.