1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2024 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
//
//===----------------------------------------------------------------------===//
import SwiftSyntax
import SwiftSyntaxMacros
import SwiftDiagnostics
import SwiftSyntaxBuilder
/// Introduces:
/// - `distributed actor $MyDistributedActor<ActorSystem>: $MyDistributedActor, _DistributedActorStub where ...`
/// - `extension MyDistributedActor where Self: _DistributedActorStub {}`
public struct DistributedResolvableMacro: ExtensionMacro, PeerMacro {
}
// ===== -----------------------------------------------------------------------
// MARK: Default Stub implementations Extension
extension DistributedResolvableMacro {
/// Introduce the `extension MyDistributedActor` which contains default
/// implementations of the protocol's requirements.
public static func expansion(
of node: AttributeSyntax,
attachedTo declaration: some DeclGroupSyntax,
providingExtensionsOf type: some TypeSyntaxProtocol,
conformingTo protocols: [TypeSyntax],
in context: some MacroExpansionContext
) throws -> [ExtensionDeclSyntax] {
guard let proto = declaration.as(ProtocolDeclSyntax.self) else {
// we diagnose here, only once
try throwIllegalTargetDecl(node: node, declaration)
}
guard !proto.memberBlock.members.isEmpty else {
// ok, the protocol has no requirements so we no-op it
return []
}
let accessModifiers = proto.accessControlModifiers
let requirementStubs =
proto.memberBlock.members // requirements
.filter { member in
switch member.decl.kind {
case .functionDecl: return true
case .variableDecl: return true
default:
return false
}
}
.map { member in
stubMethodDecl(access: accessModifiers, member.trimmed)
}
.joined(separator: "\n ")
let extensionDecl: DeclSyntax =
"""
extension \(proto.name.trimmed) where Self: Distributed._DistributedActorStub {
\(raw: requirementStubs)
}
"""
return [extensionDecl.cast(ExtensionDeclSyntax.self)]
}
static func stubMethodDecl(access: DeclModifierListSyntax, _ requirement: MemberBlockItemListSyntax.Element) -> String {
// do we need to stub a computed variable?
if let variable = requirement.decl.as(VariableDeclSyntax.self) {
var accessorStubs: [String] = []
for binding in variable.bindings {
if let accessorBlock = binding.accessorBlock {
for accessor in accessorBlock.accessors.children(viewMode: .all) {
let accessorStub = "\(accessor) { \(stubFunctionBody()) }"
accessorStubs.append(accessorStub)
}
}
}
let name = variable.bindings.first!.pattern.trimmed
let typeAnnotation = variable.bindings.first?.typeAnnotation.map { "\($0.trimmed)" } ?? "Any"
return """
\(access)\(variable.modifiers)\(variable.bindingSpecifier) \(name) \(typeAnnotation) {
\(accessorStubs.joined(separator: "\n "))
}
"""
}
// normal function stub
return """
\(access)\(requirement) {
\(stubFunctionBody())
}
"""
}
static func stubFunctionBody() -> DeclSyntax {
"""
if #available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *) {
Distributed._distributedStubFatalError()
} else {
fatalError()
}
"""
}
}
// ===== -----------------------------------------------------------------------
// MARK: Distributed Actor Stub type
extension DistributedResolvableMacro {
/// Introduce the `distributed actor` stub type.
public static func expansion(
of node: AttributeSyntax,
providingPeersOf declaration: some DeclSyntaxProtocol,
in context: some MacroExpansionContext
) throws -> [DeclSyntax] {
guard let proto = declaration.as(ProtocolDeclSyntax.self) else {
// don't diagnose here (again),
// we'll already report an error here from the other macro role
return []
}
var isGenericStub = false
var specificActorSystemRequirement: TypeSyntax?
let accessModifiers = proto.accessControlModifiers
for req in proto.genericWhereClause?.requirements ?? [] {
switch req.requirement {
case .conformanceRequirement(let conformanceReq)
where conformanceReq.leftType.isActorSystem:
specificActorSystemRequirement = conformanceReq.rightType.trimmed
isGenericStub = true
case .sameTypeRequirement(let sameTypeReq)
where sameTypeReq.leftType.isActorSystem:
specificActorSystemRequirement = sameTypeReq.rightType.trimmed
isGenericStub = false
default:
continue
}
}
if isGenericStub, let specificActorSystemRequirement {
return [
"""
\(proto.modifiers) distributed actor $\(proto.name.trimmed)<ActorSystem>: \(proto.name.trimmed),
Distributed._DistributedActorStub
where ActorSystem: \(specificActorSystemRequirement)
{ }
"""
]
} else if let specificActorSystemRequirement {
return [
"""
\(proto.modifiers) distributed actor $\(proto.name.trimmed): \(proto.name.trimmed),
Distributed._DistributedActorStub
{
\(typealiasActorSystem(access: accessModifiers, proto, specificActorSystemRequirement))
}
"""
]
} else {
// there may be no `where` clause specifying an actor system,
// but perhaps there is a typealias (or extension with a typealias),
// specifying a concrete actor system so we let this synthesize
// an empty `$Greeter` -- this may fail, or succeed depending on
// surrounding code using a default distributed actor system,
// or extensions providing it.
return [
"""
\(proto.modifiers) distributed actor $\(proto.name.trimmed): \(proto.name.trimmed),
Distributed._DistributedActorStub
{
}
"""
]
}
}
private static func typealiasActorSystem(access: DeclModifierListSyntax,
_ proto: ProtocolDeclSyntax,
_ type: TypeSyntax) -> DeclSyntax {
"\(access)typealias ActorSystem = \(type)"
}
}
// ===== -----------------------------------------------------------------------
// MARK: Convenience Extensions
extension TypeSyntax {
fileprivate var isActorSystem: Bool {
self.trimmedDescription == "ActorSystem"
}
}
extension DeclSyntaxProtocol {
var isClass: Bool {
return self.is(ClassDeclSyntax.self)
}
var isActor: Bool {
return self.is(ActorDeclSyntax.self)
}
var isEnum: Bool {
return self.is(EnumDeclSyntax.self)
}
var isStruct: Bool {
return self.is(StructDeclSyntax.self)
}
}
extension DeclModifierSyntax {
var isAccessControl: Bool {
switch self.name.tokenKind {
case .keyword(.private): fallthrough
case .keyword(.fileprivate): fallthrough
case .keyword(.internal): fallthrough
case .keyword(.package): fallthrough
case .keyword(.public):
return true
default:
return false
}
}
}
// ===== -----------------------------------------------------------------------
// MARK: @Distributed.Resolvable macro errors
extension DistributedResolvableMacro {
static func throwIllegalTargetDecl(node: AttributeSyntax, _ declaration: some DeclSyntaxProtocol) throws -> Never {
let kind: String
if declaration.isClass {
kind = "class"
} else if declaration.isActor {
kind = "actor"
} else if declaration.isStruct {
kind = "struct"
} else if declaration.isStruct {
kind = "enum"
} else {
kind = "\(declaration.kind)"
}
throw DiagnosticsError(
syntax: node,
message: "'@Resolvable' can only be applied to 'protocol', but was attached to '\(kind)'", id: .invalidApplication)
}
}
struct DistributedResolvableMacroDiagnostic: DiagnosticMessage {
enum ID: String {
case invalidApplication = "invalid type"
case missingInitializer = "missing initializer"
}
var message: String
var diagnosticID: MessageID
var severity: DiagnosticSeverity
init(message: String, diagnosticID: SwiftDiagnostics.MessageID, severity: SwiftDiagnostics.DiagnosticSeverity = .error) {
self.message = message
self.diagnosticID = diagnosticID
self.severity = severity
}
init(message: String, domain: String, id: ID, severity: SwiftDiagnostics.DiagnosticSeverity = .error) {
self.message = message
self.diagnosticID = MessageID(domain: domain, id: id.rawValue)
self.severity = severity
}
}
extension DiagnosticsError {
init<S: SyntaxProtocol>(
syntax: S,
message: String,
domain: String = "Distributed",
id: DistributedResolvableMacroDiagnostic.ID,
severity: SwiftDiagnostics.DiagnosticSeverity = .error) {
self.init(diagnostics: [
Diagnostic(
node: Syntax(syntax),
message: DistributedResolvableMacroDiagnostic(
message: message,
domain: domain,
id: id,
severity: severity))
])
}
}
|