rails-graphql 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,179 @@
|
|
1
|
+
// A Bison parser, made by GNU Bison 3.0.5.
|
2
|
+
|
3
|
+
// Positions for Bison parsers in C++
|
4
|
+
|
5
|
+
// Copyright (C) 2002-2015, 2018 Free Software Foundation, Inc.
|
6
|
+
|
7
|
+
// This program is free software: you can redistribute it and/or modify
|
8
|
+
// it under the terms of the GNU General Public License as published by
|
9
|
+
// the Free Software Foundation, either version 3 of the License, or
|
10
|
+
// (at your option) any later version.
|
11
|
+
|
12
|
+
// This program is distributed in the hope that it will be useful,
|
13
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
// GNU General Public License for more details.
|
16
|
+
|
17
|
+
// You should have received a copy of the GNU General Public License
|
18
|
+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
20
|
+
// As a special exception, you may create a larger work that contains
|
21
|
+
// part or all of the Bison parser skeleton and distribute that work
|
22
|
+
// under terms of your choice, so long as that work isn't itself a
|
23
|
+
// parser generator using the skeleton or a modified version thereof
|
24
|
+
// as a parser skeleton. Alternatively, if you modify or redistribute
|
25
|
+
// the parser skeleton itself, you may (at your option) remove this
|
26
|
+
// special exception, which will cause the skeleton and the resulting
|
27
|
+
// Bison output files to be licensed under the GNU General Public
|
28
|
+
// License without this special exception.
|
29
|
+
|
30
|
+
// This special exception was added by the Free Software Foundation in
|
31
|
+
// version 2.2 of Bison.
|
32
|
+
|
33
|
+
/**
|
34
|
+
** \file position.hh
|
35
|
+
** Define the yy::position class.
|
36
|
+
*/
|
37
|
+
|
38
|
+
#ifndef YY_YY_POSITION_HH_INCLUDED
|
39
|
+
# define YY_YY_POSITION_HH_INCLUDED
|
40
|
+
|
41
|
+
# include <algorithm> // std::max
|
42
|
+
# include <iostream>
|
43
|
+
# include <string>
|
44
|
+
|
45
|
+
# ifndef YY_NULLPTR
|
46
|
+
# if defined __cplusplus && 201103L <= __cplusplus
|
47
|
+
# define YY_NULLPTR nullptr
|
48
|
+
# else
|
49
|
+
# define YY_NULLPTR 0
|
50
|
+
# endif
|
51
|
+
# endif
|
52
|
+
|
53
|
+
|
54
|
+
namespace yy {
|
55
|
+
#line 56 "position.hh" // location.cc:333
|
56
|
+
/// Abstract a position.
|
57
|
+
class position
|
58
|
+
{
|
59
|
+
public:
|
60
|
+
/// Construct a position.
|
61
|
+
explicit position (std::string* f = YY_NULLPTR,
|
62
|
+
unsigned l = 1u,
|
63
|
+
unsigned c = 1u)
|
64
|
+
: filename (f)
|
65
|
+
, line (l)
|
66
|
+
, column (c)
|
67
|
+
{}
|
68
|
+
|
69
|
+
|
70
|
+
/// Initialization.
|
71
|
+
void initialize (std::string* fn = YY_NULLPTR,
|
72
|
+
unsigned l = 1u,
|
73
|
+
unsigned c = 1u)
|
74
|
+
{
|
75
|
+
filename = fn;
|
76
|
+
line = l;
|
77
|
+
column = c;
|
78
|
+
}
|
79
|
+
|
80
|
+
/** \name Line and Column related manipulators
|
81
|
+
** \{ */
|
82
|
+
/// (line related) Advance to the COUNT next lines.
|
83
|
+
void lines (int count = 1)
|
84
|
+
{
|
85
|
+
if (count)
|
86
|
+
{
|
87
|
+
column = 1u;
|
88
|
+
line = add_ (line, count, 1);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
/// (column related) Advance to the COUNT next columns.
|
93
|
+
void columns (int count = 1)
|
94
|
+
{
|
95
|
+
column = add_ (column, count, 1);
|
96
|
+
}
|
97
|
+
/** \} */
|
98
|
+
|
99
|
+
/// File name to which this position refers.
|
100
|
+
std::string* filename;
|
101
|
+
/// Current line number.
|
102
|
+
unsigned line;
|
103
|
+
/// Current column number.
|
104
|
+
unsigned column;
|
105
|
+
|
106
|
+
private:
|
107
|
+
/// Compute max(min, lhs+rhs) (provided min <= lhs).
|
108
|
+
static unsigned add_ (unsigned lhs, int rhs, unsigned min)
|
109
|
+
{
|
110
|
+
return (0 < rhs || -static_cast<unsigned>(rhs) < lhs
|
111
|
+
? rhs + lhs
|
112
|
+
: min);
|
113
|
+
}
|
114
|
+
};
|
115
|
+
|
116
|
+
/// Add \a width columns, in place.
|
117
|
+
inline position&
|
118
|
+
operator+= (position& res, int width)
|
119
|
+
{
|
120
|
+
res.columns (width);
|
121
|
+
return res;
|
122
|
+
}
|
123
|
+
|
124
|
+
/// Add \a width columns.
|
125
|
+
inline position
|
126
|
+
operator+ (position res, int width)
|
127
|
+
{
|
128
|
+
return res += width;
|
129
|
+
}
|
130
|
+
|
131
|
+
/// Subtract \a width columns, in place.
|
132
|
+
inline position&
|
133
|
+
operator-= (position& res, int width)
|
134
|
+
{
|
135
|
+
return res += -width;
|
136
|
+
}
|
137
|
+
|
138
|
+
/// Subtract \a width columns.
|
139
|
+
inline position
|
140
|
+
operator- (position res, int width)
|
141
|
+
{
|
142
|
+
return res -= width;
|
143
|
+
}
|
144
|
+
|
145
|
+
/// Compare two position objects.
|
146
|
+
inline bool
|
147
|
+
operator== (const position& pos1, const position& pos2)
|
148
|
+
{
|
149
|
+
return (pos1.line == pos2.line
|
150
|
+
&& pos1.column == pos2.column
|
151
|
+
&& (pos1.filename == pos2.filename
|
152
|
+
|| (pos1.filename && pos2.filename
|
153
|
+
&& *pos1.filename == *pos2.filename)));
|
154
|
+
}
|
155
|
+
|
156
|
+
/// Compare two position objects.
|
157
|
+
inline bool
|
158
|
+
operator!= (const position& pos1, const position& pos2)
|
159
|
+
{
|
160
|
+
return !(pos1 == pos2);
|
161
|
+
}
|
162
|
+
|
163
|
+
/** \brief Intercept output stream redirection.
|
164
|
+
** \param ostr the destination output stream
|
165
|
+
** \param pos a reference to the position to redirect
|
166
|
+
*/
|
167
|
+
template <typename YYChar>
|
168
|
+
inline std::basic_ostream<YYChar>&
|
169
|
+
operator<< (std::basic_ostream<YYChar>& ostr, const position& pos)
|
170
|
+
{
|
171
|
+
if (pos.filename)
|
172
|
+
ostr << *pos.filename << ':';
|
173
|
+
return ostr << pos.line << '.' << pos.column;
|
174
|
+
}
|
175
|
+
|
176
|
+
|
177
|
+
} // yy
|
178
|
+
#line 179 "position.hh" // location.cc:333
|
179
|
+
#endif // !YY_YY_POSITION_HH_INCLUDED
|
@@ -0,0 +1,156 @@
|
|
1
|
+
// A Bison parser, made by GNU Bison 3.0.5.
|
2
|
+
|
3
|
+
// Stack handling for Bison parsers in C++
|
4
|
+
|
5
|
+
// Copyright (C) 2002-2015, 2018 Free Software Foundation, Inc.
|
6
|
+
|
7
|
+
// This program is free software: you can redistribute it and/or modify
|
8
|
+
// it under the terms of the GNU General Public License as published by
|
9
|
+
// the Free Software Foundation, either version 3 of the License, or
|
10
|
+
// (at your option) any later version.
|
11
|
+
|
12
|
+
// This program is distributed in the hope that it will be useful,
|
13
|
+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
// GNU General Public License for more details.
|
16
|
+
|
17
|
+
// You should have received a copy of the GNU General Public License
|
18
|
+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
20
|
+
// As a special exception, you may create a larger work that contains
|
21
|
+
// part or all of the Bison parser skeleton and distribute that work
|
22
|
+
// under terms of your choice, so long as that work isn't itself a
|
23
|
+
// parser generator using the skeleton or a modified version thereof
|
24
|
+
// as a parser skeleton. Alternatively, if you modify or redistribute
|
25
|
+
// the parser skeleton itself, you may (at your option) remove this
|
26
|
+
// special exception, which will cause the skeleton and the resulting
|
27
|
+
// Bison output files to be licensed under the GNU General Public
|
28
|
+
// License without this special exception.
|
29
|
+
|
30
|
+
// This special exception was added by the Free Software Foundation in
|
31
|
+
// version 2.2 of Bison.
|
32
|
+
|
33
|
+
/**
|
34
|
+
** \file stack.hh
|
35
|
+
** Define the yy::stack class.
|
36
|
+
*/
|
37
|
+
|
38
|
+
#ifndef YY_YY_STACK_HH_INCLUDED
|
39
|
+
# define YY_YY_STACK_HH_INCLUDED
|
40
|
+
|
41
|
+
# include <vector>
|
42
|
+
|
43
|
+
|
44
|
+
namespace yy {
|
45
|
+
#line 46 "stack.hh" // stack.hh:150
|
46
|
+
/// A stack with random access from its top.
|
47
|
+
template <class T, class S = std::vector<T> >
|
48
|
+
class stack
|
49
|
+
{
|
50
|
+
public:
|
51
|
+
// Hide our reversed order.
|
52
|
+
typedef typename S::reverse_iterator iterator;
|
53
|
+
typedef typename S::const_reverse_iterator const_iterator;
|
54
|
+
|
55
|
+
stack ()
|
56
|
+
: seq_ ()
|
57
|
+
{
|
58
|
+
seq_.reserve (200);
|
59
|
+
}
|
60
|
+
|
61
|
+
stack (unsigned n)
|
62
|
+
: seq_ (n)
|
63
|
+
{}
|
64
|
+
|
65
|
+
/// Random access.
|
66
|
+
///
|
67
|
+
/// Index 0 returns the topmost element.
|
68
|
+
T&
|
69
|
+
operator[] (unsigned i)
|
70
|
+
{
|
71
|
+
return seq_[seq_.size () - 1 - i];
|
72
|
+
}
|
73
|
+
|
74
|
+
/// Random access.
|
75
|
+
///
|
76
|
+
/// Index 0 returns the topmost element.
|
77
|
+
const T&
|
78
|
+
operator[] (unsigned i) const
|
79
|
+
{
|
80
|
+
return seq_[seq_.size () - 1 - i];
|
81
|
+
}
|
82
|
+
|
83
|
+
/// Steal the contents of \a t.
|
84
|
+
///
|
85
|
+
/// Close to move-semantics.
|
86
|
+
void
|
87
|
+
push (T& t)
|
88
|
+
{
|
89
|
+
seq_.push_back (T());
|
90
|
+
operator[](0).move (t);
|
91
|
+
}
|
92
|
+
|
93
|
+
void
|
94
|
+
pop (unsigned n = 1)
|
95
|
+
{
|
96
|
+
for (; n; --n)
|
97
|
+
seq_.pop_back ();
|
98
|
+
}
|
99
|
+
|
100
|
+
void
|
101
|
+
clear ()
|
102
|
+
{
|
103
|
+
seq_.clear ();
|
104
|
+
}
|
105
|
+
|
106
|
+
typename S::size_type
|
107
|
+
size () const
|
108
|
+
{
|
109
|
+
return seq_.size ();
|
110
|
+
}
|
111
|
+
|
112
|
+
const_iterator
|
113
|
+
begin () const
|
114
|
+
{
|
115
|
+
return seq_.rbegin ();
|
116
|
+
}
|
117
|
+
|
118
|
+
const_iterator
|
119
|
+
end () const
|
120
|
+
{
|
121
|
+
return seq_.rend ();
|
122
|
+
}
|
123
|
+
|
124
|
+
private:
|
125
|
+
stack (const stack&);
|
126
|
+
stack& operator= (const stack&);
|
127
|
+
/// The wrapped container.
|
128
|
+
S seq_;
|
129
|
+
};
|
130
|
+
|
131
|
+
/// Present a slice of the top of a stack.
|
132
|
+
template <class T, class S = stack<T> >
|
133
|
+
class slice
|
134
|
+
{
|
135
|
+
public:
|
136
|
+
slice (const S& stack, unsigned range)
|
137
|
+
: stack_ (stack)
|
138
|
+
, range_ (range)
|
139
|
+
{}
|
140
|
+
|
141
|
+
const T&
|
142
|
+
operator [] (unsigned i) const
|
143
|
+
{
|
144
|
+
return stack_[range_ - i];
|
145
|
+
}
|
146
|
+
|
147
|
+
private:
|
148
|
+
const S& stack_;
|
149
|
+
unsigned range_;
|
150
|
+
};
|
151
|
+
|
152
|
+
|
153
|
+
} // yy
|
154
|
+
#line 155 "stack.hh" // stack.hh:150
|
155
|
+
|
156
|
+
#endif // !YY_YY_STACK_HH_INCLUDED
|
@@ -0,0 +1,14 @@
|
|
1
|
+
|
2
|
+
IF (CTYPESGEN_FOUND)
|
3
|
+
ADD_CUSTOM_COMMAND(
|
4
|
+
OUTPUT GraphQLParser.py
|
5
|
+
COMMAND ctypesgen.py ${CMAKE_CURRENT_SOURCE_DIR}/../c/*.h ${CMAKE_CURRENT_BINARY_DIR}/../c/*.h -o ${CMAKE_CURRENT_SOURCE_DIR}/GraphQLParser.py -I ${CMAKE_CURRENT_SOURCE_DIR}/.. -I ${CMAKE_CURRENT_BINARY_DIR}/.. -l graphqlparser -L ${CMAKE_CURRENT_BINARY_DIR}/.. 2>&1 > /dev/null
|
6
|
+
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/../c/GraphQLAstForEachConcreteType.h ${CMAKE_CURRENT_BINARY_DIR}/../c/GraphQLAst.h ${CMAKE_CURRENT_SOURCE_DIR}/../c/GraphQLAstNode.h ${CMAKE_CURRENT_SOURCE_DIR}/../c/GraphQLAstVisitor.h ${CMAKE_CURRENT_SOURCE_DIR}/../c/GraphQLParser.h
|
7
|
+
)
|
8
|
+
ADD_CUSTOM_TARGET(
|
9
|
+
graphql-parser-python
|
10
|
+
ALL
|
11
|
+
DEPENDS GraphQLParser.py)
|
12
|
+
ELSE()
|
13
|
+
MESSAGE(WARNING "ctypesgen.py not found; install with pip or easy_install if you want to run pythontest.py.")
|
14
|
+
ENDIF()
|
@@ -0,0 +1,5 @@
|
|
1
|
+
This directory contains an example Python binding to the GraphQL
|
2
|
+
parser and AST library. It uses
|
3
|
+
[ctypesgen.py](https://github.com/davidjamesca/ctypesgen) to generate
|
4
|
+
the binding code automatically from the pure C API in
|
5
|
+
`../c`. `example.py` is a short program that uses this binding.
|
@@ -0,0 +1,31 @@
|
|
1
|
+
#!/usr/bin/env python
|
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
|
+
from ctypes import *
|
8
|
+
from GraphQLParser import *
|
9
|
+
|
10
|
+
def print_field(field, unused):
|
11
|
+
field_name = GraphQLAstField_get_name(field)
|
12
|
+
field_name_value = GraphQLAstName_get_value(field_name)
|
13
|
+
print 'field : ' + field_name_value
|
14
|
+
return 0
|
15
|
+
|
16
|
+
def main():
|
17
|
+
error = POINTER(c_char)()
|
18
|
+
ast = graphql_parse_string('query myquery { myfield }', byref(error))
|
19
|
+
field_visitor_callbacks = GraphQLAstVisitorCallbacks(visit_field = visit_field_func(print_field))
|
20
|
+
graphql_node_visit(ast, pointer(field_visitor_callbacks), None)
|
21
|
+
|
22
|
+
graphql_node_free(ast)
|
23
|
+
|
24
|
+
ast = graphql_parse_string('query errorQuery on oops { myfield }', byref(error))
|
25
|
+
print 'Example error:', string_at(error)
|
26
|
+
graphql_error_free(error)
|
27
|
+
if ast:
|
28
|
+
print 'BUG: we should have got a null AST back, but we got:', ast
|
29
|
+
|
30
|
+
if __name__ == '__main__':
|
31
|
+
main()
|
@@ -0,0 +1,19 @@
|
|
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
|
+
#pragma once
|
8
|
+
|
9
|
+
/***
|
10
|
+
* This file contains definitions that need to be shared by the parser
|
11
|
+
* and the lexer.
|
12
|
+
*/
|
13
|
+
|
14
|
+
yy::GraphQLParserImpl::syntax_error make_error(const yy::location &loc, const std::string &str);
|
15
|
+
|
16
|
+
struct LexerExtra {
|
17
|
+
std::string str;
|
18
|
+
yy::location loc;
|
19
|
+
};
|
@@ -0,0 +1,25 @@
|
|
1
|
+
ADD_SUBDIRECTORY(googletest-release-1.8.0/googletest)
|
2
|
+
|
3
|
+
ENABLE_TESTING()
|
4
|
+
|
5
|
+
INCLUDE_DIRECTORIES(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR} /usr/local/include/graphqlparser)
|
6
|
+
|
7
|
+
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11 -g")
|
8
|
+
|
9
|
+
FILE(COPY valgrind.supp DESTINATION .)
|
10
|
+
|
11
|
+
FILE(COPY kitchen-sink.graphql DESTINATION .)
|
12
|
+
|
13
|
+
FILE(COPY kitchen-sink.json DESTINATION .)
|
14
|
+
|
15
|
+
FILE(COPY schema-kitchen-sink.graphql DESTINATION .)
|
16
|
+
|
17
|
+
FILE(COPY schema-kitchen-sink.json DESTINATION .)
|
18
|
+
|
19
|
+
ADD_EXECUTABLE(runTests ParserTests.cpp JsonVisitorTests.cpp BuildCAPI.c)
|
20
|
+
|
21
|
+
find_library(LIBGRAPHQLPARSER_LIBRARY libgraphqlparser.dylib HINTS /usr/local/lib)
|
22
|
+
|
23
|
+
TARGET_LINK_LIBRARIES(runTests gtest gtest_main ${LIBGRAPHQLPARSER_LIBRARY})
|
24
|
+
|
25
|
+
ADD_TEST(gtest_tests runTests)
|
@@ -0,0 +1,28 @@
|
|
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 <gtest/gtest.h>
|
9
|
+
|
10
|
+
#include "Ast.h"
|
11
|
+
#include "GraphQLParser.h"
|
12
|
+
#include "c/GraphQLAstToJSON.h"
|
13
|
+
|
14
|
+
using facebook::graphql::parseString;
|
15
|
+
|
16
|
+
TEST(JsonVisitorTests, NullValueEmitsValidJSONWithoutTrailingComma) {
|
17
|
+
const char *error = nullptr;
|
18
|
+
auto AST = parseString("{field(arg: null)}", &error);
|
19
|
+
ASSERT_STREQ(nullptr, error) << "GraphQL parser error: " << error;
|
20
|
+
const char *json = graphql_ast_to_json(reinterpret_cast<const struct GraphQLAstNode *>(AST.get()));
|
21
|
+
|
22
|
+
EXPECT_STREQ(
|
23
|
+
json,
|
24
|
+
"{\"kind\":\"Document\",\"loc\":{\"start\": {\"line\": 1,\"column\":1}, \"end\": {\"line\":1,\"column\":19}},\"definitions\":[{\"kind\":\"OperationDefinition\",\"loc\":{\"start\": {\"line\": 1,\"column\":1}, \"end\": {\"line\":1,\"column\":19}},\"operation\":\"query\",\"name\":null,\"variableDefinitions\":null,\"directives\":null,\"selectionSet\":{\"kind\":\"SelectionSet\",\"loc\":{\"start\": {\"line\": 1,\"column\":1}, \"end\": {\"line\":1,\"column\":19}},\"selections\":[{\"kind\":\"Field\",\"loc\":{\"start\": {\"line\": 1,\"column\":2}, \"end\": {\"line\":1,\"column\":18}},\"alias\":null,\"name\":{\"kind\":\"Name\",\"loc\":{\"start\": {\"line\": 1,\"column\":2}, \"end\": {\"line\":1,\"column\":7}},\"value\":\"field\"},\"arguments\":[{\"kind\":\"Argument\",\"loc\":{\"start\": {\"line\": 1,\"column\":8}, \"end\": {\"line\":1,\"column\":17}},\"name\":{\"kind\":\"Name\",\"loc\":{\"start\": {\"line\": 1,\"column\":8}, \"end\": {\"line\":1,\"column\":11}},\"value\":\"arg\"},\"value\":{\"kind\":\"NullValue\",\"loc\":{\"start\": {\"line\": 1,\"column\":13}, \"end\": {\"line\":1,\"column\":17}}}}],\"directives\":null,\"selectionSet\":null}]}}]}"
|
25
|
+
);
|
26
|
+
|
27
|
+
free((void *)json);
|
28
|
+
}
|