rails-graphql 0.2.1 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (315) hide show
  1. checksums.yaml +4 -4
  2. data/ext/console.rb +18 -0
  3. data/ext/extconf.h +3 -0
  4. data/ext/extconf.rb +1 -54
  5. data/ext/gql_parser.c +631 -0
  6. data/ext/gql_parser.h +21 -0
  7. data/ext/shared.c +477 -0
  8. data/ext/shared.h +177 -0
  9. data/lib/generators/graphql/channel_generator.rb +27 -0
  10. data/lib/generators/graphql/controller_generator.rb +9 -4
  11. data/lib/generators/graphql/install_generator.rb +49 -0
  12. data/lib/generators/graphql/schema_generator.rb +9 -4
  13. data/lib/generators/graphql/templates/channel.erb +7 -0
  14. data/lib/generators/graphql/templates/config.rb +97 -0
  15. data/lib/generators/graphql/templates/controller.erb +2 -0
  16. data/lib/generators/graphql/templates/schema.erb +5 -3
  17. data/lib/gql_parser.so +0 -0
  18. data/lib/rails/graphql/adapters/mysql_adapter.rb +59 -0
  19. data/lib/rails/graphql/adapters/pg_adapter.rb +25 -22
  20. data/lib/rails/graphql/adapters/sqlite_adapter.rb +17 -14
  21. data/lib/rails/graphql/alternative/field_set.rb +48 -0
  22. data/lib/rails/graphql/alternative/mutation.rb +17 -0
  23. data/lib/rails/graphql/alternative/query.rb +98 -0
  24. data/lib/rails/graphql/alternative/subscription.rb +18 -0
  25. data/lib/rails/graphql/alternative.rb +20 -0
  26. data/lib/rails/graphql/argument.rb +25 -26
  27. data/lib/rails/graphql/callback.rb +30 -14
  28. data/lib/rails/graphql/collectors/hash_collector.rb +26 -7
  29. data/lib/rails/graphql/collectors/idented_collector.rb +10 -7
  30. data/lib/rails/graphql/collectors/json_collector.rb +43 -17
  31. data/lib/rails/graphql/collectors.rb +4 -4
  32. data/lib/rails/graphql/config.rb +154 -23
  33. data/lib/rails/graphql/directive/cached_directive.rb +33 -0
  34. data/lib/rails/graphql/directive/deprecated_directive.rb +10 -10
  35. data/lib/rails/graphql/directive/include_directive.rb +4 -4
  36. data/lib/rails/graphql/directive/skip_directive.rb +4 -4
  37. data/lib/rails/graphql/directive/specified_by_directive.rb +24 -0
  38. data/lib/rails/graphql/directive.rb +134 -73
  39. data/lib/rails/graphql/errors.rb +33 -4
  40. data/lib/rails/graphql/event.rb +21 -9
  41. data/lib/rails/graphql/field/authorized_field.rb +17 -6
  42. data/lib/rails/graphql/field/input_field.rb +8 -12
  43. data/lib/rails/graphql/field/mutation_field.rb +43 -9
  44. data/lib/rails/graphql/field/output_field.rb +112 -12
  45. data/lib/rails/graphql/field/proxied_field.rb +35 -26
  46. data/lib/rails/graphql/field/resolved_field.rb +27 -25
  47. data/lib/rails/graphql/field/scoped_config.rb +10 -4
  48. data/lib/rails/graphql/field/subscription_field.rb +123 -0
  49. data/lib/rails/graphql/field/typed_field.rb +69 -24
  50. data/lib/rails/graphql/field.rb +89 -74
  51. data/lib/rails/graphql/global_id.rb +89 -0
  52. data/lib/rails/graphql/helpers/attribute_delegator.rb +5 -5
  53. data/lib/rails/graphql/helpers/inherited_collection/array.rb +51 -0
  54. data/lib/rails/graphql/helpers/inherited_collection/base.rb +45 -0
  55. data/lib/rails/graphql/helpers/inherited_collection/hash.rb +88 -0
  56. data/lib/rails/graphql/helpers/inherited_collection.rb +25 -76
  57. data/lib/rails/graphql/helpers/instantiable.rb +15 -0
  58. data/lib/rails/graphql/helpers/leaf_from_ar.rb +7 -7
  59. data/lib/rails/graphql/helpers/registerable.rb +44 -62
  60. data/lib/rails/graphql/helpers/unregisterable.rb +16 -0
  61. data/lib/rails/graphql/helpers/with_arguments.rb +33 -28
  62. data/lib/rails/graphql/helpers/with_assignment.rb +6 -6
  63. data/lib/rails/graphql/helpers/with_callbacks.rb +28 -11
  64. data/lib/rails/graphql/helpers/with_description.rb +73 -0
  65. data/lib/rails/graphql/helpers/with_directives.rb +58 -30
  66. data/lib/rails/graphql/helpers/with_events.rb +22 -23
  67. data/lib/rails/graphql/helpers/with_fields.rb +86 -26
  68. data/lib/rails/graphql/helpers/with_global_id.rb +22 -0
  69. data/lib/rails/graphql/helpers/with_name.rb +44 -0
  70. data/lib/rails/graphql/helpers/with_namespace.rb +7 -4
  71. data/lib/rails/graphql/helpers/with_owner.rb +8 -7
  72. data/lib/rails/graphql/helpers/with_schema_fields.rb +162 -56
  73. data/lib/rails/graphql/helpers/with_validator.rb +9 -9
  74. data/lib/rails/graphql/helpers.rb +10 -3
  75. data/lib/rails/graphql/introspection.rb +43 -36
  76. data/lib/rails/graphql/railtie.rb +89 -33
  77. data/lib/rails/graphql/railties/app/base_channel.rb +10 -0
  78. data/lib/rails/graphql/railties/app/base_controller.rb +12 -0
  79. data/lib/rails/graphql/railties/app/views/_cable.js.erb +56 -0
  80. data/lib/rails/graphql/railties/app/views/_fetch.js.erb +20 -0
  81. data/lib/rails/graphql/railties/app/views/graphiql.html.erb +101 -0
  82. data/lib/rails/graphql/railties/base_generator.rb +5 -17
  83. data/lib/rails/graphql/railties/channel.rb +157 -0
  84. data/lib/rails/graphql/railties/controller.rb +91 -25
  85. data/lib/rails/graphql/railties/controller_runtime.rb +5 -5
  86. data/lib/rails/graphql/railties/log_subscriber.rb +81 -14
  87. data/lib/rails/graphql/request/arguments.rb +26 -50
  88. data/lib/rails/graphql/request/backtrace.rb +212 -0
  89. data/lib/rails/graphql/request/component/field.rb +98 -70
  90. data/lib/rails/graphql/request/component/fragment.rb +80 -26
  91. data/lib/rails/graphql/request/component/operation/subscription.rb +162 -4
  92. data/lib/rails/graphql/request/component/operation.rb +73 -34
  93. data/lib/rails/graphql/request/component/spread.rb +79 -27
  94. data/lib/rails/graphql/request/component/typename.rb +28 -13
  95. data/lib/rails/graphql/request/component.rb +77 -36
  96. data/lib/rails/graphql/request/context.rb +19 -9
  97. data/lib/rails/graphql/request/errors.rb +16 -6
  98. data/lib/rails/graphql/request/event.rb +23 -8
  99. data/lib/rails/graphql/request/helpers/directives.rb +69 -27
  100. data/lib/rails/graphql/request/helpers/selection_set.rb +57 -25
  101. data/lib/rails/graphql/request/helpers/value_writers.rb +24 -19
  102. data/lib/rails/graphql/request/prepared_data.rb +100 -0
  103. data/lib/rails/graphql/request/steps/authorizable.rb +24 -14
  104. data/lib/rails/graphql/request/steps/organizable.rb +111 -49
  105. data/lib/rails/graphql/request/steps/{prepareable.rb → preparable.rb} +21 -8
  106. data/lib/rails/graphql/request/steps/{resolveable.rb → resolvable.rb} +16 -7
  107. data/lib/rails/graphql/request/strategy/cached_strategy.rb +64 -0
  108. data/lib/rails/graphql/request/strategy/dynamic_instance.rb +6 -6
  109. data/lib/rails/graphql/request/strategy/multi_query_strategy.rb +6 -13
  110. data/lib/rails/graphql/request/strategy/sequenced_strategy.rb +9 -9
  111. data/lib/rails/graphql/request/strategy.rb +147 -77
  112. data/lib/rails/graphql/request/subscription.rb +82 -0
  113. data/lib/rails/graphql/request.rb +353 -104
  114. data/lib/rails/graphql/schema.rb +251 -106
  115. data/lib/rails/graphql/shortcuts.rb +33 -8
  116. data/lib/rails/graphql/source/active_record/builders.rb +64 -51
  117. data/lib/rails/graphql/source/active_record_source.rb +158 -82
  118. data/lib/rails/graphql/source/base.rb +83 -0
  119. data/lib/rails/graphql/source/builder.rb +115 -0
  120. data/lib/rails/graphql/source/scoped_arguments.rb +39 -21
  121. data/lib/rails/graphql/source.rb +90 -228
  122. data/lib/rails/graphql/subscription/provider/action_cable.rb +113 -0
  123. data/lib/rails/graphql/subscription/provider/base.rb +192 -0
  124. data/lib/rails/graphql/subscription/provider.rb +18 -0
  125. data/lib/rails/graphql/subscription/store/base.rb +141 -0
  126. data/lib/rails/graphql/subscription/store/memory.rb +136 -0
  127. data/lib/rails/graphql/subscription/store.rb +19 -0
  128. data/lib/rails/graphql/subscription.rb +17 -0
  129. data/lib/rails/graphql/to_gql.rb +29 -32
  130. data/lib/rails/graphql/type/creator.rb +196 -0
  131. data/lib/rails/graphql/type/enum/directive_location_enum.rb +11 -11
  132. data/lib/rails/graphql/type/enum/type_kind_enum.rb +3 -3
  133. data/lib/rails/graphql/type/enum.rb +44 -50
  134. data/lib/rails/graphql/type/input.rb +92 -25
  135. data/lib/rails/graphql/type/interface.rb +29 -28
  136. data/lib/rails/graphql/type/object/directive_object.rb +10 -9
  137. data/lib/rails/graphql/type/object/enum_value_object.rb +3 -3
  138. data/lib/rails/graphql/type/object/field_object.rb +24 -6
  139. data/lib/rails/graphql/type/object/input_value_object.rb +6 -7
  140. data/lib/rails/graphql/type/object/schema_object.rb +5 -8
  141. data/lib/rails/graphql/type/object/type_object.rb +62 -25
  142. data/lib/rails/graphql/type/object.rb +34 -26
  143. data/lib/rails/graphql/type/scalar/any_scalar.rb +30 -0
  144. data/lib/rails/graphql/type/scalar/bigint_scalar.rb +5 -5
  145. data/lib/rails/graphql/type/scalar/binary_scalar.rb +5 -3
  146. data/lib/rails/graphql/type/scalar/boolean_scalar.rb +8 -8
  147. data/lib/rails/graphql/type/scalar/date_scalar.rb +5 -3
  148. data/lib/rails/graphql/type/scalar/date_time_scalar.rb +5 -3
  149. data/lib/rails/graphql/type/scalar/decimal_scalar.rb +5 -3
  150. data/lib/rails/graphql/type/scalar/float_scalar.rb +5 -5
  151. data/lib/rails/graphql/type/scalar/id_scalar.rb +6 -5
  152. data/lib/rails/graphql/type/scalar/int_scalar.rb +6 -5
  153. data/lib/rails/graphql/type/scalar/json_scalar.rb +41 -0
  154. data/lib/rails/graphql/type/scalar/string_scalar.rb +18 -4
  155. data/lib/rails/graphql/type/scalar/time_scalar.rb +8 -6
  156. data/lib/rails/graphql/type/scalar.rb +26 -23
  157. data/lib/rails/graphql/type/union.rb +21 -18
  158. data/lib/rails/graphql/type.rb +43 -26
  159. data/lib/rails/graphql/type_map.rb +268 -165
  160. data/lib/rails/graphql/uri.rb +167 -0
  161. data/lib/rails/graphql/version.rb +19 -3
  162. data/lib/rails/graphql.rake +3 -0
  163. data/lib/rails/graphql.rb +91 -56
  164. data/lib/rails-graphql.rb +1 -1
  165. data/test/assets/en.yml +29 -0
  166. data/test/assets/introspection-mem.txt +1 -1
  167. data/test/assets/introspection.gql +2 -0
  168. data/test/assets/mem.gql +86 -99
  169. data/test/assets/mysql.gql +406 -0
  170. data/test/assets/sqlite.gql +96 -73
  171. data/test/assets/translate.gql +346 -0
  172. data/test/config.rb +19 -8
  173. data/test/graphql/schema_test.rb +14 -50
  174. data/test/graphql/source_test.rb +8 -85
  175. data/test/graphql/type/enum_test.rb +207 -203
  176. data/test/graphql/type/input_test.rb +14 -9
  177. data/test/graphql/type/interface_test.rb +12 -9
  178. data/test/graphql/type/object_test.rb +8 -2
  179. data/test/graphql/type/scalar/any_scalar_test.rb +38 -0
  180. data/test/graphql/type/scalar/boolean_scalar_test.rb +6 -3
  181. data/test/graphql/type/scalar/json_scalar_test.rb +23 -0
  182. data/test/graphql/type_map_test.rb +63 -81
  183. data/test/graphql/type_test.rb +0 -19
  184. data/test/graphql_test.rb +1 -1
  185. data/test/integration/{authorization/authorization_test.rb → authorization_test.rb} +40 -14
  186. data/test/integration/config.rb +36 -3
  187. data/test/integration/customization_test.rb +39 -0
  188. data/test/integration/global_id_test.rb +99 -0
  189. data/test/integration/memory/star_wars_introspection_test.rb +24 -16
  190. data/test/integration/memory/star_wars_query_test.rb +54 -3
  191. data/test/integration/memory/star_wars_validation_test.rb +3 -3
  192. data/test/integration/mysql/star_wars_introspection_test.rb +25 -0
  193. data/test/integration/persisted_query_test.rb +87 -0
  194. data/test/integration/resolver_precedence_test.rb +154 -0
  195. data/test/integration/schemas/memory.rb +24 -10
  196. data/test/integration/schemas/mysql.rb +62 -0
  197. data/test/integration/schemas/sqlite.rb +21 -12
  198. data/test/integration/sqlite/star_wars_global_id_test.rb +89 -0
  199. data/test/integration/sqlite/star_wars_introspection_test.rb +10 -0
  200. data/test/integration/sqlite/star_wars_query_test.rb +14 -1
  201. data/test/integration/translate_test.rb +73 -0
  202. data/test/test_ext.rb +16 -13
  203. metadata +125 -161
  204. data/ext/depend +0 -3
  205. data/ext/graphqlparser/Ast.cpp +0 -346
  206. data/ext/graphqlparser/Ast.h +0 -1214
  207. data/ext/graphqlparser/AstNode.h +0 -36
  208. data/ext/graphqlparser/AstVisitor.h +0 -137
  209. data/ext/graphqlparser/GraphQLParser.cpp +0 -76
  210. data/ext/graphqlparser/GraphQLParser.h +0 -55
  211. data/ext/graphqlparser/JsonVisitor.cpp +0 -161
  212. data/ext/graphqlparser/JsonVisitor.cpp.inc +0 -456
  213. data/ext/graphqlparser/JsonVisitor.h +0 -121
  214. data/ext/graphqlparser/JsonVisitor.h.inc +0 -110
  215. data/ext/graphqlparser/VERSION +0 -1
  216. data/ext/graphqlparser/c/GraphQLAst.cpp +0 -324
  217. data/ext/graphqlparser/c/GraphQLAst.h +0 -180
  218. data/ext/graphqlparser/c/GraphQLAstForEachConcreteType.h +0 -44
  219. data/ext/graphqlparser/c/GraphQLAstNode.cpp +0 -25
  220. data/ext/graphqlparser/c/GraphQLAstNode.h +0 -33
  221. data/ext/graphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  222. data/ext/graphqlparser/c/GraphQLAstToJSON.h +0 -24
  223. data/ext/graphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  224. data/ext/graphqlparser/c/GraphQLAstVisitor.h +0 -53
  225. data/ext/graphqlparser/c/GraphQLParser.cpp +0 -35
  226. data/ext/graphqlparser/c/GraphQLParser.h +0 -54
  227. data/ext/graphqlparser/dump_json_ast.cpp +0 -48
  228. data/ext/graphqlparser/lexer.lpp +0 -324
  229. data/ext/graphqlparser/parser.ypp +0 -693
  230. data/ext/graphqlparser/parsergen/lexer.cpp +0 -2633
  231. data/ext/graphqlparser/parsergen/lexer.h +0 -528
  232. data/ext/graphqlparser/parsergen/location.hh +0 -189
  233. data/ext/graphqlparser/parsergen/parser.tab.cpp +0 -3300
  234. data/ext/graphqlparser/parsergen/parser.tab.hpp +0 -646
  235. data/ext/graphqlparser/parsergen/position.hh +0 -179
  236. data/ext/graphqlparser/parsergen/stack.hh +0 -156
  237. data/ext/graphqlparser/syntaxdefs.h +0 -19
  238. data/ext/libgraphqlparser/AstNode.h +0 -36
  239. data/ext/libgraphqlparser/CMakeLists.txt +0 -148
  240. data/ext/libgraphqlparser/CONTRIBUTING.md +0 -23
  241. data/ext/libgraphqlparser/GraphQLParser.cpp +0 -76
  242. data/ext/libgraphqlparser/GraphQLParser.h +0 -55
  243. data/ext/libgraphqlparser/JsonVisitor.cpp +0 -161
  244. data/ext/libgraphqlparser/JsonVisitor.h +0 -121
  245. data/ext/libgraphqlparser/LICENSE +0 -22
  246. data/ext/libgraphqlparser/README.clang-tidy +0 -7
  247. data/ext/libgraphqlparser/README.md +0 -84
  248. data/ext/libgraphqlparser/ast/ast.ast +0 -203
  249. data/ext/libgraphqlparser/ast/ast.py +0 -61
  250. data/ext/libgraphqlparser/ast/c.py +0 -100
  251. data/ext/libgraphqlparser/ast/c.pyc +0 -0
  252. data/ext/libgraphqlparser/ast/c_impl.py +0 -61
  253. data/ext/libgraphqlparser/ast/c_impl.pyc +0 -0
  254. data/ext/libgraphqlparser/ast/c_visitor_impl.py +0 -39
  255. data/ext/libgraphqlparser/ast/c_visitor_impl.pyc +0 -0
  256. data/ext/libgraphqlparser/ast/casing.py +0 -26
  257. data/ext/libgraphqlparser/ast/casing.pyc +0 -0
  258. data/ext/libgraphqlparser/ast/cxx.py +0 -197
  259. data/ext/libgraphqlparser/ast/cxx.pyc +0 -0
  260. data/ext/libgraphqlparser/ast/cxx_impl.py +0 -61
  261. data/ext/libgraphqlparser/ast/cxx_impl.pyc +0 -0
  262. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.py +0 -42
  263. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.pyc +0 -0
  264. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.py +0 -80
  265. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.pyc +0 -0
  266. data/ext/libgraphqlparser/ast/cxx_visitor.py +0 -64
  267. data/ext/libgraphqlparser/ast/cxx_visitor.pyc +0 -0
  268. data/ext/libgraphqlparser/ast/js.py +0 -65
  269. data/ext/libgraphqlparser/ast/license.py +0 -10
  270. data/ext/libgraphqlparser/ast/license.pyc +0 -0
  271. data/ext/libgraphqlparser/c/GraphQLAstNode.cpp +0 -25
  272. data/ext/libgraphqlparser/c/GraphQLAstNode.h +0 -33
  273. data/ext/libgraphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  274. data/ext/libgraphqlparser/c/GraphQLAstToJSON.h +0 -24
  275. data/ext/libgraphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  276. data/ext/libgraphqlparser/c/GraphQLAstVisitor.h +0 -53
  277. data/ext/libgraphqlparser/c/GraphQLParser.cpp +0 -35
  278. data/ext/libgraphqlparser/c/GraphQLParser.h +0 -54
  279. data/ext/libgraphqlparser/clang-tidy-all.sh +0 -3
  280. data/ext/libgraphqlparser/cmake/version.cmake +0 -16
  281. data/ext/libgraphqlparser/dump_json_ast.cpp +0 -48
  282. data/ext/libgraphqlparser/go/README.md +0 -20
  283. data/ext/libgraphqlparser/go/callbacks.go +0 -18
  284. data/ext/libgraphqlparser/go/gotest.go +0 -64
  285. data/ext/libgraphqlparser/lexer.lpp +0 -324
  286. data/ext/libgraphqlparser/libgraphqlparser.pc.in +0 -11
  287. data/ext/libgraphqlparser/parser.ypp +0 -693
  288. data/ext/libgraphqlparser/parsergen/lexer.cpp +0 -2633
  289. data/ext/libgraphqlparser/parsergen/lexer.h +0 -528
  290. data/ext/libgraphqlparser/parsergen/location.hh +0 -189
  291. data/ext/libgraphqlparser/parsergen/parser.tab.cpp +0 -3300
  292. data/ext/libgraphqlparser/parsergen/parser.tab.hpp +0 -646
  293. data/ext/libgraphqlparser/parsergen/position.hh +0 -179
  294. data/ext/libgraphqlparser/parsergen/stack.hh +0 -156
  295. data/ext/libgraphqlparser/python/CMakeLists.txt +0 -14
  296. data/ext/libgraphqlparser/python/README.md +0 -5
  297. data/ext/libgraphqlparser/python/example.py +0 -31
  298. data/ext/libgraphqlparser/syntaxdefs.h +0 -19
  299. data/ext/libgraphqlparser/test/BuildCAPI.c +0 -5
  300. data/ext/libgraphqlparser/test/CMakeLists.txt +0 -25
  301. data/ext/libgraphqlparser/test/JsonVisitorTests.cpp +0 -28
  302. data/ext/libgraphqlparser/test/ParserTests.cpp +0 -352
  303. data/ext/libgraphqlparser/test/kitchen-sink.graphql +0 -59
  304. data/ext/libgraphqlparser/test/kitchen-sink.json +0 -1
  305. data/ext/libgraphqlparser/test/schema-kitchen-sink.graphql +0 -78
  306. data/ext/libgraphqlparser/test/schema-kitchen-sink.json +0 -1
  307. data/ext/libgraphqlparser/test/valgrind.supp +0 -33
  308. data/ext/version.cpp +0 -21
  309. data/lib/graphqlparser.so +0 -0
  310. data/lib/rails/graphql/native/functions.rb +0 -38
  311. data/lib/rails/graphql/native/location.rb +0 -41
  312. data/lib/rails/graphql/native/pointers.rb +0 -23
  313. data/lib/rails/graphql/native/visitor.rb +0 -349
  314. data/lib/rails/graphql/native.rb +0 -56
  315. data/test/integration/schemas/authorization.rb +0 -12
