mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
208 lines
6.4 KiB
C++
208 lines
6.4 KiB
C++
//===--- AvailabilityDomain.cpp - Swift Availability Domains --------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/AST/AvailabilityDomain.h"
|
|
#include "swift/AST/ASTContext.h"
|
|
#include "swift/AST/Decl.h"
|
|
#include "swift/Basic/Assertions.h"
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
|
|
using namespace swift;
|
|
|
|
std::optional<AvailabilityDomain>
|
|
AvailabilityDomain::forTargetPlatform(const ASTContext &ctx) {
|
|
auto platform = swift::targetPlatform(ctx.LangOpts);
|
|
if (platform == PlatformKind::none)
|
|
return std::nullopt;
|
|
|
|
return forPlatform(platform);
|
|
}
|
|
|
|
std::optional<AvailabilityDomain>
|
|
AvailabilityDomain::forTargetVariantPlatform(const ASTContext &ctx) {
|
|
auto platform = swift::targetVariantPlatform(ctx.LangOpts);
|
|
if (platform == PlatformKind::none)
|
|
return std::nullopt;
|
|
|
|
return forPlatform(platform);
|
|
}
|
|
|
|
std::optional<AvailabilityDomain>
|
|
AvailabilityDomain::builtinDomainForString(StringRef string,
|
|
const DeclContext *declContext) {
|
|
// This parameter is used in downstream forks, do not remove.
|
|
(void)declContext;
|
|
|
|
auto domain = llvm::StringSwitch<std::optional<AvailabilityDomain>>(string)
|
|
.Case("*", AvailabilityDomain::forUniversal())
|
|
.Case("swift", AvailabilityDomain::forSwiftLanguage())
|
|
.Case("_PackageDescription",
|
|
AvailabilityDomain::forPackageDescription())
|
|
.Default(std::nullopt);
|
|
|
|
if (domain)
|
|
return domain;
|
|
|
|
if (auto platformKind = platformFromString(string))
|
|
return AvailabilityDomain::forPlatform(*platformKind);
|
|
|
|
return std::nullopt;
|
|
}
|
|
|
|
bool AvailabilityDomain::isVersioned() const {
|
|
switch (getKind()) {
|
|
case Kind::Universal:
|
|
case Kind::Embedded:
|
|
return false;
|
|
case Kind::SwiftLanguage:
|
|
case Kind::PackageDescription:
|
|
case Kind::Platform:
|
|
return true;
|
|
case Kind::Custom:
|
|
// FIXME: [availability] Support versioned custom availability domains
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool AvailabilityDomain::isActive(const ASTContext &ctx) const {
|
|
switch (getKind()) {
|
|
case Kind::Universal:
|
|
case Kind::SwiftLanguage:
|
|
case Kind::PackageDescription:
|
|
case Kind::Embedded:
|
|
return true;
|
|
case Kind::Platform:
|
|
return isPlatformActive(getPlatformKind(), ctx.LangOpts);
|
|
case Kind::Custom:
|
|
// For now, custom domains are always active but it's conceivable that in
|
|
// the future someone might want to define a domain but leave it inactive.
|
|
return true;
|
|
}
|
|
}
|
|
|
|
llvm::StringRef AvailabilityDomain::getNameForDiagnostics() const {
|
|
switch (getKind()) {
|
|
case Kind::Universal:
|
|
return "";
|
|
case Kind::SwiftLanguage:
|
|
return "Swift";
|
|
case Kind::PackageDescription:
|
|
return "PackageDescription";
|
|
case Kind::Embedded:
|
|
return "Embedded Swift";
|
|
case Kind::Platform:
|
|
return swift::prettyPlatformString(getPlatformKind());
|
|
case Kind::Custom:
|
|
return getCustomDomain()->getName().str();
|
|
}
|
|
}
|
|
|
|
llvm::StringRef AvailabilityDomain::getNameForAttributePrinting() const {
|
|
switch (getKind()) {
|
|
case Kind::Universal:
|
|
return "*";
|
|
case Kind::SwiftLanguage:
|
|
return "swift";
|
|
case Kind::PackageDescription:
|
|
return "_PackageDescription";
|
|
case Kind::Embedded:
|
|
return "Embedded";
|
|
case Kind::Platform:
|
|
return swift::platformString(getPlatformKind());
|
|
case Kind::Custom:
|
|
return getCustomDomain()->getName().str();
|
|
}
|
|
}
|
|
|
|
ModuleDecl *AvailabilityDomain::getModule() const {
|
|
if (auto customDomain = getCustomDomain())
|
|
return customDomain->getModule();
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
bool AvailabilityDomain::contains(const AvailabilityDomain &other) const {
|
|
// FIXME: [availability] This currently implements something closer to a
|
|
// total ordering instead of the more flexible partial ordering that it
|
|
// would ideally represent. Until AvailabilityContext supports tracking
|
|
// multiple unavailable domains simultaneously, a stricter ordering is
|
|
// necessary to support source compatibility.
|
|
switch (getKind()) {
|
|
case Kind::Universal:
|
|
return true;
|
|
case Kind::SwiftLanguage:
|
|
return !other.isUniversal();
|
|
case Kind::PackageDescription:
|
|
case Kind::Embedded:
|
|
return !other.isUniversal() && !other.isSwiftLanguage();
|
|
case Kind::Platform:
|
|
if (getPlatformKind() == other.getPlatformKind())
|
|
return true;
|
|
return inheritsAvailabilityFromPlatform(other.getPlatformKind(),
|
|
getPlatformKind());
|
|
case Kind::Custom:
|
|
return getCustomDomain() == other.getCustomDomain();
|
|
}
|
|
}
|
|
|
|
AvailabilityDomain AvailabilityDomain::getABICompatibilityDomain() const {
|
|
if (!isPlatform())
|
|
return *this;
|
|
|
|
auto iOSDomain = AvailabilityDomain::forPlatform(PlatformKind::iOS);
|
|
if (iOSDomain.contains(*this))
|
|
return iOSDomain;
|
|
|
|
if (auto basePlatform = basePlatformForExtensionPlatform(getPlatformKind()))
|
|
return AvailabilityDomain::forPlatform(*basePlatform);
|
|
|
|
return *this;
|
|
}
|
|
|
|
AvailabilityDomain AvailabilityDomain::copy(ASTContext &ctx) const {
|
|
switch (getKind()) {
|
|
case Kind::Universal:
|
|
case Kind::SwiftLanguage:
|
|
case Kind::PackageDescription:
|
|
case Kind::Embedded:
|
|
case Kind::Platform:
|
|
// These domain kinds aren't ASTContext dependent.
|
|
return *this;
|
|
case Kind::Custom:
|
|
// To support this, the CustomAvailabilityDomain content would need to
|
|
// be copied to the other context, allocating new storage if necessary.
|
|
llvm::report_fatal_error("unsupported");
|
|
}
|
|
}
|
|
|
|
CustomAvailabilityDomain::CustomAvailabilityDomain(Identifier name,
|
|
ModuleDecl *mod, Kind kind)
|
|
: name(name), kind(kind), mod(mod) {
|
|
ASSERT(!name.empty());
|
|
ASSERT(mod);
|
|
}
|
|
|
|
CustomAvailabilityDomain *
|
|
CustomAvailabilityDomain::create(const ASTContext &ctx, StringRef name,
|
|
ModuleDecl *mod, Kind kind) {
|
|
return new (ctx) CustomAvailabilityDomain(ctx.getIdentifier(name), mod, kind);
|
|
}
|
|
|
|
AvailabilityDomainOrIdentifier
|
|
AvailabilityDomainOrIdentifier::copy(ASTContext &ctx) const {
|
|
if (auto identifier = getAsIdentifier())
|
|
return ctx.getIdentifier(identifier->str());
|
|
|
|
DEBUG_ASSERT(isDomain());
|
|
return getAsDomain()->copy(ctx);
|
|
}
|