schema = $schema; $this->ast = $ast; $this->typeInfo = $typeInfo; $this->errors = []; $this->fragmentSpreads = new SplObjectStorage(); $this->recursivelyReferencedFragments = new SplObjectStorage(); $this->variableUsages = new SplObjectStorage(); $this->recursiveVariableUsages = new SplObjectStorage(); } /** * @param Error $error */ function reportError(Error $error) { $this->errors[] = $error; } /** * @return Error[] */ function getErrors() { return $this->errors; } /** * @return Schema */ function getSchema() { return $this->schema; } /** * @return DocumentNode */ function getDocument() { return $this->ast; } /** * @param string $name * @return FragmentDefinitionNode|null */ function getFragment($name) { $fragments = $this->fragments; if (!$fragments) { $fragments = []; foreach ($this->getDocument()->definitions as $statement) { if ($statement->kind === NodeKind::FRAGMENT_DEFINITION) { $fragments[$statement->name->value] = $statement; } } $this->fragments = $fragments; } return isset($fragments[$name]) ? $fragments[$name] : null; } /** * @param HasSelectionSet $node * @return FragmentSpreadNode[] */ function getFragmentSpreads(HasSelectionSet $node) { $spreads = isset($this->fragmentSpreads[$node]) ? $this->fragmentSpreads[$node] : null; if (!$spreads) { $spreads = []; $setsToVisit = [$node->selectionSet]; while (!empty($setsToVisit)) { $set = array_pop($setsToVisit); for ($i = 0; $i < count($set->selections); $i++) { $selection = $set->selections[$i]; if ($selection->kind === NodeKind::FRAGMENT_SPREAD) { $spreads[] = $selection; } else if ($selection->selectionSet) { $setsToVisit[] = $selection->selectionSet; } } } $this->fragmentSpreads[$node] = $spreads; } return $spreads; } /** * @param OperationDefinitionNode $operation * @return FragmentDefinitionNode[] */ function getRecursivelyReferencedFragments(OperationDefinitionNode $operation) { $fragments = isset($this->recursivelyReferencedFragments[$operation]) ? $this->recursivelyReferencedFragments[$operation] : null; if (!$fragments) { $fragments = []; $collectedNames = []; $nodesToVisit = [$operation]; while (!empty($nodesToVisit)) { $node = array_pop($nodesToVisit); $spreads = $this->getFragmentSpreads($node); for ($i = 0; $i < count($spreads); $i++) { $fragName = $spreads[$i]->name->value; if (empty($collectedNames[$fragName])) { $collectedNames[$fragName] = true; $fragment = $this->getFragment($fragName); if ($fragment) { $fragments[] = $fragment; $nodesToVisit[] = $fragment; } } } } $this->recursivelyReferencedFragments[$operation] = $fragments; } return $fragments; } /** * @param HasSelectionSet $node * @return array List of ['node' => VariableNode, 'type' => ?InputObjectType] */ function getVariableUsages(HasSelectionSet $node) { $usages = isset($this->variableUsages[$node]) ? $this->variableUsages[$node] : null; if (!$usages) { $newUsages = []; $typeInfo = new TypeInfo($this->schema); Visitor::visit($node, Visitor::visitWithTypeInfo($typeInfo, [ NodeKind::VARIABLE_DEFINITION => function () { return false; }, NodeKind::VARIABLE => function (VariableNode $variable) use (&$newUsages, $typeInfo) { $newUsages[] = ['node' => $variable, 'type' => $typeInfo->getInputType()]; } ])); $usages = $newUsages; $this->variableUsages[$node] = $usages; } return $usages; } /** * @param OperationDefinitionNode $operation * @return array List of ['node' => VariableNode, 'type' => ?InputObjectType] */ function getRecursiveVariableUsages(OperationDefinitionNode $operation) { $usages = isset($this->recursiveVariableUsages[$operation]) ? $this->recursiveVariableUsages[$operation] : null; if (!$usages) { $usages = $this->getVariableUsages($operation); $fragments = $this->getRecursivelyReferencedFragments($operation); $tmp = [$usages]; for ($i = 0; $i < count($fragments); $i++) { $tmp[] = $this->getVariableUsages($fragments[$i]); } $usages = call_user_func_array('array_merge', $tmp); $this->recursiveVariableUsages[$operation] = $usages; } return $usages; } /** * Returns OutputType * * @return Type */ function getType() { return $this->typeInfo->getType(); } /** * @return CompositeType */ function getParentType() { return $this->typeInfo->getParentType(); } /** * @return InputType */ function getInputType() { return $this->typeInfo->getInputType(); } /** * @return FieldDefinition */ function getFieldDef() { return $this->typeInfo->getFieldDef(); } function getDirective() { return $this->typeInfo->getDirective(); } function getArgument() { return $this->typeInfo->getArgument(); } }