token stuff

This commit is contained in:
rhiannon morris 2022-05-03 02:03:22 +02:00
parent a510737462
commit 699c6a5ca1
2 changed files with 65 additions and 70 deletions

View file

@ -4,6 +4,7 @@ import Quox.Error
import Data.String import Data.String
import public Text.Lexer import public Text.Lexer
import public Text.Lexer.Tokenizer
import Generics.Derive import Generics.Derive
%default total %default total
@ -13,6 +14,7 @@ import Generics.Derive
public export public export
record Error where record Error where
constructor Err constructor Err
reason : StopReason
line, col : Int line, col : Int
char : Char char : Char
@ -32,30 +34,13 @@ data Punc
public export public export
data Kind data Token
= P Punc = P Punc
| Name | Symbol | Name String | Symbol String
%runElab derive "Kind" [Generic, Meta, Eq, Ord, DecEq, Show] %runElab derive "Token" [Generic, Meta, Eq, Ord, DecEq, Show]
export
TokenKind Kind where
TokType (P _) = ()
TokType Name = String
TokType Symbol = String
tokValue (P _) _ = ()
tokValue Name x = x
tokValue Symbol x = assert_total strTail x
Token' = Token (Maybe Kind)
Token = Token Kind
TokenMap' = TokenMap Token'
TokenMap = TokenMap Token
nameStart = pred $ \c => isAlpha c || c == '_' nameStart = pred $ \c => isAlpha c || c == '_'
nameCont = pred $ \c => isAlphaNum c || c == '_' || c == '\'' nameCont = pred $ \c => isAlphaNum c || c == '_' || c == '\''
@ -67,37 +52,43 @@ wild = exact "_" <+> reject nameCont
symbol = exact "'" <+> name symbol = exact "'" <+> name
tokens = toTokenMap [ skip : Lexer -> Tokenizer (Maybe a)
(lineComment (exact "--"), Nothing), skip lex = match lex $ const Nothing
(blockComment (exact "{-") (exact "-}"), Nothing),
(spaces, Nothing),
(exact "(", Just $ P LParen), (exact ")", Just $ P RParen), simple : List String -> a -> Tokenizer (Maybe a)
(exact "[", Just $ P LSquare), (exact "]", Just $ P RSquare), simple str x = match (choice $ map exact str) $ const $ Just x
(exact "{", Just $ P LBrace), (exact "}", Just $ P RBrace),
(exact ",", Just $ P Comma),
(exact "::" <|> exact "", Just $ P DblColon),
(exact ":", Just $ P Colon),
(exact "->" <|> exact "", Just $ P Arrow), choice : (xs : List (Tokenizer a)) -> {auto 0 _ : So (isCons xs)} -> Tokenizer a
(exact "=>" <|> exact "", Just $ P DblArrow), choice (t :: ts) = foldl (\a, b => a <|> b) t ts
(exact "**" <|> exact "×", Just $ P Times),
(exact "<<" <|> exact "", Just $ P Triangle),
(wild, Just $ P Wild),
(name, Just Name), (symbol, Just Symbol) tokens : Tokenizer (Maybe Token)
tokens = choice [
skip $ lineComment $ exact "--",
skip $ blockComment (exact "{-") (exact "-}"),
skip spaces,
simple ["("] $ P LParen, simple [")"] $ P RParen,
simple ["["] $ P LSquare, simple ["]"] $ P RSquare,
simple ["{"] $ P LBrace, simple ["}"] $ P RBrace,
simple [","] $ P Comma,
simple ["::", ""] $ P DblColon,
simple [":"] $ P Colon,
simple ["->", ""] $ P Arrow,
simple ["=>", ""] $ P DblArrow,
simple ["**", "×"] $ P Times,
simple ["<<", ""] $ P Triangle,
match wild $ const $ Just $ P Wild,
match name $ Just . Name,
match symbol $ Just . Symbol . assert_total strTail
] ]
sequenceT : Token (Maybe Kind) -> Maybe (Token Kind)
sequenceT tok =
case tok.kind of
Just k => Just $ {kind := k} tok
Nothing => Nothing
export export
lex : MonadThrow Error m => String -> m (List (WithBounds Token)) lex : MonadThrow Error m => String -> m (List (WithBounds Token))
lex str = lex str =
let (res, (line, col, str)) = lex tokens str in let (res, (reason, line, col, str)) = lex tokens str in
case asList str of case reason of
[] => pure $ mapMaybe (traverse sequenceT) res EndInput => pure $ mapMaybe sequence res
c :: _ => throw $ Err {line, col, char = c} _ => let char = assert_total strIndex str 0 in
throw $ Err {reason, line, col, char}

