Files
swift-mirror/test/Distributed/distributed_protocol_isolation.swift
Aviva Ruben 69b6c8cc9e [Sema] Suggest let, nonisolated for properties and computed properties
Fixes rdar://89864078, by checking if all the required vars are
immutable, and suggesting mutable variables be converted to immutable to
become nonisolated and presumably fix the isolation issue. Also suggests
'nonisolated' on var decls without storage or wrapper. Additionally,
converts existing 'nonisolated' for method suggestion to emit per-method
instead of a top level 'all', for consistency with the new diagnostic,
based on PR feedback.
2026-03-23 15:42:18 -07:00

283 lines
12 KiB
Swift

// RUN: %empty-directory(%t)
// RUN: %target-swift-frontend-emit-module -emit-module-path %t/FakeDistributedActorSystems.swiftmodule -module-name FakeDistributedActorSystems -target %target-swift-5.7-abi-triple %S/Inputs/FakeDistributedActorSystems.swift
// RUN: %target-swift-frontend -typecheck -verify -strict-concurrency=targeted -target %target-swift-5.7-abi-triple -I %t 2>&1 %s
// REQUIRES: concurrency
// REQUIRES: distributed
import Distributed
import FakeDistributedActorSystems
/// Use the existential wrapper as the default actor system.
typealias DefaultDistributedActorSystem = FakeActorSystem
// ==== -----------------------------------------------------------------------
// MARK: Distributed actor protocols
protocol WrongDistFuncs {
distributed func notDistActor() // expected-error{{'distributed' method can only be declared within 'distributed actor'}}{{5-17=}} {{-1:25-25=: DistributedActor}}
}
protocol DistProtocol: DistributedActor {
// FIXME(distributed): avoid issuing these warnings, these originate from the call on the DistProtocol where we marked this func as dist isolated,
func local() -> String
// (the note appears a few times, because we misuse the call many times)
// expected-note@-2{{distributed actor-isolated instance method 'local()' declared here}}
// expected-note@-3{{distributed actor-isolated instance method 'local()' declared here}}
// expected-note@-4{{distributed actor-isolated instance method 'local()' declared here}}
distributed func dist() -> String
distributed func dist(string: String) -> String
distributed func distAsync() async -> String
distributed func distThrows() throws -> String
distributed func distAsyncThrows() async throws -> String
}
distributed actor SpecificDist: DistProtocol {
nonisolated func local() -> String { "hi" }
distributed func dist() -> String { "dist!" }
distributed func dist(string: String) -> String { string }
distributed func distAsync() async -> String { "dist!" }
distributed func distThrows() throws -> String { "dist!" }
distributed func distAsyncThrows() async throws -> String { "dist!" }
func inside() async throws {
_ = self.local() // ok
_ = self.dist() // ok
_ = self.dist(string: "") // ok
_ = await self.distAsync() // ok
_ = try self.distThrows() // ok
_ = try await self.distAsyncThrows() // ok
}
}
func outside_good(dp: SpecificDist) async throws {
_ = dp.local()
_ = try await dp.dist() // implicit async throws
_ = try await dp.dist(string: "") // implicit async throws
_ = try await dp.distAsync() // implicit throws
_ = try await dp.distThrows() // implicit async
_ = try await dp.distAsyncThrows() // ok
}
func outside_good_generic<DP: DistProtocol>(dp: DP) async throws {
_ = dp.local() // expected-error{{only 'distributed' instance methods can be called on a potentially remote distributed actor}}
_ = await dp.local() // expected-error{{only 'distributed' instance methods can be called on a potentially remote distributed actor}}
// the below warning is expected because we don't apply the "implicitly async" to the not-callable func
// expected-warning@-2{{no 'async' operations occur within 'await' expression}}{{7-13=}}
_ = try dp.local() // expected-error{{only 'distributed' instance methods can be called on a potentially remote distributed actor}}
// the below warning is expected because we don't apply the "implicitly throwing" to the not-callable func
// expected-warning@-2{{no calls to throwing functions occur within 'try' expression}}
_ = try await dp.dist() // implicit async throws
_ = try await dp.dist(string: "") // implicit async throws
_ = try await dp.distAsync() // implicit throws
_ = try await dp.distThrows() // implicit async
_ = try await dp.distAsyncThrows() // ok
}
func outside_good_ext<DP: DistProtocol>(dp: DP) async throws {
_ = try await dp.dist() // implicit async throws
_ = try await dp.dist(string: "") // implicit async throws
_ = try await dp.distAsync() // implicit throws
_ = try await dp.distThrows() // implicit async
_ = try await dp.distAsyncThrows() // ok
}
// ==== ------------------------------------------------------------------------
// MARK: General protocols implemented by distributed actors
/// A distributed actor could only conform to this by making everything 'nonisolated':
protocol StrictlyLocal {
func local()
func localThrows() throws
func localAsync() async
}
// expected-error@+1{{conformance of 'Nope1_StrictlyLocal' to protocol 'StrictlyLocal' crosses into actor-isolated code and can cause data races}}
distributed actor Nope1_StrictlyLocal: StrictlyLocal {
// expected-note@-1{{turn data races into runtime errors with '@preconcurrency'}}{{40-40=@preconcurrency }}
func local() {}
// expected-note@-1{{actor-isolated instance method 'local()' cannot satisfy nonisolated requirement}}
// expected-note@-2{{mark instance method 'local()' 'nonisolated'}}{{3-3=nonisolated }}
func localThrows() throws {}
// expected-note@-1{{actor-isolated instance method 'localThrows()' cannot satisfy nonisolated requirement}}
// expected-note@-2{{mark instance method 'localThrows()' 'nonisolated'}}{{3-3=nonisolated }}
func localAsync() async {}
// expected-note@-1{{actor-isolated instance method 'localAsync()' cannot satisfy nonisolated requirement}}
// expected-note@-2{{mark instance method 'localAsync()' 'nonisolated'}}{{3-3=nonisolated }}
}
// expected-error@+1{{conformance of 'Nope2_StrictlyLocal' to protocol 'StrictlyLocal' involves isolation mismatches and can cause data races}}
distributed actor Nope2_StrictlyLocal: StrictlyLocal {
// expected-note@-1{{turn data races into runtime errors with '@preconcurrency'}}
distributed func local() {}
// expected-note@-1{{actor-isolated distributed instance method 'local()' cannot satisfy nonisolated requirement}}
distributed func localThrows() throws {}
// expected-note@-1{{actor-isolated distributed instance method 'localThrows()' cannot satisfy nonisolated requirement}}
distributed func localAsync() async {}
// expected-note@-1{{actor-isolated distributed instance method 'localAsync()' cannot satisfy nonisolated requirement}}
}
distributed actor OK_StrictlyLocal: StrictlyLocal {
nonisolated func local() {}
nonisolated func localThrows() throws {}
nonisolated func localAsync() async {}
}
protocol Server {
func send<Message: Codable & Sendable>(message: Message) async throws -> String
}
actor MyServer : Server {
func send<Message: Codable & Sendable>(message: Message) throws -> String { "" } // OK
}
protocol AsyncThrowsAll {
func maybe(param: String, int: Int) async throws -> Int
}
actor LocalOK_AsyncThrowsAll: AsyncThrowsAll {
func maybe(param: String, int: Int) async throws -> Int { 1111 }
}
actor LocalOK_ImplicitlyThrows_AsyncThrowsAll: AsyncThrowsAll {
func maybe(param: String, int: Int) async -> Int { 1111 }
}
actor LocalOK_ImplicitlyAsync_AsyncThrowsAll: AsyncThrowsAll {
func maybe(param: String, int: Int) throws -> Int { 1111 }
}
actor LocalOK_ImplicitlyThrowsAsync_AsyncThrowsAll: AsyncThrowsAll {
func maybe(param: String, int: Int) -> Int { 1111 }
}
// expected-error@+1{{conformance of 'Nope1_AsyncThrowsAll' to distributed protocol 'AsyncThrowsAll' uses non-distributed operations}}
distributed actor Nope1_AsyncThrowsAll: AsyncThrowsAll {
// expected-note@-1{{mark all declarations used in the conformance 'distributed'}}
func maybe(param: String, int: Int) async throws -> Int { 111 }
// expected-note@-1{{non-distributed instance method 'maybe(param:int:)'}}
}
distributed actor OK_AsyncThrowsAll: AsyncThrowsAll {
distributed func maybe(param: String, int: Int) async throws -> Int { 222 }
}
distributed actor OK_Implicitly_AsyncThrowsAll: AsyncThrowsAll {
distributed func maybe(param: String, int: Int) -> Int { 333 }
}
func testAsyncThrowsAll(p: AsyncThrowsAll,
dap: OK_AsyncThrowsAll,
dapi: OK_Implicitly_AsyncThrowsAll) async throws {
_ = try await p.maybe(param: "", int: 0)
_ = try await dap.maybe(param: "", int: 0)
_ = try await dapi.maybe(param: "", int: 0)
// Such conversion is sound:
let pp: AsyncThrowsAll = dapi
_ = try await pp.maybe(param: "", int: 0)
}
// ==== -----------------------------------------------------------------------
// MARK: Distributed actor protocols can have non-dist requirements
protocol TerminationWatchingA {
func terminated(a: String) async
}
protocol TerminationWatchingDA: DistributedActor {
func terminated(da: String) async // expected-note 3 {{distributed actor-isolated instance method 'terminated(da:)' declared here}}
}
actor A_TerminationWatchingA: TerminationWatchingA {
func terminated(a: String) { } // ok, since: actor -> implicitly async
}
func test_watching_A(a: A_TerminationWatchingA) async throws {
await a.terminated(a: "normal")
}
// expected-error@+1{{conformance of 'DA_TerminationWatchingA' to protocol 'TerminationWatchingA' crosses into actor-isolated code and can cause data races}}
distributed actor DA_TerminationWatchingA: TerminationWatchingA {
// expected-note@-1{{turn data races into runtime errors with '@preconcurrency'}}
func terminated(a: String) { }
// expected-note@-1{{actor-isolated instance method 'terminated(a:)' cannot satisfy nonisolated requirement}}
// expected-note@-2{{mark instance method 'terminated(a:)' 'nonisolated'}}{{3-3=nonisolated }}
}
distributed actor DA_TerminationWatchingDA: TerminationWatchingDA {
distributed func test() {}
func terminated(da: String) { }
// expected-note@-1{{distributed actor-isolated instance method 'terminated(da:)' declared here}}
}
func test_watchingDA(da: DA_TerminationWatchingDA) async throws {
try await da.test() // ok
da.terminated(da: "the terminated func is not distributed") // expected-error{{only 'distributed' instance methods can be called on a potentially remote distributed actor}}
}
func test_watchingDA<WDA: TerminationWatchingDA>(da: WDA) async throws {
try await da.terminated(da: "the terminated func is not distributed")
// expected-error@-1{{only 'distributed' instance methods can be called on a potentially remote distributed actor}}
// expected-warning@-2{{no calls to throwing functions occur within 'try' expression}}
let __secretlyKnownToBeLocal = da
await __secretlyKnownToBeLocal.terminated(da: "local calls are okey!") // OK
await da.whenLocal { __secretlyKnownToBeLocal in
await __secretlyKnownToBeLocal.terminated(da: "local calls are okey!") // OK
}
}
func test_watchingDA_erased(da: DA_TerminationWatchingDA) async throws {
let wda: any TerminationWatchingDA = da
try await wda.terminated(da: "the terminated func is not distributed")
// expected-error@-1{{only 'distributed' instance methods can be called on a potentially remote distributed actor}}
// expected-warning@-2{{no calls to throwing functions occur within 'try' expression}}
let __secretlyKnownToBeLocal = wda
await __secretlyKnownToBeLocal.terminated(da: "local calls are okey!") // OK
await wda.whenLocal { __secretlyKnownToBeLocal in
await __secretlyKnownToBeLocal.terminated(da: "local calls are okey!") // OK
}
}
func test_watchingDA_any(da: any TerminationWatchingDA) async throws {
try await da.terminated(da: "the terminated func is not distributed")
// expected-error@-1{{only 'distributed' instance methods can be called on a potentially remote distributed actor}}
// expected-warning@-2{{no calls to throwing functions occur within 'try' expression}}
}
// ==== ------------------------------------------------------------------------
// MARK: Distributed Actor requiring protocol witnessing async throws requirements
struct Salsa: Codable, Sendable {}
protocol TacoPreparation {
func makeTacos(with salsa: Salsa) async throws
}
protocol DistributedTacoMaker: DistributedActor, TacoPreparation {
}
extension DistributedTacoMaker {
distributed func makeTacos(with: Salsa) {}
}
extension TacoPreparation {
distributed func makeSalsa() -> Salsa {}
// expected-error@-1{{'distributed' method can only be declared within 'distributed actor'}}
}
distributed actor TacoWorker: DistributedTacoMaker {} // implemented in extensions
extension DistributedTacoMaker where SerializationRequirement == Codable {
distributed func makeGreatTacos(with: Salsa) {}
}