aboutsummaryrefslogtreecommitdiff
path: root/src/Fun/Parser.hs
blob: 8042caa518ed3437dc4ae32584feb175037bab45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
module Fun.Parser where

import           Fun.Tree

data Trace = StringTrace String | OrTrace [Trace] [Trace]
data State = State
  { trace :: [Trace]
  , line  :: Maybe String
  }
type Parser a = String -> Either State (a, String)

----
-- I don't use Data.Char because of planned future reimplementation in Fun
----

lowerAlpha :: [Char]
lowerAlpha = "abcdefghijklmnopqrstuvwxyzαβγδεζηθικλμνξοπρστυφχψω"

upperAlpha :: [Char]
upperAlpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ"

isDigit :: Char -> Bool
isDigit c = elem c "0123456789"

isLower :: Char -> Bool
isLower c = elem c lowerAlpha

isUpper :: Char -> Bool
isUpper c = elem c upperAlpha

isAlpha :: Char -> Bool
isAlpha c = elem c $ lowerAlpha ++ upperAlpha

----

char :: Parser Char
char []       = Left $ State [StringTrace "char"] Nothing
char (x : xs) = Right (x, xs)

digit :: Parser Char
digit = char <=> isDigit <?> "digit"

digits :: Parser String
digits = iter digit <?> "digits"

number :: Parser Integer
number =
  literal '-'
    <-+> digits
    >>>  (\n -> -1 * (read n :: Integer))
    <|>  digits
    >>>  (\n -> read n :: Integer)
    <?>  "number"

space :: Parser Char
space = char <=> (== ' ') <?> "space"

newline :: Parser Char
newline = char <=> (== '\n') <?> "newline"

notSpace :: Parser Char
notSpace = char <=> (/= ' ') <?> "non-space"

letter :: Parser Char
letter = char <=> isAlpha <?> "letter"

letters :: Parser String
letters = iter letter <?> "letters"

alphanum :: Parser Char
alphanum = digit <|> letter <?> "letter or digit"

special :: Parser Char
special = oneOf "+-*/<^>$@#&!?" <?> "special character"

oneOf :: [Char] -> Parser Char
oneOf s = char <=> (`elem` s) <?> "one of"

string :: Parser String
string =
  literal '"' <-+> iter (char <=> (/= '"')) <+-> literal '"' <?> "string"

literal :: Char -> Parser Char
literal c = char <=> (== c) <?> "char (" ++ [c] ++ ")"

result :: a -> Parser a
result a cs = Right (a, cs)

invalid :: a -> Parser a
invalid a cs = Left $ State [StringTrace "<unknown>"] $ Just "Invalid"

iter :: Parser Char -> Parser String
iter m = (iterS m) <=> (/= "") <?> "multiple chars"

iterS :: Parser a -> Parser [a]
iterS m = m <+> iterS m >>> (\(x, y) -> x : y) <|> result [] <?> "multiple"

iterFail :: Parser a -> Parser [a]
iterFail m = m <+> iterFail m >>> (\(x, y) -> x : y)

token :: Parser a -> Parser a
token = (<+-> iterS space)

-- A parser that will accept a given alpha string
acceptWord :: String -> Parser String
acceptWord w = token (letters <=> (== w))

-- A parser that will accept a given string
accept :: String -> Parser String
accept w = token ((iter notSpace) <=> (== w))

-- Given a parser and a predicate return the parser only if it satisfies the predicate
infix 7 <=>
(<=>) :: Parser a -> (a -> Bool) -> Parser a
(parser <=> predicate) input = case parser input of
  Left  a         -> Left a
  Right (a, rest) -> if (predicate a)
    then Right (a, rest)
    else Left $ State [] $ Just $ head . lines $ input

-- Combine two parser together pairing their results up in a tuple
infixl 6 <+>
(<+>) :: Parser a -> Parser b -> Parser (a, b)
(parserA <+> parserB) input = case parserA input of
  Left  a                    -> Left a
  Right (resultA, remainder) -> case parserB remainder of
    Left  a             -> Left a
    Right (resultB, cs) -> Right ((resultA, resultB), cs)

-- Sequence operator that discards the second result
infixl 6 <+->
(<+->) :: Parser a -> Parser b -> Parser a
(parserA <+-> parserB) input = case parserA input of
  Left  a                    -> Left a
  Right (resultA, remainder) -> case parserB remainder of
    Left  a       -> Left a
    Right (_, cs) -> Right (resultA, cs)

-- Sequence operator that discards the first result
infixl 6 <-+>
(<-+>) :: Parser a -> Parser b -> Parser b
(parserA <-+> parserB) input = case parserA input of
  Left  a                    -> Left a
  Right (resultA, remainder) -> case parserB remainder of
    Left  a             -> Left a
    Right (resultB, cs) -> Right (resultB, cs)

-- Transform a parsers result
infixl 5 >>>
(>>>) :: Parser a -> (a -> b) -> Parser b
(parser >>> transformer) input = case parser input of
  Left  a                    -> Left a
  Right (resultA, remainder) -> Right ((transformer resultA), remainder)

-- Extract a parsers result	
infix 4 +>
(+>) :: Parser a -> (a -> Parser b) -> Parser b
(parser +> function) input = case parser input of
  Left  a       -> Left a
  Right (a, cs) -> function a cs

