Files
swift-mirror/lib/SymbolGraphGen/SymbolGraph.h
Ashley Garland 7ce6753231 [SymbolGraph] Track conditional conformance
Requirements on extensions were only being gathered indirectly. This adds a new
optional field to `conformsTo` relationship edges, `swiftConstraints`, which
provides the requirements there.

rdar://60091161
2020-03-09 20:06:49 -07:00

211 lines
6.4 KiB
C++

//===--- SymbolGraph.h - Symbol Graph Data Structure ----------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SYMBOLGRAPHGEN_SYMBOLGRAPH_H
#define SWIFT_SYMBOLGRAPHGEN_SYMBOLGRAPH_H
#include "llvm/ADT/SmallSet.h"
#include "llvm/Support/JSON.h"
#include "llvm/Support/VersionTuple.h"
#include "swift/Basic/LLVM.h"
#include "swift/Markup/Markup.h"
#include "swift/SymbolGraphGen/SymbolGraphOptions.h"
#include "Edge.h"
#include "JSON.h"
#include "Symbol.h"
namespace swift {
namespace symbolgraphgen {
/// A graph of symbols and the relationships between them.
struct SymbolGraph {
/**
The options to use while building the graph.
*/
SymbolGraphASTWalker &Walker;
/**
The module this symbol graph represents.
*/
ModuleDecl &M;
/**
The module whose types were extended in `M`.
*/
Optional<ModuleDecl *> ExtendedModule;
/**
A context for allocations.
*/
markup::MarkupContext &Ctx;
/**
The semantic version of the module that this symbol graph describes,
if known.
*/
Optional<llvm::VersionTuple> ModuleVersion;
/**
The symbols in a module: the nodes in the graph.
*/
llvm::DenseSet<Symbol> Nodes;
/**
The relationships between symbols: the edges in the graph.
*/
llvm::DenseSet<Edge> Edges;
SymbolGraph(SymbolGraphASTWalker &Walker,
ModuleDecl &M,
Optional<ModuleDecl *> ExtendedModule,
markup::MarkupContext &Ctx,
Optional<llvm::VersionTuple> ModuleVersion = None);
// MARK: - Utilities
/// Get the base print options for declaration fragments.
PrintOptions getDeclarationFragmentsPrintOptions() const;
// MARK: - Symbols (Nodes)
/**
Record a symbol as a node in the graph.
*/
void recordNode(Symbol S);
// MARK: - Relationships (Edges)
/**
Record a relationship between two declarations as an edge in the graph.
\param Source The declaration serving as the source of the edge in the
directed graph.
\param Target The declaration serving as the target of the edge in the
directed graph.
\param Kind The kind of relationship the edge represents.
*/
void recordEdge(Symbol Source, Symbol Target, RelationshipKind Kind,
const ExtensionDecl *ConformanceExtension = nullptr);
/**
Record a MemberOf relationship, if the given declaration is nested
in another.
*/
void recordMemberRelationship(Symbol S);
/**
If a declaration has members by conforming to a protocol, such as default
implementations, record a symbol with a "synthesized" USR to disambiguate
from the protocol's real implementation.
This makes it more convenient to curate symbols on
a conformer's documentation.
The reason these "virtual" members are recorded is to show documentation
under a conforming type for members with the concrete types substituted.
For example, if `Array` takes on a function from a collection protocol,
`subscript(index: Self.Index) -> Element`, the documentation for Array may
wish to show this function as `subscript(index: Int) -> Element` instead,
and show unique documentation for it.
*/
void recordConformanceSynthesizedMemberRelationships(Symbol S);
/**
If a declaration has members by subclassing, record a symbol with a
"synthesized" USR to disambiguate from the superclass's real implementation.
This makes it more convenient
to curate symbols on a subclass's documentation.
*/
void recordSuperclassSynthesizedMemberRelationships(Symbol S);
/**
Record InheritsFrom relationships for every class from which the
declaration inherits.
*/
void recordInheritanceRelationships(Symbol S);
/**
If the declaration is a default implementation in a protocol extension,
record a DefaultImplementationOf relationship between the declaration and
the requirement.
*/
void recordDefaultImplementationRelationships(Symbol S);
/**
Record a RequirementOf relationship if the declaration is a requirement
of a protocol.
*/
void recordRequirementRelationships(Symbol S);
/**
If the declaration is an Objective-C-based optional protocol requirement,
record an OptionalRequirementOf relationship between the declaration
and its containing protocol.
*/
void recordOptionalRequirementRelationships(Symbol S);
/**
Record ConformsTo relationships for each protocol conformance of
the declaration.
*/
void recordConformanceRelationships(Symbol S);
/**
Record ConformsTo relationships for each protocol conformance of
a declaration through via an extension.
*/
void recordExtensionConformanceRelationships(Symbol S);
/**
Records an Overrides relationship if the given declaration
overrides another.
*/
void recordOverrideRelationship(Symbol S);
// MARK: - Serialization
/// Serialize this symbol graph's JSON to an output stream.
void serialize(llvm::json::OStream &OS);
/// Serialize the overall declaration fragments for a `ValueDecl`.
void
serializeDeclarationFragments(StringRef Key, const Symbol &S,
llvm::json::OStream &OS);
/// Get the overall declaration fragments for a `ValueDecl` when it is viewed
/// as a subheading and/or part of a larger group of symbol listings.
void
serializeSubheadingDeclarationFragments(StringRef Key, const Symbol &S,
llvm::json::OStream &OS);
/// Get the overall declaration for a type declaration.
void
serializeDeclarationFragments(StringRef Key, Type T,
llvm::json::OStream &OS);
/// Returns `true` if the declaration has a name that makes it
/// implicitly internal/private, such as underscore prefixes,
/// and checking every named parent context as well.
bool isImplicitlyPrivate(const ValueDecl *VD) const;
/// Returns `true` if the declaration should be included as a node
/// in the graph.
bool canIncludeDeclAsNode(const Decl *D) const;
};
} // end namespace symbolgraphgen
} // end namespace swift
#endif // SWIFT_SYMBOLGRAPHGEN_SYMBOLGRAPH_H