feat: Automatic search path + modules as CLI arguments
parent
4d8aa10ecb
commit
29a249e8fd
|
@ -4,18 +4,42 @@ import Std.Data.HashMap
|
||||||
|
|
||||||
namespace DocGen4
|
namespace DocGen4
|
||||||
|
|
||||||
open Lean System Std
|
open Lean System Std IO
|
||||||
|
|
||||||
def printSearchPath : IO PUnit := do
|
def getLakePath : IO FilePath := do
|
||||||
IO.println s!"{←searchPathRef.get}"
|
match (← IO.getEnv "LAKE") with
|
||||||
|
| some path => System.FilePath.mk path
|
||||||
|
| none =>
|
||||||
|
let lakePath := (←findSysroot?) / "bin" / "lake"
|
||||||
|
lakePath.withExtension System.FilePath.exeExtension
|
||||||
|
|
||||||
def setSearchPath (path : List FilePath) : IO PUnit := do
|
-- Modified from the LSP Server
|
||||||
searchPathRef.set path
|
def lakeSetupSearchPath (lakePath : System.FilePath) (imports : Array String) : IO Lean.SearchPath := do
|
||||||
|
let args := #["print-paths"] ++ imports
|
||||||
|
let cmdStr := " ".intercalate (toString lakePath :: args.toList)
|
||||||
|
let lakeProc ← Process.spawn {
|
||||||
|
stdin := Process.Stdio.null
|
||||||
|
stdout := Process.Stdio.piped
|
||||||
|
stderr := Process.Stdio.piped
|
||||||
|
cmd := lakePath.toString
|
||||||
|
args
|
||||||
|
}
|
||||||
|
let stdout := String.trim (← lakeProc.stdout.readToEnd)
|
||||||
|
let stderr := String.trim (← lakeProc.stderr.readToEnd)
|
||||||
|
match (← lakeProc.wait) with
|
||||||
|
| 0 =>
|
||||||
|
let stdout := stdout.split (· == '\n') |>.getLast!
|
||||||
|
let Except.ok (paths : LeanPaths) ← pure (Json.parse stdout >>= fromJson?)
|
||||||
|
| throw $ userError s!"invalid output from `{cmdStr}`:\n{stdout}\nstderr:\n{stderr}"
|
||||||
|
initSearchPath (← findSysroot?) paths.oleanPath
|
||||||
|
paths.oleanPath.mapM realPathNormalized
|
||||||
|
| 2 => pure [] -- no lakefile.lean
|
||||||
|
| _ => throw $ userError s!"`{cmdStr}` failed:\n{stdout}\nstderr:\n{stderr}"
|
||||||
|
|
||||||
def load (imports : List Name) : IO (HashMap Name Module) := do
|
def load (imports : List Name) : IO (HashMap Name Module) := do
|
||||||
let env ← importModules (List.map (Import.mk · false) imports) Options.empty
|
let env ← importModules (List.map (Import.mk · false) imports) Options.empty
|
||||||
-- TODO parameterize maxHeartbeats
|
-- TODO parameterize maxHeartbeats
|
||||||
let doc ← Prod.fst <$> (Meta.MetaM.toIO (process) { maxHeartbeats := 100000000} { env := env} {} {})
|
let doc ← Prod.fst <$> (Meta.MetaM.toIO process { maxHeartbeats := 100000000} { env := env} {} {})
|
||||||
for (_, module) in doc.toList do
|
for (_, module) in doc.toList do
|
||||||
let s ← Core.CoreM.toIO module.prettyPrint {} { env := env }
|
let s ← Core.CoreM.toIO module.prettyPrint {} { env := env }
|
||||||
IO.println s.fst
|
IO.println s.fst
|
||||||
|
|
12
Main.lean
12
Main.lean
|
@ -1,11 +1,11 @@
|
||||||
import DocGen4
|
import DocGen4
|
||||||
import Lean
|
import Lean
|
||||||
|
|
||||||
open DocGen4 Lean
|
open DocGen4 Lean IO
|
||||||
|
|
||||||
|
def main (args : List String) : IO Unit := do
|
||||||
def main : IO Unit := do
|
let modules := args
|
||||||
-- This should be set by lake at some point
|
let path ← lakeSetupSearchPath (←getLakePath) modules.toArray
|
||||||
setSearchPath ["/home/nix/Desktop/formal_verification/lean/mathlib4/build/lib", "/home/nix/.elan/toolchains/leanprover--lean4---nightly-2021-11-24/lib/lean"]
|
IO.println s!"Loading modules from: {path}"
|
||||||
let doc ← load [`Mathlib]
|
let doc ← load $ modules.map Name.mkSimple
|
||||||
return ()
|
return ()
|
||||||
|
|
Loading…
Reference in New Issue