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
@@ -0,0 +1,16 @@
|
|
1
|
+
# Copyright 2019-present, GraphQL Foundation
|
2
|
+
|
3
|
+
find_package(Git QUIET)
|
4
|
+
|
5
|
+
# default version string
|
6
|
+
set(LIBGRAPHQLPARSER_VERSION "0.0-dev")
|
7
|
+
|
8
|
+
if(GIT_EXECUTABLE AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
|
9
|
+
execute_process(COMMAND ${GIT_EXECUTABLE} describe --tags
|
10
|
+
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
11
|
+
OUTPUT_VARIABLE LIBGRAPHQLPARSER_VERSION
|
12
|
+
ERROR_QUIET
|
13
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE
|
14
|
+
)
|
15
|
+
string(SUBSTRING ${LIBGRAPHQLPARSER_VERSION} 1 -1 LIBGRAPHQLPARSER_VERSION)
|
16
|
+
endif()
|
@@ -0,0 +1,48 @@
|
|
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 "AstNode.h"
|
9
|
+
#include "GraphQLParser.h"
|
10
|
+
#include "c/GraphQLAstToJSON.h"
|
11
|
+
|
12
|
+
#include <cstdio>
|
13
|
+
#include <cstdlib>
|
14
|
+
#include <iostream>
|
15
|
+
|
16
|
+
|
17
|
+
using std::cout;
|
18
|
+
using std::cerr;
|
19
|
+
using std::endl;
|
20
|
+
using std::fopen;
|
21
|
+
using std::fclose;
|
22
|
+
using std::free;
|
23
|
+
|
24
|
+
|
25
|
+
int main(int argc, char **argv) {
|
26
|
+
const char *error;
|
27
|
+
FILE * in;
|
28
|
+
if (argc > 1) {
|
29
|
+
in = fopen(argv[1], "r"); // NOLINT
|
30
|
+
} else {
|
31
|
+
in = stdin;
|
32
|
+
}
|
33
|
+
auto AST = facebook::graphql::parseFile(in, &error);
|
34
|
+
if (argc > 1) {
|
35
|
+
fclose(in);
|
36
|
+
}
|
37
|
+
if (!AST) {
|
38
|
+
cerr << "Parser failed with error: " << error << endl;
|
39
|
+
free((void *)error); // NOLINT
|
40
|
+
return 1;
|
41
|
+
}
|
42
|
+
|
43
|
+
const char *json = graphql_ast_to_json(reinterpret_cast<const struct GraphQLAstNode *>(AST.get()));
|
44
|
+
puts(json);
|
45
|
+
free((void *)json); // NOLINT
|
46
|
+
|
47
|
+
return 0;
|
48
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# About
|
2
|
+
This directory contains an example using the libgraphqlparser C library from [Go](https://golang.org/project/).
|
3
|
+
|
4
|
+
For an overview of binding to C libraries in Go, please see the [cgo documentation](https://github.com/golang/go/wiki/cgo).
|
5
|
+
Specifically, please read the overview of [Function pointer callbacks](https://github.com/golang/go/wiki/cgo#function-pointer-callbacks) in Go and C.
|
6
|
+
|
7
|
+
## Building and Running
|
8
|
+
|
9
|
+
To build with Go, please ensure that you have `pkg-config` installed for your
|
10
|
+
system.
|
11
|
+
|
12
|
+
Assuming pkg-config has been installed, it should be possible to then build
|
13
|
+
using Go in the normal fashion:
|
14
|
+
```sh
|
15
|
+
$ cd libgraphqlparser/go
|
16
|
+
$ go build
|
17
|
+
$ ./go
|
18
|
+
field : myfield
|
19
|
+
Example error: 1.18-19: syntax error, unexpected on, expecting ( or @ or {
|
20
|
+
```
|
@@ -0,0 +1,18 @@
|
|
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
|
+
package main
|
8
|
+
|
9
|
+
/*
|
10
|
+
struct GraphQLAstField;
|
11
|
+
|
12
|
+
int printField(struct GraphQLAstField *field, void *unused);
|
13
|
+
|
14
|
+
int printField_cgo(struct GraphQLAstField *field, void *unused) {
|
15
|
+
return printField(field, unused);
|
16
|
+
}
|
17
|
+
*/
|
18
|
+
import "C"
|
@@ -0,0 +1,64 @@
|
|
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
|
+
package main
|
8
|
+
|
9
|
+
/*
|
10
|
+
#cgo pkg-config: libgraphqlparser
|
11
|
+
|
12
|
+
#include "c/GraphQLAst.h"
|
13
|
+
#include "c/GraphQLAstNode.h"
|
14
|
+
#include "c/GraphQLAstVisitor.h"
|
15
|
+
#include "c/GraphQLParser.h"
|
16
|
+
#include <stdlib.h>
|
17
|
+
|
18
|
+
int printField_cgo(struct GraphQLAstField *field, void *unused);
|
19
|
+
*/
|
20
|
+
import "C"
|
21
|
+
|
22
|
+
import "errors"
|
23
|
+
import "fmt"
|
24
|
+
import "unsafe"
|
25
|
+
|
26
|
+
//export printField
|
27
|
+
func printField(field *C.struct_GraphQLAstField, unused unsafe.Pointer) int {
|
28
|
+
fmt.Printf("field : %s\n", C.GoString(C.GraphQLAstName_get_value(C.GraphQLAstField_get_name(field))))
|
29
|
+
return 0
|
30
|
+
}
|
31
|
+
|
32
|
+
func parse(query string) (*C.struct_GraphQLAstNode, error) {
|
33
|
+
graphql := C.CString(query)
|
34
|
+
cError := (*C.char)(nil)
|
35
|
+
ast := C.graphql_parse_string(graphql, &cError)
|
36
|
+
C.free(unsafe.Pointer(graphql))
|
37
|
+
|
38
|
+
if ast == nil {
|
39
|
+
err := errors.New(C.GoString(cError))
|
40
|
+
C.graphql_error_free(cError)
|
41
|
+
return nil, err
|
42
|
+
}
|
43
|
+
return ast, nil
|
44
|
+
}
|
45
|
+
|
46
|
+
func main() {
|
47
|
+
ast, err := parse("query myquery { myfield }")
|
48
|
+
if err != nil {
|
49
|
+
fmt.Printf("BUG: unexpected parse error: %s", err)
|
50
|
+
return
|
51
|
+
}
|
52
|
+
visitor_callbacks := C.struct_GraphQLAstVisitorCallbacks{visit_field: (C.visit_field_func)(C.printField_cgo)}
|
53
|
+
C.graphql_node_visit(ast, &visitor_callbacks, nil)
|
54
|
+
|
55
|
+
C.graphql_node_free(ast)
|
56
|
+
|
57
|
+
ast2, err2 := parse("query errorQuery on oops { myfield }")
|
58
|
+
if err2 != nil {
|
59
|
+
fmt.Printf("Example error: %s\n", err2)
|
60
|
+
}
|
61
|
+
if ast2 != nil {
|
62
|
+
fmt.Printf("BUG: we should have got a null AST back, but we got %s\n", ast2)
|
63
|
+
}
|
64
|
+
}
|
@@ -0,0 +1,324 @@
|
|
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
|
+
%{
|
9
|
+
#include <algorithm>
|
10
|
+
#include <cassert>
|
11
|
+
#include <cctype>
|
12
|
+
#include <climits>
|
13
|
+
#include <cstdio>
|
14
|
+
#include <string>
|
15
|
+
#include <vector>
|
16
|
+
#include "location.hh"
|
17
|
+
#include "position.hh"
|
18
|
+
#include "parser.tab.hpp"
|
19
|
+
#include "syntaxdefs.h"
|
20
|
+
|
21
|
+
// Keep track of token lengths.
|
22
|
+
#define YY_USER_ACTION yyextra->loc.columns(yyleng);
|
23
|
+
|
24
|
+
static void escape(char c, char *buf);
|
25
|
+
|
26
|
+
static std::string clean_up_block_string(const std::string &str);
|
27
|
+
|
28
|
+
%}
|
29
|
+
|
30
|
+
%option bison-bridge bison-locations
|
31
|
+
%option noyywrap batch noinput nounput
|
32
|
+
%option reentrant
|
33
|
+
%option extra-type="struct LexerExtra *"
|
34
|
+
|
35
|
+
%x STRING_STATE
|
36
|
+
%x BLOCK_STRING_STATE
|
37
|
+
%x C_COMMENT_STATE
|
38
|
+
%x LINE_COMMENT_STATE
|
39
|
+
|
40
|
+
FLOAT -?(0|[1-9][0-9]*)(\.[0-9]+)?([eE][+-]?[0-9]+)?
|
41
|
+
INTEGER -?(0|[1-9][0-9]*)
|
42
|
+
IDENTIFIER [_A-Za-z][_0-9A-Za-z]*
|
43
|
+
VARIABLE $[_0-9A-Za-z]+
|
44
|
+
BOM \xef\xbb\xbf
|
45
|
+
CRLF \r\n
|
46
|
+
BADCHAR [\x00-\x08\x0b\x0c\x0e-\x1f]
|
47
|
+
GOODCHAR [^\x00-\x08\x0b\x0c\x0e-\x1f]
|
48
|
+
STRINGCHAR [^\x00-\x1f\\\x22]
|
49
|
+
|
50
|
+
blank [ \t,]
|
51
|
+
newline [\n\r]
|
52
|
+
notnewline [^\n\r]
|
53
|
+
|
54
|
+
%%
|
55
|
+
|
56
|
+
%{
|
57
|
+
yyextra->loc.step();
|
58
|
+
%}
|
59
|
+
|
60
|
+
<STRING_STATE>{
|
61
|
+
\" {
|
62
|
+
BEGIN(INITIAL);
|
63
|
+
yylval->str = yyextra->str.c_str();
|
64
|
+
*yylloc = yyextra->loc;
|
65
|
+
return yy::GraphQLParserImpl::token::TOK_STRING;
|
66
|
+
}
|
67
|
+
|
68
|
+
{newline} {
|
69
|
+
throw make_error(yyextra->loc, "Unterminated string");
|
70
|
+
}
|
71
|
+
|
72
|
+
<<EOF>> {
|
73
|
+
throw make_error(yyextra->loc, "Unterminated string at EOF");
|
74
|
+
}
|
75
|
+
|
76
|
+
{STRINGCHAR}+ {
|
77
|
+
char *p = yytext;
|
78
|
+
while (*p) {
|
79
|
+
yyextra->str.push_back(*p++);
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
\\\" { yyextra->str.push_back('"'); }
|
84
|
+
\\\\ { yyextra->str.push_back('\\'); }
|
85
|
+
\\\/ { yyextra->str.push_back('/'); }
|
86
|
+
\\n { yyextra->str.push_back('\n'); }
|
87
|
+
\\t { yyextra->str.push_back('\t'); }
|
88
|
+
\\r { yyextra->str.push_back('\r'); }
|
89
|
+
\\b { yyextra->str.push_back('\b'); }
|
90
|
+
\\f { yyextra->str.push_back('\f'); }
|
91
|
+
|
92
|
+
\\u[0-9A-Fa-f]{4} {
|
93
|
+
int ch;
|
94
|
+
sscanf(yytext + 2, "%x", &ch);
|
95
|
+
yyextra->str.push_back(ch);
|
96
|
+
}
|
97
|
+
|
98
|
+
\\u { throw make_error(yyextra->loc, "bad Unicode escape sequence"); }
|
99
|
+
\\. { throw make_error(yyextra->loc, std::string("bad escape sequence \\") + yytext[1]); }
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
<BLOCK_STRING_STATE>{
|
104
|
+
<<EOF>> {
|
105
|
+
throw make_error(yyextra->loc, "Unterminated block string at EOF");
|
106
|
+
}
|
107
|
+
|
108
|
+
{BADCHAR} {
|
109
|
+
throw make_error(yyextra->loc, std::string("Invalid character ") + yytext[0]);
|
110
|
+
}
|
111
|
+
|
112
|
+
{GOODCHAR} {
|
113
|
+
/* Can't use {GOODCHAR}+ because that would be a better match for
|
114
|
+
""" than the explicit rule! */
|
115
|
+
yyextra->str.push_back(*yytext);
|
116
|
+
}
|
117
|
+
|
118
|
+
\\\"\"\" {
|
119
|
+
yyextra->str.append(3, '"');
|
120
|
+
}
|
121
|
+
|
122
|
+
\"\"\" {
|
123
|
+
BEGIN(INITIAL);
|
124
|
+
yyextra->str = clean_up_block_string(yyextra->str);
|
125
|
+
yylval->str = yyextra->str.c_str();
|
126
|
+
*yylloc = yyextra->loc;
|
127
|
+
return yy::GraphQLParserImpl::token::TOK_STRING;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
<LINE_COMMENT_STATE>{
|
132
|
+
{CRLF} { yyextra->loc.lines(yyleng / 2); yyextra->loc.step(); BEGIN(INITIAL); }
|
133
|
+
{newline} { yyextra->loc.lines(yyleng); yyextra->loc.step(); BEGIN(INITIAL); }
|
134
|
+
{notnewline}+ /* eat comment character */
|
135
|
+
}
|
136
|
+
|
137
|
+
<INITIAL>{
|
138
|
+
{blank}+ { yyextra->loc.step(); }
|
139
|
+
{BOM}+ { yyextra->loc.step(); yyextra->loc.step(); yyextra->loc.step(); }
|
140
|
+
{CRLF}+ { yyextra->loc.lines(yyleng / 2); yyextra->loc.step(); }
|
141
|
+
{newline}+ { yyextra->loc.lines(yyleng); yyextra->loc.step(); }
|
142
|
+
|
143
|
+
# {yyextra->loc.step(); BEGIN(LINE_COMMENT_STATE); }
|
144
|
+
|
145
|
+
directive { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_DIRECTIVE; }
|
146
|
+
enum { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_ENUM; }
|
147
|
+
extend { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_EXTEND; }
|
148
|
+
false { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_FALSE; }
|
149
|
+
fragment { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_FRAGMENT; }
|
150
|
+
implements { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_IMPLEMENTS; }
|
151
|
+
input { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_INPUT; }
|
152
|
+
interface { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_INTERFACE; }
|
153
|
+
mutation { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_MUTATION; }
|
154
|
+
null { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_NULL; }
|
155
|
+
on { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_ON; }
|
156
|
+
query { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_QUERY; }
|
157
|
+
scalar { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_SCALAR; }
|
158
|
+
schema { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_SCHEMA; }
|
159
|
+
subscription { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_SUBSCRIPTION; }
|
160
|
+
true { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_TRUE; }
|
161
|
+
type { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_TYPE; }
|
162
|
+
union { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_UNION; }
|
163
|
+
|
164
|
+
{INTEGER} { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_INTEGER; }
|
165
|
+
{FLOAT} { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_FLOAT; }
|
166
|
+
{IDENTIFIER} { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_IDENTIFIER; }
|
167
|
+
{VARIABLE} { yylval->str = yytext + 1; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_VARIABLE; }
|
168
|
+
|
169
|
+
"!" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_BANG; }
|
170
|
+
"(" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_LPAREN; }
|
171
|
+
")" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_RPAREN; }
|
172
|
+
"..." { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_ELLIPSIS; }
|
173
|
+
":" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_COLON; }
|
174
|
+
"=" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_EQUAL; }
|
175
|
+
"@" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_AT; }
|
176
|
+
"[" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_LBRACKET; }
|
177
|
+
"]" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_RBRACKET; }
|
178
|
+
"{" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_LBRACE; }
|
179
|
+
"|" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_PIPE; }
|
180
|
+
"}" { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_RBRACE; }
|
181
|
+
|
182
|
+
|
183
|
+
<<EOF>> { *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_EOF; }
|
184
|
+
|
185
|
+
\"\"\" {
|
186
|
+
BEGIN(BLOCK_STRING_STATE);
|
187
|
+
yyextra->str.clear();
|
188
|
+
}
|
189
|
+
|
190
|
+
\" {
|
191
|
+
BEGIN(STRING_STATE);
|
192
|
+
yyextra->str.clear();
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
<INITIAL,STRING_STATE,LINE_COMMENT_STATE>. {
|
197
|
+
char buf[6];
|
198
|
+
escape(yytext[0], buf);
|
199
|
+
throw make_error(
|
200
|
+
yyextra->loc,
|
201
|
+
std::string("unrecognized character ") + buf);
|
202
|
+
}
|
203
|
+
|
204
|
+
%%
|
205
|
+
|
206
|
+
static void escape(char c, char *buf) {
|
207
|
+
if (std::isgraph(c)) {
|
208
|
+
*buf = c;
|
209
|
+
buf[1] = '\0';
|
210
|
+
} else {
|
211
|
+
buf[0] = '\\';
|
212
|
+
buf[2] = '\0';
|
213
|
+
switch (c) {
|
214
|
+
case '\a':
|
215
|
+
buf[1] = 'a';
|
216
|
+
break;
|
217
|
+
case '\b':
|
218
|
+
buf[1] = 'b';
|
219
|
+
break;
|
220
|
+
case '\f':
|
221
|
+
buf[1] = 'f';
|
222
|
+
break;
|
223
|
+
case '\n':
|
224
|
+
buf[1] = 'n';
|
225
|
+
break;
|
226
|
+
case '\r':
|
227
|
+
buf[1] = 'r';
|
228
|
+
break;
|
229
|
+
case '\t':
|
230
|
+
buf[1] = 't';
|
231
|
+
break;
|
232
|
+
case '\v':
|
233
|
+
buf[1] = 'v';
|
234
|
+
break;
|
235
|
+
default:
|
236
|
+
buf[1] = 'x';
|
237
|
+
std::snprintf(buf + 2, 3, "%x", ((int)c & 0xFF));
|
238
|
+
break;
|
239
|
+
}
|
240
|
+
}
|
241
|
+
}
|
242
|
+
|
243
|
+
static std::vector<std::string> splitLines(const std::string &str) {
|
244
|
+
std::vector<std::string> lines;
|
245
|
+
auto it = str.begin();
|
246
|
+
while (it != str.end()) {
|
247
|
+
static char terminators[2] = {'\r', '\n'};
|
248
|
+
auto nextIt = std::find_first_of(it, str.end(), terminators, terminators + sizeof(terminators));
|
249
|
+
lines.emplace_back(str.data() + (it - str.begin()), nextIt - it);
|
250
|
+
if (nextIt != str.end()) {
|
251
|
+
auto advancedIt = nextIt + 1;
|
252
|
+
if (advancedIt != str.end()) {
|
253
|
+
if (*nextIt == '\r' && *advancedIt == '\n') {
|
254
|
+
++advancedIt;
|
255
|
+
}
|
256
|
+
}
|
257
|
+
nextIt = std::move(advancedIt);
|
258
|
+
}
|
259
|
+
it = std::move(nextIt);
|
260
|
+
}
|
261
|
+
return lines;
|
262
|
+
}
|
263
|
+
|
264
|
+
static int count_leading_whitespace(const std::string &str) {
|
265
|
+
auto pos = str.find_first_not_of(" \t", 0, strlen(" \t"));
|
266
|
+
if (pos == std::string::npos) {
|
267
|
+
return str.length();
|
268
|
+
}
|
269
|
+
return pos;
|
270
|
+
}
|
271
|
+
|
272
|
+
static bool is_all_whitespace(const std::string &str) {
|
273
|
+
return count_leading_whitespace(str) == str.length();
|
274
|
+
}
|
275
|
+
|
276
|
+
static std::string clean_up_block_string(const std::string &str) {
|
277
|
+
auto lines = splitLines(str);
|
278
|
+
bool first = true;
|
279
|
+
int commonIndent = INT_MAX;
|
280
|
+
for (const auto &line : lines) {
|
281
|
+
if (first) {
|
282
|
+
first = false;
|
283
|
+
continue;
|
284
|
+
}
|
285
|
+
const auto indent = count_leading_whitespace(line);
|
286
|
+
if (indent < line.length()) {
|
287
|
+
if (indent < commonIndent) {
|
288
|
+
commonIndent = indent;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
}
|
292
|
+
if (commonIndent != INT_MAX) {
|
293
|
+
first = true;
|
294
|
+
for (auto &line : lines) {
|
295
|
+
if (first) {
|
296
|
+
first = false;
|
297
|
+
continue;
|
298
|
+
}
|
299
|
+
line.erase(0, commonIndent);
|
300
|
+
}
|
301
|
+
}
|
302
|
+
|
303
|
+
const auto firstNonBlankIt = std::find_if(lines.begin(), lines.end(), [](const std::string &line) {
|
304
|
+
return !is_all_whitespace(line);
|
305
|
+
});
|
306
|
+
lines.erase(lines.begin(), firstNonBlankIt);
|
307
|
+
|
308
|
+
const auto firstNonBlankReverseIt = std::find_if(lines.rbegin(), lines.rend(), [](const std::string &line) {
|
309
|
+
return !is_all_whitespace(line);
|
310
|
+
});
|
311
|
+
lines.erase(lines.end() - (firstNonBlankReverseIt - lines.rbegin()), lines.end());
|
312
|
+
|
313
|
+
std::string formatted;
|
314
|
+
first = true;
|
315
|
+
for (const auto &line: lines) {
|
316
|
+
if (first) {
|
317
|
+
first = false;
|
318
|
+
} else {
|
319
|
+
formatted.push_back('\n');
|
320
|
+
}
|
321
|
+
formatted.append(line);
|
322
|
+
}
|
323
|
+
return formatted;
|
324
|
+
}
|