View file

@ -6,32 +6,36 @@ import TAP
export export
ToInfo Error where ToInfo Error where
toInfo (Err line col char) = toInfo (Err reason line col char) =
[("line", show line), ("col", show col), ("char", show char)] [("reason", show reason),
("line", show line),
("col", show col),
("char", show char)]
data ExtraError data ExtraError
= WrongAnswer (List Kind) (List Kind) = WrongAnswer (List Token) (List Token)
| TestFailed (List Kind) | TestFailed (List Token)
ToInfo ExtraError where ToInfo ExtraError where
toInfo (WrongAnswer exp got) = toInfo (WrongAnswer exp got) =
[("expected", show exp), ("received", show got)] [("expected", show exp), ("received", show got)]
toInfo (TestFailed got) = [("failed", show got)] toInfo (TestFailed got) =
[("failed", show got)]
parameters (label : String) (input : String) parameters (label : String) (input : String)
acceptsSuchThat' : (List Kind -> Maybe ExtraError) -> Test acceptsSuchThat' : (List Token -> Maybe ExtraError) -> Test
acceptsSuchThat' p = test {es = [Lexer.Error, ExtraError]} label $ do acceptsSuchThat' p = test {es = [Lexer.Error, ExtraError]} label $ do
res <- map (kind . val) <$> lex input res <- map val <$> lex input
case p res of case p res of
Just err => throw err Just err => throw err
Nothing => pure () Nothing => pure ()
acceptsSuchThat : (List Kind -> Bool) -> Test acceptsSuchThat : (List Token -> Bool) -> Test
acceptsSuchThat p = acceptsSuchThat' $ \res => acceptsSuchThat p = acceptsSuchThat' $ \res =>
if p res then Nothing else Just $ TestFailed res if p res then Nothing else Just $ TestFailed res
acceptsWith : List Kind -> Test acceptsWith : List Token -> Test
acceptsWith expect = acceptsSuchThat' $ \res => acceptsWith expect = acceptsSuchThat' $ \res =>
if res == expect then Nothing else Just $ WrongAnswer expect res if res == expect then Nothing else Just $ WrongAnswer expect res
@ -40,13 +44,13 @@ parameters (label : String) (input : String)
rejects : Test rejects : Test
rejects = testThrows {es = [Lexer.Error]} label $ delay $ rejects = testThrows {es = [Lexer.Error]} label $ delay $
map (kind . val) <$> lex input map val <$> lex input
parameters (input : String) {default False esc : Bool} parameters (input : String) {default False esc : Bool}
show' : String -> String show' : String -> String
show' s = if esc then show s else "\"\{s}\"" show' s = if esc then show s else "\"\{s}\""
acceptsWith' : List Kind -> Test acceptsWith' : List Token -> Test
acceptsWith' = acceptsWith (show' input) input acceptsWith' = acceptsWith (show' input) input
accepts' : Test accepts' : Test
@ -87,19 +91,19 @@ tests = "lexer" :- [
], ],
"names & symbols" :- [ "names & symbols" :- [
acceptsWith' "a" [Name], acceptsWith' "a" [Name "a"],
acceptsWith' "abc" [Name], acceptsWith' "abc" [Name "abc"],
acceptsWith' "_a" [Name], acceptsWith' "_a" [Name "_a"],
acceptsWith' "a_" [Name], acceptsWith' "a_" [Name "a_"],
acceptsWith' "a_b" [Name], acceptsWith' "a_b" [Name "a_b"],
acceptsWith' "abc'" [Name], acceptsWith' "abc'" [Name "abc'"],
acceptsWith' "a'b'c''" [Name], acceptsWith' "a'b'c''" [Name "a'b'c''"],
acceptsWith' "abc123" [Name], acceptsWith' "abc123" [Name "abc123"],
acceptsWith' "ab cd" [Name, Name], acceptsWith' "ab cd" [Name "ab", Name "cd"],
acceptsWith' "ab{--}cd" [Name, Name], acceptsWith' "ab{--}cd" [Name "ab", Name "cd"],
acceptsWith' "'a" [Symbol], acceptsWith' "'a" [Symbol "a"],
acceptsWith' "'ab" [Symbol], acceptsWith' "'ab" [Symbol "ab"],
acceptsWith' "'_b" [Symbol], acceptsWith' "'_b" [Symbol "_b"],
rejects' "'" rejects' "'"
] ]
] ]