175 lines
6.5 KiB
Plaintext
175 lines
6.5 KiB
Plaintext
/-
|
|
All serialisation functions
|
|
-/
|
|
import Lean
|
|
|
|
import Pantograph.Commands
|
|
|
|
namespace Pantograph
|
|
open Lean
|
|
|
|
--- Input Functions ---
|
|
|
|
|
|
/-- Read a theorem from the environment -/
|
|
def expr_from_const (env: Environment) (name: Name): Except String Lean.Expr :=
|
|
match env.find? name with
|
|
| none => throw s!"Symbol not found: {name}"
|
|
| some cInfo => return cInfo.type
|
|
/-- Read syntax object from string -/
|
|
def syntax_from_str (env: Environment) (s: String): Except String Syntax :=
|
|
Parser.runParserCategory
|
|
(env := env)
|
|
(catName := `term)
|
|
(input := s)
|
|
(fileName := "<stdin>")
|
|
|
|
|
|
def syntax_to_expr_type (syn: Syntax): Elab.TermElabM (Except String Expr) := do
|
|
try
|
|
let expr ← Elab.Term.elabType syn
|
|
-- Immediately synthesise all metavariables if we need to leave the elaboration context.
|
|
-- See https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/Unknown.20universe.20metavariable/near/360130070
|
|
--Elab.Term.synthesizeSyntheticMVarsNoPostponing
|
|
let expr ← instantiateMVars expr
|
|
return .ok expr
|
|
catch ex => return .error (← ex.toMessageData.toString)
|
|
def syntax_to_expr (syn: Syntax): Elab.TermElabM (Except String Expr) := do
|
|
try
|
|
let expr ← Elab.Term.elabTerm (stx := syn) (expectedType? := .none)
|
|
-- Immediately synthesise all metavariables if we need to leave the elaboration context.
|
|
-- See https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/Unknown.20universe.20metavariable/near/360130070
|
|
--Elab.Term.synthesizeSyntheticMVarsNoPostponing
|
|
let expr ← instantiateMVars expr
|
|
return .ok expr
|
|
catch ex => return .error (← ex.toMessageData.toString)
|
|
|
|
|
|
--- Output Functions ---
|
|
|
|
def type_expr_to_bound (expr: Expr): MetaM Commands.BoundExpression := do
|
|
Meta.forallTelescope expr fun arr body => do
|
|
let binders ← arr.mapM fun fvar => do
|
|
return (toString (← fvar.fvarId!.getUserName), toString (← Meta.ppExpr (← fvar.fvarId!.getType)))
|
|
return { binders, target := toString (← Meta.ppExpr body) }
|
|
|
|
/-- Completely serialises an expression tree. Json not used due to compactness -/
|
|
def serialize_expression_ast (expr: Expr): MetaM String := do
|
|
match expr with
|
|
| .bvar deBruijnIndex => return s!"(:bv {deBruijnIndex})"
|
|
| .fvar fvarId =>
|
|
let name := (← fvarId.getDecl).userName
|
|
return s!"(:fv {name})"
|
|
| .mvar _ =>
|
|
-- mvarId is ignored.
|
|
return s!":mv"
|
|
| .sort u => return s!"(:sort {u.depth})"
|
|
| .const declName _ =>
|
|
-- The universe level of the const expression is elided since it should be
|
|
-- inferrable from surrounding expression
|
|
return s!"(:c {declName})"
|
|
| .app fn arg =>
|
|
let fn' ← serialize_expression_ast fn
|
|
let arg' ← serialize_expression_ast arg
|
|
return s!"({fn'} {arg'})"
|
|
| .lam binderName binderType body binderInfo =>
|
|
let binderType' ← serialize_expression_ast binderType
|
|
let body' ← serialize_expression_ast body
|
|
let binderInfo' := binderInfoToAst binderInfo
|
|
return s!"(:lambda {binderName} {binderType'} {body'} :{binderInfo'})"
|
|
| .forallE binderName binderType body binderInfo =>
|
|
let binderType' ← serialize_expression_ast binderType
|
|
let body' ← serialize_expression_ast body
|
|
let binderInfo' := binderInfoToAst binderInfo
|
|
return s!"(:forall {binderName} {binderType'} {body'} :{binderInfo'})"
|
|
| .letE name type value body _ =>
|
|
-- Dependent boolean flag diacarded
|
|
let type' ← serialize_expression_ast type
|
|
let value' ← serialize_expression_ast value
|
|
let body' ← serialize_expression_ast body
|
|
return s!"(:let {name} {type'} {value'} {body'})"
|
|
| .lit v =>
|
|
return (match v with
|
|
| .natVal val => toString val
|
|
| .strVal val => s!"\"{val}\"")
|
|
| .mdata _ expr =>
|
|
-- NOTE: Equivalent to expr itself, but mdata influences the prettyprinter
|
|
return (← serialize_expression_ast expr)
|
|
| .proj typeName idx struct =>
|
|
let struct' ← serialize_expression_ast struct
|
|
return s!"(:proj {typeName} {idx} {struct'})"
|
|
|
|
where
|
|
binderInfoToAst : Lean.BinderInfo → String
|
|
| .default => "default"
|
|
| .implicit => "implicit"
|
|
| .strictImplicit => "strictImplicit"
|
|
| .instImplicit => "instImplicit"
|
|
|
|
def serialize_expression (options: Commands.Options) (e: Expr): MetaM Commands.Expression := do
|
|
let pp := toString (← Meta.ppExpr e)
|
|
let pp?: Option String := match options.printExprPretty with
|
|
| true => .some pp
|
|
| false => .none
|
|
let sexp: String := (← serialize_expression_ast e)
|
|
let sexp?: Option String := match options.printExprAST with
|
|
| true => .some sexp
|
|
| false => .none
|
|
return {
|
|
pp?,
|
|
sexp?
|
|
}
|
|
|
|
/-- Adapted from ppGoal -/
|
|
def serialize_goal (options: Commands.Options) (mvarDecl: MetavarDecl) : MetaM Commands.Goal := do
|
|
-- Options for printing; See Meta.ppGoal for details
|
|
let showLetValues := True
|
|
let ppAuxDecls := false
|
|
let ppImplDetailHyps := false
|
|
let lctx := mvarDecl.lctx
|
|
let lctx := lctx.sanitizeNames.run' { options := (← getOptions) }
|
|
Meta.withLCtx lctx mvarDecl.localInstances do
|
|
let rec ppVars (localDecl : LocalDecl) : MetaM Commands.Variable := do
|
|
match localDecl with
|
|
| .cdecl _ _ varName type _ _ =>
|
|
let varName := varName.simpMacroScopes
|
|
let type ← instantiateMVars type
|
|
return {
|
|
name := toString varName,
|
|
isInaccessible := varName.isInaccessibleUserName,
|
|
type := (← serialize_expression options type)
|
|
}
|
|
| .ldecl _ _ varName type val _ _ => do
|
|
let varName := varName.simpMacroScopes
|
|
let type ← instantiateMVars type
|
|
let value? ← if showLetValues then
|
|
let val ← instantiateMVars val
|
|
pure $ .some (← serialize_expression options val)
|
|
else
|
|
pure $ .none
|
|
return {
|
|
name := toString varName,
|
|
isInaccessible := varName.isInaccessibleUserName,
|
|
type := (← serialize_expression options type)
|
|
value? := value?
|
|
}
|
|
let vars ← lctx.foldlM (init := []) fun acc (localDecl : LocalDecl) => do
|
|
let skip := !ppAuxDecls && localDecl.isAuxDecl || !ppImplDetailHyps && localDecl.isImplementationDetail
|
|
if skip then
|
|
return acc
|
|
else
|
|
let var ← ppVars localDecl
|
|
return var::acc
|
|
return {
|
|
caseName? := match mvarDecl.userName with
|
|
| Name.anonymous => .none
|
|
| name => .some <| toString name,
|
|
isConversion := "| " == (Meta.getGoalPrefix mvarDecl)
|
|
target := (← serialize_expression options (← instantiateMVars mvarDecl.type)),
|
|
vars := vars.reverse.toArray
|
|
}
|
|
|
|
|
|
|
|
end Pantograph
|