data/ext/gql_parser.c ADDED
@@ -0,0 +1,631 @@
1
+ #include <string.h>
2
+ #include <math.h>
3
+
4
+ #include "ruby.h"
5
+ #include "shared.h"
6
+ #include "gql_parser.h"
7
+
8
+ // EXECUTION DOCUMENT [OPERATION*, FRAGMENT*]
9
+ VALUE gql_parse_execution(VALUE self, VALUE document);
10
+
11
+ // OPERATION [type?, name?, VARIABLE*, DIRECTIVE*, FIELD*]
12
+ VALUE gql_parse_operation(struct gql_scanner *scanner);
13
+
14
+ // FRAGMENT [name, type, DIRECTIVE*, FIELD*]
15
+ VALUE gql_parse_fragment(struct gql_scanner *scanner);
16
+
17
+ // VARIABLE [name, TYPE, value?, DIRECTIVE*]*
18
+ VALUE gql_parse_variables(struct gql_scanner *scanner);
19
+
20
+ // VARIABLE [name, TYPE, value?, DIRECTIVE*]
21
+ VALUE gql_parse_variable(struct gql_scanner *scanner);
22
+
23
+ // DIRECTIVE [name, ARGUMENT*]*
24
+ VALUE gql_parse_directives(struct gql_scanner *scanner);
25
+
26
+ // DIRECTIVE [name, ARGUMENT*]
27
+ VALUE gql_parse_directive(struct gql_scanner *scanner);
28
+
29
+ // FIELD [name, alias?, ARGUMENT*, DIRECTIVE*, FIELD*]*
30
+ VALUE gql_parse_fields(struct gql_scanner *scanner);
31
+
32
+ // FIELD [name, alias?, ARGUMENT*, DIRECTIVE*, FIELD*]
33
+ VALUE gql_parse_field(struct gql_scanner *scanner);
34
+
35
+ // ARGUMENT [name, value?, var_name?]*
36
+ VALUE gql_parse_arguments(struct gql_scanner *scanner);
37
+
38
+ // ARGUMENT [name, value?, var_name?]
39
+ VALUE gql_parse_argument(struct gql_scanner *scanner);
40
+
41
+ // SPREAD [name?, type?, DIRECTIVE*, FIELD*]
42
+ VALUE gql_parse_spread(struct gql_scanner *scanner);
43
+
44
+ // TYPE [name, dimensions?, nullability]
45
+ VALUE gql_parse_type(struct gql_scanner *scanner);
46
+
47
+ // Little helper to simplify returning problems
48
+ VALUE gql_nil_and_unknown(struct gql_scanner *scanner);
49
+
50
+ // Little helper to assign the start memoized position
51
+ VALUE gql_token_start_from_mem(VALUE instance, unsigned long memory[2]);
52
+
53
+ // Central error method
54
+ NORETURN(void gql_throw_parser_error(struct gql_scanner *scanner));
55
+
56
+ /* STRUCTURES
57
+ *
58
+ * EXECUTION DOCUMENT [OPERATION*, FRAGMENT*]
59
+ * OPERATION [type?, name?, VARIABLE*, DIRECTIVE*, FIELD*]
60
+ * FRAGMENT [name, type, DIRECTIVE*, FIELD*]
61
+ *
62
+ * VARIABLE [name, TYPE, value?, DIRECTIVE*]
63
+ * DIRECTIVE [name, ARGUMENT*]
64
+ * FIELD [alias?, name, ARGUMENT*, DIRECTIVE*, FIELD*]
65
+ * ARGUMENT [name, value?, var_name?]
66
+ */
67
+
68
+ /* ALL THE PARSERS METHODS FOR THE ABOVE STRUCTURES */
69
+ // Parse an execution document
70
+ // EXECUTION DOCUMENT [OPERATION*, FRAGMENT*]
71
+ VALUE gql_parse_execution(VALUE self, VALUE document)
72
+ {
73
+ if (!RB_TYPE_P(document, T_STRING))
74
+ rb_raise(rb_eArgError, "%+" PRIsVALUE " is not a string", document);
75
+
76
+ // Initialize its pieces
77
+ VALUE pieces[] = {Qnil, Qnil};
78
+ struct gql_scanner scanner = gql_new_scanner(document);
79
+ gql_next_lexeme_no_comments(&scanner);
80
+
81
+ // Go over all the operations and fragments
82
+ while (scanner.lexeme != gql_i_eof)
83
+ {
84
+ // Try to upgrade if the token is a name
85
+ if (scanner.lexeme == gql_i_name)
86
+ scanner.lexeme = gql_name_to_keyword(&scanner, GQL_EXECUTION_KEYWORDS);
87
+
88
+ // It can contain either operations or fragments, anything else is unknown and an error
89
+ if (QGL_I_OPERATION(scanner.lexeme) || scanner.lexeme == gql_is_op_curly)
90
+ GQL_SAFE_PUSH(pieces[0], gql_parse_operation(&scanner));
91
+ else if (scanner.lexeme == gql_ie_fragment)
92
+ GQL_SAFE_PUSH(pieces[1], gql_parse_fragment(&scanner));
93
+ else if (scanner.lexeme != gql_i_comment)
94
+ scanner.lexeme = gql_i_unknown;
95
+
96
+ // If anything made the scanner fall into an unknown, throw an error
97
+ if (scanner.lexeme == gql_i_unknown)
98
+ gql_throw_parser_error(&scanner);
99
+ }
100
+
101
+ // Return the plain array, no need to turn into a token
102
+ return rb_ary_new4(2, pieces);
103
+ }
104
+
105
+ // Parse an operation element
106
+ // OPERATION [type?, name?, VARIABLE*, DIRECTIVE*, FIELD*]
107
+ VALUE gql_parse_operation(struct gql_scanner *scanner)
108
+ {
109
+ // Common header
110
+ unsigned long mem[2];
111
+ GQL_SCAN_SAVE(scanner, mem);
112
+ VALUE pieces[] = {Qnil, Qnil, Qnil, Qnil, Qnil};
113
+
114
+ // Save the type
115
+ const char *type = "query";
116
+
117
+ // When we have the operation type, we may have all the other stuff as well
118
+ if (QGL_I_OPERATION(scanner->lexeme))
119
+ {
120
+ // Save the operation type
121
+ type = RSTRING_PTR(gql_scanner_to_s(scanner));
122
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
123
+
124
+ // Save the name of the operation
125
+ if (scanner->lexeme == gql_i_name)
126
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[1], scanner);
127
+
128
+ // Save the variables of the operation
129
+ if (scanner->lexeme == gql_is_op_paren)
130
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[2], scanner, gql_parse_variables(scanner));
131
+
132
+ // Save the directives of the operation
133
+ if (scanner->lexeme == gql_i_directive)
134
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[3], scanner, gql_parse_directives(scanner));
135
+ }
136
+
137
+ // Collect all the fields for this operation, or return nil for non-typed operation with empty body
138
+ // With empty body operation, make sure to move to the next token
139
+ if (scanner->lexeme == gql_is_op_curly)
140
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[4], scanner, gql_parse_fields(scanner));
141
+ else if (NIL_P(pieces[0]))
142
+ return gql_nil_and_unknown(scanner);
143
+
144
+ // Generate the result array with proper scan location and return
145
+ return GQL_BUILD_PARSE_OUTER_TOKEN(type, 5, pieces, scanner, mem);
146
+ }
147
+
148
+ // FRAGMENT [name, type, DIRECTIVE*, FIELD*]
149
+ VALUE gql_parse_fragment(struct gql_scanner *scanner)
150
+ {
151
+ // Common header
152
+ unsigned long mem[2];
153
+ GQL_SCAN_SAVE(scanner, mem);
154
+ VALUE pieces[] = {Qnil, Qnil, Qnil, Qnil};
155
+
156
+ // Make sure we have a name and it is not "on"
157
+ gql_next_lexeme_no_comments(scanner);
158
+ if (scanner->lexeme != gql_i_name)
159
+ return gql_nil_and_unknown(scanner);
160
+ else if (gql_name_to_keyword(scanner, GQL_EXECUTION_KEYWORDS) == gql_ie_on)
161
+ return gql_nil_and_unknown(scanner);
162
+
163
+ // Save the name of the fragment
164
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
165
+
166
+ // If we don't have an "on" next, we have a problem
167
+ if (gql_name_to_keyword(scanner, GQL_EXECUTION_KEYWORDS) != gql_ie_on)
168
+ return gql_nil_and_unknown(scanner);
169
+
170
+ // Skip the on and ensure that next is a name
171
+ gql_next_lexeme_no_comments(scanner);
172
+ if (scanner->lexeme != gql_i_name)
173
+ return gql_nil_and_unknown(scanner);
174
+
175
+ // Save the name of the type
176
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[1], scanner);
177
+
178
+ // Save the directives of the fragment
179
+ if (scanner->lexeme == gql_i_directive)
180
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[2], scanner, gql_parse_directives(scanner));
181
+
182
+ // Normally fields would be mandatory, but the gem will accept empty body fragments
183
+ if (scanner->lexeme == gql_is_op_curly)
184
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[3], scanner, gql_parse_fields(scanner));
185
+
186
+ // Generate the result array with proper scan location and return
187
+ return GQL_BUILD_PARSE_OUTER_TOKEN("fragment", 4, pieces, scanner, mem);
188
+ }
189
+
190
+ // VARIABLE [name, TYPE, value?, DIRECTIVE*]*
191
+ VALUE gql_parse_variables(struct gql_scanner *scanner)
192
+ {
193
+ // The list can be nil if "()"
194
+ VALUE result = Qnil;
195
+
196
+ // Skip the (
197
+ GQL_SCAN_NEXT(scanner);
198
+ gql_next_lexeme_no_comments(scanner);
199
+
200
+ // Look for the end of the parenthesis
201
+ while (scanner->lexeme != gql_is_cl_paren)
202
+ {
203
+ if (GQL_SCAN_ERROR(scanner))
204
+ return gql_nil_and_unknown(scanner);
205
+
206
+ GQL_SAFE_PUSH(result, gql_parse_variable(scanner));
207
+ }
208
+
209
+ // Just return the array filled with variables, no need to make it as a token
210
+ GQL_SCAN_NEXT(scanner);
211
+ return result;
212
+ }
213
+
214
+ // VARIABLE [name, TYPE, value?, DIRECTIVE*]
215
+ VALUE gql_parse_variable(struct gql_scanner *scanner)
216
+ {
217
+ // Common header
218
+ unsigned long mem[2];
219
+ GQL_SCAN_SAVE(scanner, mem);
220
+ VALUE pieces[] = {Qnil, Qnil, Qnil, Qnil};
221
+
222
+ // Make sure that it starts with an "$" sign
223
+ if (scanner->lexeme != gql_i_variable)
224
+ return gql_nil_and_unknown(scanner);
225
+
226
+ // Skip the $
227
+ GQL_SCAN_NEXT(scanner);
228
+ scanner->start_pos++;
229
+
230
+ // If we don't have a name indicator, we return an error
231
+ if (!GQL_S_CHARACTER(scanner->current))
232
+ return gql_nil_and_unknown(scanner);
233
+
234
+ // Read and save the name
235
+ scanner->lexeme = gql_read_name(scanner);
236
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
237
+
238
+ // Next is the colon before the type
239
+ if (scanner->lexeme != gql_is_colon)
240
+ return gql_nil_and_unknown(scanner);
241
+
242
+ // Skip the :
243
+ GQL_SCAN_NEXT(scanner);
244
+
245
+ // Now check for the type, which can be a brack for array or just the type
246
+ gql_next_lexeme_no_comments(scanner);
247
+ if (scanner->lexeme != gql_is_op_brack && scanner->lexeme != gql_i_name)
248
+ return gql_nil_and_unknown(scanner);
249
+
250
+ // Save the type of the variable
251
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[1], scanner, gql_parse_type(scanner));
252
+
253
+ // If the next lexeme is an equal sign, then we have to capture the value
254
+ if (scanner->lexeme == gql_is_equal)
255
+ {
256
+ GQL_SCAN_NEXT(scanner);
257
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[2], scanner, gql_value_to_token(scanner, 0));
258
+ }
259
+
260
+ // Save the directives of the variable
261
+ if (scanner->lexeme == gql_i_directive)
262
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[3], scanner, gql_parse_directives(scanner));
263
+
264
+ // Generate the result array with proper scan location and return
265
+ return GQL_BUILD_PARSE_OUTER_TOKEN("variable", 4, pieces, scanner, mem);
266
+ }
267
+
268
+ // DIRECTIVE [name, ARGUMENT*]*
269
+ VALUE gql_parse_directives(struct gql_scanner *scanner)
270
+ {
271
+ // Start the list of directives, we have at least one when it gets here
272
+ VALUE result = rb_ary_new();
273
+
274
+ // Look for all the directives
275
+ while (scanner->lexeme == gql_i_directive)
276
+ rb_ary_push(result, gql_parse_directive(scanner));
277
+
278
+ // Just return the array filled with variables, no need to make it as a token
279
+ return result;
280
+ }
281
+
282
+ // DIRECTIVE [name, ARGUMENT*]
283
+ VALUE gql_parse_directive(struct gql_scanner *scanner)
284
+ {
285
+ // Common header
286
+ unsigned long mem[2];
287
+ GQL_SCAN_SAVE(scanner, mem);
288
+ VALUE pieces[] = {Qnil, Qnil};
289
+
290
+ // Skip the @
291
+ GQL_SCAN_NEXT(scanner);
292
+ scanner->start_pos++;
293
+
294
+ // If we don't have a name indicator, we return an error
295
+ if (!GQL_S_CHARACTER(scanner->current))
296
+ return gql_nil_and_unknown(scanner);
297
+
298
+ // Read and save the name
299
+ scanner->lexeme = gql_read_name(scanner);
300
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
301
+
302
+ // Save the arguments of the directive
303
+ if (scanner->lexeme == gql_is_op_paren)
304
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[1], scanner, gql_parse_arguments(scanner));
305
+
306
+ // Generate the result array with proper scan location and return
307
+ return GQL_BUILD_PARSE_OUTER_TOKEN("directive", 2, pieces, scanner, mem);
308
+ }
309
+
310
+ // FIELD [alias?, name, ARGUMENT*, DIRECTIVE*, FIELD*]*
311
+ VALUE gql_parse_fields(struct gql_scanner *scanner)
312
+ {
313
+ // The list can be nil if "{}"
314
+ VALUE result = Qnil;
315
+
316
+ // Skip the {
317
+ GQL_SCAN_NEXT(scanner);
318
+ gql_next_lexeme_no_comments(scanner);
319
+
320
+ // Look for the end of the curly
321
+ while (scanner->lexeme != gql_is_cl_curly)
322
+ {
323
+ if (GQL_SCAN_ERROR(scanner))
324
+ return gql_nil_and_unknown(scanner);
325
+ else if (scanner->lexeme == gql_is_period)
326
+ GQL_SAFE_PUSH(result, gql_parse_spread(scanner));
327
+ else
328
+ GQL_SAFE_PUSH(result, gql_parse_field(scanner));
329
+ }
330
+
331
+ // Just return the array filled with fields, no need to make it as a token
332
+ GQL_SCAN_NEXT(scanner);
333
+ return result;
334
+ }
335
+
336
+ // FIELD [name, alias?, ARGUMENT*, DIRECTIVE*, FIELD*]
337
+ VALUE gql_parse_field(struct gql_scanner *scanner)
338
+ {
339
+ // Common header
340
+ unsigned long mem[2];
341
+ GQL_SCAN_SAVE(scanner, mem);
342
+ VALUE pieces[] = {Qnil, Qnil, Qnil, Qnil, Qnil};
343
+
344
+ // If we don't have a name, we have a problem
345
+ if (scanner->lexeme != gql_i_name)
346
+ return gql_nil_and_unknown(scanner);
347
+
348
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
349
+
350
+ // If we got a colon, then we actually had an alias and not the name
351
+ if (scanner->lexeme == gql_is_colon)
352
+ {
353
+ // Move one further and get the next lexeme
354
+ GQL_SCAN_NEXT(scanner);
355
+ gql_next_lexeme_no_comments(scanner);
356
+
357
+ // If we don't have a name after, we have a problem
358
+ if (scanner->lexeme != gql_i_name)
359
+ return gql_nil_and_unknown(scanner);
360
+
361
+ // Save the alias and the actual field name
362
+ pieces[1] = pieces[0];
363
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
364
+ }
365
+
366
+ // Save the arguments of the field
367
+ if (scanner->lexeme == gql_is_op_paren)
368
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[2], scanner, gql_parse_arguments(scanner));
369
+
370
+ // Save the directives of the field
371
+ if (scanner->lexeme == gql_i_directive)
372
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[3], scanner, gql_parse_directives(scanner));
373
+
374
+ // Save the fields of the field
375
+ if (scanner->lexeme == gql_is_op_curly)
376
+ {
377
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[4], scanner, gql_parse_fields(scanner));
378
+
379
+ // If fields were initiated but came back empty, we have a problem
380
+ if (NIL_P(pieces[4]))
381
+ return gql_nil_and_unknown(scanner);
382
+ }
383
+
384
+ // Generate the result array with proper scan location and return
385
+ return GQL_BUILD_PARSE_OUTER_TOKEN("field", 5, pieces, scanner, mem);
386
+ }
387
+
388
+ // ARGUMENT [name, value?, var_name?]*
389
+ VALUE gql_parse_arguments(struct gql_scanner *scanner)
390
+ {
391
+ // The list can be nil if "()"
392
+ VALUE result = Qnil;
393
+
394
+ // Skip the (
395
+ GQL_SCAN_NEXT(scanner);
396
+ gql_next_lexeme_no_comments(scanner);
397
+
398
+ // Look for the end of the parenthesis
399
+ while (scanner->lexeme != gql_is_cl_paren)
400
+ {
401
+ if (GQL_SCAN_ERROR(scanner))
402
+ return gql_nil_and_unknown(scanner);
403
+
404
+ GQL_SAFE_PUSH(result, gql_parse_argument(scanner));
405
+ }
406
+
407
+ // Just return the array filled with arguments, no need to make it as a token
408
+ GQL_SCAN_NEXT(scanner);
409
+ return result;
410
+ }
411
+
412
+ // ARGUMENT [name, value?, var_name?]
413
+ VALUE gql_parse_argument(struct gql_scanner *scanner)
414
+ {
415
+ // Common header
416
+ unsigned long mem[2];
417
+ GQL_SCAN_SAVE(scanner, mem);
418
+ VALUE pieces[] = {Qnil, Qnil, Qnil};
419
+
420
+ // If we don't have a name after, we have a problem
421
+ if (scanner->lexeme != gql_i_name)
422
+ return gql_nil_and_unknown(scanner);
423
+
424
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
425
+
426
+ // If we don't have a colon after, we have a problem, because we need a value
427
+ if (scanner->lexeme != gql_is_colon)
428
+ return gql_nil_and_unknown(scanner);
429
+
430
+ // Move one further and assume that the next lexeme will be a value
431
+ GQL_SCAN_NEXT(scanner);
432
+ pieces[1] = gql_value_to_rb(scanner, 1);
433
+
434
+ // If we successfully got a value, not a var,
435
+ // then just make it as a token and move to the next
436
+ if (GQL_I_VALUE(scanner->lexeme))
437
+ {
438
+ pieces[1] = gql_as_token(pieces[1], scanner, 1);
439
+ gql_next_lexeme_no_comments(scanner);
440
+ }
441
+ else if (scanner->lexeme == gql_i_variable)
442
+ {
443
+ // Skip the $ for a variable
444
+ GQL_SCAN_NEXT(scanner);
445
+ scanner->start_pos++;
446
+
447
+ // If we don't have a name indicator, we return an error
448
+ if (!GQL_S_CHARACTER(scanner->current))
449
+ return gql_nil_and_unknown(scanner);
450
+
451
+ // Read and save only the name
452
+ scanner->lexeme = gql_read_name(scanner);
453
+ pieces[2] = gql_set_token_type(gql_scanner_to_token(scanner), "variable");
454
+ gql_next_lexeme_no_comments(scanner);
455
+ }
456
+ else
457
+ return gql_nil_and_unknown(scanner);
458
+
459
+ // Generate the result array with proper scan location and return
460
+ return GQL_BUILD_PARSE_OUTER_TOKEN("argument", 3, pieces, scanner, mem);
461
+ }
462
+
463
+ // SPREAD [name?, type?, DIRECTIVE*, FIELD*]
464
+ VALUE gql_parse_spread(struct gql_scanner *scanner)
465
+ {
466
+ // Common header
467
+ unsigned long mem[2];
468
+ GQL_SCAN_SAVE(scanner, mem);
469
+ VALUE pieces[] = {Qnil, Qnil, Qnil, Qnil};
470
+
471
+ // Make sure that we have 2 other periods and something else right after
472
+ if (GQL_SCAN_LOOK(scanner, 1) != '.' || GQL_SCAN_LOOK(scanner, 2) != '.' || GQL_SCAN_LOOK(scanner, 3) == '.')
473
+ return gql_nil_and_unknown(scanner);
474
+
475
+ // Move after the periods and get the next lexeme
476
+ scanner->current_pos += 3;
477
+ scanner->current = GQL_SCAN_CHAR(scanner);
478
+ gql_next_lexeme_no_comments(scanner);
479
+
480
+ // According to the spec, the type condition or the name are optional
481
+ if (scanner->lexeme == gql_i_name)
482
+ {
483
+ // Upgrade the name because it will decide if it is an inline spread or not
484
+ scanner->lexeme = gql_name_to_keyword(scanner, GQL_EXECUTION_KEYWORDS);
485
+
486
+ // If we are at "on" then we have an inline spread, otherwise a fragment referenced by name
487
+ if (scanner->lexeme == gql_ie_on)
488
+ {
489
+ gql_next_lexeme_no_comments(scanner);
490
+
491
+ // If we don't have a name after, we have a problem
492
+ if (scanner->lexeme != gql_i_name)
493
+ return gql_nil_and_unknown(scanner);
494
+
495
+ // Save it as the type of the spread
496
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[1], scanner);
497
+ }
498
+ else
499
+ GQL_ASSIGN_TOKEN_AND_NEXT(pieces[0], scanner);
500
+ }
501
+
502
+ // Save the directives of the field
503
+ if (scanner->lexeme == gql_i_directive)
504
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[2], scanner, gql_parse_directives(scanner));
505
+
506
+ // Spread without a name needs fields
507
+ if (NIL_P(pieces[0]))
508
+ {
509
+ // No curly means we have a problem
510
+ if (scanner->lexeme != gql_is_op_curly)
511
+ return gql_nil_and_unknown(scanner);
512
+
513
+ // Save the fields
514
+ GQL_ASSIGN_VALUE_AND_NEXT(pieces[3], scanner, gql_parse_fields(scanner));
515
+
516
+ // If fields were initiated but came back empty, we have a problem
517
+ if (NIL_P(pieces[3]))
518
+ return gql_nil_and_unknown(scanner);
519
+ }
520
+
521
+ // Generate the result array with proper scan location and return
522
+ return GQL_BUILD_PARSE_OUTER_TOKEN("spread", 4, pieces, scanner, mem);
523
+ }
524
+
525
+ // TYPE [name, dimensions, nullability]
526
+ VALUE gql_parse_type(struct gql_scanner *scanner)
527
+ {
528
+ VALUE pieces[] = {Qnil, Qnil, Qnil};
529
+
530
+ // Important info about the type
531
+ unsigned int dimensions = 0;
532
+ unsigned int nullability = 0;
533
+
534
+ // Check for all the open brackets before the type
535
+ while (scanner->current == '[' || (dimensions > 0 && GQL_S_IGNORE(scanner->current)))
536
+ {
537
+ if (scanner->current == '\0')
538
+ return gql_nil_and_unknown(scanner);
539
+ else if (scanner->current == '[')
540
+ dimensions++;
541
+
542
+ GQL_SCAN_NEXT(scanner);
543
+ }
544
+
545
+ // If any dimensions where identified, then get the next lexeme for the name
546
+ if (dimensions > 0)
547
+ gql_next_lexeme(scanner);
548
+
549
+ // If it is not a name, then we have a problem, otherwise save the name
550
+ if (scanner->lexeme != gql_i_name)
551
+ return gql_nil_and_unknown(scanner);
552
+
553
+ pieces[0] = gql_scanner_to_token(scanner);
554
+ pieces[1] = UINT2NUM(dimensions);
555
+
556
+ // Now go over all the close brackets, exclamations, and ignorables
557
+ while (scanner->current == '!' || scanner->current == ']' || GQL_S_IGNORE(scanner->current))
558
+ {
559
+ if (scanner->current == '\0')
560
+ return gql_nil_and_unknown(scanner);
561
+ else if (scanner->current == '!')
562
+ nullability += pow(2, dimensions);
563
+ else if (scanner->current == ']')
564
+ dimensions--;
565
+
566
+ GQL_SCAN_NEXT(scanner);
567
+ }
568
+
569
+ // If there are dimensions still open, we have a problem
570
+ if (dimensions > 0)
571
+ return gql_nil_and_unknown(scanner);
572
+
573
+ // Save the last position, last line, and the nullability
574
+ GQL_SCAN_SET_END(scanner, 1);
575
+ pieces[2] = UINT2NUM(nullability);
576
+
577
+ // Return the valid parsed type
578
+ return GQL_BUILD_PARSE_TOKEN("type", 3, pieces, scanner);
579
+ }
580
+
581
+ // Simply set the scanner as unkown and return nil, to simplify validation
582
+ VALUE gql_nil_and_unknown(struct gql_scanner *scanner)
583
+ {
584
+ scanner->lexeme = gql_i_unknown;
585
+ return Qnil;
586
+ }
587
+
588
+ // Little helper to assign the start memoized position
589
+ VALUE gql_token_start_from_mem(VALUE instance, unsigned long memory[2])
590
+ {
591
+ int offset = memory[0] == 1 ? 1 : 0;
592
+ rb_iv_set(instance, "@begin_line", ULONG2NUM(memory[0]));
593
+ rb_iv_set(instance, "@begin_column", ULONG2NUM(memory[1] + offset));
594
+ return instance;
595
+ }
596
+
597
+ // A centralized way to express that the parser was unsuccessful
598
+ void gql_throw_parser_error(struct gql_scanner *scanner)
599
+ {
600
+ VALUE line = ULONG2NUM(scanner->begin_line);
601
+ VALUE column = ULONG2NUM(scanner->begin_column);
602
+ VALUE token;
603
+
604
+ if (GQL_SCAN_SIZE(scanner) > 0)
605
+ token = gql_scanner_to_s(scanner);
606
+ else if (scanner->current != '\0')
607
+ token = rb_str_new(&scanner->current, 1);
608
+ else
609
+ token = rb_str_new2("EOF");
610
+
611
+ const char *message = "Parser error: unexpected \"%" PRIsVALUE "\" at [%" PRIsVALUE ", %" PRIsVALUE "]";
612
+ rb_raise(gql_eParserError, message, token, line, column);
613
+ }
614
+
615
+ void Init_gql_parser()
616
+ {
617
+ GQLParser = rb_define_module("GQLParser");
618
+ rb_define_singleton_method(GQLParser, "parse_execution", gql_parse_execution, 1);
619
+ rb_define_const(GQLParser, "VERSION", rb_str_new2("October 2021"));
620
+
621
+ QLGParserToken = rb_define_class_under(GQLParser, "Token", rb_path2class("SimpleDelegator"));
622
+ rb_define_method(QLGParserToken, "of_type?", gql_token_of_type_check, 1);
623
+ rb_define_method(QLGParserToken, "inspect", gql_inspect_token, 0);
624
+ rb_define_attr(QLGParserToken, "begin_line", 1, 0);
625
+ rb_define_attr(QLGParserToken, "begin_column", 1, 0);
626
+ rb_define_attr(QLGParserToken, "end_line", 1, 0);
627
+ rb_define_attr(QLGParserToken, "end_column", 1, 0);
628
+ rb_define_attr(QLGParserToken, "type", 1, 0);
629
+
630
+ gql_eParserError = rb_define_class_under(GQLParser, "ParserError", rb_eStandardError);
631
+ }
data/ext/gql_parser.h ADDED
@@ -0,0 +1,21 @@
1
+ #include "ruby.h"
2
+
3
+ #define GQL_SAFE_PUSH_AND_NEXT(source, scanner, action) ({ \
4
+ GQL_SAFE_PUSH(source, action); \
5
+ gql_next_lexeme_no_comments(scanner); \
6
+ })
7
+ #define GQL_ASSIGN_TOKEN_AND_NEXT(source, scanner) (GQL_ASSIGN_VALUE_AND_NEXT(source, scanner, gql_scanner_to_token(scanner)))
8
+ #define GQL_ASSIGN_VALUE_AND_NEXT(source, scanner, value) ({ \
9
+ source = value; \
10
+ gql_next_lexeme_no_comments(scanner); \
11
+ })
12
+ #define GQL_BUILD_PARSE_OUTER_TOKEN(type, size, pieces, scanner, mem) ({ \
13
+ gql_token_start_from_mem(GQL_BUILD_PARSE_TOKEN(type, size, pieces, scanner), mem); \
14
+ })
15
+ #define GQL_BUILD_PARSE_TOKEN(type, size, pieces, scanner) ({ \
16
+ gql_set_token_type(gql_as_token(rb_ary_new4(size, pieces), scanner, 0), type); \
17
+ })
18
+
19
+ VALUE GQLParser;
20
+ VALUE QLGParserToken;
21
+ VALUE gql_eParserError;