-- Combine two parsers using a 'or' type operation
infixl 3 <|>
(<|>) :: Parser a -> Parser a -> Parser a
(parserA <|> parserB) input = case parserA input of
  Left (State t _) -> case parserB input of
    Left (State t' l) -> case (t, t') of
      (t , []) -> Left (State t l)
      ([], t') -> Left (State t' l)
      (t , t') -> Left (State [OrTrace t t'] l)
    Right (result, cs) -> Right (result, cs)
  result -> result

-- Describe a parser with a string for error reporting
infix 0 <?>
(<?>) :: Parser a -> String -> Parser a
(parser <?> string) input = case parser input of
  Left  (State t l) -> Left $ State ([StringTrace string] ++ t) l
  Right a           -> Right a

----

tree :: Parser Tree
tree = iterFail program >>> Tree

program :: Parser Program
program = iterFail block >>> Program <?> "program"

block :: Parser Block
block = functionBlock <+-> newline >>> Block <?> "block"

visibility :: Parser Visibility
visibility =
  (literal '+' >>> const PublicVisibility)
    <|> (literal '-' >>> const PrivateVisibility)
    <?> "visibility"

functionBlock :: Parser FunctionBlock
functionBlock = functionDeclaration <+> iterS functionDefinition >>> build
  where build (decl, defn) = FunctionBlock decl defn

functionDeclaration :: Parser FunctionDeclaration
functionDeclaration =
  functionDeclarationWithoutFlags
    <|> functionDeclarationWithFlags
    <?> "function declaration"

functionDeclarationWithoutFlags :: Parser FunctionDeclaration
functionDeclarationWithoutFlags =
  functionName
    <+>  functionDeclarationDelimiter
    <+>  functionTypes
    <+-> newline
    >>>  build
    <?>  "function declaration without flags"
  where build ((name, vis), types) = FunctionDeclaration name vis types []

functionDeclarationWithFlags :: Parser FunctionDeclaration
functionDeclarationWithFlags =
  functionName
    <+>  functionDeclarationDelimiter
    <+>  functionTypes
    <+-> space
    <+-> functionFlagDelimiter
    <+>  functionFlagList
    >>>  build
    <?>  "function declaration with flags"
 where
  build (((name, vis), types), flags) =
    FunctionDeclaration name vis types flags

functionDeclarationDelimiter :: Parser Visibility
functionDeclarationDelimiter =
  space
    <-+> literal ':'
    <-+> visibility
    <+-> literal ':'
    <+-> space
    <?>  "function declaration delimiter"

functionName :: Parser String
functionName =
  (special <|> letter)
    <+> iterS (special <|> alphanum)
    >>> build
    <?> "function name"
  where build (first, rest) = first : rest

functionTypes :: Parser [String]
functionTypes =
  iterS (functionType <+-> space <+-> functionTypeDelimiter <+-> space)
    <+> functionType
    >>> build
    <?> "function types"
  where build (a, b) = a ++ [b]

functionType :: Parser String
functionType =
  (letter <=> isUpper) <+> iter alphanum >>> build <?> "function type"
  where build (first, rest) = first : rest

functionTypeDelimiter :: Parser Char
functionTypeDelimiter = literal ':' <?> "function type delimiter"

functionFlagList :: Parser [FunctionFlag]
functionFlagList =
  (iterS (space <-+> functionFlag)) <+-> newline >>> build <?> "function flags"
  where build list = map read list

functionFlagDelimiter :: Parser Char
functionFlagDelimiter = literal '%' <?> "function flag delimiter"

functionFlags :: [String]
functionFlags = ["inline", "deprecated"]

functionFlag :: Parser String
functionFlag = letters <=> (`elem` functionFlags) <?> "function flag"

functionDefinition :: Parser FunctionDefinition
functionDefinition =
  (functionPattern <+-> literal ':')
    <+> functionBody
    >>> build
    <?> "function definition"
  where build (pattern, body) = FunctionDefinition pattern body

functionPattern :: Parser FunctionPattern
functionPattern =
  iterS (functionPatternElement <+-> space)
    >>> FunctionPattern
    <?> "function pattern"

functionPatternElement :: Parser FunctionPatternElement
functionPatternElement =
  (functionParameter >>> FunctionPatternParameter)
    <|> (literal '_' >>> const FunctionPatternWildcard)
    <|> (number >>> FunctionPatternNumber)
    <|> (string >>> FunctionPatternString)
    <?> "function pattern element"

functionParameter :: Parser String
functionParameter =
  letters <|> (letter <+> iter alphanum) >>> build <?> "function parameter"
  where build (a, b) = a : b

functionBody :: Parser FunctionBody
functionBody =
  iterS (space <-+> functionBodyElement)
    <+-> newline
    >>>  FunctionBody
    <?>  "function body"

functionBodyElement :: Parser FunctionBodyElement
functionBodyElement =
  statement
    <|> (functionName >>> FunctionBodyIdentifier)
    <|> (functionParameter >>> FunctionBodyIdentifier)
    <|> (string >>> FunctionBodyString)
    <|> (number >>> FunctionBodyNumber)
    <?> "function body element"

statement :: Parser FunctionBodyElement --  TODO
statement = accept "if" >>> Statement