-
Notifications
You must be signed in to change notification settings - Fork 25
/
parser.scala
425 lines (326 loc) · 16.6 KB
/
parser.scala
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
// Copyright (c) 2016-2020 Association of Universities for Research in Astronomy, Inc. (AURA)
// For license information see LICENSE or https://opensource.org/licenses/BSD-3-Clause
package edu.gemini.grackle
import cats.parse.{Parser, Parser0}
import cats.parse.Parser._
import cats.parse.Numbers._
import cats.parse.Rfc5234.{cr, crlf, digit, hexdig, lf}
import cats.implicits._
import CommentedText._
import Literals._
import scala.util.matching.Regex
object GraphQLParser {
def keyword(s: String) = token(string(s))
lazy val Document: Parser0[Ast.Document] =
(whitespace.void | comment).rep0 *> Definition.rep0 <* Parser.end
lazy val Definition: Parser[Ast.Definition] =
ExecutableDefinition | TypeSystemDefinition // | TypeSystemExtension
lazy val TypeSystemDefinition: Parser[Ast.TypeSystemDefinition] = {
val SchemaDefinition: Parser[Ast.SchemaDefinition] =
((keyword("schema") *> Directives.?) ~ braces(RootOperationTypeDefinition.rep0)).map {
case (dirs, rootdefs) => Ast.SchemaDefinition(rootdefs, dirs.getOrElse(Nil))
}
def typeDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.TypeDefinition] = {
def scalarTypeDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.ScalarTypeDefinition] =
((keyword("scalar") *> Name) ~ Directives.?).map {
case (name, dirs) => Ast.ScalarTypeDefinition(name, desc.map(_.value), dirs.getOrElse(Nil))
}
def objectTypeDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.ObjectTypeDefinition] =
((keyword("type") *> Name) ~ ImplementsInterfaces.? ~ Directives.? ~ FieldsDefinition).map {
case (((name, ifs), dirs), fields) => Ast.ObjectTypeDefinition(name, desc.map(_.value), fields, ifs.getOrElse(Nil), dirs.getOrElse(Nil))
}
def interfaceTypeDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.InterfaceTypeDefinition] =
((keyword("interface") *> Name) ~ ImplementsInterfaces.? ~ Directives.? ~ FieldsDefinition).map {
case (((name, ifs), dirs), fields) => Ast.InterfaceTypeDefinition(name, desc.map(_.value), fields, ifs.getOrElse(Nil), dirs.getOrElse(Nil))
}
def unionTypeDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.UnionTypeDefinition] =
((keyword("union") *> Name) ~ Directives.? ~ UnionMemberTypes).map {
case ((name, dirs), members) => Ast.UnionTypeDefinition(name, desc.map(_.value), dirs.getOrElse(Nil), members)
}
def enumTypeDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.EnumTypeDefinition] =
((keyword("enum") *> Name) ~ Directives.? ~ EnumValuesDefinition).map {
case ((name, dirs), values) => Ast.EnumTypeDefinition(name, desc.map(_.value), dirs.getOrElse(Nil), values)
}
def inputObjectTypeDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.InputObjectTypeDefinition] =
((keyword("input") *> Name) ~ Directives.? ~ InputFieldsDefinition).map {
case ((name, dirs), fields) => Ast.InputObjectTypeDefinition(name, desc.map(_.value), fields, dirs.getOrElse(Nil))
}
scalarTypeDefinition(desc)|
objectTypeDefinition(desc) |
interfaceTypeDefinition(desc) |
unionTypeDefinition(desc) |
enumTypeDefinition(desc) |
inputObjectTypeDefinition(desc)
}
def directiveDefinition(desc: Option[Ast.Value.StringValue]): Parser[Ast.DirectiveDefinition] =
((keyword("directive") *> keyword("@") *> Name) ~
ArgumentsDefinition ~ (keyword("repeatable").? <* keyword("on")) ~ DirectiveLocations).map {
case (((name, args), rpt), locs) => Ast.DirectiveDefinition(name, desc.map(_.value), args, rpt.isDefined, locs)
}
SchemaDefinition |
Description.?.with1.flatMap { desc =>
typeDefinition(desc) | directiveDefinition(desc)
}
}
lazy val RootOperationTypeDefinition: Parser[Ast.RootOperationTypeDefinition] =
(OperationType, keyword(":"), NamedType).mapN {
case (optpe, _, tpe) => Ast.RootOperationTypeDefinition(optpe, tpe)
}
lazy val Description = StringValue
lazy val ImplementsInterfaces =
(keyword("implements") ~ keyword("&").?) *> NamedType.repSep0(keyword("&"))
lazy val FieldsDefinition: Parser[List[Ast.FieldDefinition]] =
braces(FieldDefinition.rep0)
lazy val FieldDefinition: Parser[Ast.FieldDefinition] =
(Description.?.with1 ~ Name ~ ArgumentsDefinition.? ~ keyword(":") ~ Type ~ Directives.?).map {
case (((((desc, name), args), _), tpe), dirs) => Ast.FieldDefinition(name, desc.map(_.value), args.getOrElse(Nil), tpe, dirs.getOrElse(Nil))
}
lazy val ArgumentsDefinition: Parser[List[Ast.InputValueDefinition]] =
parens(InputValueDefinition.rep0)
lazy val InputFieldsDefinition: Parser[List[Ast.InputValueDefinition]] =
braces(InputValueDefinition.rep0)
lazy val InputValueDefinition: Parser[Ast.InputValueDefinition] =
(Description.?.with1 ~ (Name <* keyword(":")) ~ Type ~ DefaultValue.? ~ Directives.?).map {
case ((((desc, name), tpe), dv), dirs) => Ast.InputValueDefinition(name, desc.map(_.value), tpe, dv, dirs.getOrElse(Nil))
}
lazy val UnionMemberTypes: Parser[List[Ast.Type.Named]] =
(keyword("=") *> keyword("|").?) *> NamedType.repSep0(keyword("|"))
lazy val EnumValuesDefinition: Parser[List[Ast.EnumValueDefinition]] =
braces(EnumValueDefinition.rep0)
lazy val EnumValueDefinition: Parser[Ast.EnumValueDefinition] =
(Description.?.with1 ~ Name ~ Directives.?).map {
case ((desc, name), dirs) => Ast.EnumValueDefinition(name, desc.map(_.value), dirs.getOrElse(Nil))
}
lazy val DirectiveLocations: Parser0[List[Ast.DirectiveLocation]] =
keyword("|").? *> DirectiveLocation.repSep0(keyword("|"))
lazy val DirectiveLocation: Parser[Ast.DirectiveLocation] =
keyword("QUERY") .as(Ast.DirectiveLocation.QUERY) |
keyword("MUTATION") .as(Ast.DirectiveLocation.MUTATION) |
keyword("SUBSCRIPTION").as(Ast.DirectiveLocation.SUBSCRIPTION) |
keyword("FIELD_DEFINITION").as(Ast.DirectiveLocation.FIELD_DEFINITION) |
keyword("FIELD").as(Ast.DirectiveLocation.FIELD) |
keyword("FRAGMENT_DEFINITION").as(Ast.DirectiveLocation.FRAGMENT_DEFINITION) |
keyword("FRAGMENT_SPREAD").as(Ast.DirectiveLocation.FRAGMENT_SPREAD) |
keyword("INLINE_FRAGMENT").as(Ast.DirectiveLocation.INLINE_FRAGMENT) |
keyword("VARIABLE_DEFINITION").as(Ast.DirectiveLocation.VARIABLE_DEFINITION) |
keyword("SCHEMA").as(Ast.DirectiveLocation.SCHEMA) |
keyword("SCALAR").as(Ast.DirectiveLocation.SCALAR) |
keyword("OBJECT").as(Ast.DirectiveLocation.OBJECT) |
keyword("ARGUMENT_DEFINITION").as(Ast.DirectiveLocation.ARGUMENT_DEFINITION) |
keyword("INTERFACE").as(Ast.DirectiveLocation.INTERFACE) |
keyword("UNION").as(Ast.DirectiveLocation.UNION) |
keyword("ENUM_VALUE").as(Ast.DirectiveLocation.ENUM_VALUE) |
keyword("ENUM").as(Ast.DirectiveLocation.ENUM) |
keyword("INPUT_OBJECT").as(Ast.DirectiveLocation.INPUT_OBJECT) |
keyword("INPUT_FIELD_DEFINITION").as(Ast.DirectiveLocation.INPUT_FIELD_DEFINITION)
lazy val ExecutableDefinition: Parser[Ast.ExecutableDefinition] =
OperationDefinition | FragmentDefinition
lazy val OperationDefinition: Parser[Ast.OperationDefinition] =
QueryShorthand | Operation
lazy val QueryShorthand: Parser[Ast.OperationDefinition.QueryShorthand] =
SelectionSet.map(Ast.OperationDefinition.QueryShorthand.apply)
lazy val Operation: Parser[Ast.OperationDefinition.Operation] =
(OperationType ~ Name.? ~ VariableDefinitions.? ~ Directives ~ SelectionSet).map {
case ((((op, name), vars), dirs), sels) => Ast.OperationDefinition.Operation(op, name, vars.orEmpty, dirs, sels)
}
lazy val OperationType: Parser[Ast.OperationType] =
keyword("query") .as(Ast.OperationType.Query) |
keyword("mutation") .as(Ast.OperationType.Mutation) |
keyword("subscription").as(Ast.OperationType.Subscription)
lazy val SelectionSet: Parser[List[Ast.Selection]] = recursive[List[Ast.Selection]] { rec =>
val Alias: Parser[Ast.Name] =
Name <* keyword(":")
val Field: Parser[Ast.Selection.Field] =
(Alias.backtrack.?.with1 ~ Name ~ Arguments.? ~ Directives ~ rec.?).map {
case ((((alias, name), args), dirs), sel) => Ast.Selection.Field(alias, name, args.orEmpty, dirs, sel.orEmpty)
}
val FragmentSpread: Parser[Ast.Selection.FragmentSpread] =
(FragmentName ~ Directives).map{ case (name, dirs) => Ast.Selection.FragmentSpread.apply(name, dirs)}
val InlineFragment: Parser[Ast.Selection.InlineFragment] =
((TypeCondition.? ~ Directives).with1 ~ rec).map {
case ((cond, dirs), sel) => Ast.Selection.InlineFragment(cond, dirs, sel)
}
val Selection: Parser[Ast.Selection] =
Field |
(keyword("...") *> (InlineFragment | FragmentSpread))
braces(Selection.rep0)
}
lazy val Arguments: Parser[List[(Ast.Name, Ast.Value)]] =
parens(Argument.rep0)
lazy val Argument: Parser[(Ast.Name, Ast.Value)] =
(Name <* keyword(":")) ~ Value
lazy val FragmentName: Parser[Ast.Name] =
not(string("on")).with1 *> Name
lazy val FragmentDefinition: Parser[Ast.FragmentDefinition] =
((keyword("fragment") *> FragmentName) ~ TypeCondition ~ Directives ~ SelectionSet).map {
case (((name, cond), dirs), sel) => Ast.FragmentDefinition(name, cond, dirs, sel)
}
lazy val TypeCondition: Parser[Ast.Type.Named] =
keyword("on") *> NamedType
lazy val Value: Parser[Ast.Value] = recursive[Ast.Value] { rec =>
val NullValue: Parser[Ast.Value.NullValue.type] =
keyword("null").as(Ast.Value.NullValue)
lazy val EnumValue: Parser[Ast.Value.EnumValue] =
(not(string("true") | string("false") | string("null")).with1 *> Name)
.map(Ast.Value.EnumValue.apply)
val ListValue: Parser[Ast.Value.ListValue] =
token(squareBrackets(rec.rep0).map(Ast.Value.ListValue.apply))
val NumericLiteral: Parser[Ast.Value] = {
def narrow(d: BigDecimal): Ast.Value.FloatValue =
Ast.Value.FloatValue(d.toDouble)
token(
(intLiteral ~ (char('.') *> digit.rep.string).? ~ ((char('e') | char('E')) *> intLiteral.string).?)
.map {
case ((a, Some(b)), None) => narrow(BigDecimal(s"$a.$b"))
case ((a, None), Some(c)) => narrow(BigDecimal(s"${a}E$c"))
case ((a, Some(b)), Some(c)) => narrow(BigDecimal(s"$a.${b}E$c"))
case ((a, None), None) => Ast.Value.IntValue(a)
}
)
}
val BooleanValue: Parser[Ast.Value.BooleanValue] =
token(booleanLiteral).map(Ast.Value.BooleanValue.apply)
val ObjectField: Parser[(Ast.Name, Ast.Value)] =
(Name <* keyword(":")) ~ rec
val ObjectValue: Parser[Ast.Value.ObjectValue] =
braces(ObjectField.rep0).map(Ast.Value.ObjectValue.apply)
Variable |
NumericLiteral |
StringValue |
BooleanValue |
NullValue |
EnumValue |
ListValue |
ObjectValue
}
lazy val StringValue: Parser[Ast.Value.StringValue] =
token(stringLiteral).map(Ast.Value.StringValue.apply)
lazy val VariableDefinitions: Parser[List[Ast.VariableDefinition]] =
parens(VariableDefinition.rep0)
lazy val VariableDefinition: Parser[Ast.VariableDefinition] =
((Variable <* keyword(":")) ~ Type ~ DefaultValue.?).map {
case ((v, tpe), dv) => Ast.VariableDefinition(v.name, tpe, dv)
}
lazy val Variable: Parser[Ast.Value.Variable] =
keyword("$") *> Name.map(Ast.Value.Variable.apply)
lazy val DefaultValue: Parser[Ast.Value] =
keyword("=") *> Value
lazy val Type: Parser[Ast.Type] = recursive[Ast.Type] { rec =>
lazy val ListType: Parser[Ast.Type.List] =
squareBrackets(rec).map(Ast.Type.List.apply)
val namedMaybeNull: Parser[Ast.Type] = (NamedType ~ keyword("!").?).map {
case (t, None) => t
case (t, _) => Ast.Type.NonNull(Left(t))
}
val listMaybeNull: Parser[Ast.Type] = (ListType ~ keyword("!").?).map {
case (t, None) => t
case (t, _) => Ast.Type.NonNull(Right(t))
}
namedMaybeNull | listMaybeNull
}
lazy val NamedType: Parser[Ast.Type.Named] =
Name.map(Ast.Type.Named.apply)
lazy val Directives: Parser0[List[Ast.Directive]] =
Directive.rep0
lazy val Directive: Parser[Ast.Directive] =
keyword("@") *> (Name ~ Arguments.?).map { case (n, ods) => Ast.Directive(n, ods.orEmpty)}
lazy val Name: Parser[Ast.Name] = {
val initial = ('A' to 'Z') ++ ('a' to 'z') ++ Seq('_')
val subsequent = initial ++ ('0' to '9')
token(charIn(initial) ~ charIn(subsequent).rep0).map {
case (h, t) => Ast.Name((h :: t).mkString)
}
}
}
object CommentedText {
val whitespace: Parser[Char] = charWhere(_.isWhitespace)
val skipWhitespace: Parser0[Unit] =
charsWhile0(c => c.isWhitespace || c == ',').void.withContext("whitespace")
/** Parser that consumes a comment */
val comment: Parser[Unit] =
(char('#') *> (charWhere(c => c != '\n' && c != '\r')).rep0 <* charIn('\n', '\r') <* skipWhitespace).void.withContext("comment")
/** Turns a parser into one that skips trailing whitespace and comments */
def token[A](p: Parser[A]): Parser[A] =
p <* skipWhitespace <* comment.rep0
def token0[A](p: Parser0[A]): Parser0[A] =
p <* skipWhitespace <* comment.rep0
/**
* Consumes `left` and `right`, including the trailing and preceding whitespace,
* respectively, and returns the value of `p`.
*/
private def _bracket[A,B,C](left: Parser[B], p: Parser0[A], right: Parser[C]): Parser[A] =
token(left) *> token0(p) <* token(right)
/** Turns a parser into one that consumes surrounding parentheses `()` */
def parens[A](p: Parser0[A]): Parser[A] =
_bracket(char('('), p, char(')')).withContext(s"parens(${p.toString})")
/** Turns a parser into one that consumes surrounding curly braces `{}` */
def braces[A](p: Parser0[A]): Parser[A] =
_bracket(char('{'), p, char('}')).withContext(s"braces(${p.toString})")
/** Turns a parser into one that consumes surrounding square brackets `[]` */
def squareBrackets[A](p: Parser0[A]): Parser[A] =
_bracket(char('['), p, char(']')).withContext(s"squareBrackets(${p.toString})")
}
object Literals {
val stringLiteral: Parser[String] = {
val lineTerminator: Parser[String] = (lf | cr | crlf).string
val sourceCharacter: Parser[String] = (charIn(0x0009.toChar, 0x000A.toChar, 0x000D.toChar) | charIn(0x0020.toChar to 0xFFFF.toChar)).string
val escapedUnicode: Parser[String] = string("\\u") *>
hexdig
.repExactlyAs[String](4)
.map(hex => Integer.parseInt(hex, 16).toChar.toString)
val escapedCharacter: Parser[String] = char('\\') *>
(
char('"').as("\"") |
char('\\').as("\\") |
char('/').as("/") |
char('b').as("\b") |
char('f').as("\f") |
char('n').as("\n") |
char('r').as("\r") |
char('t').as("\t")
)
val stringCharacter: Parser[String] = (
(not(charIn('"', '\\') | lineTerminator).with1 *> sourceCharacter) |
escapedUnicode |
escapedCharacter
)
val blockStringCharacter: Parser[String] = string("\\\"\"\"").as("\"\"\"") |
(not(string("\"\"\"")).with1 *> sourceCharacter)
//https://spec.graphql.org/June2018/#BlockStringValue()
//TODO this traverses over lines a hideous number of times(but matching the
//algorithm in the spec). Can it be optimized?
val blockQuotesInner: Parser0[String] = blockStringCharacter.repAs0[String].map { str =>
val isWhitespace: Regex = "[ \t]*".r
var commonIndent: Int = -1
var lineNum: Int = 0
for (line <- str.linesIterator) {
if (lineNum != 0) {
val len = line.length()
val indent = line.takeWhile(c => c == ' ' || c == '\t').length()
if (indent < len) {
if (commonIndent < 0 || indent < commonIndent) {
commonIndent = indent
}
}
}
lineNum = lineNum + 1
}
val formattedReversed: List[String] = if ( commonIndent >= 0) {
str.linesIterator.foldLeft[List[String]](Nil) {
(acc, l) => if (acc == Nil) l :: acc else l.drop(commonIndent) :: acc
}
} else {
str.linesIterator.toList
}
val noTrailingEmpty = formattedReversed.dropWhile(isWhitespace.matches(_)).reverse
noTrailingEmpty.dropWhile(isWhitespace.matches(_)).mkString("\n")
}
(not(string("\"\"\"")).with1 *> stringCharacter.repAs0[String].with1.surroundedBy(char('"'))) | blockQuotesInner.with1.surroundedBy(string("\"\"\""))
}
val intLiteral: Parser[Int] =
bigInt.flatMap {
case v if v.isValidInt => pure(v.toInt)
case v => failWith(s"$v is larger than max int")
}
val booleanLiteral: Parser[Boolean] = string("true").as(true) | string("false").as(false)
}