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
@@ -1,100 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- #
3
- # This source code is licensed under the MIT license found in the
4
- # LICENSE file in the root directory of this source tree.
5
-
6
- from casing import snake
7
-
8
- from license import C_LICENSE_COMMENT
9
-
10
- def struct_name(type):
11
- return 'GraphQLAst' + type
12
-
13
-
14
- def return_type(type):
15
- if type == 'OperationKind' or type == 'string':
16
- return 'const char *'
17
-
18
- if type == 'boolean':
19
- return 'int'
20
-
21
- return 'const struct %s *' % struct_name(type)
22
-
23
-
24
- def field_prototype(owning_type, type, name, nullable, plural):
25
- st_name = struct_name(owning_type)
26
- if plural:
27
- return 'int %s_get_%s_size(const struct %s *node)' % (
28
- st_name, snake(name), st_name)
29
- else:
30
- ret_type = return_type(type)
31
- return '%s %s_get_%s(const struct %s *node)' % (
32
- ret_type, st_name, snake(name), st_name)
33
-
34
-
35
- class Printer(object):
36
- '''Printer for the pure C interface to the AST.
37
-
38
- Merely a set of wrappers around the C++ interface; makes it possible
39
- to use the AST from C code and simplifies the task of writing
40
- bindings for other langugages.
41
-
42
- The mapping is as follows:
43
-
44
- - For each concrete type, you get an opaque C struct type,
45
- accessible only by pointer.
46
-
47
- - For each singular field of a concrete type, you get an accessor
48
- function, returning said field in the obvious way.
49
-
50
- - For each plural field of a concrete type, you get an accessor
51
- function telling you its size. For access to elements of a plural
52
- field, you can use the visitor API.
53
-
54
- - For each union type, you get nothing specific (REVIEW), but you
55
- can use the visitor API to work around this entirely.
56
-
57
- '''
58
-
59
- def __init__(self):
60
- self._current_type = None
61
-
62
- def start_file(self):
63
- print C_LICENSE_COMMENT + '''/** @generated */
64
-
65
- #pragma once
66
-
67
- #ifdef __cplusplus
68
- extern "C" {
69
- #endif
70
-
71
- '''
72
-
73
- def end_file(self):
74
- print '''
75
-
76
- #ifdef __cplusplus
77
- }
78
- #endif
79
- '''
80
-
81
- def start_type(self, name):
82
- # Forward declarations for AST nodes.
83
- st_name = struct_name(name)
84
- print 'struct ' + st_name + ';'
85
- self._current_type = name
86
-
87
- def field(self, type, name, nullable, plural):
88
- print field_prototype(self._current_type, type, name, nullable, plural) + ';'
89
-
90
- def end_type(self, name):
91
- print
92
-
93
- def start_union(self, name):
94
- print 'struct ' + struct_name(name) + ';'
95
-
96
- def union_option(self, option):
97
- pass
98
-
99
- def end_union(self, name):
100
- print
Binary file
@@ -1,61 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- #
3
- # This source code is licensed under the MIT license found in the
4
- # LICENSE file in the root directory of this source tree.
5
-
6
- from c import field_prototype, return_type, struct_name
7
- from casing import title
8
- from license import C_LICENSE_COMMENT
9
-
10
- class Printer(object):
11
- '''Printer for the implementation of the pure C interface to the AST.
12
- '''
13
-
14
- def __init__(self):
15
- self._current_type = None
16
-
17
- def start_file(self):
18
- print C_LICENSE_COMMENT + '''/** @generated */
19
-
20
- #include "GraphQLAst.h"
21
- #include "../Ast.h"
22
-
23
- using namespace facebook::graphql::ast; // NOLINT
24
- '''
25
-
26
- def end_file(self):
27
- pass
28
-
29
- def start_type(self, name):
30
- self._current_type = name
31
-
32
- def field(self, type, name, nullable, plural):
33
- print field_prototype(self._current_type, type, name, nullable, plural) + ' {'
34
- print ' const auto *realNode = reinterpret_cast<const %s *>(node);' % self._current_type
35
- title_name = title(name)
36
- call_get = 'realNode->get%s()' % title_name
37
- if plural:
38
- if nullable:
39
- print ' return %s ? %s->size() : 0;' % (call_get, call_get)
40
- else:
41
- print ' return %s.size();' % call_get
42
- else:
43
- if type in ['string', 'OperationKind', 'boolean']:
44
- print ' return %s;' % call_get
45
- else:
46
- fmt = ' return reinterpret_cast<const struct %s *>(%s%s);'
47
- print fmt % (struct_name(type), '' if nullable else '&', call_get)
48
-
49
- print '}'
50
-
51
- def end_type(self, name):
52
- pass
53
-
54
- def start_union(self, name):
55
- pass
56
-
57
- def union_option(self, option):
58
- pass
59
-
60
- def end_union(self, name):
61
- pass
Binary file
@@ -1,39 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- #
3
- # This source code is licensed under the MIT license found in the
4
- # LICENSE file in the root directory of this source tree.
5
-
6
- from casing import snake
7
- from license import C_LICENSE_COMMENT
8
-
9
- class Printer(object):
10
- '''Printer for a simple list of types to be visited by the C visitor.
11
- '''
12
-
13
- def __init__(self):
14
- self._types = []
15
-
16
- def start_file(self):
17
- print C_LICENSE_COMMENT + '/** @generated */'
18
- print '#define FOR_EACH_CONCRETE_TYPE(MACRO) \\'
19
-
20
- def start_type(self, name):
21
- self._types.append(name)
22
-
23
- def field(self, type, name, nullable, plural):
24
- pass
25
-
26
- def end_type(self, name):
27
- pass
28
-
29
- def end_file(self):
30
- print ' \\\n'.join('MACRO(%s, %s)' % (name, snake(name)) for name in self._types)
31
-
32
- def start_union(self, name):
33
- pass
34
-
35
- def union_option(self, option):
36
- pass
37
-
38
- def end_union(self, name):
39
- pass
@@ -1,26 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- #
3
- # This source code is licensed under the MIT license found in the
4
- # LICENSE file in the root directory of this source tree.
5
-
6
- def title(s):
7
- '''Capitalize the first character of s.'''
8
- return s[0].capitalize() + s[1:]
9
-
10
-
11
- def camel(s):
12
- '''Lowercase the first character of s.'''
13
- return s[0].lower() + s[1:]
14
-
15
-
16
- def snake(s):
17
- '''Convert from title or camelCase to snake_case.'''
18
- if len(s) < 2:
19
- return s.lower()
20
- out = s[0].lower()
21
- for c in s[1:]:
22
- if c.isupper():
23
- out += '_'
24
- c = c.lower()
25
- out += c
26
- return out
Binary file
@@ -1,197 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- #
3
- # This source code is licensed under the MIT license found in the
4
- # LICENSE file in the root directory of this source tree.
5
-
6
- import cStringIO as StringIO
7
-
8
- from casing import title
9
- from license import C_LICENSE_COMMENT
10
-
11
- class Printer(object):
12
- def __init__(self):
13
- self._type_name = None
14
- # Map concrete type to base class
15
- self._bases = {}
16
- # HACK: Defer everything we print so that forward declarations for
17
- # all classes come first. Avoids having to do 2 passes over the
18
- # input file.
19
- self._deferredOutput = StringIO.StringIO()
20
-
21
- self._fields = []
22
-
23
- def start_file(self):
24
- print C_LICENSE_COMMENT + '''/** @generated */
25
- #pragma once
26
-
27
- #include "AstNode.h"
28
-
29
- #include <memory>
30
- #include <string>
31
- #include <utility>
32
- #include <vector>
33
-
34
- namespace facebook {
35
- namespace graphql {
36
- namespace ast {
37
-
38
- // The parser uses strdup to move from yytext to the heap, so we need
39
- // to use free instead of delete.
40
- struct CDeleter {
41
- void operator()(const char *p) const { free((void *)p); }
42
- };
43
- '''
44
-
45
- def end_file(self):
46
- print
47
- print self._deferredOutput.getvalue()
48
- print '}'
49
- print '}'
50
- print '}'
51
-
52
- def _base_class(self, type):
53
- return self._bases.get(type, 'Node')
54
-
55
- def start_type(self, name):
56
- self._type_name = name
57
- base = self._base_class(name)
58
- # non-deferred!
59
- print 'class %s;' % name
60
- print >> self._deferredOutput, 'class %s : public %s {' % (name, base)
61
- self._fields = []
62
-
63
- def field(self, type, name, nullable, plural):
64
- if type == 'OperationKind':
65
- type = 'string'
66
- self._fields.append((type, name, nullable, plural))
67
-
68
- def end_type(self, name):
69
- self._print_fields()
70
- print >> self._deferredOutput, ' public:'
71
- self._print_constructor()
72
- print >> self._deferredOutput
73
- self._print_destructor_prototype()
74
- print >> self._deferredOutput
75
- self._print_noncopyable()
76
- print >> self._deferredOutput
77
- self._print_getters()
78
- print >> self._deferredOutput, ' void accept(visitor::AstVisitor *visitor) const override;'
79
- print >> self._deferredOutput, '};'
80
- print >> self._deferredOutput
81
- print >> self._deferredOutput
82
- self._type_name = None
83
- self._fields = []
84
-
85
- def _storage_type(self, type):
86
- if type == 'string':
87
- return 'std::unique_ptr<const char, CDeleter>'
88
- elif type == 'boolean':
89
- return 'bool'
90
- else:
91
- return 'std::unique_ptr<%s>' % type
92
-
93
- def _print_fields(self):
94
- for (type, name, nullable, plural) in self._fields:
95
- storage_type = self._storage_type(type)
96
- if plural:
97
- storage_type = 'std::unique_ptr<std::vector<%s>>' % storage_type
98
- print >> self._deferredOutput, ' %s %s_;' % (storage_type, name)
99
-
100
- def _ctor_singular_type(self, type):
101
- if type == 'string':
102
- return 'const char *'
103
- elif type == 'boolean':
104
- return 'bool'
105
- else:
106
- return '%s *' % type
107
-
108
- def _ctor_plural_type(self, type):
109
- return 'std::vector<%s> *' % self._storage_type(type)
110
-
111
- def _print_constructor(self):
112
- print >> self._deferredOutput, ' explicit %s(' % self._type_name
113
- print >> self._deferredOutput, ' const yy::location &location%s' % (',' if self._fields else '')
114
- def ctor_arg(type, name, plural):
115
- if plural:
116
- ctor_type = self._ctor_plural_type(type)
117
- else:
118
- ctor_type = self._ctor_singular_type(type)
119
- return ' %s %s' % (ctor_type, name)
120
- print >> self._deferredOutput, ',\n'.join(ctor_arg(type, name, plural)
121
- for (type, name, nullable, plural) in self._fields)
122
- print >> self._deferredOutput, ' )'
123
- def ctor_init(type, name, plural):
124
- # Strings are const char *, just pass.
125
- # Vectors are passed by pointer and we take ownership.
126
- # Node types are passed in by pointer and we take ownership.
127
- value = name
128
- return ' %s_(%s)' % (name, value)
129
- print >> self._deferredOutput, ' : %s(location)%s' % (self._base_class(self._type_name), ',' if self._fields else '')
130
- print >> self._deferredOutput, ',\n'.join(ctor_init(type, name, plural)
131
- for (type, name, nullable, plural)
132
- in self._fields)
133
- print >> self._deferredOutput, ' {}'
134
-
135
- def _getter_type(self, type, nullable, plural):
136
- if plural and nullable:
137
- return 'const std::vector<%s>*' % self._storage_type(type)
138
- elif plural:
139
- return 'const std::vector<%s>&' % self._storage_type(type)
140
-
141
- if type == 'string':
142
- assert not nullable
143
- return 'const char *'
144
- elif type == 'boolean':
145
- assert not nullable
146
- return 'bool'
147
- elif nullable:
148
- return 'const %s*' % type
149
- else:
150
- return 'const %s&' % type
151
-
152
- def _getter_value_to_return(self, raw_value, type, nullable, plural):
153
- if plural and nullable:
154
- return raw_value + '.get()'
155
- elif plural:
156
- return '*%s' % raw_value
157
- elif type == 'boolean':
158
- return raw_value
159
- elif nullable or type == 'string':
160
- return '%s.get()' % raw_value
161
- else:
162
- return '*%s' % raw_value
163
-
164
- def _print_getters(self):
165
- for (type, name, nullable, plural) in self._fields:
166
- print >> self._deferredOutput, ' %s get%s() const' % (
167
- self._getter_type(type, nullable, plural),
168
- title(name))
169
- print >> self._deferredOutput, ' { return %s; }' % (
170
- self._getter_value_to_return(name + '_', type, nullable, plural))
171
- print >> self._deferredOutput
172
-
173
- def _print_destructor_prototype(self):
174
- print >> self._deferredOutput, ' ~%s() {}' % self._type_name
175
-
176
- def _print_noncopyable(self):
177
- print >> self._deferredOutput, ' %s(const %s&) = delete;' % (
178
- self._type_name, self._type_name)
179
- print >> self._deferredOutput, ' %s& operator=(const %s&) = delete;' % (
180
- self._type_name, self._type_name)
181
-
182
- def start_union(self, name):
183
- self._type_name = name
184
- # non-deferred!
185
- print 'class %s;' % name
186
- print >> self._deferredOutput, 'class %s : public Node {' % name
187
- print >> self._deferredOutput, ' public:'
188
- self._print_constructor()
189
- print >> self._deferredOutput, '};'
190
- print >> self._deferredOutput
191
-
192
- def union_option(self, type):
193
- assert type not in self._bases, '%s cannot appear in more than one union!' % type
194
- self._bases[type] = self._type_name
195
-
196
- def end_union(self, name):
197
- pass
Binary file
@@ -1,61 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- #
3
- # This source code is licensed under the MIT license found in the
4
- # LICENSE file in the root directory of this source tree.
5
-
6
- from license import C_LICENSE_COMMENT
7
-
8
- class Printer(object):
9
- def __init__(self):
10
- pass
11
-
12
- def start_file(self):
13
- print C_LICENSE_COMMENT + '''/** @generated */
14
-
15
- #include "Ast.h"
16
- #include "AstVisitor.h"
17
-
18
- namespace facebook {
19
- namespace graphql {
20
- namespace ast {
21
- '''
22
-
23
- def end_file(self):
24
- print '} // namespace ast'
25
- print '} // namespace graphql'
26
- print '} // namespace facebook'
27
-
28
- def start_type(self, name):
29
- print '''void %s::accept(visitor::AstVisitor *visitor) const {
30
- if (visitor->visit%s(*this)) {
31
- ''' % (name, name)
32
-
33
- def field(self, type, name, nullable, plural):
34
- if type in ['OperationKind', 'string', 'boolean']:
35
- return
36
-
37
- if plural:
38
- accept = '{ for (const auto &x : *%s_) { x->accept(visitor); } }' % name
39
- if nullable:
40
- accept = 'if (%s_) %s' % (name, accept)
41
- print ' ' + accept
42
- else:
43
- accept = '%s_->accept(visitor);' % name
44
- if nullable:
45
- accept = 'if (%s_) { %s }' % (name, accept)
46
- print ' ' + accept
47
-
48
- def end_type(self, name):
49
- print ''' }
50
- visitor->endVisit%s(*this);
51
- }
52
- ''' % name
53
-
54
- def start_union(self, name):
55
- pass
56
-
57
- def union_option(self, option):
58
- pass
59
-
60
- def end_union(self, name):
61
- pass
Binary file
@@ -1,42 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- # All rights reserved.
3
- #
4
- # This source code is licensed under the MIT license found in the
5
- # LICENSE file in the root directory of this source tree.
6
-
7
- from casing import title
8
- from license import C_LICENSE_COMMENT
9
-
10
- class Printer(object):
11
- def __init__(self):
12
- self._anyFieldIsANode = False
13
-
14
- def start_file(self):
15
- print C_LICENSE_COMMENT + '/** @generated */'
16
-
17
- def end_file(self):
18
- pass
19
-
20
- def start_type(self, name):
21
- self._anyFieldIsANode = False
22
-
23
- def end_type(self, name):
24
- titleName = title(name)
25
- if self._anyFieldIsANode:
26
- print 'bool visit%s(const %s &node) override;' % (titleName, titleName)
27
- print 'void endVisit%s(const %s &node) override;' % (titleName, titleName)
28
- print
29
-
30
- def field(self, type, name, nullable, plural):
31
- if (not self._anyFieldIsANode and
32
- type not in ('OperationKind', 'string', 'boolean')):
33
- self._anyFieldIsANode = True
34
-
35
- def start_union(self, name):
36
- pass
37
-
38
- def union_option(self, option):
39
- pass
40
-
41
- def end_union(self, name):
42
- pass
@@ -1,80 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- # All rights reserved.
3
- #
4
- # This source code is licensed under the MIT license found in the
5
- # LICENSE file in the root directory of this source tree.
6
-
7
- from casing import title
8
- from license import C_LICENSE_COMMENT
9
-
10
- class Printer(object):
11
- def __init__(self):
12
- self._fields = []
13
-
14
- def start_file(self):
15
- print C_LICENSE_COMMENT + '/** @generated */'
16
-
17
- def end_file(self):
18
- pass
19
-
20
- def start_type(self, name):
21
- self._fields = []
22
-
23
- def field(self, type, name, nullable, plural):
24
- if type == 'OperationKind':
25
- type = 'string'
26
- self._fields.append((type, name, nullable, plural))
27
-
28
- def end_type(self, name):
29
- titleName = title(name)
30
- anyFieldIsANode = any(type not in ('string, boolean')
31
- for (type, _, _ ,_) in self._fields)
32
- if anyFieldIsANode:
33
- print '''bool JsonVisitor::visit%s(const %s &node) {
34
- visitNode();
35
- return true;
36
- }
37
- ''' % (titleName, titleName)
38
- print '''void JsonVisitor::endVisit%(tn)s(const %(tn)s &node) {
39
- NodeFieldPrinter fields(*this, "%(tn)s", node);''' % {'tn': titleName}
40
-
41
- for (type, fieldName, nullable, plural) in self._fields:
42
- funcName = None
43
- if type == 'string':
44
- assert not plural, 'plural string fields not supported yet'
45
- funcName = 'printSingularPrimitiveField'
46
- elif type == 'boolean':
47
- assert not plural, 'plural boolean fields not supported yet'
48
- funcName = 'printSingularBooleanField'
49
- elif not nullable and not plural:
50
- # Special case: singular object fields don't need the value passed.
51
- print ' fields.printSingularObjectField("%s");' % fieldName
52
- continue
53
- else:
54
- nullable_str = 'Nullable' if nullable else ''
55
- plural_str = 'Plural' if plural else 'SingularObject'
56
- funcName = 'print%s%sField' % (nullable_str, plural_str)
57
-
58
- assert funcName is not None
59
- print ' fields.%s("%s", node.get%s());' % (
60
- funcName, fieldName, title(fieldName))
61
-
62
- if anyFieldIsANode:
63
- print '''
64
- endVisitNode(fields.finishPrinting());
65
- }
66
- '''
67
- else:
68
- print '''
69
- printed_.back().emplace_back(fields.finishPrinting());
70
- }
71
- '''
72
-
73
- def start_union(self, name):
74
- pass
75
-
76
- def union_option(self, option):
77
- pass
78
-
79
- def end_union(self, name):
80
- pass
@@ -1,64 +0,0 @@
1
- # Copyright 2019-present, GraphQL Foundation
2
- #
3
- # This source code is licensed under the MIT license found in the
4
- # LICENSE file in the root directory of this source tree.
5
-
6
- from casing import camel, title
7
- from license import C_LICENSE_COMMENT
8
-
9
- class Printer(object):
10
- def __init__(self):
11
- pass
12
-
13
- def start_file(self):
14
- print C_LICENSE_COMMENT + '''/** @generated */
15
-
16
- #pragma once
17
-
18
- #include "Ast.h"
19
-
20
- namespace facebook {
21
- namespace graphql {
22
- namespace ast {
23
- namespace visitor {
24
-
25
- class AstVisitor {
26
- public:
27
- virtual ~AstVisitor() {}
28
- '''
29
-
30
- def end_file(self):
31
- print '};' # end AstVisitor
32
- print
33
- print '}'
34
- print '}'
35
- print '}'
36
- print '}'
37
-
38
- def start_type(self, name):
39
- titleName = title(name)
40
- camelName = camel(titleName)
41
- print ' virtual bool visit%s(const %s &%s) { return true; }' % (
42
- titleName,
43
- titleName,
44
- camelName)
45
- print ' virtual void endVisit%s(const %s &%s) { }' % (
46
- titleName,
47
- titleName,
48
- camelName)
49
- print
50
-
51
- def end_type(self, name):
52
- pass
53
-
54
- def field(self, type, name, nullable, plural):
55
- pass
56
-
57
- def start_union(self, name):
58
- pass
59
-
60
- def union_option(self, option):
61
- pass
62
-
63
- def end_union(self, name):
64
- pass