rails-graphql 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +31 -0
- data/ext/depend +3 -0
- data/ext/extconf.rb +57 -0
- data/ext/graphqlparser/Ast.cpp +346 -0
- data/ext/graphqlparser/Ast.h +1214 -0
- data/ext/graphqlparser/AstNode.h +36 -0
- data/ext/graphqlparser/AstVisitor.h +137 -0
- data/ext/graphqlparser/GraphQLParser.cpp +76 -0
- data/ext/graphqlparser/GraphQLParser.h +55 -0
- data/ext/graphqlparser/JsonVisitor.cpp +161 -0
- data/ext/graphqlparser/JsonVisitor.cpp.inc +456 -0
- data/ext/graphqlparser/JsonVisitor.h +121 -0
- data/ext/graphqlparser/JsonVisitor.h.inc +110 -0
- data/ext/graphqlparser/VERSION +1 -0
- data/ext/graphqlparser/c/GraphQLAst.cpp +324 -0
- data/ext/graphqlparser/c/GraphQLAst.h +180 -0
- data/ext/graphqlparser/c/GraphQLAstForEachConcreteType.h +44 -0
- data/ext/graphqlparser/c/GraphQLAstNode.cpp +25 -0
- data/ext/graphqlparser/c/GraphQLAstNode.h +33 -0
- data/ext/graphqlparser/c/GraphQLAstToJSON.cpp +21 -0
- data/ext/graphqlparser/c/GraphQLAstToJSON.h +24 -0
- data/ext/graphqlparser/c/GraphQLAstVisitor.cpp +55 -0
- data/ext/graphqlparser/c/GraphQLAstVisitor.h +53 -0
- data/ext/graphqlparser/c/GraphQLParser.cpp +35 -0
- data/ext/graphqlparser/c/GraphQLParser.h +54 -0
- data/ext/graphqlparser/dump_json_ast.cpp +48 -0
- data/ext/graphqlparser/lexer.lpp +324 -0
- data/ext/graphqlparser/parser.ypp +693 -0
- data/ext/graphqlparser/parsergen/lexer.cpp +2633 -0
- data/ext/graphqlparser/parsergen/lexer.h +528 -0
- data/ext/graphqlparser/parsergen/location.hh +189 -0
- data/ext/graphqlparser/parsergen/parser.tab.cpp +3300 -0
- data/ext/graphqlparser/parsergen/parser.tab.hpp +646 -0
- data/ext/graphqlparser/parsergen/position.hh +179 -0
- data/ext/graphqlparser/parsergen/stack.hh +156 -0
- data/ext/graphqlparser/syntaxdefs.h +19 -0
- data/ext/libgraphqlparser/AstNode.h +36 -0
- data/ext/libgraphqlparser/CMakeLists.txt +148 -0
- data/ext/libgraphqlparser/CONTRIBUTING.md +23 -0
- data/ext/libgraphqlparser/GraphQLParser.cpp +76 -0
- data/ext/libgraphqlparser/GraphQLParser.h +55 -0
- data/ext/libgraphqlparser/JsonVisitor.cpp +161 -0
- data/ext/libgraphqlparser/JsonVisitor.h +121 -0
- data/ext/libgraphqlparser/LICENSE +22 -0
- data/ext/libgraphqlparser/README.clang-tidy +7 -0
- data/ext/libgraphqlparser/README.md +84 -0
- data/ext/libgraphqlparser/ast/ast.ast +203 -0
- data/ext/libgraphqlparser/ast/ast.py +61 -0
- data/ext/libgraphqlparser/ast/c.py +100 -0
- data/ext/libgraphqlparser/ast/c.pyc +0 -0
- data/ext/libgraphqlparser/ast/c_impl.py +61 -0
- data/ext/libgraphqlparser/ast/c_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/c_visitor_impl.py +39 -0
- data/ext/libgraphqlparser/ast/c_visitor_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/casing.py +26 -0
- data/ext/libgraphqlparser/ast/casing.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx.py +197 -0
- data/ext/libgraphqlparser/ast/cxx.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_impl.py +61 -0
- data/ext/libgraphqlparser/ast/cxx_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_json_visitor_header.py +42 -0
- data/ext/libgraphqlparser/ast/cxx_json_visitor_header.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.py +80 -0
- data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_visitor.py +64 -0
- data/ext/libgraphqlparser/ast/cxx_visitor.pyc +0 -0
- data/ext/libgraphqlparser/ast/js.py +65 -0
- data/ext/libgraphqlparser/ast/license.py +10 -0
- data/ext/libgraphqlparser/ast/license.pyc +0 -0
- data/ext/libgraphqlparser/c/GraphQLAstNode.cpp +25 -0
- data/ext/libgraphqlparser/c/GraphQLAstNode.h +33 -0
- data/ext/libgraphqlparser/c/GraphQLAstToJSON.cpp +21 -0
- data/ext/libgraphqlparser/c/GraphQLAstToJSON.h +24 -0
- data/ext/libgraphqlparser/c/GraphQLAstVisitor.cpp +55 -0
- data/ext/libgraphqlparser/c/GraphQLAstVisitor.h +53 -0
- data/ext/libgraphqlparser/c/GraphQLParser.cpp +35 -0
- data/ext/libgraphqlparser/c/GraphQLParser.h +54 -0
- data/ext/libgraphqlparser/clang-tidy-all.sh +3 -0
- data/ext/libgraphqlparser/cmake/version.cmake +16 -0
- data/ext/libgraphqlparser/dump_json_ast.cpp +48 -0
- data/ext/libgraphqlparser/go/README.md +20 -0
- data/ext/libgraphqlparser/go/callbacks.go +18 -0
- data/ext/libgraphqlparser/go/gotest.go +64 -0
- data/ext/libgraphqlparser/lexer.lpp +324 -0
- data/ext/libgraphqlparser/libgraphqlparser.pc.in +11 -0
- data/ext/libgraphqlparser/parser.ypp +693 -0
- data/ext/libgraphqlparser/parsergen/lexer.cpp +2633 -0
- data/ext/libgraphqlparser/parsergen/lexer.h +528 -0
- data/ext/libgraphqlparser/parsergen/location.hh +189 -0
- data/ext/libgraphqlparser/parsergen/parser.tab.cpp +3300 -0
- data/ext/libgraphqlparser/parsergen/parser.tab.hpp +646 -0
- data/ext/libgraphqlparser/parsergen/position.hh +179 -0
- data/ext/libgraphqlparser/parsergen/stack.hh +156 -0
- data/ext/libgraphqlparser/python/CMakeLists.txt +14 -0
- data/ext/libgraphqlparser/python/README.md +5 -0
- data/ext/libgraphqlparser/python/example.py +31 -0
- data/ext/libgraphqlparser/syntaxdefs.h +19 -0
- data/ext/libgraphqlparser/test/BuildCAPI.c +5 -0
- data/ext/libgraphqlparser/test/CMakeLists.txt +25 -0
- data/ext/libgraphqlparser/test/JsonVisitorTests.cpp +28 -0
- data/ext/libgraphqlparser/test/ParserTests.cpp +352 -0
- data/ext/libgraphqlparser/test/kitchen-sink.graphql +59 -0
- data/ext/libgraphqlparser/test/kitchen-sink.json +1 -0
- data/ext/libgraphqlparser/test/schema-kitchen-sink.graphql +78 -0
- data/ext/libgraphqlparser/test/schema-kitchen-sink.json +1 -0
- data/ext/libgraphqlparser/test/valgrind.supp +33 -0
- data/ext/version.cpp +21 -0
- data/lib/generators/graphql/controller_generator.rb +22 -0
- data/lib/generators/graphql/schema_generator.rb +22 -0
- data/lib/generators/graphql/templates/controller.erb +5 -0
- data/lib/generators/graphql/templates/schema.erb +6 -0
- data/lib/graphqlparser.so +0 -0
- data/lib/rails-graphql.rb +2 -0
- data/lib/rails/graphql.rake +1 -0
- data/lib/rails/graphql.rb +185 -0
- data/lib/rails/graphql/adapters/mysql_adapter.rb +0 -0
- data/lib/rails/graphql/adapters/pg_adapter.rb +50 -0
- data/lib/rails/graphql/adapters/sqlite_adapter.rb +39 -0
- data/lib/rails/graphql/argument.rb +220 -0
- data/lib/rails/graphql/callback.rb +124 -0
- data/lib/rails/graphql/collectors.rb +14 -0
- data/lib/rails/graphql/collectors/hash_collector.rb +83 -0
- data/lib/rails/graphql/collectors/idented_collector.rb +73 -0
- data/lib/rails/graphql/collectors/json_collector.rb +114 -0
- data/lib/rails/graphql/config.rb +61 -0
- data/lib/rails/graphql/directive.rb +203 -0
- data/lib/rails/graphql/directive/deprecated_directive.rb +59 -0
- data/lib/rails/graphql/directive/include_directive.rb +24 -0
- data/lib/rails/graphql/directive/skip_directive.rb +24 -0
- data/lib/rails/graphql/errors.rb +42 -0
- data/lib/rails/graphql/event.rb +141 -0
- data/lib/rails/graphql/field.rb +318 -0
- data/lib/rails/graphql/field/input_field.rb +92 -0
- data/lib/rails/graphql/field/mutation_field.rb +52 -0
- data/lib/rails/graphql/field/output_field.rb +96 -0
- data/lib/rails/graphql/field/proxied_field.rb +131 -0
- data/lib/rails/graphql/field/resolved_field.rb +96 -0
- data/lib/rails/graphql/field/scoped_config.rb +22 -0
- data/lib/rails/graphql/field/typed_field.rb +104 -0
- data/lib/rails/graphql/helpers.rb +40 -0
- data/lib/rails/graphql/helpers/attribute_delegator.rb +39 -0
- data/lib/rails/graphql/helpers/inherited_collection.rb +152 -0
- data/lib/rails/graphql/helpers/leaf_from_ar.rb +141 -0
- data/lib/rails/graphql/helpers/registerable.rb +103 -0
- data/lib/rails/graphql/helpers/with_arguments.rb +125 -0
- data/lib/rails/graphql/helpers/with_assignment.rb +113 -0
- data/lib/rails/graphql/helpers/with_callbacks.rb +55 -0
- data/lib/rails/graphql/helpers/with_directives.rb +126 -0
- data/lib/rails/graphql/helpers/with_events.rb +81 -0
- data/lib/rails/graphql/helpers/with_fields.rb +141 -0
- data/lib/rails/graphql/helpers/with_namespace.rb +40 -0
- data/lib/rails/graphql/helpers/with_owner.rb +35 -0
- data/lib/rails/graphql/helpers/with_schema_fields.rb +230 -0
- data/lib/rails/graphql/helpers/with_validator.rb +52 -0
- data/lib/rails/graphql/introspection.rb +53 -0
- data/lib/rails/graphql/native.rb +56 -0
- data/lib/rails/graphql/native/functions.rb +38 -0
- data/lib/rails/graphql/native/location.rb +41 -0
- data/lib/rails/graphql/native/pointers.rb +23 -0
- data/lib/rails/graphql/native/visitor.rb +349 -0
- data/lib/rails/graphql/railtie.rb +85 -0
- data/lib/rails/graphql/railties/base_generator.rb +35 -0
- data/lib/rails/graphql/railties/controller.rb +101 -0
- data/lib/rails/graphql/railties/controller_runtime.rb +40 -0
- data/lib/rails/graphql/railties/log_subscriber.rb +62 -0
- data/lib/rails/graphql/request.rb +343 -0
- data/lib/rails/graphql/request/arguments.rb +93 -0
- data/lib/rails/graphql/request/component.rb +100 -0
- data/lib/rails/graphql/request/component/field.rb +225 -0
- data/lib/rails/graphql/request/component/fragment.rb +118 -0
- data/lib/rails/graphql/request/component/operation.rb +178 -0
- data/lib/rails/graphql/request/component/operation/subscription.rb +16 -0
- data/lib/rails/graphql/request/component/spread.rb +119 -0
- data/lib/rails/graphql/request/component/typename.rb +82 -0
- data/lib/rails/graphql/request/context.rb +51 -0
- data/lib/rails/graphql/request/errors.rb +54 -0
- data/lib/rails/graphql/request/event.rb +112 -0
- data/lib/rails/graphql/request/helpers/directives.rb +64 -0
- data/lib/rails/graphql/request/helpers/selection_set.rb +87 -0
- data/lib/rails/graphql/request/helpers/value_writers.rb +115 -0
- data/lib/rails/graphql/request/steps/organizable.rb +146 -0
- data/lib/rails/graphql/request/steps/prepareable.rb +33 -0
- data/lib/rails/graphql/request/steps/resolveable.rb +32 -0
- data/lib/rails/graphql/request/strategy.rb +249 -0
- data/lib/rails/graphql/request/strategy/dynamic_instance.rb +41 -0
- data/lib/rails/graphql/request/strategy/multi_query_strategy.rb +36 -0
- data/lib/rails/graphql/request/strategy/sequenced_strategy.rb +28 -0
- data/lib/rails/graphql/schema.rb +272 -0
- data/lib/rails/graphql/shortcuts.rb +77 -0
- data/lib/rails/graphql/source.rb +371 -0
- data/lib/rails/graphql/source/active_record/builders.rb +154 -0
- data/lib/rails/graphql/source/active_record_source.rb +231 -0
- data/lib/rails/graphql/source/scoped_arguments.rb +87 -0
- data/lib/rails/graphql/to_gql.rb +368 -0
- data/lib/rails/graphql/type.rb +138 -0
- data/lib/rails/graphql/type/enum.rb +206 -0
- data/lib/rails/graphql/type/enum/directive_location_enum.rb +30 -0
- data/lib/rails/graphql/type/enum/type_kind_enum.rb +57 -0
- data/lib/rails/graphql/type/input.rb +134 -0
- data/lib/rails/graphql/type/interface.rb +82 -0
- data/lib/rails/graphql/type/object.rb +111 -0
- data/lib/rails/graphql/type/object/directive_object.rb +34 -0
- data/lib/rails/graphql/type/object/enum_value_object.rb +25 -0
- data/lib/rails/graphql/type/object/field_object.rb +54 -0
- data/lib/rails/graphql/type/object/input_value_object.rb +49 -0
- data/lib/rails/graphql/type/object/schema_object.rb +40 -0
- data/lib/rails/graphql/type/object/type_object.rb +136 -0
- data/lib/rails/graphql/type/scalar.rb +71 -0
- data/lib/rails/graphql/type/scalar/bigint_scalar.rb +34 -0
- data/lib/rails/graphql/type/scalar/binary_scalar.rb +30 -0
- data/lib/rails/graphql/type/scalar/boolean_scalar.rb +37 -0
- data/lib/rails/graphql/type/scalar/date_scalar.rb +34 -0
- data/lib/rails/graphql/type/scalar/date_time_scalar.rb +32 -0
- data/lib/rails/graphql/type/scalar/decimal_scalar.rb +35 -0
- data/lib/rails/graphql/type/scalar/float_scalar.rb +32 -0
- data/lib/rails/graphql/type/scalar/id_scalar.rb +39 -0
- data/lib/rails/graphql/type/scalar/int_scalar.rb +36 -0
- data/lib/rails/graphql/type/scalar/string_scalar.rb +28 -0
- data/lib/rails/graphql/type/scalar/time_scalar.rb +40 -0
- data/lib/rails/graphql/type/union.rb +87 -0
- data/lib/rails/graphql/type_map.rb +347 -0
- data/lib/rails/graphql/version.rb +7 -0
- data/test/assets/introspection-db.json +0 -0
- data/test/assets/introspection-mem.txt +1 -0
- data/test/assets/introspection.gql +91 -0
- data/test/assets/luke.jpg +0 -0
- data/test/assets/mem.gql +428 -0
- data/test/assets/sqlite.gql +423 -0
- data/test/config.rb +80 -0
- data/test/graphql/request/context_test.rb +70 -0
- data/test/graphql/schema_test.rb +190 -0
- data/test/graphql/source_test.rb +237 -0
- data/test/graphql/type/enum_test.rb +203 -0
- data/test/graphql/type/input_test.rb +138 -0
- data/test/graphql/type/interface_test.rb +72 -0
- data/test/graphql/type/object_test.rb +104 -0
- data/test/graphql/type/scalar/bigint_scalar_test.rb +42 -0
- data/test/graphql/type/scalar/binary_scalar_test.rb +17 -0
- data/test/graphql/type/scalar/boolean_scalar_test.rb +40 -0
- data/test/graphql/type/scalar/date_scalar_test.rb +29 -0
- data/test/graphql/type/scalar/date_time_scalar_test.rb +29 -0
- data/test/graphql/type/scalar/decimal_scalar_test.rb +28 -0
- data/test/graphql/type/scalar/float_scalar_test.rb +22 -0
- data/test/graphql/type/scalar/id_scalar_test.rb +26 -0
- data/test/graphql/type/scalar/int_scalar_test.rb +26 -0
- data/test/graphql/type/scalar/string_scalar_test.rb +17 -0
- data/test/graphql/type/scalar/time_scalar_test.rb +36 -0
- data/test/graphql/type/scalar_test.rb +45 -0
- data/test/graphql/type/union_test.rb +82 -0
- data/test/graphql/type_map_test.rb +362 -0
- data/test/graphql/type_test.rb +68 -0
- data/test/graphql_test.rb +55 -0
- data/test/integration/config.rb +56 -0
- data/test/integration/memory/star_wars_introspection_test.rb +144 -0
- data/test/integration/memory/star_wars_query_test.rb +184 -0
- data/test/integration/memory/star_wars_validation_test.rb +99 -0
- data/test/integration/schemas/memory.rb +232 -0
- data/test/integration/schemas/sqlite.rb +82 -0
- data/test/integration/sqlite/star_wars_introspection_test.rb +15 -0
- data/test/integration/sqlite/star_wars_mutation_test.rb +82 -0
- data/test/integration/sqlite/star_wars_query_test.rb +71 -0
- data/test/test_ext.rb +48 -0
- metadata +509 -0
Binary file
|
@@ -0,0 +1,64 @@
|
|
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
|
Binary file
|
@@ -0,0 +1,65 @@
|
|
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
|
+
|
7
|
+
class Printer(object):
|
8
|
+
def __init__(self):
|
9
|
+
pass
|
10
|
+
|
11
|
+
def start_file(self):
|
12
|
+
print '''/* @flow */
|
13
|
+
/* @generated */
|
14
|
+
/* jshint ignore:start */
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Copyright 2019-present, GraphQL Foundation
|
18
|
+
*
|
19
|
+
* This source code is licensed under the MIT license found in the
|
20
|
+
* LICENSE file in the root directory of this source tree.
|
21
|
+
*/
|
22
|
+
|
23
|
+
type Node = {
|
24
|
+
kind: string;
|
25
|
+
start?: ?number;
|
26
|
+
end?: ?number;
|
27
|
+
};
|
28
|
+
|
29
|
+
type OperationKind = 'query' | 'mutation' | 'subscription';'''
|
30
|
+
|
31
|
+
def end_file(self):
|
32
|
+
pass
|
33
|
+
|
34
|
+
def start_type(self, name):
|
35
|
+
print
|
36
|
+
print 'type %s = Node & {' % name
|
37
|
+
kind = name
|
38
|
+
if kind == 'GenericType':
|
39
|
+
kind = 'Type'
|
40
|
+
print ' kind: \'%s\';' % kind
|
41
|
+
|
42
|
+
def end_type(self, name):
|
43
|
+
print '}'
|
44
|
+
|
45
|
+
def _js_type(self, type, plural):
|
46
|
+
if plural:
|
47
|
+
type = 'Array<%s>' % type
|
48
|
+
return type
|
49
|
+
|
50
|
+
def field(self, type, name, nullable, plural):
|
51
|
+
nullable_char = '?' if nullable else ''
|
52
|
+
js_type = self._js_type(type, plural)
|
53
|
+
print ' %(name)s%(nullable_char)s: %(nullable_char)s%(js_type)s;' % locals()
|
54
|
+
|
55
|
+
def start_union(self, name):
|
56
|
+
print ('type %s = ' % name),
|
57
|
+
self._current_options = []
|
58
|
+
|
59
|
+
def union_option(self, type):
|
60
|
+
self._current_options.append(type)
|
61
|
+
|
62
|
+
def end_union(self, name):
|
63
|
+
print '\n | '.join(self._current_options)
|
64
|
+
print
|
65
|
+
self._current_options = None
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Copyright 2019-present GraphQL Foundation
|
2
|
+
# This source code is licensed under the MIT license found in the
|
3
|
+
# LICENSE file in the root directory of this source tree.
|
4
|
+
|
5
|
+
C_LICENSE_COMMENT = '''/**
|
6
|
+
* Copyright 2019-present GraphQL Foundation
|
7
|
+
* This source code is licensed under the MIT license found in the
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
9
|
+
*/
|
10
|
+
'''
|
Binary file
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#include "GraphQLAstNode.h"
|
9
|
+
#include "../AstNode.h"
|
10
|
+
|
11
|
+
using facebook::graphql::ast::Node;
|
12
|
+
|
13
|
+
void graphql_node_get_location(const struct GraphQLAstNode *node,
|
14
|
+
struct GraphQLAstLocation *location) {
|
15
|
+
const auto *realNode = reinterpret_cast<const Node *>(node);
|
16
|
+
const auto &loc = realNode->getLocation();
|
17
|
+
location->beginLine = loc.begin.line;
|
18
|
+
location->beginColumn = loc.begin.column;
|
19
|
+
location->endLine = loc.end.line;
|
20
|
+
location->endColumn = loc.end.column;
|
21
|
+
}
|
22
|
+
|
23
|
+
void graphql_node_free(struct GraphQLAstNode *node) {
|
24
|
+
delete reinterpret_cast<Node *>(node);
|
25
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#pragma once
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
/* Opaque type representing a generic AST node. */
|
15
|
+
struct GraphQLAstNode;
|
16
|
+
|
17
|
+
/* A location in the AST. */
|
18
|
+
struct GraphQLAstLocation {
|
19
|
+
unsigned int beginLine;
|
20
|
+
unsigned int beginColumn;
|
21
|
+
unsigned int endLine;
|
22
|
+
unsigned int endColumn;
|
23
|
+
};
|
24
|
+
|
25
|
+
/* Fills location with location information for the given node. */
|
26
|
+
void graphql_node_get_location(const struct GraphQLAstNode *node,
|
27
|
+
struct GraphQLAstLocation *location);
|
28
|
+
|
29
|
+
void graphql_node_free(struct GraphQLAstNode *node);
|
30
|
+
|
31
|
+
#ifdef __cplusplus
|
32
|
+
}
|
33
|
+
#endif
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#include "GraphQLAstToJSON.h"
|
9
|
+
|
10
|
+
#include <cstring>
|
11
|
+
|
12
|
+
#include "../JsonVisitor.h"
|
13
|
+
#include "../AstNode.h"
|
14
|
+
|
15
|
+
|
16
|
+
const char *graphql_ast_to_json(const struct GraphQLAstNode *node)
|
17
|
+
{
|
18
|
+
facebook::graphql::ast::visitor::JsonVisitor visitor;
|
19
|
+
reinterpret_cast<const facebook::graphql::ast::Node *>(node)->accept(&visitor);
|
20
|
+
return strdup(visitor.getResult().c_str());
|
21
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#pragma once
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
struct GraphQLAstNode;
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Serialize the given AST to JSON. The returned C string must be
|
18
|
+
* freed with free().
|
19
|
+
*/
|
20
|
+
const char *graphql_ast_to_json(const struct GraphQLAstNode *node);
|
21
|
+
|
22
|
+
#ifdef __cplusplus
|
23
|
+
}
|
24
|
+
#endif
|
@@ -0,0 +1,55 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#include "c/GraphQLAstVisitor.h"
|
9
|
+
#include "AstVisitor.h"
|
10
|
+
|
11
|
+
using namespace facebook::graphql::ast; // NOLINT
|
12
|
+
|
13
|
+
#include "c/GraphQLAstForEachConcreteType.h"
|
14
|
+
|
15
|
+
#define DECLARE_VISIT(type, snake_type) \
|
16
|
+
bool visit##type(const type &node) override; \
|
17
|
+
void endVisit##type(const type &node) override;
|
18
|
+
|
19
|
+
class CVisitorBridge : public visitor::AstVisitor {
|
20
|
+
const struct GraphQLAstVisitorCallbacks *callbacks_;
|
21
|
+
void *userData_;
|
22
|
+
public:
|
23
|
+
explicit CVisitorBridge(const struct GraphQLAstVisitorCallbacks *callbacks,
|
24
|
+
void *userData)
|
25
|
+
: callbacks_(callbacks), userData_(userData) {}
|
26
|
+
|
27
|
+
FOR_EACH_CONCRETE_TYPE(DECLARE_VISIT)
|
28
|
+
};
|
29
|
+
|
30
|
+
#define IMPLEMENT_VISIT(type, snake_type) \
|
31
|
+
bool CVisitorBridge::visit##type(const type &node) { \
|
32
|
+
if (callbacks_->visit_##snake_type) { \
|
33
|
+
return callbacks_->visit_##snake_type( \
|
34
|
+
(const struct GraphQLAst##type *)&node, userData_); \
|
35
|
+
} \
|
36
|
+
return true; \
|
37
|
+
} \
|
38
|
+
void CVisitorBridge::endVisit##type(const type &node) { \
|
39
|
+
if (callbacks_->end_visit_##snake_type) { \
|
40
|
+
callbacks_->end_visit_##snake_type( \
|
41
|
+
(const struct GraphQLAst##type *)&node, userData_); \
|
42
|
+
} \
|
43
|
+
}
|
44
|
+
|
45
|
+
FOR_EACH_CONCRETE_TYPE(IMPLEMENT_VISIT)
|
46
|
+
|
47
|
+
void graphql_node_visit(const struct GraphQLAstNode *node,
|
48
|
+
const struct GraphQLAstVisitorCallbacks *callbacks,
|
49
|
+
void *userData)
|
50
|
+
{
|
51
|
+
CVisitorBridge visitor(callbacks, userData);
|
52
|
+
if (node) {
|
53
|
+
reinterpret_cast<const facebook::graphql::ast::Node *>(node)->accept(&visitor);
|
54
|
+
}
|
55
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#pragma once
|
9
|
+
|
10
|
+
#include "c/GraphQLAst.h"
|
11
|
+
#include "c/GraphQLAstForEachConcreteType.h"
|
12
|
+
|
13
|
+
#ifdef __cplusplus
|
14
|
+
extern "C" {
|
15
|
+
#endif
|
16
|
+
|
17
|
+
#define TYPEDEFS(type, snake_type) \
|
18
|
+
typedef int (*visit_##snake_type##_func)(const struct GraphQLAst##type *snake_type, void *user_data); \
|
19
|
+
typedef void (*end_visit_##snake_type##_func)(const struct GraphQLAst##type *snake_type, void *user_data);
|
20
|
+
|
21
|
+
FOR_EACH_CONCRETE_TYPE(TYPEDEFS)
|
22
|
+
|
23
|
+
#define FUNC_MEMBER(type, snake_type) \
|
24
|
+
visit_##snake_type##_func visit_##snake_type; \
|
25
|
+
end_visit_##snake_type##_func end_visit_##snake_type;
|
26
|
+
/**
|
27
|
+
* Functions to be called when particular AST nodes are encountered.
|
28
|
+
* visit_* functions are called in pre-order, and may return non-zero to
|
29
|
+
* continue recursing into children (if any), or zero to skip them. end_visit_*
|
30
|
+
* functions are called in post-order. Any particular function may be set to
|
31
|
+
* NULL to indicate that the caller is not interested in the corresponding type
|
32
|
+
* of AST node. (NULL visit_* functions act as though they simply returned
|
33
|
+
* non-zero.)
|
34
|
+
*/
|
35
|
+
struct GraphQLAstVisitorCallbacks {
|
36
|
+
FOR_EACH_CONCRETE_TYPE(FUNC_MEMBER)
|
37
|
+
};
|
38
|
+
|
39
|
+
struct GraphQLAstNode;
|
40
|
+
|
41
|
+
/**
|
42
|
+
* Walk the AST rooted at the given node, issuing callbacks from the given
|
43
|
+
* callbacks struct as appropriate. userData will be passed as the userData
|
44
|
+
* argument to each callback.
|
45
|
+
*/
|
46
|
+
void graphql_node_visit(const struct GraphQLAstNode *node,
|
47
|
+
const struct GraphQLAstVisitorCallbacks *callbacks,
|
48
|
+
void *userData);
|
49
|
+
|
50
|
+
#ifdef __cplusplus
|
51
|
+
}
|
52
|
+
#endif
|
53
|
+
|
@@ -0,0 +1,35 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#include "GraphQLParser.h"
|
9
|
+
#include "../GraphQLParser.h"
|
10
|
+
#include "../AstNode.h"
|
11
|
+
|
12
|
+
#include <cstdlib>
|
13
|
+
|
14
|
+
struct GraphQLAstNode *graphql_parse_string(const char *text, const char **error) {
|
15
|
+
return reinterpret_cast<struct GraphQLAstNode *>(facebook::graphql::parseString(text, error).release());
|
16
|
+
}
|
17
|
+
|
18
|
+
struct GraphQLAstNode *graphql_parse_string_with_experimental_schema_support(
|
19
|
+
const char *text, const char **error) {
|
20
|
+
return reinterpret_cast<struct GraphQLAstNode *>(facebook::graphql::parseStringWithExperimentalSchemaSupport(
|
21
|
+
text, error).release());
|
22
|
+
}
|
23
|
+
|
24
|
+
struct GraphQLAstNode *graphql_parse_file(FILE *file, const char **error) {
|
25
|
+
return reinterpret_cast<struct GraphQLAstNode *>(facebook::graphql::parseFile(file, error).release());
|
26
|
+
}
|
27
|
+
|
28
|
+
struct GraphQLAstNode *graphql_parse_file_with_experimental_schema_support(
|
29
|
+
FILE *file, const char **error) {
|
30
|
+
return reinterpret_cast<struct GraphQLAstNode *>(facebook::graphql::parseFileWithExperimentalSchemaSupport(file, error).release());
|
31
|
+
}
|
32
|
+
|
33
|
+
void graphql_error_free(const char *error) {
|
34
|
+
std::free((void *)(error)); // NOLINT
|
35
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2019-present, GraphQL Foundation
|
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
|
+
|
8
|
+
#pragma once
|
9
|
+
|
10
|
+
#include <stdio.h>
|
11
|
+
|
12
|
+
#ifdef __cplusplus
|
13
|
+
extern "C" {
|
14
|
+
#endif
|
15
|
+
|
16
|
+
/**
|
17
|
+
* This file provides C wrappers for ../GraphQLParser.h.
|
18
|
+
*/
|
19
|
+
|
20
|
+
struct GraphQLAstNode;
|
21
|
+
|
22
|
+
/**
|
23
|
+
* Parse the given GraphQL source string, returning an AST. Returns
|
24
|
+
* NULL on error. Return value must be freed with
|
25
|
+
* graphql_node_free(). If NULL is returned and error is not NULL, an
|
26
|
+
* error message is placed in error and must be freed with
|
27
|
+
* graphql_error_free().
|
28
|
+
*/
|
29
|
+
struct GraphQLAstNode *graphql_parse_string(
|
30
|
+
const char *text, const char **error);
|
31
|
+
|
32
|
+
struct GraphQLAstNode *graphql_parse_string_with_experimental_schema_support(
|
33
|
+
const char *text, const char **error);
|
34
|
+
|
35
|
+
/**
|
36
|
+
* Read and parse GraphQL source from the given file, returning an
|
37
|
+
* AST. Returns nullptr on error. Return value must be freed with
|
38
|
+
* graphql_node_free(). If NULL is returned and error is not NULL, an
|
39
|
+
* error message is placed in error and must be freed with
|
40
|
+
* graphql_error_free().
|
41
|
+
*/
|
42
|
+
struct GraphQLAstNode *graphql_parse_file(FILE *file, const char **error);
|
43
|
+
|
44
|
+
struct GraphQLAstNode *graphql_parse_file_with_experimental_schema_support(
|
45
|
+
FILE *file, const char **error);
|
46
|
+
|
47
|
+
/**
|
48
|
+
* Frees an error.
|
49
|
+
*/
|
50
|
+
void graphql_error_free(const char *error);
|
51
|
+
|
52
|
+
#ifdef __cplusplus
|
53
|
+
}
|
54
|
+
#endif
|