Build Information
Failed to build Glider, reference main (c93275
), with Swift 6.1 for Linux on 28 Apr 2025 07:47:22 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
138 | userInfo: nil,
139 | repeats: true)
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:112:57: error: cannot find 'Darwin' in scope
110 |
111 | /// POSIX stream.
112 | public var stream: UnsafeMutablePointer<FILE> = Darwin.stdout
| `- error: cannot find 'Darwin' in scope
113 |
114 | /// Formatter used to transform a payload into a string.
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:63:25: error: cannot find 'Darwin' in scope
61 | queue: DispatchQueue = DispatchQueue(label: "Glider.\(UUID().uuidString)")) -> POSIXStreamTransport {
62 | POSIXStreamTransport {
63 | $0.stream = Darwin.stdout
| `- error: cannot find 'Darwin' in scope
64 | $0.queue = queue
65 | $0.formatters = formatters
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:77:25: error: cannot find 'Darwin' in scope
75 | queue: DispatchQueue = DispatchQueue(label: "Glider.\(UUID().uuidString)")) -> POSIXStreamTransport {
76 | POSIXStreamTransport {
77 | $0.stream = Darwin.stderr
| `- error: cannot find 'Darwin' in scope
78 | $0.queue = queue
79 | $0.formatters = formatters
[48/96] Compiling Glider POSIXStreamTransport.swift
/host/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift:116:45: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
110 | /// - Returns:`(@escaping () -> Void) -> Void`
111 | private func dispatcherForQueue(_ queue: DispatchQueue, synchronous: Bool) -> (@escaping () -> Void) -> Void {
112 | let dispatcher: (@escaping () -> Void) -> Void = { block in
| `- note: parameter 'block' is implicitly non-sendable
113 | if synchronous {
114 | return queue.sync(execute: block)
115 | } else {
116 | return queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
117 | }
118 | }
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/AsyncTransport.swift:179:6: error: Objective-C interoperability is disabled
177 | }
178 |
179 | @objc
| `- error: Objective-C interoperability is disabled
180 | private func tick() {
181 | queue.async {
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/AsyncTransport.swift:168:37: error: '#selector' can only be used with the Objective-C runtime
166 | let timer = Timer(timeInterval: flushInterval,
167 | target: self,
168 | selector: #selector(tick),
| `- error: '#selector' can only be used with the Objective-C runtime
169 | userInfo: nil,
170 | repeats: true)
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/ThrottledTransport.swift:149:6: error: Objective-C interoperability is disabled
147 |
148 | /// Called by timer.
149 | @objc
| `- error: Objective-C interoperability is disabled
150 | private func tick() {
151 | self.lastFlushDate = Date()
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/ThrottledTransport.swift:137:37: error: '#selector' can only be used with the Objective-C runtime
135 | let timer = Timer(timeInterval: flushInterval,
136 | target: self,
137 | selector: #selector(tick),
| `- error: '#selector' can only be used with the Objective-C runtime
138 | userInfo: nil,
139 | repeats: true)
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:112:57: error: cannot find 'Darwin' in scope
110 |
111 | /// POSIX stream.
112 | public var stream: UnsafeMutablePointer<FILE> = Darwin.stdout
| `- error: cannot find 'Darwin' in scope
113 |
114 | /// Formatter used to transform a payload into a string.
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:63:25: error: cannot find 'Darwin' in scope
61 | queue: DispatchQueue = DispatchQueue(label: "Glider.\(UUID().uuidString)")) -> POSIXStreamTransport {
62 | POSIXStreamTransport {
63 | $0.stream = Darwin.stdout
| `- error: cannot find 'Darwin' in scope
64 | $0.queue = queue
65 | $0.formatters = formatters
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:77:25: error: cannot find 'Darwin' in scope
75 | queue: DispatchQueue = DispatchQueue(label: "Glider.\(UUID().uuidString)")) -> POSIXStreamTransport {
76 | POSIXStreamTransport {
77 | $0.stream = Darwin.stderr
| `- error: cannot find 'Darwin' in scope
78 | $0.queue = queue
79 | $0.formatters = formatters
[49/96] Compiling Glider StdStreamsTransport.swift
/host/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift:116:45: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
110 | /// - Returns:`(@escaping () -> Void) -> Void`
111 | private func dispatcherForQueue(_ queue: DispatchQueue, synchronous: Bool) -> (@escaping () -> Void) -> Void {
112 | let dispatcher: (@escaping () -> Void) -> Void = { block in
| `- note: parameter 'block' is implicitly non-sendable
113 | if synchronous {
114 | return queue.sync(execute: block)
115 | } else {
116 | return queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
117 | }
118 | }
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/AsyncTransport.swift:179:6: error: Objective-C interoperability is disabled
177 | }
178 |
179 | @objc
| `- error: Objective-C interoperability is disabled
180 | private func tick() {
181 | queue.async {
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/AsyncTransport.swift:168:37: error: '#selector' can only be used with the Objective-C runtime
166 | let timer = Timer(timeInterval: flushInterval,
167 | target: self,
168 | selector: #selector(tick),
| `- error: '#selector' can only be used with the Objective-C runtime
169 | userInfo: nil,
170 | repeats: true)
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/ThrottledTransport.swift:149:6: error: Objective-C interoperability is disabled
147 |
148 | /// Called by timer.
149 | @objc
| `- error: Objective-C interoperability is disabled
150 | private func tick() {
151 | self.lastFlushDate = Date()
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/ThrottledTransport.swift:137:37: error: '#selector' can only be used with the Objective-C runtime
135 | let timer = Timer(timeInterval: flushInterval,
136 | target: self,
137 | selector: #selector(tick),
| `- error: '#selector' can only be used with the Objective-C runtime
138 | userInfo: nil,
139 | repeats: true)
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:112:57: error: cannot find 'Darwin' in scope
110 |
111 | /// POSIX stream.
112 | public var stream: UnsafeMutablePointer<FILE> = Darwin.stdout
| `- error: cannot find 'Darwin' in scope
113 |
114 | /// Formatter used to transform a payload into a string.
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:63:25: error: cannot find 'Darwin' in scope
61 | queue: DispatchQueue = DispatchQueue(label: "Glider.\(UUID().uuidString)")) -> POSIXStreamTransport {
62 | POSIXStreamTransport {
63 | $0.stream = Darwin.stdout
| `- error: cannot find 'Darwin' in scope
64 | $0.queue = queue
65 | $0.formatters = formatters
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:77:25: error: cannot find 'Darwin' in scope
75 | queue: DispatchQueue = DispatchQueue(label: "Glider.\(UUID().uuidString)")) -> POSIXStreamTransport {
76 | POSIXStreamTransport {
77 | $0.stream = Darwin.stderr
| `- error: cannot find 'Darwin' in scope
78 | $0.queue = queue
79 | $0.formatters = formatters
[50/96] Emitting module Glider
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
149 | // MARK: - CGSize
150 |
151 | extension CGSize: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
152 |
153 | public var description: String {
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:54:39: error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
52 | case fixed(precision: Int)
53 | case formatter(formatter: Formatter)
54 | case measure(unit: Unit, options: MeasurementFormatter.UnitOptions, style: Formatter.UnitStyle = .short)
| `- error: 'MeasurementFormatter' is unavailable: Not supported in swift-corelibs-foundation
55 | case currency(symbol: String?, usesGroupingSeparator: Bool = true)
56 | case bytes(style: ByteCountFormatter.CountStyle)
Foundation.MeasurementFormatter:2:12: note: 'MeasurementFormatter' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "Not supported in swift-corelibs-foundation")
2 | open class MeasurementFormatter : Formatter, NSSecureCoding {
| `- note: 'MeasurementFormatter' has been explicitly marked unavailable here
3 | public struct UnitOptions : OptionSet, Sendable {
4 | public private(set) var rawValue: UInt { get }
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:9: error: cannot find 'pthread_threadid_np' in scope
57 | public lazy var threadID: UInt64 = {
58 | var threadID: UInt64 = 0
59 | pthread_threadid_np(nil, &threadID)
| `- error: cannot find 'pthread_threadid_np' in scope
60 | return threadID
61 | }()
/host/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:59:29: error: 'nil' requires a contextual type
57 | public lazy var threadID: UInt64 = {
58 | var threadID: UInt64 = 0
59 | pthread_threadid_np(nil, &threadID)
| `- error: 'nil' requires a contextual type
60 | return threadID
61 | }()
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/AsyncTransport.swift:179:6: error: Objective-C interoperability is disabled
177 | }
178 |
179 | @objc
| `- error: Objective-C interoperability is disabled
180 | private func tick() {
181 | queue.async {
/host/spi-builder-workspace/Glider/Sources/Transports/Base Transports/ThrottledTransport.swift:149:6: error: Objective-C interoperability is disabled
147 |
148 | /// Called by timer.
149 | @objc
| `- error: Objective-C interoperability is disabled
150 | private func tick() {
151 | self.lastFlushDate = Date()
/host/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift:112:57: error: cannot find 'Darwin' in scope
110 |
111 | /// POSIX stream.
112 | public var stream: UnsafeMutablePointer<FILE> = Darwin.stdout
| `- error: cannot find 'Darwin' in scope
113 |
114 | /// Formatter used to transform a payload into a string.
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransport.swift:163:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 | /// URL Session used to send data.
162 | /// By default `.default` is used
163 | public var urlSession: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
164 |
165 | /// Formatters set.
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift:30:28: error: cannot find type 'URLRequest' in scope
28 |
29 | /// URLRequest to execute.
30 | public let urlRequest: URLRequest
| `- error: cannot find type 'URLRequest' in scope
31 |
32 | /// Configuration
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift:49:29: error: cannot find type 'URLRequest' in scope
47 | /// - urlRequest: url request to execute.
48 | /// - builder: builder function to customize the call.
49 | public init(urlRequest: URLRequest, _ builder: ((inout Configuration) -> Void)? = nil) {
| `- error: cannot find type 'URLRequest' in scope
50 | self.configuration = Configuration(builder)
51 | self.urlRequest = urlRequest
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift:127:30: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
125 | case `internal`(Swift.Error)
126 | case noResponse
127 | case invalidResponse(URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
128 | case emptyResponse(HTTPURLResponse)
129 | case httpError(HTTPURLResponse, Data?)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift:128:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
126 | case noResponse
127 | case invalidResponse(URLResponse)
128 | case emptyResponse(HTTPURLResponse)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
129 | case httpError(HTTPURLResponse, Data?)
130 | }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift:129:24: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
127 | case invalidResponse(URLResponse)
128 | case emptyResponse(HTTPURLResponse)
129 | case httpError(HTTPURLResponse, Data?)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
130 | }
131 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift:19:14: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
17 |
18 | /// This class allows subclasses in order to make an async Operation.
19 | public class AsyncOperation: Operation {
| `- warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
20 |
21 | /// Identifier of the operation.
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift:18:20: warning: class 'AsyncURLRequestOperation' must restate inherited '@unchecked Sendable' conformance
16 | import Foundation
17 |
18 | public final class AsyncURLRequestOperation: AsyncOperation {
| `- warning: class 'AsyncURLRequestOperation' must restate inherited '@unchecked Sendable' conformance
19 | public typealias Response = Result<Data, Error>
20 | typealias Callback = ((Response) -> Void)
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift:17:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
15 | // MARK: - Public Functions
16 |
17 | extension URLSession {
| `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
18 |
19 | /// Execute the `URLSessionDataTask` which is part of the request, then call validate on it where we can decide if we need to retry or not.
/host/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift:40:9: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
38 | }
39 |
40 | private extension URLSession {
| `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
41 |
42 | /// Process results of `URLSessionDataTask` and converts it into `DataResult` instance
/host/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:47:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
45 |
46 | /// URLSession to use.
47 | private var session: URLSession?
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
48 |
49 | /// Session delegate.
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:287:57: error: cannot find type 'URLSessionDelegate' in scope
285 | extension LogstashTransport {
286 |
287 | private class LogstashURLSessionDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionStreamDelegate {
| `- error: cannot find type 'URLSessionDelegate' in scope
288 |
289 | // MARK: - Private Properties
/host/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:287:77: error: cannot find type 'URLSessionTaskDelegate' in scope
285 | extension LogstashTransport {
286 |
287 | private class LogstashURLSessionDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionStreamDelegate {
| `- error: cannot find type 'URLSessionTaskDelegate' in scope
288 |
289 | // MARK: - Private Properties
/host/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:287:101: error: cannot find type 'URLSessionStreamDelegate' in scope
285 | extension LogstashTransport {
286 |
287 | private class LogstashURLSessionDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionStreamDelegate {
| `- error: cannot find type 'URLSessionStreamDelegate' in scope
288 |
289 | // MARK: - Private Properties
/host/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:303:66: error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
301 | func urlSession(_ session: URLSession,
302 | didReceive challenge: URLAuthenticationChallenge,
303 | completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
| `- error: 'AuthChallengeDisposition' is not a member type of type 'Foundation.URLSession' (aka 'AnyObject')
304 |
305 | if challenge.protectionSpace.host == transport?.configuration.host,
/host/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:301:36: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
299 | }
300 |
301 | func urlSession(_ session: URLSession,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
302 | didReceive challenge: URLAuthenticationChallenge,
303 | completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:302:47: error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
300 |
301 | func urlSession(_ session: URLSession,
302 | didReceive challenge: URLAuthenticationChallenge,
| `- error: 'URLAuthenticationChallenge' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
303 | completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
304 |
Foundation.URLAuthenticationChallenge:2:18: note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLAuthenticationChallenge = AnyObject
| `- note: 'URLAuthenticationChallenge' has been explicitly marked unavailable here
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport+Config.swift:19:11: error: cannot find type 'RemoteTransport' in scope
17 |
18 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
19 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
20 |
21 | /// Represent the configuration settings used to create a new `RemoteTransport` instance.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift:19:11: error: cannot find type 'RemoteTransportServer' in scope
17 |
18 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
19 | extension RemoteTransportServer {
| `- error: cannot find type 'RemoteTransportServer' in scope
20 |
21 | /// Identify a client connected to the server.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift:139:11: error: cannot find type 'RemoteTransportServer' in scope
137 |
138 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
139 | extension RemoteTransportServer {
| `- error: cannot find type 'RemoteTransportServer' in scope
140 |
141 | public struct ClientId: Hashable {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[51/96] Compiling Glider BonjourPublisher.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[52/96] Compiling Glider NetService+Extensions.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[53/96] Compiling Glider WebSocketClient.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[54/96] Compiling Glider WebSocketClientDelegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[55/96] Compiling Glider WebSocketPeer.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[56/96] Compiling Glider WebSocketServer.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[57/96] Compiling Glider WebSocketServerDelegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[58/96] Compiling Glider WebSocketTransportClient.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[59/96] Compiling Glider WebSocketTransportClientDelegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[60/96] Compiling Glider WebSocketTransportServer.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[61/96] Compiling Glider WebSocketTransportServerDelegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: cannot find type 'NetService' in scope
39 |
40 | /// NetService used to publish services over bonjour.
41 | private var netService: NetService
| `- error: cannot find type 'NetService' in scope
42 |
43 | /// Delegate.
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: cannot find type 'NetService' in scope
91 | /// - options: options.
92 | /// - success: success handler.
93 | public func start(options: NetService.Options = [.listenForConnections],
| `- error: cannot find type 'NetService' in scope
94 | success: ((Bool) -> Void)? = nil) {
95 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: cannot find type 'NetServiceDelegate' in scope
116 |
117 | /// This class is used only to incapsulate the objective-c requirements of the NetServiceDelegate.
118 | private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
| `- error: cannot find type 'NetServiceDelegate' in scope
119 | weak var server: BonjourPublisher?
120 |
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: cannot find type 'NetService' in scope
125 | }
126 |
127 | func netServiceDidPublish(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
128 | server?.started = true
129 | delegate?.bonjourPublisherDidStart(server!)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: cannot find type 'NetService' in scope
130 | }
131 |
132 | func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
| `- error: cannot find type 'NetService' in scope
133 | server?.started = false
134 | let error = GliderError(message: errorDict.description)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: cannot find type 'NetService' in scope
136 | }
137 |
138 | func netServiceDidStop(_ sender: NetService) {
| `- error: cannot find type 'NetService' in scope
139 | server?.started = false
140 | delegate?.bonjourPublisher(server!, didStopWithError: nil)
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:74:22: error: cannot find 'NetService' in scope
72 | self.configuration = cfg
73 |
74 | netService = NetService(domain: cfg.domain, type: cfg.type.description, name: cfg.name, port: cfg.port)
| `- error: cannot find 'NetService' in scope
75 | objectDelegate = BonjourPublisherObjectDelegate()
76 | objectDelegate?.server = self
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:103:52: error: cannot infer contextual base in reference to member 'default'
101 |
102 | successCallback = success
103 | netService.schedule(in: runLoop, forMode: .default)
| `- error: cannot infer contextual base in reference to member 'default'
104 | netService.publish(options: options)
105 | // runLoop.run()
/host/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: cannot find type 'NetService' in scope
16 | import Foundation
17 |
18 | internal extension NetService {
| `- error: cannot find type 'NetService' in scope
19 |
20 | class func dictionary(fromTXTRecord data: Data) -> [String: String] {
[62/96] Compiling Glider Configuration.swift
[63/96] Compiling Glider EventMessageFormatter.swift
[64/96] Compiling Glider FieldsFormatter+Field.swift
[65/96] Compiling Glider FieldsFormatter.swift
[66/96] Compiling Glider JSONFormatter.swift
[67/96] Compiling Glider MsgPackFormatter.swift
[68/96] Compiling Glider DataStream.swift
[69/96] Compiling Glider FlatValue.swift
[70/96] Compiling Glider Reader+Optionals.swift
[71/96] Compiling Glider Reader.swift
[72/96] Compiling Glider Types.swift
[73/96] Compiling Glider Writer+Optionals.swift
[74/96] Compiling Glider Writer.swift
[75/96] Compiling Glider OSLogFormatter.swift
[76/96] Compiling Glider SysLogFormatter.swift
[77/96] Compiling Glider SysLogPayload.swift
[78/96] Compiling Glider ASCIITable+Borders.swift
[79/96] Compiling Glider ASCIITable+Rendering.swift
[80/96] Compiling Glider ASCIITable.swift
[81/96] Compiling Glider TableFormatter.swift
[82/96] Compiling Glider TerminalFormatter+Colorize.swift
[83/96] Compiling Glider TerminalFormatter.swift
[84/96] Compiling Glider XCodeFormatter+Colorize.swift
[85/96] Compiling Glider XCodeFormatter.swift
[86/96] Compiling Glider RemoteTransportServerDelegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[87/96] Compiling Glider Network+Extension.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[88/96] Compiling Glider RemoteTransportConnection.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[89/96] Compiling Glider RemoteTransportPackets.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[90/96] Compiling Glider SQLiteTransport+Delegate.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[91/96] Compiling Glider SQLiteTransport.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[92/96] Compiling Glider SQLite+Statement.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[93/96] Compiling Glider SQLiteDb+Additions.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[94/96] Compiling Glider SQLiteDb+Support.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[95/96] Compiling Glider SQLiteDb.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
[96/96] Compiling Glider BonjourPublisher+Configuration.swift
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:25:11: error: cannot find type 'RemoteTransport' in scope
23 |
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
25 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
26 |
27 | /// Packet presets code.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:49:15: error: cannot find type 'RemoteTransport' in scope
47 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
48 | public protocol RemoteTransportPacket {
49 | var code: RemoteTransport.PacketCode { get }
| `- error: cannot find type 'RemoteTransport' in scope
50 |
51 | /// Encode the packet content.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:60:34: error: cannot find type 'RemoteTransport' in scope
58 | /// - Parameter data: data to decode.
59 | /// - Returns: `Self?`
60 | static func decode(_ packet: RemoteTransport.RawPacket) throws -> Self?
| `- error: cannot find type 'RemoteTransport' in scope
61 |
62 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:65:11: error: cannot find type 'RemoteTransport' in scope
63 |
64 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
65 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
66 |
67 | /// The following packet encapsulate the logic of a `Glider.Event`.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:225:11: error: cannot find type 'RemoteTransport' in scope
223 |
224 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, macCatalyst 13.0, *)
225 | extension RemoteTransport {
| `- error: cannot find type 'RemoteTransport' in scope
226 |
227 | // MARK: - RemoteEvent
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:198:43: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
196 | internal var flag: Int32 {
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:199:53: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
197 | switch self {
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN' in scope
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:200:61: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
198 | case .protectComplete: return SQLITE_OPEN_FILEPROTECTION_COMPLETE
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION' in scope
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
202 | }
/host/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:201:32: error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
199 | case .protectCompleteUnlessOpen: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNLESSOPEN
200 | case .protectCompleteUntilFirstUserAuth: return SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
201 | case .none: return SQLITE_OPEN_FILEPROTECTION_NONE
| `- error: cannot find 'SQLITE_OPEN_FILEPROTECTION_NONE' in scope
202 | }
203 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:71:26: error: cannot find type 'RemoteTransport' in scope
69 |
70 | /// The packet code.
71 | public var code: RemoteTransport.PacketCode = .message
| `- error: cannot find type 'RemoteTransport' in scope
72 |
73 | /// Event stored.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:82: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:91:45: error: cannot find type 'RemoteTransport' in scope
89 | }
90 |
91 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEvent? {
| `- error: cannot find type 'RemoteTransport' in scope
92 | guard let code = PacketCode(rawValue: packet.code),
93 | code == .message else {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:106:26: error: cannot find type 'RemoteTransport' in scope
104 | public struct PacketEmpty: RemoteTransportPacket {
105 |
106 | public let code: RemoteTransport.PacketCode
| `- error: cannot find type 'RemoteTransport' in scope
107 |
108 | public init(code: RemoteTransport.PacketCode) {
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:108:27: error: cannot find type 'RemoteTransport' in scope
106 | public let code: RemoteTransport.PacketCode
107 |
108 | public init(code: RemoteTransport.PacketCode) {
| `- error: cannot find type 'RemoteTransport' in scope
109 | self.code = code
110 | }
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:82: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:116:45: error: cannot find type 'RemoteTransport' in scope
114 | }
115 |
116 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketEmpty? {
| `- error: cannot find type 'RemoteTransport' in scope
117 | guard let code = PacketCode(rawValue: packet.code) else {
118 | throw GliderError(message: "Unknown code for event")
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:194:26: error: cannot find type 'RemoteTransport' in scope
192 |
193 | /// Code of the message.
194 | public let code: RemoteTransport.PacketCode = .clientHello
| `- error: cannot find type 'RemoteTransport' in scope
195 |
196 | /// Data encoded.
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:83: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:215:45: error: cannot find type 'RemoteTransport' in scope
213 | }
214 |
215 | public static func decode(_ packet: RemoteTransport.RawPacket) throws -> RemoteTransport.PacketHello? {
| `- error: cannot find type 'RemoteTransport' in scope
216 | let data = try JSONDecoder().decode(Info.self, from: packet.body)
217 | return .init(info: data)
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:234:21: error: cannot find type 'RawPacket' in scope
232 | /// - `completed`: when closing a connection.
233 | public enum RemoteEvent {
234 | case packet(RawPacket)
| `- error: cannot find type 'RawPacket' in scope
235 | case error(Error)
236 | case completed
/host/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:251:34: error: cannot find type 'RemoteTransport' in scope
249 |
250 | /// Readable control code
251 | public var readableCode: RemoteTransport.PacketCode? {
| `- error: cannot find type 'RemoteTransport' in scope
252 | .init(rawValue: code)
253 | }
BUILD FAILURE 6.1 linux