relay-compiler 8.0.0 → 10.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (220) hide show
  1. package/bin/RelayCompilerBin.js.flow +169 -0
  2. package/bin/RelayCompilerMain.js.flow +515 -0
  3. package/bin/__fixtures__/plugin-module.js.flow +17 -0
  4. package/bin/relay-compiler +8930 -8967
  5. package/codegen/CodegenDirectory.js.flow +375 -0
  6. package/codegen/CodegenRunner.js.flow +432 -0
  7. package/codegen/CodegenTypes.js.flow +28 -0
  8. package/codegen/CodegenWatcher.js.flow +254 -0
  9. package/codegen/NormalizationCodeGenerator.js.flow +563 -0
  10. package/codegen/ReaderCodeGenerator.js.flow +477 -0
  11. package/codegen/RelayCodeGenerator.js.flow +85 -0
  12. package/codegen/RelayFileWriter.js.flow +365 -0
  13. package/codegen/SourceControl.js.flow +58 -0
  14. package/codegen/compileRelayArtifacts.js.flow +182 -0
  15. package/codegen/createPrintRequireModuleDependency.js.flow +21 -0
  16. package/codegen/sortObjectByKey.js.flow +25 -0
  17. package/codegen/writeRelayGeneratedFile.js.flow +223 -0
  18. package/core/ASTCache.js.flow +73 -0
  19. package/core/ASTConvert.js.flow +233 -0
  20. package/core/CompilerContext.js.flow +190 -0
  21. package/core/CompilerError.js.flow +250 -0
  22. package/core/DotGraphQLParser.js.flow +39 -0
  23. package/core/GraphQLCompilerProfiler.js.flow +341 -0
  24. package/core/GraphQLDerivedFromMetadata.js.flow +36 -0
  25. package/core/GraphQLWatchmanClient.js.flow +111 -0
  26. package/core/IR.js.flow +327 -0
  27. package/core/IRPrinter.js.flow +482 -0
  28. package/core/IRTransformer.js.flow +377 -0
  29. package/core/IRValidator.js.flow +260 -0
  30. package/core/IRVisitor.js.flow +150 -0
  31. package/core/JSModuleParser.js.flow +24 -0
  32. package/core/RelayCompilerScope.js.flow +199 -0
  33. package/core/RelayFindGraphQLTags.js.flow +119 -0
  34. package/core/RelayGraphQLEnumsGenerator.js.flow +55 -0
  35. package/core/RelayIRTransforms.js.flow +131 -0
  36. package/core/RelayParser.js.flow +1731 -0
  37. package/core/RelaySourceModuleParser.js.flow +135 -0
  38. package/core/Schema.js.flow +1983 -0
  39. package/core/SchemaUtils.js.flow +120 -0
  40. package/core/filterContextForNode.js.flow +50 -0
  41. package/core/getFieldDefinition.js.flow +156 -0
  42. package/core/getIdentifierForArgumentValue.js.flow +49 -0
  43. package/core/getIdentifierForSelection.js.flow +69 -0
  44. package/core/getLiteralArgumentValues.js.flow +32 -0
  45. package/core/getNormalizationOperationName.js.flow +19 -0
  46. package/core/inferRootArgumentDefinitions.js.flow +323 -0
  47. package/index.js +1 -1
  48. package/index.js.flow +200 -0
  49. package/language/RelayLanguagePluginInterface.js.flow +283 -0
  50. package/language/javascript/FindGraphQLTags.js.flow +232 -0
  51. package/language/javascript/RelayFlowBabelFactories.js.flow +180 -0
  52. package/language/javascript/RelayFlowGenerator.js.flow +1042 -0
  53. package/language/javascript/RelayFlowTypeTransformers.js.flow +184 -0
  54. package/language/javascript/RelayLanguagePluginJavaScript.js.flow +34 -0
  55. package/language/javascript/formatGeneratedModule.js.flow +65 -0
  56. package/lib/bin/RelayCompilerBin.js +24 -7
  57. package/lib/bin/RelayCompilerMain.js +141 -136
  58. package/lib/codegen/CodegenDirectory.js +13 -8
  59. package/lib/codegen/CodegenRunner.js +37 -76
  60. package/lib/codegen/CodegenWatcher.js +13 -21
  61. package/lib/codegen/NormalizationCodeGenerator.js +117 -140
  62. package/lib/codegen/ReaderCodeGenerator.js +76 -117
  63. package/lib/codegen/RelayCodeGenerator.js +17 -6
  64. package/lib/codegen/RelayFileWriter.js +19 -40
  65. package/lib/codegen/compileRelayArtifacts.js +16 -30
  66. package/lib/codegen/sortObjectByKey.js +43 -0
  67. package/lib/codegen/writeRelayGeneratedFile.js +86 -95
  68. package/lib/core/ASTCache.js +2 -4
  69. package/lib/core/CompilerContext.js +2 -4
  70. package/lib/core/CompilerError.js +27 -54
  71. package/lib/core/GraphQLCompilerProfiler.js +8 -12
  72. package/lib/core/GraphQLDerivedFromMetadata.js +1 -10
  73. package/lib/core/GraphQLWatchmanClient.js +4 -12
  74. package/lib/core/IRPrinter.js +23 -21
  75. package/lib/core/IRTransformer.js +8 -16
  76. package/lib/core/IRValidator.js +1 -9
  77. package/lib/core/IRVisitor.js +0 -2
  78. package/lib/core/RelayCompilerScope.js +4 -4
  79. package/lib/core/RelayGraphQLEnumsGenerator.js +12 -15
  80. package/lib/core/RelayIRTransforms.js +16 -14
  81. package/lib/core/RelayParser.js +53 -89
  82. package/lib/core/RelaySourceModuleParser.js +3 -3
  83. package/lib/core/Schema.js +61 -73
  84. package/lib/core/SchemaUtils.js +15 -1
  85. package/lib/core/getFieldDefinition.js +12 -15
  86. package/lib/core/getIdentifierForSelection.js +2 -4
  87. package/lib/core/inferRootArgumentDefinitions.js +33 -73
  88. package/lib/index.js +4 -5
  89. package/lib/language/javascript/FindGraphQLTags.js +4 -3
  90. package/lib/language/javascript/RelayFlowGenerator.js +82 -171
  91. package/lib/language/javascript/RelayFlowTypeTransformers.js +1 -3
  92. package/lib/language/javascript/RelayLanguagePluginJavaScript.js +6 -4
  93. package/lib/language/javascript/formatGeneratedModule.js +11 -2
  94. package/lib/reporters/ConsoleReporter.js +1 -3
  95. package/lib/reporters/MultiReporter.js +1 -3
  96. package/lib/runner/Artifacts.js +69 -170
  97. package/lib/runner/BufferedFilesystem.js +32 -66
  98. package/lib/runner/GraphQLASTNodeGroup.js +54 -120
  99. package/lib/runner/GraphQLNodeMap.js +14 -19
  100. package/lib/runner/Sources.js +51 -85
  101. package/lib/runner/StrictMap.js +21 -37
  102. package/lib/runner/getChangedNodeNames.js +30 -62
  103. package/lib/transforms/ApplyFragmentArgumentTransform.js +73 -59
  104. package/lib/transforms/ClientExtensionsTransform.js +12 -16
  105. package/lib/transforms/ConnectionTransform.js +30 -37
  106. package/lib/transforms/DeclarativeConnectionMutationTransform.js +167 -0
  107. package/lib/transforms/DeferStreamTransform.js +30 -73
  108. package/lib/transforms/DisallowTypenameOnRoot.js +55 -0
  109. package/lib/transforms/FieldHandleTransform.js +6 -2
  110. package/lib/transforms/FlattenTransform.js +18 -45
  111. package/lib/transforms/GenerateIDFieldTransform.js +56 -35
  112. package/lib/transforms/GenerateTypeNameTransform.js +84 -10
  113. package/lib/transforms/InlineDataFragmentTransform.js +9 -4
  114. package/lib/transforms/MaskTransform.js +17 -17
  115. package/lib/transforms/MatchTransform.js +110 -32
  116. package/lib/transforms/RefetchableFragmentTransform.js +21 -38
  117. package/lib/transforms/RelayDirectiveTransform.js +8 -3
  118. package/lib/transforms/SkipClientExtensionsTransform.js +8 -0
  119. package/lib/transforms/SkipHandleFieldTransform.js +6 -2
  120. package/lib/transforms/SkipRedundantNodesTransform.js +7 -4
  121. package/lib/transforms/SkipSplitOperationTransform.js +32 -0
  122. package/lib/transforms/SkipUnreachableNodeTransform.js +9 -10
  123. package/lib/transforms/SkipUnusedVariablesTransform.js +18 -17
  124. package/lib/transforms/SplitModuleImportTransform.js +2 -2
  125. package/lib/transforms/TestOperationTransform.js +26 -22
  126. package/lib/transforms/ValidateGlobalVariablesTransform.js +18 -30
  127. package/lib/transforms/ValidateRequiredArgumentsTransform.js +12 -16
  128. package/lib/transforms/ValidateServerOnlyDirectivesTransform.js +16 -30
  129. package/lib/transforms/ValidateUnusedVariablesTransform.js +18 -30
  130. package/lib/transforms/query-generators/FetchableQueryGenerator.js +161 -0
  131. package/lib/transforms/query-generators/NodeQueryGenerator.js +22 -3
  132. package/lib/transforms/query-generators/QueryQueryGenerator.js +2 -1
  133. package/lib/transforms/query-generators/ViewerQueryGenerator.js +1 -0
  134. package/lib/transforms/query-generators/index.js +23 -6
  135. package/lib/transforms/query-generators/utils.js +17 -16
  136. package/lib/util/RelayCompilerCache.js +2 -4
  137. package/lib/util/argumentContainsVariables.js +37 -0
  138. package/lib/util/dedupeJSONStringify.js +15 -12
  139. package/lib/util/generateAbstractTypeRefinementKey.js +24 -0
  140. package/lib/util/getModuleName.js +3 -5
  141. package/lib/util/joinArgumentDefinitions.js +3 -1
  142. package/package.json +6 -6
  143. package/relay-compiler.js +4 -4
  144. package/relay-compiler.min.js +4 -4
  145. package/reporters/ConsoleReporter.js.flow +81 -0
  146. package/reporters/MultiReporter.js.flow +43 -0
  147. package/reporters/Reporter.js.flow +19 -0
  148. package/runner/Artifacts.js.flow +219 -0
  149. package/runner/BufferedFilesystem.js.flow +194 -0
  150. package/runner/GraphQLASTNodeGroup.js.flow +176 -0
  151. package/runner/GraphQLASTUtils.js.flow +26 -0
  152. package/runner/GraphQLNodeMap.js.flow +55 -0
  153. package/runner/Sources.js.flow +214 -0
  154. package/runner/StrictMap.js.flow +96 -0
  155. package/runner/compileArtifacts.js.flow +76 -0
  156. package/runner/extractAST.js.flow +100 -0
  157. package/runner/getChangedNodeNames.js.flow +48 -0
  158. package/runner/getSchemaInstance.js.flow +36 -0
  159. package/runner/types.js.flow +37 -0
  160. package/transforms/ApplyFragmentArgumentTransform.js.flow +526 -0
  161. package/transforms/ClientExtensionsTransform.js.flow +222 -0
  162. package/transforms/ConnectionTransform.js.flow +856 -0
  163. package/transforms/DeclarativeConnectionMutationTransform.js.flow +157 -0
  164. package/transforms/DeferStreamTransform.js.flow +265 -0
  165. package/transforms/DisallowIdAsAlias.js.flow +47 -0
  166. package/transforms/DisallowTypenameOnRoot.js.flow +45 -0
  167. package/transforms/FieldHandleTransform.js.flow +80 -0
  168. package/transforms/FilterDirectivesTransform.js.flow +45 -0
  169. package/transforms/FlattenTransform.js.flow +453 -0
  170. package/transforms/GenerateIDFieldTransform.js.flow +152 -0
  171. package/transforms/GenerateTypeNameTransform.js.flow +161 -0
  172. package/transforms/InlineDataFragmentTransform.js.flow +125 -0
  173. package/transforms/InlineFragmentsTransform.js.flow +71 -0
  174. package/transforms/MaskTransform.js.flow +126 -0
  175. package/transforms/MatchTransform.js.flow +583 -0
  176. package/transforms/RefetchableFragmentTransform.js.flow +272 -0
  177. package/transforms/RelayDirectiveTransform.js.flow +97 -0
  178. package/transforms/SkipClientExtensionsTransform.js.flow +54 -0
  179. package/transforms/SkipHandleFieldTransform.js.flow +44 -0
  180. package/transforms/SkipRedundantNodesTransform.js.flow +254 -0
  181. package/transforms/SkipSplitOperationTransform.js.flow +37 -0
  182. package/transforms/SkipUnreachableNodeTransform.js.flow +149 -0
  183. package/transforms/SkipUnusedVariablesTransform.js.flow +59 -0
  184. package/transforms/SplitModuleImportTransform.js.flow +98 -0
  185. package/transforms/TestOperationTransform.js.flow +142 -0
  186. package/transforms/TransformUtils.js.flow +26 -0
  187. package/transforms/ValidateGlobalVariablesTransform.js.flow +81 -0
  188. package/transforms/ValidateRequiredArgumentsTransform.js.flow +127 -0
  189. package/transforms/ValidateServerOnlyDirectivesTransform.js.flow +112 -0
  190. package/transforms/ValidateUnusedVariablesTransform.js.flow +89 -0
  191. package/transforms/query-generators/FetchableQueryGenerator.js.flow +189 -0
  192. package/transforms/query-generators/NodeQueryGenerator.js.flow +219 -0
  193. package/transforms/query-generators/QueryQueryGenerator.js.flow +57 -0
  194. package/transforms/query-generators/ViewerQueryGenerator.js.flow +97 -0
  195. package/transforms/query-generators/index.js.flow +90 -0
  196. package/transforms/query-generators/utils.js.flow +76 -0
  197. package/util/CodeMarker.js.flow +79 -0
  198. package/{lib/core/GraphQLIR.js → util/DefaultHandleKey.js.flow} +9 -2
  199. package/util/RelayCompilerCache.js.flow +88 -0
  200. package/util/Rollout.js.flow +39 -0
  201. package/util/TimeReporter.js.flow +79 -0
  202. package/util/areEqualOSS.js.flow +123 -0
  203. package/util/argumentContainsVariables.js.flow +38 -0
  204. package/util/dedupeJSONStringify.js.flow +152 -0
  205. package/util/generateAbstractTypeRefinementKey.js.flow +29 -0
  206. package/util/getDefinitionNodeHash.js.flow +25 -0
  207. package/util/getModuleName.js.flow +39 -0
  208. package/util/joinArgumentDefinitions.js.flow +105 -0
  209. package/util/md5.js.flow +22 -0
  210. package/util/murmurHash.js.flow +94 -0
  211. package/util/nullthrowsOSS.js.flow +25 -0
  212. package/util/orList.js.flow +37 -0
  213. package/util/partitionArray.js.flow +37 -0
  214. package/lib/core/GraphQLCompilerContext.js +0 -165
  215. package/lib/core/GraphQLIRPrinter.js +0 -371
  216. package/lib/core/GraphQLIRTransformer.js +0 -344
  217. package/lib/core/GraphQLIRValidator.js +0 -218
  218. package/lib/core/GraphQLIRVisitor.js +0 -46
  219. package/lib/core/RelayCompilerError.js +0 -277
  220. package/lib/transforms/ConnectionFieldTransform.js +0 -276
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict-local
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ const {createCompilerError} = require('../core/CompilerError');
16
+
17
+ import type {Schema, TypeID} from '../core/Schema';
18
+
19
+ function generateAbstractTypeRefinementKey(
20
+ schema: Schema,
21
+ type: TypeID,
22
+ ): string {
23
+ if (!schema.isAbstractType(type)) {
24
+ throw createCompilerError('Expected an abstract type');
25
+ }
26
+ return `__is${schema.getTypeString(type)}`;
27
+ }
28
+
29
+ module.exports = generateAbstractTypeRefinementKey;
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ const md5 = require('./md5');
16
+
17
+ const {print} = require('graphql');
18
+
19
+ import type {ExecutableDefinitionNode} from 'graphql';
20
+
21
+ function getDefinitionNodeHash(node: ExecutableDefinitionNode): string {
22
+ return md5(print(node));
23
+ }
24
+
25
+ module.exports = getDefinitionNodeHash;
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ const path = require('path');
16
+
17
+ function getModuleName(filePath: string): string {
18
+ // index.js -> index
19
+ // index.js.flow -> index.js
20
+ let filename = path.basename(filePath, path.extname(filePath));
21
+
22
+ // index.js -> index (when extension has multiple segments)
23
+ // index.react -> index (when extension has multiple segments)
24
+ filename = filename.replace(/(\.(?!ios|android)[_a-zA-Z0-9\\-]+)+/g, '');
25
+
26
+ // /path/to/button/index.js -> button
27
+ let moduleName =
28
+ filename === 'index' ? path.basename(path.dirname(filePath)) : filename;
29
+
30
+ // foo-bar -> fooBar
31
+ // Relay compatibility mode splits on _, so we can't use that here.
32
+ moduleName = moduleName.replace(/[^a-zA-Z0-9]+(\w?)/g, (match, next) =>
33
+ next.toUpperCase(),
34
+ );
35
+
36
+ return moduleName;
37
+ }
38
+
39
+ module.exports = getModuleName;
@@ -0,0 +1,105 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict-local
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ const {createUserError} = require('../core/CompilerError');
16
+
17
+ import type {ArgumentDefinition, Fragment} from '../core/IR';
18
+ import type {Schema} from '../core/Schema';
19
+
20
+ /**
21
+ * Attempts to join the argument definitions for a root fragment
22
+ * and any unmasked fragment spreads reachable from that root fragment,
23
+ * returning a combined list of arguments or throwing if the same
24
+ * variable(s) are used in incompatible ways in different fragments.
25
+ */
26
+ function joinArgumentDefinitions(
27
+ schema: Schema,
28
+ fragment: Fragment,
29
+ reachableArguments: $ReadOnlyArray<ArgumentDefinition>,
30
+ directiveName: string,
31
+ ): $ReadOnlyArray<ArgumentDefinition> {
32
+ const joinedArgumentDefinitions = new Map();
33
+ fragment.argumentDefinitions.forEach(prevArgDef => {
34
+ joinedArgumentDefinitions.set(prevArgDef.name, prevArgDef);
35
+ });
36
+ reachableArguments.forEach(nextArgDef => {
37
+ const prevArgDef = joinedArgumentDefinitions.get(nextArgDef.name);
38
+ const joinedArgDef =
39
+ prevArgDef == null
40
+ ? nextArgDef
41
+ : joinArgumentDefinition(schema, prevArgDef, nextArgDef, directiveName);
42
+ joinedArgumentDefinitions.set(joinedArgDef.name, joinedArgDef);
43
+ });
44
+ return Array.from(joinedArgumentDefinitions.values());
45
+ }
46
+
47
+ /**
48
+ * @private
49
+ *
50
+ * Attempts to join two argument definitions, returning a single argument
51
+ * definition that is compatible with both of the inputs:
52
+ * - If the kind, name, or defaultValue is different then the arguments
53
+ * cannot be joined, indicated by returning null.
54
+ * - If either of next/prev is a subtype of the other, return the one
55
+ * that is the subtype: a more narrow type can flow into a more general
56
+ * type but not the inverse.
57
+ * - Otherwise there is no subtyping relation between prev/next, so return
58
+ * null to indicate they cannot be joined.
59
+ */
60
+ function joinArgumentDefinition(
61
+ schema: Schema,
62
+ prevArgDef: ArgumentDefinition,
63
+ nextArgDef: ArgumentDefinition,
64
+ directiveName: string,
65
+ ): ArgumentDefinition {
66
+ if (prevArgDef.kind !== nextArgDef.kind) {
67
+ throw createUserError(
68
+ 'Cannot combine global and local variables when applying ' +
69
+ `${directiveName}.`,
70
+ [prevArgDef.loc, nextArgDef.loc],
71
+ );
72
+ } else if (
73
+ prevArgDef.kind === 'LocalArgumentDefinition' &&
74
+ nextArgDef.kind === 'LocalArgumentDefinition' &&
75
+ prevArgDef.defaultValue !== nextArgDef.defaultValue
76
+ ) {
77
+ throw createUserError(
78
+ 'Cannot combine local variables with different defaultValues when ' +
79
+ `applying ${directiveName}.`,
80
+ [prevArgDef.loc, nextArgDef.loc],
81
+ );
82
+ } else if (schema.isTypeSubTypeOf(nextArgDef.type, prevArgDef.type)) {
83
+ // prevArgDef is less strict than nextArgDef
84
+ return nextArgDef;
85
+ } else if (schema.isTypeSubTypeOf(prevArgDef.type, nextArgDef.type)) {
86
+ return prevArgDef;
87
+ } else {
88
+ const prevArgType =
89
+ prevArgDef.type != null
90
+ ? schema.getTypeString(prevArgDef.type)
91
+ : 'unknown';
92
+ const nextArgType =
93
+ nextArgDef.type != null
94
+ ? schema.getTypeString(nextArgDef.type)
95
+ : 'unknown';
96
+ throw createUserError(
97
+ 'Cannot combine variables with incompatible types ' +
98
+ `${prevArgType} and ${nextArgType} ` +
99
+ `when applying ${directiveName}.`,
100
+ [prevArgDef.loc, nextArgDef.loc],
101
+ );
102
+ }
103
+ }
104
+
105
+ module.exports = joinArgumentDefinitions;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ function md5(str: string): string {
16
+ return require('crypto')
17
+ .createHash('md5')
18
+ .update(str, 'utf8')
19
+ .digest('hex');
20
+ }
21
+
22
+ module.exports = md5;
@@ -0,0 +1,94 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ /**
14
+ * Based on implementations by Gary Court and Austin Appleby, 2011, MIT.
15
+ * @preserve-header
16
+ */
17
+
18
+ 'use strict';
19
+
20
+ const BASE62 = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
21
+
22
+ /**
23
+ * @param {string} key A UTF-16 or ASCII string
24
+ * @return {string} a base62 murmur hash
25
+ */
26
+ function murmurHash(str: string): string {
27
+ /* eslint-disable no-bitwise */
28
+ const length = str.length;
29
+ const rem = length & 3;
30
+ const len = length ^ rem;
31
+
32
+ let h = 0;
33
+ let i = 0;
34
+ let k;
35
+
36
+ while (i !== len) {
37
+ const ch4 = str.charCodeAt(i + 3);
38
+
39
+ k =
40
+ str.charCodeAt(i) ^
41
+ (str.charCodeAt(i + 1) << 8) ^
42
+ (str.charCodeAt(i + 2) << 16) ^
43
+ ((ch4 & 0xff) << 24) ^
44
+ ((ch4 & 0xff00) >> 8);
45
+
46
+ i += 4;
47
+
48
+ k = (k * 0x2d51 + (k & 0xffff) * 0xcc9e0000) >>> 0;
49
+ k = (k << 15) | (k >>> 17);
50
+ k = (k * 0x3593 + (k & 0xffff) * 0x1b870000) >>> 0;
51
+ h ^= k;
52
+ h = (h << 13) | (h >>> 19);
53
+ h = (h * 5 + 0xe6546b64) >>> 0;
54
+ }
55
+
56
+ k = 0;
57
+ switch (rem) {
58
+ /* eslint-disable no-fallthrough */
59
+ case 3:
60
+ k ^= str.charCodeAt(len + 2) << 16;
61
+ case 2:
62
+ k ^= str.charCodeAt(len + 1) << 8;
63
+ case 1:
64
+ k ^= str.charCodeAt(len);
65
+
66
+ k = (k * 0x2d51 + (k & 0xffff) * 0xcc9e0000) >>> 0;
67
+ k = (k << 15) | (k >>> 17);
68
+ k = (k * 0x3593 + (k & 0xffff) * 0x1b870000) >>> 0;
69
+ h ^= k;
70
+ }
71
+
72
+ h ^= length;
73
+ h ^= h >>> 16;
74
+ h = (h * 0xca6b + (h & 0xffff) * 0x85eb0000) >>> 0;
75
+ h ^= h >>> 13;
76
+ h = (h * 0xae35 + (h & 0xffff) * 0xc2b20000) >>> 0;
77
+ h ^= h >>> 16;
78
+
79
+ h >>>= 0;
80
+
81
+ if (!h) {
82
+ return '0';
83
+ }
84
+
85
+ let s = '';
86
+ while (h) {
87
+ const d = h % 62;
88
+ s = BASE62[d] + s;
89
+ h = (h - d) / 62;
90
+ }
91
+ return s;
92
+ }
93
+
94
+ module.exports = murmurHash;
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ function nullthrows<T>(
16
+ x: ?T,
17
+ message?: string = 'Got unexpected null or undefined',
18
+ ): T {
19
+ if (x == null) {
20
+ throw new Error(message);
21
+ }
22
+ return x;
23
+ }
24
+
25
+ module.exports = nullthrows;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ const OR_LIST_MAX_LENGTH = 5;
16
+
17
+ const {createCompilerError} = require('../core/CompilerError');
18
+
19
+ function orList(items: $ReadOnlyArray<string>): string {
20
+ if (items.length === 0) {
21
+ throw createCompilerError('Expected an array of strings. Got empty array');
22
+ }
23
+
24
+ if (items.length === 1) {
25
+ return items[0];
26
+ }
27
+
28
+ if (items.length > OR_LIST_MAX_LENGTH) {
29
+ return items.slice(0, OR_LIST_MAX_LENGTH).join(', ') + ', ...';
30
+ }
31
+
32
+ const selected = items.slice();
33
+ const lastItem = selected.pop();
34
+ return selected.join(', ') + ' or ' + lastItem;
35
+ }
36
+
37
+ module.exports = orList;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Copyright (c) Facebook, Inc. and its affiliates.
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
+ * @flow strict
8
+ * @format
9
+ */
10
+
11
+ // flowlint ambiguous-object-type:error
12
+
13
+ 'use strict';
14
+
15
+ /**
16
+ * Partitions an array given a predicate. All elements satisfying the predicate
17
+ * are part of the first returned array, and all elements that don't are in the
18
+ * second.
19
+ */
20
+ function partitionArray<Tv>(
21
+ array: $ReadOnlyArray<Tv>,
22
+ predicate: (value: Tv) => boolean,
23
+ ): [$ReadOnlyArray<Tv>, $ReadOnlyArray<Tv>] {
24
+ const first = [];
25
+ const second = [];
26
+ for (let i = 0; i < array.length; i++) {
27
+ const item = array[i];
28
+ if (predicate(item)) {
29
+ first.push(item);
30
+ } else {
31
+ second.push(item);
32
+ }
33
+ }
34
+ return [first, second];
35
+ }
36
+
37
+ module.exports = partitionArray;
@@ -1,165 +0,0 @@
1
- /**
2
- * Copyright (c) Facebook, Inc. and its affiliates.
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
- * @format
9
- */
10
- 'use strict';
11
-
12
- var Profiler = require('./GraphQLCompilerProfiler');
13
-
14
- var invariant = require("fbjs/lib/invariant");
15
-
16
- var _require = require('./RelayCompilerError'),
17
- createUserError = _require.createUserError; // $FlowFixMe - immutable.js is not flow-typed
18
-
19
-
20
- var _require2 = require('immutable'),
21
- ImmutableOrderedMap = _require2.OrderedMap;
22
-
23
- /**
24
- * An immutable representation of a corpus of documents being compiled together.
25
- * For each document, the context stores the IR and any validation errors.
26
- */
27
- var GraphQLCompilerContext =
28
- /*#__PURE__*/
29
- function () {
30
- function GraphQLCompilerContext(schema) {
31
- this._isMutable = false;
32
- this._documents = new ImmutableOrderedMap();
33
- this._withTransform = new WeakMap();
34
- this._schema = schema;
35
- }
36
- /**
37
- * Returns the documents for the context in the order they were added.
38
- */
39
-
40
-
41
- var _proto = GraphQLCompilerContext.prototype;
42
-
43
- _proto.documents = function documents() {
44
- return this._documents.toArray();
45
- };
46
-
47
- _proto.forEachDocument = function forEachDocument(fn) {
48
- this._documents.forEach(fn);
49
- };
50
-
51
- _proto.replace = function replace(node) {
52
- return this._update(this._documents.update(node.name, function (existing) {
53
- !existing ? process.env.NODE_ENV !== "production" ? invariant(false, 'GraphQLCompilerContext: Expected to replace existing node %s, but ' + 'one was not found in the context.', node.name) : invariant(false) : void 0;
54
- return node;
55
- }));
56
- };
57
-
58
- _proto.add = function add(node) {
59
- return this._update(this._documents.update(node.name, function (existing) {
60
- !!existing ? process.env.NODE_ENV !== "production" ? invariant(false, 'GraphQLCompilerContext: Duplicate document named `%s`. GraphQL ' + 'fragments and roots must have unique names.', node.name) : invariant(false) : void 0;
61
- return node;
62
- }));
63
- };
64
-
65
- _proto.addAll = function addAll(nodes) {
66
- return this.withMutations(function (mutable) {
67
- return nodes.reduce(function (ctx, definition) {
68
- return ctx.add(definition);
69
- }, mutable);
70
- });
71
- }
72
- /**
73
- * Apply a list of compiler transforms and return a new compiler context.
74
- */
75
- ;
76
-
77
- _proto.applyTransforms = function applyTransforms(transforms, reporter) {
78
- var _this = this;
79
-
80
- return Profiler.run('applyTransforms', function () {
81
- return transforms.reduce(function (ctx, transform) {
82
- return ctx.applyTransform(transform, reporter);
83
- }, _this);
84
- });
85
- }
86
- /**
87
- * Applies a transform to this context, returning a new context.
88
- *
89
- * This is memoized such that applying the same sequence of transforms will
90
- * not result in duplicated work.
91
- */
92
- ;
93
-
94
- _proto.applyTransform = function applyTransform(transform, reporter) {
95
- var transformed = this._withTransform.get(transform);
96
-
97
- if (!transformed) {
98
- var start = process.hrtime();
99
- transformed = Profiler.instrument(transform)(this);
100
- var delta = process.hrtime(start);
101
- var deltaMs = Math.round((delta[0] * 1e9 + delta[1]) / 1e6);
102
- reporter && reporter.reportTime(transform.name, deltaMs);
103
-
104
- this._withTransform.set(transform, transformed);
105
- }
106
-
107
- return transformed;
108
- };
109
-
110
- _proto.get = function get(name) {
111
- return this._documents.get(name);
112
- };
113
-
114
- _proto.getFragment = function getFragment(name, referencedFrom) {
115
- var node = this._documents.get(name);
116
-
117
- if (node == null) {
118
- throw createUserError("Cannot find fragment '".concat(name, "'."), referencedFrom != null ? [referencedFrom] : null);
119
- } else if (node.kind !== 'Fragment') {
120
- throw createUserError("Cannot find fragment '".concat(name, "', a document with this name exists ") + 'but is not a fragment.', [node.loc, referencedFrom].filter(Boolean));
121
- }
122
-
123
- return node;
124
- };
125
-
126
- _proto.getRoot = function getRoot(name) {
127
- var node = this._documents.get(name);
128
-
129
- if (node == null) {
130
- throw createUserError("Cannot find root '".concat(name, "'."));
131
- } else if (node.kind !== 'Root') {
132
- throw createUserError("Cannot find root '".concat(name, "', a document with this name exists but ") + 'is not a root.', [node.loc]);
133
- }
134
-
135
- return node;
136
- };
137
-
138
- _proto.remove = function remove(name) {
139
- return this._update(this._documents["delete"](name));
140
- };
141
-
142
- _proto.withMutations = function withMutations(fn) {
143
- var mutableCopy = this._update(this._documents.asMutable());
144
-
145
- mutableCopy._isMutable = true;
146
- var result = fn(mutableCopy);
147
- result._isMutable = false;
148
- result._documents = result._documents.asImmutable();
149
- return this._documents === result._documents ? this : result;
150
- };
151
-
152
- _proto._update = function _update(documents) {
153
- var context = this._isMutable ? this : new GraphQLCompilerContext(this.getSchema());
154
- context._documents = documents;
155
- return context;
156
- };
157
-
158
- _proto.getSchema = function getSchema() {
159
- return this._schema;
160
- };
161
-
162
- return GraphQLCompilerContext;
163
- }();
164
-
165
- module.exports = GraphQLCompilerContext;