-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from leanprover-community/eugster/html-visuali…
…sation feat: add HTML visualisation
- Loading branch information
Showing
10 changed files
with
702 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/- | ||
Copyright (c) 2024 Jon Eugster. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Jon Eugster | ||
-/ | ||
|
||
import Lean | ||
import Batteries.Lean.NameMap | ||
import Batteries.Tactic.OpenPrivate | ||
|
||
open Lean | ||
|
||
namespace ImportGraph | ||
|
||
open Elab Meta in | ||
/-- Filter Lean internal declarations -/ | ||
def isBlackListed (env : Environment) (declName : Name) : Bool := | ||
declName == ``sorryAx | ||
|| declName matches .str _ "inj" | ||
|| declName matches .str _ "noConfusionType" | ||
|| declName.isInternalDetail | ||
|| isAuxRecursor env declName | ||
|| isNoConfusion env declName | ||
|| isRecCore env declName | ||
|| isMatcherCore env declName | ||
|
||
/-- Get number of non-blacklisted declarations per file. -/ | ||
def getNumberOfDeclsPerFile (env: Environment) : NameMap Nat := | ||
env.const2ModIdx.fold (fun acc n (idx : ModuleIdx) => | ||
let mod := env.allImportedModuleNames.get! idx | ||
if isBlackListed env n then acc else acc.insert mod ((acc.findD mod 0) + 1) | ||
) {} | ||
|
||
/-- Gexf template for a node in th graph. -/ | ||
def Gexf.nodeTemplate (n module : Name) (size : Nat) := s!"<node id=\"{n}\" label=\"{n}\"><attvalues><attvalue for=\"0\" value=\"{size}\" /><attvalue for=\"1\" value=\"{module.isPrefixOf n}\" /></attvalues></node>\n " | ||
|
||
/-- Gexf template for an edge in the graph -/ | ||
def Gexf.edgeTemplate (source target : Name) := s!"<edge source=\"{source}\" target=\"{target}\" id=\"{source}--{target}\" />\n " | ||
|
||
open Gexf in | ||
/-- Creates a `.gexf` file of the graph, see https://gexf.net/ | ||
Metadata can be stored in forms of attributes, currently we record the following: | ||
* `decl_count` (Nat): number of declarations in the file | ||
* `in_module` (Bool): whether the file belongs to the main module | ||
(used to strip the first part of the name when displaying). | ||
-/ | ||
def Graph.toGexf (graph : NameMap (Array Name)) (module : Name) (env : Environment) : String := | ||
let sizes : NameMap Nat := getNumberOfDeclsPerFile env | ||
let nodes : String := graph.fold (fun acc n _ => acc ++ nodeTemplate n module (sizes.findD n 0)) "" | ||
let edges : String := graph.fold (fun acc n i => acc ++ (i.foldl (fun b j => b ++ edgeTemplate j n) "")) "" | ||
s!"<?xml version='1.0' encoding='utf-8'?> | ||
<gexf xmlns=\"http://www.gexf.net/1.2draft\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.gexf.net/1.2draft http://www.gexf.net/1.2draft/gexf.xsd\" version=\"1.2\"> | ||
<meta> | ||
<creator>Lean ImportGraph</creator> | ||
</meta> | ||
<graph defaultedgetype=\"directed\" mode=\"static\" name=\"\"> | ||
<attributes mode=\"static\" class=\"node\"> | ||
<attribute id=\"0\" title=\"decl_count\" type=\"long\" /> | ||
<attribute id=\"1\" title=\"in_module\" type=\"boolean\" /> | ||
</attributes> | ||
<nodes> | ||
{nodes.trim} | ||
</nodes> | ||
<edges> | ||
{edges.trim} | ||
</edges> | ||
</graph> | ||
</gexf> | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
imports.gexf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Visualised import graph | ||
|
||
## Instructions | ||
|
||
To test this, place a file `imports.gexf` inside this directory. You can create such a file with | ||
|
||
``` | ||
lake exe graph html-template/imports.gexf | ||
``` | ||
|
||
Then open `index.html` in any browser and you should see the graph. | ||
|
||
## Development | ||
|
||
Currently `lake exe graph output.html` will use the files here to create a stand-alone | ||
HTML file. It does so by search-replacing the JS-scripts, the `fetch('imports.gexf')` | ||
statement, and the `<h1>` header. | ||
|
||
Therefore any modifications to these lines need to be reflected in `ImportGraph/Cli.lean`! | ||
|
||
# Credits | ||
|
||
This tool has been adapted from it's [Lean 3 version](https://github.com/eric-wieser/mathlib-import-graph) written by Eric Wieser, which was published under the [MIT License](./LICENSE_source) | ||
included here. | ||
|
||
Adaptation by Jon Eugster. |
Oops, something went wrong.