2021-12-12 12:28:52 +00:00
|
|
|
|
/-
|
|
|
|
|
Copyright (c) 2021 Henrik Böving. All rights reserved.
|
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
Authors: Henrik Böving
|
|
|
|
|
-/
|
2021-12-12 12:20:44 +00:00
|
|
|
|
import Lean
|
|
|
|
|
import Std.Data.HashMap
|
|
|
|
|
|
2022-07-21 22:34:13 +00:00
|
|
|
|
open Std
|
|
|
|
|
|
|
|
|
|
def HashSet.fromArray [BEq α] [Hashable α] (xs : Array α) : HashSet α :=
|
|
|
|
|
xs.foldr (flip .insert) .empty
|
|
|
|
|
|
2021-12-12 12:20:44 +00:00
|
|
|
|
namespace DocGen4
|
|
|
|
|
|
2022-07-21 22:34:13 +00:00
|
|
|
|
open Lean Name
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
|
|
|
|
def getNLevels (name : Name) (levels: Nat) : Name :=
|
2022-01-15 14:35:52 +00:00
|
|
|
|
let components := name.components'
|
|
|
|
|
(components.drop (components.length - levels)).reverse.foldl (· ++ ·) Name.anonymous
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
|
|
|
|
inductive Hierarchy where
|
2021-12-13 19:47:52 +00:00
|
|
|
|
| node (name : Name) (isFile : Bool) (children : RBNode Name (λ _ => Hierarchy)) : Hierarchy
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
2021-12-13 19:47:52 +00:00
|
|
|
|
instance : Inhabited Hierarchy := ⟨Hierarchy.node Name.anonymous false RBNode.leaf⟩
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
|
|
|
|
abbrev HierarchyMap := RBNode Name (λ _ => Hierarchy)
|
|
|
|
|
|
|
|
|
|
-- Everything in this namespace is adapted from stdlib's RBNode
|
|
|
|
|
namespace HierarchyMap
|
|
|
|
|
|
|
|
|
|
def toList : HierarchyMap → List (Name × Hierarchy)
|
|
|
|
|
| t => t.revFold (fun ps k v => (k, v)::ps) []
|
|
|
|
|
|
2022-07-20 23:40:04 +00:00
|
|
|
|
def toArray : HierarchyMap → Array (Name × Hierarchy)
|
|
|
|
|
| t => t.fold (fun ps k v => ps ++ #[(k, v)] ) #[]
|
|
|
|
|
|
2021-12-12 12:20:44 +00:00
|
|
|
|
def hForIn [Monad m] (t : HierarchyMap) (init : σ) (f : (Name × Hierarchy) → σ → m (ForInStep σ)) : m σ :=
|
|
|
|
|
t.forIn init (fun a b acc => f (a, b) acc)
|
|
|
|
|
|
|
|
|
|
instance : ForIn m HierarchyMap (Name × Hierarchy) where
|
|
|
|
|
forIn := HierarchyMap.hForIn
|
|
|
|
|
|
|
|
|
|
end HierarchyMap
|
|
|
|
|
|
|
|
|
|
namespace Hierarchy
|
|
|
|
|
|
2021-12-13 19:47:52 +00:00
|
|
|
|
def empty (n : Name) (isFile : Bool) : Hierarchy :=
|
|
|
|
|
node n isFile RBNode.leaf
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
|
|
|
|
def getName : Hierarchy → Name
|
2021-12-13 19:47:52 +00:00
|
|
|
|
| node n _ _ => n
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
|
|
|
|
def getChildren : Hierarchy → HierarchyMap
|
2021-12-13 19:47:52 +00:00
|
|
|
|
| node _ _ c => c
|
|
|
|
|
|
|
|
|
|
def isFile : Hierarchy → Bool
|
|
|
|
|
| node _ f _ => f
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
2021-12-12 12:33:24 +00:00
|
|
|
|
partial def insert! (h : Hierarchy) (n : Name) : Hierarchy := Id.run $ do
|
2021-12-12 12:20:44 +00:00
|
|
|
|
let hn := h.getName
|
|
|
|
|
let mut cs := h.getChildren
|
2021-12-13 19:47:52 +00:00
|
|
|
|
|
2021-12-17 16:04:56 +00:00
|
|
|
|
if getNumParts hn + 1 == getNumParts n then
|
2021-12-12 12:20:44 +00:00
|
|
|
|
match cs.find Name.cmp n with
|
|
|
|
|
| none =>
|
2021-12-13 19:47:52 +00:00
|
|
|
|
node hn h.isFile (cs.insert Name.cmp n $ empty n true)
|
|
|
|
|
| some (node _ true _) => h
|
2022-07-20 23:40:04 +00:00
|
|
|
|
| some (node _ false ccs) =>
|
2021-12-13 19:47:52 +00:00
|
|
|
|
cs := cs.erase Name.cmp n
|
|
|
|
|
node hn h.isFile (cs.insert Name.cmp n $ node n true ccs)
|
2021-12-12 12:20:44 +00:00
|
|
|
|
else
|
2021-12-17 16:04:56 +00:00
|
|
|
|
let leveledName := getNLevels n (getNumParts hn + 1)
|
2021-12-12 12:20:44 +00:00
|
|
|
|
match cs.find Name.cmp leveledName with
|
|
|
|
|
| some nextLevel =>
|
|
|
|
|
cs := cs.erase Name.cmp leveledName
|
2021-12-13 19:47:52 +00:00
|
|
|
|
-- BUG?
|
|
|
|
|
node hn h.isFile $ cs.insert Name.cmp leveledName (nextLevel.insert! n)
|
2021-12-12 12:20:44 +00:00
|
|
|
|
| none =>
|
2021-12-13 19:47:52 +00:00
|
|
|
|
let child := (insert! (empty leveledName false) n)
|
|
|
|
|
node hn h.isFile $ cs.insert Name.cmp leveledName child
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
2021-12-13 19:47:52 +00:00
|
|
|
|
partial def fromArray (names : Array Name) : Hierarchy :=
|
|
|
|
|
names.foldl insert! (empty anonymous false)
|
2021-12-12 12:20:44 +00:00
|
|
|
|
|
2022-07-21 22:34:13 +00:00
|
|
|
|
def baseDirBlackList : HashSet String :=
|
|
|
|
|
HashSet.fromArray #[
|
|
|
|
|
"404.html",
|
|
|
|
|
"declaration-data.js",
|
|
|
|
|
"declarations",
|
|
|
|
|
"find",
|
|
|
|
|
"how-about.js",
|
|
|
|
|
"index.html",
|
|
|
|
|
"mathjax-config.js",
|
|
|
|
|
"navbar.html",
|
|
|
|
|
"nav.js",
|
|
|
|
|
"search.js",
|
|
|
|
|
"src",
|
|
|
|
|
"style.css"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
partial def fromDirectoryAux (dir : System.FilePath) (previous : Name) : IO (Array Name) := do
|
|
|
|
|
let mut children := #[]
|
|
|
|
|
for entry in ←System.FilePath.readDir dir do
|
|
|
|
|
if (←entry.path.isDir) then
|
|
|
|
|
children := children ++ (←fromDirectoryAux entry.path (.str previous entry.fileName))
|
|
|
|
|
else
|
|
|
|
|
children := children.push $ .str previous (entry.fileName.dropRight ".html".length)
|
|
|
|
|
pure children
|
|
|
|
|
|
|
|
|
|
def fromDirectory (dir : System.FilePath) : IO Hierarchy := do
|
|
|
|
|
let mut children := #[]
|
|
|
|
|
for entry in ←System.FilePath.readDir dir do
|
|
|
|
|
if !baseDirBlackList.contains entry.fileName && (←entry.path.isDir) then
|
|
|
|
|
children := children ++ (←fromDirectoryAux entry.path (.mkSimple entry.fileName))
|
|
|
|
|
pure $ Hierarchy.fromArray children
|
|
|
|
|
|
2021-12-12 12:20:44 +00:00
|
|
|
|
end Hierarchy
|
|
|
|
|
end DocGen4
|