mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-30 22:05:32 +03:00
Add Edwin's Parser library from the Idris2 port
This commit is contained in:
parent
57a14ff401
commit
b4fa793b0c
14
libs/contrib/Control/Delayed.idr
Normal file
14
libs/contrib/Control/Delayed.idr
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
||| Utilities functions for contitionally delaying values.
|
||||||
|
module Control.Delayed
|
||||||
|
|
||||||
|
||| Type-level function for a conditionally infinite type.
|
||||||
|
public export
|
||||||
|
inf : Bool -> Type -> Type
|
||||||
|
inf False t = t
|
||||||
|
inf True t = Inf t
|
||||||
|
|
||||||
|
||| Type-level function for a conditionally lazy type.
|
||||||
|
public export
|
||||||
|
lazy : Bool -> Type -> Type
|
||||||
|
lazy False t = t
|
||||||
|
lazy True t = Lazy t
|
260
libs/contrib/Text/Parser.idr
Normal file
260
libs/contrib/Text/Parser.idr
Normal file
@ -0,0 +1,260 @@
|
|||||||
|
module Text.Parser
|
||||||
|
|
||||||
|
import Data.Bool.Extra
|
||||||
|
import Data.List
|
||||||
|
import Data.Nat
|
||||||
|
|
||||||
|
import public Text.Parser.Core
|
||||||
|
import public Text.Quantity
|
||||||
|
import public Text.Token
|
||||||
|
|
||||||
|
||| Parse a terminal based on a kind of token.
|
||||||
|
export
|
||||||
|
match : (Eq k, TokenKind k) =>
|
||||||
|
(kind : k) ->
|
||||||
|
Grammar (Token k) True (TokType kind)
|
||||||
|
match kind = terminal "Unrecognised input" $
|
||||||
|
\(Tok kind' text) => if kind' == kind
|
||||||
|
then Just $ tokValue kind text
|
||||||
|
else Nothing
|
||||||
|
|
||||||
|
||| Optionally parse a thing, with a default value if the grammar doesn't
|
||||||
|
||| match. May match the empty input.
|
||||||
|
export
|
||||||
|
option : {c : Bool} ->
|
||||||
|
(def : a) -> (p : Grammar tok c a) ->
|
||||||
|
Grammar tok False a
|
||||||
|
option {c = False} def p = p <|> pure def
|
||||||
|
option {c = True} def p = p <|> pure def
|
||||||
|
|
||||||
|
||| Optionally parse a thing.
|
||||||
|
||| To provide a default value, use `option` instead.
|
||||||
|
export
|
||||||
|
optional : {c : _} ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok False (Maybe a)
|
||||||
|
optional p = option Nothing (map Just p)
|
||||||
|
|
||||||
|
||| Try to parse one thing or the other, producing a value that indicates
|
||||||
|
||| which option succeeded. If both would succeed, the left option
|
||||||
|
||| takes priority.
|
||||||
|
export
|
||||||
|
choose : {c1, c2 : _} ->
|
||||||
|
(l : Grammar tok c1 a) ->
|
||||||
|
(r : Grammar tok c2 b) ->
|
||||||
|
Grammar tok (c1 && c2) (Either a b)
|
||||||
|
choose l r = map Left l <|> map Right r
|
||||||
|
|
||||||
|
||| Produce a grammar by applying a function to each element of a container,
|
||||||
|
||| then try each resulting grammar until the first one succeeds. Fails if the
|
||||||
|
||| container is empty.
|
||||||
|
export
|
||||||
|
choiceMap : {c : Bool} ->
|
||||||
|
(a -> Grammar tok c b) ->
|
||||||
|
Foldable t => t a ->
|
||||||
|
Grammar tok c b
|
||||||
|
choiceMap {c} f xs = foldr (\x, acc => rewrite sym (andSameNeutral c) in
|
||||||
|
f x <|> acc)
|
||||||
|
(fail "No more options") xs
|
||||||
|
|
||||||
|
%hide Prelude.(>>=)
|
||||||
|
|
||||||
|
||| Try each grammar in a container until the first one succeeds.
|
||||||
|
||| Fails if the container is empty.
|
||||||
|
export
|
||||||
|
choice : {c : _} ->
|
||||||
|
Foldable t => t (Grammar tok c a) ->
|
||||||
|
Grammar tok c a
|
||||||
|
choice = Parser.choiceMap id
|
||||||
|
|
||||||
|
mutual
|
||||||
|
||| Parse one or more things
|
||||||
|
export
|
||||||
|
some : Grammar tok True a ->
|
||||||
|
Grammar tok True (List a)
|
||||||
|
some p = pure (!p :: !(many p))
|
||||||
|
|
||||||
|
||| Parse zero or more things (may match the empty input)
|
||||||
|
export
|
||||||
|
many : Grammar tok True a ->
|
||||||
|
Grammar tok False (List a)
|
||||||
|
many p = option [] (some p)
|
||||||
|
|
||||||
|
||| Parse one or more instances of `p`, returning the parsed items and proof
|
||||||
|
||| that the resulting list is non-empty.
|
||||||
|
export
|
||||||
|
some' : (p : Grammar tok True a) ->
|
||||||
|
Grammar tok True (xs : List a ** NonEmpty xs)
|
||||||
|
some' p = pure (!p :: !(many p) ** IsNonEmpty)
|
||||||
|
|
||||||
|
mutual
|
||||||
|
private
|
||||||
|
count1 : (q : Quantity) ->
|
||||||
|
(p : Grammar tok True a) ->
|
||||||
|
Grammar tok True (List a)
|
||||||
|
count1 q p = do x <- p
|
||||||
|
seq (count q p)
|
||||||
|
(\xs => pure (x :: xs))
|
||||||
|
|
||||||
|
||| Parse `p`, repeated as specified by `q`, returning the list of values.
|
||||||
|
export
|
||||||
|
count : (q : Quantity) ->
|
||||||
|
(p : Grammar tok True a) ->
|
||||||
|
Grammar tok (isSucc (min q)) (List a)
|
||||||
|
count (Qty Z Nothing) p = many p
|
||||||
|
count (Qty Z (Just Z)) _ = pure []
|
||||||
|
count (Qty Z (Just (S max))) p = option [] $ count1 (atMost max) p
|
||||||
|
count (Qty (S min) Nothing) p = count1 (atLeast min) p
|
||||||
|
count (Qty (S min) (Just Z)) _ = fail "Quantity out of order"
|
||||||
|
count (Qty (S min) (Just (S max))) p = count1 (between (S min) max) p
|
||||||
|
|
||||||
|
mutual
|
||||||
|
||| Parse one or more instances of `p` until `end` succeeds, returning the
|
||||||
|
||| list of values from `p`. Guaranteed to consume input.
|
||||||
|
export
|
||||||
|
someTill : {c : Bool} ->
|
||||||
|
(end : Grammar tok c e) ->
|
||||||
|
(p : Grammar tok True a) ->
|
||||||
|
Grammar tok True (List a)
|
||||||
|
someTill {c} end p = do x <- p
|
||||||
|
seq (manyTill end p)
|
||||||
|
(\xs => pure (x :: xs))
|
||||||
|
|
||||||
|
||| Parse zero or more instances of `p` until `end` succeeds, returning the
|
||||||
|
||| list of values from `p`. Guaranteed to consume input if `end` consumes.
|
||||||
|
export
|
||||||
|
manyTill : {c : Bool} ->
|
||||||
|
(end : Grammar tok c e) ->
|
||||||
|
(p : Grammar tok True a) ->
|
||||||
|
Grammar tok c (List a)
|
||||||
|
manyTill {c} end p = rewrite sym (andTrueNeutral c) in
|
||||||
|
map (const []) end <|> someTill end p
|
||||||
|
|
||||||
|
||| Parse one or more instances of `p` until `end` succeeds, returning the
|
||||||
|
||| list of values from `p`, along with a proof that the resulting list is
|
||||||
|
||| non-empty.
|
||||||
|
export
|
||||||
|
someTill' : {c : Bool} ->
|
||||||
|
(end : Grammar tok c e) ->
|
||||||
|
(p : Grammar tok True a) ->
|
||||||
|
Grammar tok True (xs : List a ** NonEmpty xs)
|
||||||
|
someTill' end p
|
||||||
|
= do x <- p
|
||||||
|
seq (manyTill end p)
|
||||||
|
(\xs => pure (x :: xs ** IsNonEmpty))
|
||||||
|
|
||||||
|
mutual
|
||||||
|
||| Parse one or more instance of `skip` until `p` is encountered,
|
||||||
|
||| returning its value.
|
||||||
|
export
|
||||||
|
afterSome : {c : _} ->
|
||||||
|
(skip : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok True a
|
||||||
|
afterSome skip p = do skip
|
||||||
|
afterMany skip p
|
||||||
|
|
||||||
|
||| Parse zero or more instance of `skip` until `p` is encountered,
|
||||||
|
||| returning its value.
|
||||||
|
export
|
||||||
|
afterMany : {c : Bool} ->
|
||||||
|
(skip : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok c a
|
||||||
|
afterMany {c} skip p = rewrite sym (andTrueNeutral c) in
|
||||||
|
p <|> afterSome skip p
|
||||||
|
|
||||||
|
||| Parse one or more things, each separated by another thing.
|
||||||
|
export
|
||||||
|
sepBy1 : {c : Bool} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok c (List a)
|
||||||
|
sepBy1 {c} sep p = rewrite sym (orFalseNeutral c) in
|
||||||
|
[| p :: many (sep *> p) |]
|
||||||
|
|
||||||
|
||| Parse zero or more things, each separated by another thing. May
|
||||||
|
||| match the empty input.
|
||||||
|
export
|
||||||
|
sepBy : {c : _} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok False (List a)
|
||||||
|
sepBy sep p = option [] $ sepBy1 sep p
|
||||||
|
|
||||||
|
||| Parse one or more instances of `p` separated by `sep`, returning the
|
||||||
|
||| parsed items and proof that the resulting list is non-empty.
|
||||||
|
export
|
||||||
|
sepBy1' : {c : Bool} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok c (xs : List a ** NonEmpty xs)
|
||||||
|
sepBy1' {c} sep p
|
||||||
|
= rewrite sym (orFalseNeutral c) in
|
||||||
|
seq p (\x => do xs <- many (sep *> p)
|
||||||
|
pure (x :: xs ** IsNonEmpty))
|
||||||
|
|
||||||
|
||| Parse one or more instances of `p` separated by and optionally terminated by
|
||||||
|
||| `sep`.
|
||||||
|
export
|
||||||
|
sepEndBy1 : {c : Bool} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok c (List a)
|
||||||
|
sepEndBy1 {c} sep p = rewrite sym (orFalseNeutral c) in
|
||||||
|
sepBy1 sep p <* optional sep
|
||||||
|
|
||||||
|
||| Parse zero or more instances of `p`, separated by and optionally terminated
|
||||||
|
||| by `sep`. Will not match a separator by itself.
|
||||||
|
export
|
||||||
|
sepEndBy : {c : _} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok False (List a)
|
||||||
|
sepEndBy sep p = option [] $ sepEndBy1 sep p
|
||||||
|
|
||||||
|
||| Parse zero or more instances of `p`, separated by and optionally terminated
|
||||||
|
||| by `sep`, returning the parsed items and a proof that the resulting list
|
||||||
|
||| is non-empty.
|
||||||
|
export
|
||||||
|
sepEndBy1' : {c : Bool} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok c (xs : List a ** NonEmpty xs)
|
||||||
|
sepEndBy1' {c} sep p = rewrite sym (orFalseNeutral c) in
|
||||||
|
sepBy1' sep p <* optional sep
|
||||||
|
|
||||||
|
||| Parse one or more instances of `p`, separated and terminated by `sep`.
|
||||||
|
export
|
||||||
|
endBy1 : {c : Bool} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok True (List a)
|
||||||
|
endBy1 {c} sep p = some $ rewrite sym (orTrueTrue c) in
|
||||||
|
p <* sep
|
||||||
|
|
||||||
|
export
|
||||||
|
endBy : {c : _} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok False (List a)
|
||||||
|
endBy sep p = option [] $ endBy1 sep p
|
||||||
|
|
||||||
|
||| Parse zero or more instances of `p`, separated and terminated by `sep`,
|
||||||
|
||| returning the parsed items and a proof that the resulting list is non-empty.
|
||||||
|
export
|
||||||
|
endBy1' : {c : Bool} ->
|
||||||
|
(sep : Grammar tok True s) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok True (xs : List a ** NonEmpty xs)
|
||||||
|
endBy1' {c} sep p = some' $ rewrite sym (orTrueTrue c) in
|
||||||
|
p <* sep
|
||||||
|
|
||||||
|
||| Parse an instance of `p` that is between `left` and `right`.
|
||||||
|
export
|
||||||
|
between : {c : _} ->
|
||||||
|
(left : Grammar tok True l) ->
|
||||||
|
(right : Grammar tok True r) ->
|
||||||
|
(p : Grammar tok c a) ->
|
||||||
|
Grammar tok True a
|
||||||
|
between left right contents = left *> contents <* right
|
279
libs/contrib/Text/Parser/Core.idr
Normal file
279
libs/contrib/Text/Parser/Core.idr
Normal file
@ -0,0 +1,279 @@
|
|||||||
|
module Text.Parser.Core
|
||||||
|
|
||||||
|
import public Control.Delayed
|
||||||
|
import Data.List
|
||||||
|
|
||||||
|
||| Description of a language's grammar. The `tok` parameter is the type
|
||||||
|
||| of tokens, and the `consumes` flag is True if the language is guaranteed
|
||||||
|
||| to be non-empty - that is, successfully parsing the language is guaranteed
|
||||||
|
||| to consume some input.
|
||||||
|
public export
|
||||||
|
data Grammar : (tok : Type) -> (consumes : Bool) -> Type -> Type where
|
||||||
|
Empty : (val : ty) -> Grammar tok False ty
|
||||||
|
Terminal : String -> (tok -> Maybe a) -> Grammar tok True a
|
||||||
|
NextIs : String -> (tok -> Bool) -> Grammar tok False tok
|
||||||
|
EOF : Grammar tok False ()
|
||||||
|
|
||||||
|
Fail : Bool -> String -> Grammar tok c ty
|
||||||
|
Commit : Grammar tok False ()
|
||||||
|
MustWork : Grammar tok c a -> Grammar tok c a
|
||||||
|
|
||||||
|
SeqEat : {c2 : _} -> Grammar tok True a -> Inf (a -> Grammar tok c2 b) ->
|
||||||
|
Grammar tok True b
|
||||||
|
SeqEmpty : {c1, c2 : _} -> Grammar tok c1 a -> (a -> Grammar tok c2 b) ->
|
||||||
|
Grammar tok (c1 || c2) b
|
||||||
|
Alt : {c1, c2 : _} -> Grammar tok c1 ty -> Grammar tok c2 ty ->
|
||||||
|
Grammar tok (c1 && c2) ty
|
||||||
|
|
||||||
|
||| Sequence two grammars. If either consumes some input, the sequence is
|
||||||
|
||| guaranteed to consume some input. If the first one consumes input, the
|
||||||
|
||| second is allowed to be recursive (because it means some input has been
|
||||||
|
||| consumed and therefore the input is smaller)
|
||||||
|
public export %inline
|
||||||
|
(>>=) : {c1, c2 : Bool} ->
|
||||||
|
Grammar tok c1 a ->
|
||||||
|
inf c1 (a -> Grammar tok c2 b) ->
|
||||||
|
Grammar tok (c1 || c2) b
|
||||||
|
(>>=) {c1 = False} = SeqEmpty
|
||||||
|
(>>=) {c1 = True} = SeqEat
|
||||||
|
|
||||||
|
||| Sequence two grammars. If either consumes some input, the sequence is
|
||||||
|
||| guaranteed to consume input. This is an explicitly non-infinite version
|
||||||
|
||| of `>>=`.
|
||||||
|
export
|
||||||
|
seq : {c1, c2 : _} -> Grammar tok c1 a ->
|
||||||
|
(a -> Grammar tok c2 b) ->
|
||||||
|
Grammar tok (c1 || c2) b
|
||||||
|
seq = SeqEmpty
|
||||||
|
|
||||||
|
||| Sequence a grammar followed by the grammar it returns.
|
||||||
|
export
|
||||||
|
join : {c1, c2 : Bool} ->
|
||||||
|
Grammar tok c1 (Grammar tok c2 a) ->
|
||||||
|
Grammar tok (c1 || c2) a
|
||||||
|
join {c1 = False} p = SeqEmpty p id
|
||||||
|
join {c1 = True} p = SeqEat p id
|
||||||
|
|
||||||
|
||| Give two alternative grammars. If both consume, the combination is
|
||||||
|
||| guaranteed to consume.
|
||||||
|
export
|
||||||
|
(<|>) : {c1, c2 : _} ->
|
||||||
|
Grammar tok c1 ty ->
|
||||||
|
Grammar tok c2 ty ->
|
||||||
|
Grammar tok (c1 && c2) ty
|
||||||
|
(<|>) = Alt
|
||||||
|
|
||||||
|
||| Allows the result of a grammar to be mapped to a different value.
|
||||||
|
export
|
||||||
|
{c : _} -> Functor (Grammar tok c) where
|
||||||
|
map f (Empty val) = Empty (f val)
|
||||||
|
map f (Fail fatal msg) = Fail fatal msg
|
||||||
|
map f (MustWork g) = MustWork (map f g)
|
||||||
|
map f (Terminal msg g) = Terminal msg (\t => map f (g t))
|
||||||
|
map f (Alt x y) = Alt (map f x) (map f y)
|
||||||
|
map f (SeqEat act next)
|
||||||
|
= SeqEat act (\val => map f (next val))
|
||||||
|
map f (SeqEmpty act next)
|
||||||
|
= SeqEmpty act (\val => map f (next val))
|
||||||
|
-- The remaining constructors (NextIs, EOF, Commit) have a fixed type,
|
||||||
|
-- so a sequence must be used.
|
||||||
|
map {c = False} f p = SeqEmpty p (Empty . f)
|
||||||
|
|
||||||
|
||| Sequence a grammar with value type `a -> b` and a grammar
|
||||||
|
||| with value type `a`. If both succeed, apply the function
|
||||||
|
||| from the first grammar to the value from the second grammar.
|
||||||
|
||| Guaranteed to consume if either grammar consumes.
|
||||||
|
export
|
||||||
|
(<*>) : {c1, c2 : _} ->
|
||||||
|
Grammar tok c1 (a -> b) ->
|
||||||
|
Grammar tok c2 a ->
|
||||||
|
Grammar tok (c1 || c2) b
|
||||||
|
(<*>) x y = SeqEmpty x (\f => map f y)
|
||||||
|
|
||||||
|
||| Sequence two grammars. If both succeed, use the value of the first one.
|
||||||
|
||| Guaranteed to consume if either grammar consumes.
|
||||||
|
export
|
||||||
|
(<*) : {c1, c2 : _} ->
|
||||||
|
Grammar tok c1 a ->
|
||||||
|
Grammar tok c2 b ->
|
||||||
|
Grammar tok (c1 || c2) a
|
||||||
|
(<*) x y = map const x <*> y
|
||||||
|
|
||||||
|
||| Sequence two grammars. If both succeed, use the value of the second one.
|
||||||
|
||| Guaranteed to consume if either grammar consumes.
|
||||||
|
export
|
||||||
|
(*>) : {c1, c2 : _} ->
|
||||||
|
Grammar tok c1 a ->
|
||||||
|
Grammar tok c2 b ->
|
||||||
|
Grammar tok (c1 || c2) b
|
||||||
|
(*>) x y = map (const id) x <*> y
|
||||||
|
|
||||||
|
||| Produce a grammar that can parse a different type of token by providing a
|
||||||
|
||| function converting the new token type into the original one.
|
||||||
|
export
|
||||||
|
mapToken : (a -> b) -> Grammar b c ty -> Grammar a c ty
|
||||||
|
mapToken f (Empty val) = Empty val
|
||||||
|
mapToken f (Terminal msg g) = Terminal msg (g . f)
|
||||||
|
mapToken f (NextIs msg g) = SeqEmpty (NextIs msg (g . f)) (Empty . f)
|
||||||
|
mapToken f EOF = EOF
|
||||||
|
mapToken f (Fail fatal msg) = Fail fatal msg
|
||||||
|
mapToken f (MustWork g) = MustWork (mapToken f g)
|
||||||
|
mapToken f Commit = Commit
|
||||||
|
mapToken f (SeqEat act next) = SeqEat (mapToken f act) (\x => mapToken f (next x))
|
||||||
|
mapToken f (SeqEmpty act next) = SeqEmpty (mapToken f act) (\x => mapToken f (next x))
|
||||||
|
mapToken f (Alt x y) = Alt (mapToken f x) (mapToken f y)
|
||||||
|
|
||||||
|
||| Always succeed with the given value.
|
||||||
|
export
|
||||||
|
pure : (val : ty) -> Grammar tok False ty
|
||||||
|
pure = Empty
|
||||||
|
|
||||||
|
||| Check whether the next token satisfies a predicate
|
||||||
|
export
|
||||||
|
nextIs : String -> (tok -> Bool) -> Grammar tok False tok
|
||||||
|
nextIs = NextIs
|
||||||
|
|
||||||
|
||| Look at the next token in the input
|
||||||
|
export
|
||||||
|
peek : Grammar tok False tok
|
||||||
|
peek = nextIs "Unrecognised token" (const True)
|
||||||
|
|
||||||
|
||| Succeeds if running the predicate on the next token returns Just x,
|
||||||
|
||| returning x. Otherwise fails.
|
||||||
|
export
|
||||||
|
terminal : String -> (tok -> Maybe a) -> Grammar tok True a
|
||||||
|
terminal = Terminal
|
||||||
|
|
||||||
|
||| Always fail with a message
|
||||||
|
export
|
||||||
|
fail : String -> Grammar tok c ty
|
||||||
|
fail = Fail False
|
||||||
|
|
||||||
|
export
|
||||||
|
fatalError : String -> Grammar tok c ty
|
||||||
|
fatalError = Fail True
|
||||||
|
|
||||||
|
||| Succeed if the input is empty
|
||||||
|
export
|
||||||
|
eof : Grammar tok False ()
|
||||||
|
eof = EOF
|
||||||
|
|
||||||
|
||| Commit to an alternative; if the current branch of an alternative
|
||||||
|
||| fails to parse, no more branches will be tried
|
||||||
|
export
|
||||||
|
commit : Grammar tok False ()
|
||||||
|
commit = Commit
|
||||||
|
|
||||||
|
||| If the parser fails, treat it as a fatal error
|
||||||
|
export
|
||||||
|
mustWork : Grammar tok c ty -> Grammar tok c ty
|
||||||
|
mustWork = MustWork
|
||||||
|
|
||||||
|
data ParseResult : List tok -> (consumes : Bool) -> Type -> Type where
|
||||||
|
Failure : {xs : List tok} ->
|
||||||
|
(committed : Bool) -> (fatal : Bool) ->
|
||||||
|
(err : String) -> (rest : List tok) -> ParseResult xs c ty
|
||||||
|
EmptyRes : (committed : Bool) ->
|
||||||
|
(val : ty) -> (more : List tok) -> ParseResult more False ty
|
||||||
|
NonEmptyRes : {xs : List tok} ->
|
||||||
|
(committed : Bool) ->
|
||||||
|
(val : ty) -> (more : List tok) ->
|
||||||
|
ParseResult (x :: xs ++ more) c ty
|
||||||
|
|
||||||
|
-- Take the result of an alternative branch, reset the commit flag to
|
||||||
|
-- the commit flag from the outer alternative, and weaken the 'consumes'
|
||||||
|
-- flag to take both alternatives into account
|
||||||
|
weakenRes : {whatever, c : Bool} -> {xs : List tok} ->
|
||||||
|
(com' : Bool) ->
|
||||||
|
ParseResult xs c ty -> ParseResult xs (whatever && c) ty
|
||||||
|
weakenRes com' (Failure com fatal msg ts) = Failure com' fatal msg ts
|
||||||
|
weakenRes {whatever=True} com' (EmptyRes com val xs) = EmptyRes com' val xs
|
||||||
|
weakenRes {whatever=False} com' (EmptyRes com val xs) = EmptyRes com' val xs
|
||||||
|
weakenRes com' (NonEmptyRes {xs} com val more) = NonEmptyRes {xs} com' val more
|
||||||
|
|
||||||
|
doParse : (commit : Bool) ->
|
||||||
|
(act : Grammar tok c ty) ->
|
||||||
|
(xs : List tok) ->
|
||||||
|
ParseResult xs c ty
|
||||||
|
-- doParse com xs act with (sizeAccessible xs)
|
||||||
|
doParse com (Empty val) xs = EmptyRes com val xs
|
||||||
|
doParse com (Fail fatal str) [] = Failure com fatal str []
|
||||||
|
doParse com (Fail fatal str) (x :: xs) = Failure com fatal str (x :: xs)
|
||||||
|
doParse com Commit xs = EmptyRes True () xs
|
||||||
|
doParse com (MustWork g) xs =
|
||||||
|
let p' = doParse com g xs in
|
||||||
|
case p' of
|
||||||
|
Failure com' _ msg ts => Failure com' True msg ts
|
||||||
|
res => res
|
||||||
|
doParse com (Terminal err f) [] = Failure com False "End of input" []
|
||||||
|
doParse com (Terminal err f) (x :: xs)
|
||||||
|
= maybe
|
||||||
|
(Failure com False err (x :: xs))
|
||||||
|
(\a => NonEmptyRes com {xs=[]} a xs)
|
||||||
|
(f x)
|
||||||
|
doParse com EOF [] = EmptyRes com () []
|
||||||
|
doParse com EOF (x :: xs)
|
||||||
|
= Failure com False "Expected end of input" (x :: xs)
|
||||||
|
doParse com (NextIs err f) [] = Failure com False "End of input" []
|
||||||
|
doParse com (NextIs err f) (x :: xs)
|
||||||
|
= if f x
|
||||||
|
then EmptyRes com x (x :: xs)
|
||||||
|
else Failure com False err (x :: xs)
|
||||||
|
doParse com (Alt {c1} {c2} x y) xs
|
||||||
|
= let p' = doParse False x xs in
|
||||||
|
case p' of
|
||||||
|
Failure com' fatal msg ts
|
||||||
|
=> if com' || fatal
|
||||||
|
-- If the alternative had committed, don't try the
|
||||||
|
-- other branch (and reset commit flag)
|
||||||
|
then Failure com fatal msg ts
|
||||||
|
else weakenRes {whatever = c1} com (doParse False y xs)
|
||||||
|
-- Successfully parsed the first option, so use the outer commit flag
|
||||||
|
EmptyRes _ val xs => EmptyRes com val xs
|
||||||
|
NonEmptyRes {xs=xs'} _ val more => NonEmptyRes {xs=xs'} com val more
|
||||||
|
doParse com (SeqEmpty {c1} {c2} act next) xs
|
||||||
|
= let p' = assert_total (doParse {c = c1} com act xs) in
|
||||||
|
case p' of
|
||||||
|
Failure com fatal msg ts => Failure com fatal msg ts
|
||||||
|
EmptyRes com val xs =>
|
||||||
|
case assert_total (doParse com (next val) xs) of
|
||||||
|
Failure com' fatal msg ts => Failure com' fatal msg ts
|
||||||
|
EmptyRes com' val xs => EmptyRes com' val xs
|
||||||
|
NonEmptyRes {xs=xs'} com' val more =>
|
||||||
|
NonEmptyRes {xs=xs'} com' val more
|
||||||
|
NonEmptyRes {x} {xs=ys} com val more =>
|
||||||
|
case (assert_total (doParse com (next val) more)) of
|
||||||
|
Failure com' fatal msg ts => Failure com' fatal msg ts
|
||||||
|
EmptyRes com' val _ => NonEmptyRes {xs=ys} com' val more
|
||||||
|
NonEmptyRes {x=x1} {xs=xs1} com' val more' =>
|
||||||
|
rewrite appendAssociative (x :: ys) (x1 :: xs1) more' in
|
||||||
|
NonEmptyRes {xs = ys ++ (x1 :: xs1)} com' val more'
|
||||||
|
doParse com (SeqEat act next) xs with (doParse com act xs)
|
||||||
|
doParse com (SeqEat act next) xs | Failure com' fatal msg ts
|
||||||
|
= Failure com' fatal msg ts
|
||||||
|
doParse com (SeqEat act next) (x :: (ys ++ more)) | (NonEmptyRes {xs=ys} com' val more)
|
||||||
|
= let p' = assert_total (doParse com' (next val) more) in
|
||||||
|
case p' of
|
||||||
|
Failure com' fatal msg ts => Failure com' fatal msg ts
|
||||||
|
EmptyRes com' val _ => NonEmptyRes {xs=ys} com' val more
|
||||||
|
NonEmptyRes {x=x1} {xs=xs1} com' val more' =>
|
||||||
|
rewrite appendAssociative (x :: ys) (x1 :: xs1) more' in
|
||||||
|
NonEmptyRes {xs = ys ++ (x1 :: xs1)} com' val more'
|
||||||
|
-- This next line is not strictly necessary, but it stops the coverage
|
||||||
|
-- checker taking a really long time and eating lots of memory...
|
||||||
|
-- doParse _ _ _ = Failure True True "Help the coverage checker!" []
|
||||||
|
|
||||||
|
public export
|
||||||
|
data ParseError tok = Error String (List tok)
|
||||||
|
|
||||||
|
||| Parse a list of tokens according to the given grammar. If successful,
|
||||||
|
||| returns a pair of the parse result and the unparsed tokens (the remaining
|
||||||
|
||| input).
|
||||||
|
export
|
||||||
|
parse : {c : _} -> (act : Grammar tok c ty) -> (xs : List tok) ->
|
||||||
|
Either (ParseError tok) (ty, List tok)
|
||||||
|
parse act xs
|
||||||
|
= case doParse False act xs of
|
||||||
|
Failure _ _ msg ts => Left (Error msg ts)
|
||||||
|
EmptyRes _ val rest => pure (val, rest)
|
||||||
|
NonEmptyRes _ val rest => pure (val, rest)
|
42
libs/contrib/Text/Quantity.idr
Normal file
42
libs/contrib/Text/Quantity.idr
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
module Text.Quantity
|
||||||
|
|
||||||
|
public export
|
||||||
|
record Quantity where
|
||||||
|
constructor Qty
|
||||||
|
min : Nat
|
||||||
|
max : Maybe Nat
|
||||||
|
|
||||||
|
public export
|
||||||
|
Show Quantity where
|
||||||
|
show (Qty Z Nothing) = "*"
|
||||||
|
show (Qty Z (Just (S Z))) = "?"
|
||||||
|
show (Qty (S Z) Nothing) = "+"
|
||||||
|
show (Qty min max) = "{" ++ show min ++ showMax ++ "}"
|
||||||
|
where
|
||||||
|
showMax : String
|
||||||
|
showMax = case max of
|
||||||
|
Nothing => ","
|
||||||
|
Just max' => if min == max'
|
||||||
|
then ""
|
||||||
|
else "," ++ show max'
|
||||||
|
|
||||||
|
public export
|
||||||
|
between : Nat -> Nat -> Quantity
|
||||||
|
between min max = Qty min (Just max)
|
||||||
|
|
||||||
|
public export
|
||||||
|
atLeast : Nat -> Quantity
|
||||||
|
atLeast min = Qty min Nothing
|
||||||
|
|
||||||
|
public export
|
||||||
|
atMost : Nat -> Quantity
|
||||||
|
atMost max = Qty 0 (Just max)
|
||||||
|
|
||||||
|
public export
|
||||||
|
exactly : Nat -> Quantity
|
||||||
|
exactly n = Qty n (Just n)
|
||||||
|
|
||||||
|
public export
|
||||||
|
inOrder : Quantity -> Bool
|
||||||
|
inOrder (Qty min Nothing) = True
|
||||||
|
inOrder (Qty min (Just max)) = min <= max
|
38
libs/contrib/Text/Token.idr
Normal file
38
libs/contrib/Text/Token.idr
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
module Text.Token
|
||||||
|
|
||||||
|
||| For a type `kind`, specify a way of converting the recognised
|
||||||
|
||| string into a value.
|
||||||
|
|||
|
||||||
|
||| ```idris example
|
||||||
|
||| data SimpleKind = SKString | SKInt | SKComma
|
||||||
|
|||
|
||||||
|
||| TokenKind SimpleKind where
|
||||||
|
||| TokType SKString = String
|
||||||
|
||| TokType SKInt = Int
|
||||||
|
||| TokType SKComma = ()
|
||||||
|
|||
|
||||||
|
||| tokValue SKString x = x
|
||||||
|
||| tokValue SKInt x = cast x
|
||||||
|
||| tokValue SKComma x = ()
|
||||||
|
||| ```
|
||||||
|
public export
|
||||||
|
interface TokenKind (k : Type) where
|
||||||
|
||| The type that a token of this kind converts to.
|
||||||
|
TokType : k -> Type
|
||||||
|
|
||||||
|
||| Convert a recognised string into a value. The type is determined
|
||||||
|
||| by the kind of token.
|
||||||
|
tokValue : (kind : k) -> String -> TokType kind
|
||||||
|
|
||||||
|
||| A token of a particular kind and the text that was recognised.
|
||||||
|
public export
|
||||||
|
record Token k where
|
||||||
|
constructor Tok
|
||||||
|
kind : k
|
||||||
|
text : String
|
||||||
|
|
||||||
|
||| Get the value of a `Token k`. The resulting type depends upon
|
||||||
|
||| the kind of token.
|
||||||
|
public export
|
||||||
|
value : TokenKind k => (t : Token k) -> TokType (kind t)
|
||||||
|
value (Tok k x) = tokValue k x
|
@ -2,4 +2,9 @@ package contrib
|
|||||||
|
|
||||||
modules = Syntax.WithProof,
|
modules = Syntax.WithProof,
|
||||||
Syntax.PreorderReasoning,
|
Syntax.PreorderReasoning,
|
||||||
Data.List.TailRec
|
Data.List.TailRec,
|
||||||
|
Data.Bool.Extra,
|
||||||
|
Text.Token,
|
||||||
|
Text.Quantity,
|
||||||
|
Control.Delayed,
|
||||||
|
Text.Parser
|
||||||
|
Loading…
Reference in New Issue
Block a user