-
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
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
-
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
-
365
-
366
-
367
-
368
-
369
-
370
-
371
-
372
-
373
-
374
-
375
-
376
-
377
-
378
-
379
-
380
-
381
-
382
-
383
-
384
-
385
-
386
-
387
-
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
-
396
-
397
-
398
-
399
-
400
-
401
-
402
// Copyright 2025 Shota FUJI
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
import OSLog
import RoonKit
import SwiftUI
struct ServerDiscoveryScreen: View {
@State private var servers: [RoonKit.Server] = []
@State private var status: DiscoveryStatus = .loading
var onConnectAction: ((RoonKit.Server) -> Void)?
private let logger = Logger()
var body: some View {
PureView(
servers: servers,
status: status,
onScan: {
Task {
await scan()
}
}
)
.onConnect { server in
onConnectAction?(server)
}
.task {
await scan()
}
}
private func scan() async {
status = .loading
do {
servers = try await RoonKit.Server.list()
status = .loaded
} catch {
status = .failed(error)
}
}
}
extension ServerDiscoveryScreen {
func onConnect(_ handler: @escaping (RoonKit.Server) -> Void)
-> ServerDiscoveryScreen
{
var new = self
new.onConnectAction = handler
return new
}
}
private enum DiscoveryStatus {
case loading
case loaded
case failed(any Error)
}
private struct PureView: View {
var servers: [RoonKit.Server]
var status: DiscoveryStatus
var onConnectAction: ((RoonKit.Server) -> Void)?
var onScan: (() -> Void)? = nil
@ScaledMetric private var lineSpace = 12
private var busy: Bool {
switch status {
case .loading:
true
default:
false
}
}
var body: some View {
NavigationSplitView {
List(servers) { server in
NavigationLink {
VStack(alignment: .leading, spacing: lineSpace) {
HStack {
Text(server.name)
.font(.title)
Spacer()
Button {
onConnectAction?(server)
} label: {
Text(
String(
localized:
"ServerDiscovery.Open",
defaultValue:
"Open",
comment:
"Label for a button that starts a connection."
)
)
}
.buttonStyle(.borderedProminent)
}
VStack(alignment: .leading) {
Text(
String(
localized:
"ServerDiscovery.Version",
defaultValue: "Version",
comment:
"A label for server version field."
)
)
.font(.headline)
Text(server.version)
.font(.subheadline)
}
VStack(alignment: .leading) {
Text(
String(
localized:
"ServerDiscovery.Host",
defaultValue: "IP Address",
comment:
"A label for server host field."
)
)
.font(.headline)
Text(
verbatim:
"\(server.host):\(String(server.port, radix: 10))"
)
.font(.subheadline)
}
Spacer()
}
.padding()
} label: {
Text(server.name)
}
}
.navigationTitle(
Text(
String(
localized: "ServerDiscovery.Title",
defaultValue: "Servers",
comment:
"Title of server discovery scene. Not visible on macOS."
)
)
)
.toolbar {
ToolbarItem(placement: .navigation) {
Button {
if let onScan = onScan {
onScan()
}
} label: {
Label {
Text(
String(
localized:
"ServerDiscovery.Refresh",
defaultValue: "Refresh",
comment:
"Icon label for refresh button."
)
)
} icon: {
Image(
systemName:
"arrow.trianglehead.clockwise"
)
}
}
.help(
Text(
String(
localized:
"ServerDiscovery.RefreshHelp",
defaultValue: "Refresh server list",
comment:
"Help tooltip text for refresh button."
)
)
)
.disabled(busy)
}
}
} detail: {
switch status {
case .loading:
ContentUnavailableView {
Label {
Text(
String(
localized:
"ServerDiscovery.Loading.Heading",
defaultValue: "Scanning"
)
)
} icon: {
Image(systemName: "waveform.badge.magnifyingglass")
}
.symbolEffect(.variableColor)
} description: {
Text(
String(
localized:
"ServerDiscovery.Loading.Description",
defaultValue:
"Scanning Roon servers on local network."
)
)
}
case .loaded:
if servers.isEmpty {
ContentUnavailableView {
Label {
Text(
String(
localized:
"ServerDiscovery.Empty.Heading",
defaultValue:
"No server found"
)
)
} icon: {
Image(systemName: "square.dashed")
}
} description: {
Text(
String(
localized:
"ServerDiscovery.Empty.Description",
defaultValue:
"No Roon server found on local network."
)
)
}
} else {
Text(
String(
localized: "ServerDiscovery.Placeholder",
defaultValue: "Select server from list",
comment:
"Placeholder text for server details view."
)
)
}
case .failed(let error):
switch error {
case RoonKit.ServerLookupError.socketError(_),
RoonKit.ServerLookupError.connectionClosed:
ContentUnavailableView {
Label {
Text(
String(
localized:
"ServerDiscovery.NetworkError.Heading",
defaultValue: "Scan failed"
)
)
} icon: {
Image(systemName: "wifi.exclamationmark")
}
} description: {
Text(
String(
localized:
"ServerDiscovery.NetworkError.Description",
defaultValue:
"Failed to scan Roon servers due to network error."
)
)
}
default:
ContentUnavailableView {
Label {
Text(
String(
localized:
"ServerDiscovery.Error.Heading",
defaultValue: "Scan failed"
)
)
} icon: {
Image(
systemName:
"exclamationmark.magnifyingglass"
)
}
} description: {
Text(
String(
localized:
"ServerDiscovery.Error.Description",
defaultValue:
"An error occurred during a scan."
)
)
}
}
}
}
}
}
extension PureView {
func onConnect(_ handler: @escaping (RoonKit.Server) -> Void)
-> PureView
{
var new = self
new.onConnectAction = handler
return new
}
}
// MARK: - Preview
#Preview("Loaded") {
let logger = Logger()
let servers: [RoonKit.Server] = [
.init(
id: "foo",
name: "Foo",
version: "foo-0.0",
host: "192.0.2.10",
port: 9003
),
.init(
id: "bar",
name: "Bar",
version: "bar-0.0",
host: "198.51.100.8",
port: 9003
),
.init(
id: "baz",
name: "Baz",
version: "baz-0.0",
host: "203.0.113.100",
port: 8000
),
]
PureView(servers: servers, status: .loaded)
.refreshable {
logger.debug("ServerDiscoverySceneList.refreshable")
}
}
#Preview("No servers") {
PureView(servers: [], status: .loaded)
}
#Preview("Loading") {
PureView(servers: [], status: .loading)
}
#Preview("SocketError") {
PureView(
servers: [],
status: .failed(
RoonKit.ServerLookupError.socketError(
RoonKit.SocketError.failedToGetDescriptor
)
)
)
}
private enum MockUnknownError: Error {
case doNotUseThisInApplicationCode
}
#Preview("Unknown error") {
PureView(
servers: [],
status: .failed(MockUnknownError.doNotUseThisInApplicationCode)
)
}