Files
swift-composable-architectu…/Examples/CaseStudies/SwiftUICaseStudies/02-Effects-WebSocket.swift
Stephen Celis 57e804f1cc Macro bonanza (#2553)
* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Silence test warnings

* wip

* wip

* wip

* update a bunch of docs

* wip

* wip

* fix

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Kill integration tests for now

* wip

* wip

* wip

* wip

* updating docs for @Reducer macro

* replaced more Reducer protocols with @Reducer

* Fixed some broken docc references

* wip

* Some @Reducer docs

* more docs

* convert some old styles to new style

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* bump

* update tutorials to use body

* update tutorials to use DML on destination state enum

* Add diagnostic

* wip

* updated a few more tests

* wip

* wip

* Add another gotcha

* wip

* wip

* wip

* fixes

* wip

* wip

* wip

* wip

* wip

* fix

* wip

* remove for now

* wip

* wip

* updated some docs

* migration guides

* more migration guide

* fix ci

* fix

* soft deprecate all apis using AnyCasePath

* wip

* Fix

* fix tests

* swift-format 509 compatibility

* wip

* wip

* Update Sources/ComposableArchitecture/Macros.swift

Co-authored-by: Mateusz Bąk <bakmatthew@icloud.com>

* wip

* wip

* update optional state case study

* remove initializer

* Don't use @State for BasicsView integration demo

* fix tests

* remove reduce diagnostics for now

* diagnose error not warning

* Update Sources/ComposableArchitecture/Macros.swift

Co-authored-by: Jesse Tipton <jesse@jessetipton.com>

* wip

* move integration tests to cron

* Revert "move integration tests to cron"

This reverts commit f9bdf2f04b.

* disable flakey tests on CI

* wip

* wip

* Revert "Revert "move integration tests to cron""

This reverts commit 66aafa7327.

* fix

* wip

* fix

---------

Co-authored-by: Brandon Williams <mbrandonw@hey.com>
Co-authored-by: Mateusz Bąk <bakmatthew@icloud.com>
Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com>
Co-authored-by: Jesse Tipton <jesse@jessetipton.com>
2023-11-13 12:57:35 -08:00

374 lines
11 KiB
Swift

import ComposableArchitecture
import SwiftUI
import XCTestDynamicOverlay
private let readMe = """
This application demonstrates how to work with a web socket in the Composable Architecture.
A lightweight wrapper is made for `URLSession`'s API for web sockets so that we can send, \
receive and ping a socket endpoint. To test, connect to the socket server, and then send a \
message. The socket server should immediately reply with the exact message you sent in.
"""
// MARK: - Feature domain
@Reducer
struct WebSocket {
struct State: Equatable {
@PresentationState var alert: AlertState<Action.Alert>?
var connectivityState = ConnectivityState.disconnected
var messageToSend = ""
var receivedMessages: [String] = []
enum ConnectivityState: String {
case connected
case connecting
case disconnected
}
}
enum Action {
case alert(PresentationAction<Alert>)
case connectButtonTapped
case messageToSendChanged(String)
case receivedSocketMessage(Result<WebSocketClient.Message, Error>)
case sendButtonTapped
case sendResponse(didSucceed: Bool)
case webSocket(WebSocketClient.Action)
enum Alert: Equatable {}
}
@Dependency(\.continuousClock) var clock
@Dependency(\.webSocket) var webSocket
var body: some Reducer<State, Action> {
Reduce { state, action in
switch action {
case .alert:
return .none
case .connectButtonTapped:
switch state.connectivityState {
case .connected, .connecting:
state.connectivityState = .disconnected
return .cancel(id: WebSocketClient.ID())
case .disconnected:
state.connectivityState = .connecting
return .run { send in
let actions = await self.webSocket
.open(WebSocketClient.ID(), URL(string: "wss://echo.websocket.events")!, [])
await withThrowingTaskGroup(of: Void.self) { group in
for await action in actions {
// NB: Can't call `await send` here outside of `group.addTask` due to task local
// dependency mutation in `Effect.{task,run}`. Can maybe remove that explicit task
// local mutation (and this `addTask`?) in a world with
// `Effect(operation: .run { ... })`?
group.addTask { await send(.webSocket(action)) }
switch action {
case .didOpen:
group.addTask {
while !Task.isCancelled {
try await self.clock.sleep(for: .seconds(10))
try? await self.webSocket.sendPing(WebSocketClient.ID())
}
}
group.addTask {
for await result in try await self.webSocket.receive(WebSocketClient.ID()) {
await send(.receivedSocketMessage(result))
}
}
case .didClose:
return
}
}
}
}
.cancellable(id: WebSocketClient.ID())
}
case let .messageToSendChanged(message):
state.messageToSend = message
return .none
case let .receivedSocketMessage(.success(message)):
if case let .string(string) = message {
state.receivedMessages.append(string)
}
return .none
case .receivedSocketMessage(.failure):
return .none
case .sendButtonTapped:
let messageToSend = state.messageToSend
state.messageToSend = ""
return .run { send in
try await self.webSocket.send(WebSocketClient.ID(), .string(messageToSend))
await send(.sendResponse(didSucceed: true))
} catch: { _, send in
await send(.sendResponse(didSucceed: false))
}
.cancellable(id: WebSocketClient.ID())
case .sendResponse(didSucceed: false):
state.alert = AlertState {
TextState("Could not send socket message. Connect to the server first, and try again.")
}
return .none
case .sendResponse(didSucceed: true):
return .none
case .webSocket(.didClose):
state.connectivityState = .disconnected
return .cancel(id: WebSocketClient.ID())
case .webSocket(.didOpen):
state.connectivityState = .connected
state.receivedMessages.removeAll()
return .none
}
}
.ifLet(\.$alert, action: \.alert)
}
}
// MARK: - Feature view
struct WebSocketView: View {
@State var store = Store(initialState: WebSocket.State()) {
WebSocket()
}
var body: some View {
WithViewStore(self.store, observe: { $0 }) { viewStore in
Form {
Section {
AboutView(readMe: readMe)
}
Section {
VStack(alignment: .leading) {
Button(
viewStore.connectivityState == .connected
? "Disconnect"
: viewStore.connectivityState == .disconnected
? "Connect"
: "Connecting..."
) {
viewStore.send(.connectButtonTapped)
}
.buttonStyle(.bordered)
.tint(viewStore.connectivityState == .connected ? .red : .green)
HStack {
TextField(
"Type message here",
text: viewStore.binding(get: \.messageToSend, send: { .messageToSendChanged($0) })
)
.textFieldStyle(.roundedBorder)
Button("Send") {
viewStore.send(.sendButtonTapped)
}
.buttonStyle(.borderless)
}
}
}
Section {
Text("Status: \(viewStore.connectivityState.rawValue)")
.foregroundStyle(.secondary)
Text(viewStore.receivedMessages.reversed().joined(separator: "\n"))
} header: {
Text("Received messages")
}
}
.alert(store: self.store.scope(state: \.$alert, action: { .alert($0) }))
.navigationTitle("Web Socket")
}
}
}
// MARK: - WebSocketClient
struct WebSocketClient {
struct ID: Hashable, @unchecked Sendable {
let rawValue: AnyHashable
init<RawValue: Hashable & Sendable>(_ rawValue: RawValue) {
self.rawValue = rawValue
}
init() {
struct RawValue: Hashable, Sendable {}
self.rawValue = RawValue()
}
}
@CasePathable
enum Action {
case didOpen(protocol: String?)
case didClose(code: URLSessionWebSocketTask.CloseCode, reason: Data?)
}
@CasePathable
enum Message: Equatable {
struct Unknown: Error {}
case data(Data)
case string(String)
init(_ message: URLSessionWebSocketTask.Message) throws {
switch message {
case let .data(data): self = .data(data)
case let .string(string): self = .string(string)
@unknown default: throw Unknown()
}
}
}
var open: @Sendable (ID, URL, [String]) async -> AsyncStream<Action>
var receive: @Sendable (ID) async throws -> AsyncStream<Result<Message, Error>>
var send: @Sendable (ID, URLSessionWebSocketTask.Message) async throws -> Void
var sendPing: @Sendable (ID) async throws -> Void
}
extension WebSocketClient: DependencyKey {
static var liveValue: Self {
return Self(
open: { await WebSocketActor.shared.open(id: $0, url: $1, protocols: $2) },
receive: { try await WebSocketActor.shared.receive(id: $0) },
send: { try await WebSocketActor.shared.send(id: $0, message: $1) },
sendPing: { try await WebSocketActor.shared.sendPing(id: $0) }
)
final actor WebSocketActor: GlobalActor {
final class Delegate: NSObject, URLSessionWebSocketDelegate {
var continuation: AsyncStream<Action>.Continuation?
func urlSession(
_: URLSession,
webSocketTask _: URLSessionWebSocketTask,
didOpenWithProtocol protocol: String?
) {
self.continuation?.yield(.didOpen(protocol: `protocol`))
}
func urlSession(
_: URLSession,
webSocketTask _: URLSessionWebSocketTask,
didCloseWith closeCode: URLSessionWebSocketTask.CloseCode,
reason: Data?
) {
self.continuation?.yield(.didClose(code: closeCode, reason: reason))
self.continuation?.finish()
}
}
typealias Dependencies = (socket: URLSessionWebSocketTask, delegate: Delegate)
static let shared = WebSocketActor()
var dependencies: [ID: Dependencies] = [:]
func open(id: ID, url: URL, protocols: [String]) -> AsyncStream<Action> {
let delegate = Delegate()
let session = URLSession(configuration: .default, delegate: delegate, delegateQueue: nil)
let socket = session.webSocketTask(with: url, protocols: protocols)
defer { socket.resume() }
var continuation: AsyncStream<Action>.Continuation!
let stream = AsyncStream<Action> {
$0.onTermination = { _ in
socket.cancel()
Task { await self.removeDependencies(id: id) }
}
continuation = $0
}
delegate.continuation = continuation
self.dependencies[id] = (socket, delegate)
return stream
}
func close(
id: ID, with closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?
) async throws {
defer { self.dependencies[id] = nil }
try self.socket(id: id).cancel(with: closeCode, reason: reason)
}
func receive(id: ID) throws -> AsyncStream<Result<Message, Error>> {
let socket = try self.socket(id: id)
return AsyncStream { continuation in
let task = Task {
while !Task.isCancelled {
continuation.yield(await Result { try await Message(socket.receive()) })
}
continuation.finish()
}
continuation.onTermination = { _ in task.cancel() }
}
}
func send(id: ID, message: URLSessionWebSocketTask.Message) async throws {
try await self.socket(id: id).send(message)
}
func sendPing(id: ID) async throws {
let socket = try self.socket(id: id)
return try await withCheckedThrowingContinuation { continuation in
socket.sendPing { error in
if let error = error {
continuation.resume(throwing: error)
} else {
continuation.resume()
}
}
}
}
private func socket(id: ID) throws -> URLSessionWebSocketTask {
guard let dependencies = self.dependencies[id]?.socket else {
struct Closed: Error {}
throw Closed()
}
return dependencies
}
private func removeDependencies(id: ID) {
self.dependencies[id] = nil
}
}
}
static let testValue = Self(
open: unimplemented("\(Self.self).open", placeholder: AsyncStream.never),
receive: unimplemented("\(Self.self).receive"),
send: unimplemented("\(Self.self).send"),
sendPing: unimplemented("\(Self.self).sendPing")
)
}
extension DependencyValues {
var webSocket: WebSocketClient {
get { self[WebSocketClient.self] }
set { self[WebSocketClient.self] = newValue }
}
}
// MARK: - SwiftUI previews
struct WebSocketView_Previews: PreviewProvider {
static var previews: some View {
NavigationView {
WebSocketView(
store: Store(initialState: WebSocket.State(receivedMessages: ["Hi"])) {
WebSocket()
}
)
}
}
}