150 lines
5.9 KiB
Text
150 lines
5.9 KiB
Text
/-
|
||
Copyright (c) 2018 Microsoft Corporation. All rights reserved.
|
||
Released under Apache 2.0 license as described in the file LICENSE.
|
||
Author: Sebastian Ullrich
|
||
|
||
Parser for the Lean language
|
||
-/
|
||
prelude
|
||
import init.lean.parser.parsec init.lean.parser.syntax init.lean.parser.rec
|
||
import init.lean.parser.trie
|
||
import init.lean.parser.identifier init.data.rbmap init.lean.message
|
||
|
||
namespace lean
|
||
namespace parser
|
||
|
||
/- Maximum standard precedence. This is the precedence of function application.
|
||
In the standard Lean language, only the token `.` has a left-binding power greater
|
||
than `max_prec` (so that field accesses like `g (h x).f` are parsed as `g ((h x).f)`,
|
||
not `(g (h x)).f`). -/
|
||
def max_prec : nat := 1024
|
||
|
||
structure token_config :=
|
||
(«prefix» : string)
|
||
/- Left-binding power used by the term parser. The term parser operates in the context
|
||
of a right-binding power between 0 (used by parentheses and on the top-level) and
|
||
(usually) `max_prec` (used by function application). After parsing an initial term,
|
||
it continues parsing and expanding that term only when the left-binding power of
|
||
the next token is greater than the current right-binding power. For example, it
|
||
never continues parsing an argument after the initial parse, unless a token with
|
||
lbp > max_prec is encountered. Conversely, the term parser will always continue
|
||
parsing inside parentheses until it finds a token with lbp 0 (such as `)`). -/
|
||
(lbp : nat := 0)
|
||
-- reading a token should not need any state
|
||
/- An optional parser that is activated after matching `prefix`.
|
||
It should return a syntax tree with a "hole" for the
|
||
`source_info` surrounding the token, which will be supplied
|
||
by the `token` parser. -/
|
||
(suffix_parser : option (parsec' (source_info → syntax)) := none)
|
||
|
||
structure parser_state :=
|
||
(messages : message_log)
|
||
|
||
structure parser_config :=
|
||
(tokens : trie token_config)
|
||
(filename : string)
|
||
|
||
@[derive monad alternative monad_reader monad_state monad_parsec monad_except]
|
||
def parser_t (m : Type → Type) [monad m] := reader_t parser_config $ state_t parser_state $ parsec_t syntax m
|
||
abbreviation basic_parser_m := parser_t id
|
||
abbreviation basic_parser := basic_parser_m syntax
|
||
abbreviation monad_basic_read := has_monad_lift_t basic_parser_m
|
||
|
||
-- an arbitrary `parser` type; parsers are usually some monad stack based on `basic_parser_m` returning `syntax`
|
||
variable {ρ : Type}
|
||
|
||
class has_tokens (r : ρ) := mk {} ::
|
||
(tokens : list token_config)
|
||
|
||
def donotinline {α : Type} (a : α) (f : α → α := id) :=
|
||
f (f a)
|
||
|
||
-- do NOT inline this function
|
||
def tokens (r : ρ) [has_tokens r] :=
|
||
donotinline (has_tokens.tokens r)
|
||
|
||
instance has_tokens.inhabited (r : ρ) : inhabited (has_tokens r) :=
|
||
⟨⟨[]⟩⟩
|
||
|
||
instance list.nil.tokens : parser.has_tokens ([] : list ρ) :=
|
||
default _
|
||
instance list.cons.tokens (r : ρ) (rs : list ρ) [parser.has_tokens r] [parser.has_tokens rs] :
|
||
parser.has_tokens (r::rs) :=
|
||
⟨tokens r ++ tokens rs⟩
|
||
|
||
class has_view (r : ρ) (α : out_param Type) :=
|
||
(view : syntax → α)
|
||
(review : α → syntax)
|
||
|
||
export has_view (view review)
|
||
|
||
def try_view {α : Type} (k : syntax_node_kind) [has_view k α] : syntax → option α
|
||
| stx@(syntax.node ⟨some k', _⟩) := if k.name = k'.name then some (has_view.view k stx) else none
|
||
| _ := none
|
||
|
||
instance has_view.default (r : ρ) : inhabited (parser.has_view r syntax) :=
|
||
⟨{ view := id, review := id }⟩
|
||
|
||
class has_view_default (r : ρ) (α : out_param Type) [has_view r α] (default : α) := mk {}
|
||
|
||
def message_of_parsec_message {μ : Type} (cfg : parser_config) (msg : parsec.message μ) : message :=
|
||
-- FIXME: translate position
|
||
{filename := cfg.filename, pos := ⟨0, 0⟩, text := to_string msg}
|
||
|
||
section
|
||
local attribute [reducible] parser_t
|
||
/-- Run parser stack, returning a partial syntax tree in case of a fatal error -/
|
||
protected def run {m : Type → Type} {α : Type} [monad m] (cfg : parser_config) (st : parser_state) (s : string) (r : parser_t m α) :
|
||
m (sum α syntax × message_log) :=
|
||
do r ← ((r.run cfg).run st).parse_with_eoi s,
|
||
pure $ match r with
|
||
| except.ok (a, st) := (sum.inl a, st.messages)
|
||
| except.error msg := (sum.inr msg.custom, message_log.empty.add (message_of_parsec_message cfg msg))
|
||
end
|
||
|
||
open coroutine
|
||
open monad_parsec
|
||
open parser.has_view
|
||
variables {α : Type} {m : Type → Type}
|
||
local notation `parser` := m syntax
|
||
|
||
def log_message {μ : Type} [monad m] [monad_reader parser_config m] [monad_state parser_state m] (msg : parsec.message μ) : m unit :=
|
||
do cfg ← read,
|
||
modify (λ st, {st with messages := st.messages.add (message_of_parsec_message cfg msg)})
|
||
|
||
def mk_token_trie (tokens : list token_config) : except string (trie token_config) :=
|
||
do -- the only hardcoded tokens, because they are never directly mentioned by a `parser`
|
||
let builtin_tokens : list token_config := [{«prefix» := "/-"}, {«prefix» := "--"}],
|
||
t ← (builtin_tokens ++ tokens).mfoldl (λ (t : trie token_config) tk,
|
||
match t.find tk.prefix with
|
||
| some tk' := (match tk.lbp, tk'.lbp with
|
||
| l, 0 := pure $ t.insert tk.prefix tk
|
||
| 0, _ := pure t
|
||
| l, l' := if l = l' then pure t else throw $
|
||
"invalid token '" ++ tk.prefix ++ "', has been defined with precedences " ++
|
||
to_string l ++ " and " ++ to_string l')
|
||
| none := pure $ t.insert tk.prefix tk)
|
||
trie.mk,
|
||
pure t
|
||
|
||
structure parse.view_ty :=
|
||
(root : syntax)
|
||
(eoi : syntax)
|
||
|
||
def parse.view : syntax → option parse.view_ty
|
||
| (syntax.node ⟨none, [root, eoi]⟩) := some ⟨root, eoi⟩
|
||
| _ := none
|
||
|
||
|
||
/- Monad stacks used in multiple files -/
|
||
|
||
@[derive monad alternative monad_reader monad_state monad_parsec monad_except monad_rec monad_basic_read]
|
||
def command_parser_m := rec_t unit syntax basic_parser_m
|
||
abbreviation command_parser := command_parser_m syntax
|
||
|
||
@[derive monad alternative monad_reader monad_state monad_parsec monad_except monad_rec monad_basic_read]
|
||
def term_parser_m := rec_t nat syntax command_parser_m
|
||
abbreviation term_parser := term_parser_m syntax
|
||
|
||
end «parser»
|
||
end lean
|