Separate commands into its own file

This commit is contained in:
Leni Aniva 2023-05-09 18:01:09 -07:00
parent 9a957bce35
commit 0b2db92b4a
3 changed files with 37 additions and 7 deletions

View File

@ -1,24 +1,41 @@
import Pantograph
import Lean.Data.Json import Lean.Data.Json
import Pantograph.Commands
namespace Pantograph namespace Pantograph
structure State where structure State where
keys: Array String environments: Array String
-- State monad -- State monad
abbrev T (m: Type → Type) := StateT State m abbrev T (m: Type → Type) := StateT State m
abbrev Subroutine := T (Except String) Lean.Json
structure Command where
cmd: String
payload: Lean.Json
deriving Lean.FromJson
--def create_environment (args: Create): Subroutine := do
-- let state ← get
end Pantograph end Pantograph
open Pantograph open Pantograph
def execute (command: String): T (ExceptT String IO) Lean.Json := do
def execute (command: String): T (Except String) Lean.Json := do
let state ← get let state ← get
let obj ← Lean.Json.parse command let obj ← Lean.Json.parse command
return "success" let command: Command ← Lean.fromJson? obj
match command.cmd with
| "create" =>
let create: Commands.Create ← Lean.fromJson? command.payload
return Lean.toJson create.imports
| "catalog" =>
let catalog: Commands.Catalog ← Lean.fromJson? command.payload
return "catalog stub"
| cmd => throw s!"Unknown verb: {cmd}"
-- Main IO functions -- Main IO functions
@ -32,7 +49,8 @@ unsafe def loop : T IO Unit := do
let state ← get let state ← get
let command ← getLines let command ← getLines
if command == "" then return () if command == "" then return ()
match (execute command).run' <| state with let ret ← execute command
match ret with
| .error e => IO.println s!"Could not parse json: {e}" | .error e => IO.println s!"Could not parse json: {e}"
| .ok obj => IO.println <| toString <| obj | .ok obj => IO.println <| toString <| obj

View File

@ -1 +0,0 @@
def hello := "world"

13
Pantograph/Commands.lean Normal file
View File

@ -0,0 +1,13 @@
-- All the command input/output structures are stored here
import Lean.Data.Json
namespace Pantograph.Commands
structure Create where
imports : List String
deriving Lean.FromJson
structure Catalog where
id: Nat
deriving Lean.FromJson
end Pantograph.Commands