-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathDocumentationMessages.swift
82 lines (67 loc) · 3.02 KB
/
DocumentationMessages.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
public import SWBUtil
/// A request to generate information about the documentation that will be built for a given build request.
///
/// For a description of how this feature works, see the `SWBBuildServiceSession.generateDocumentationInfo` documentation.
public struct DocumentationInfoRequest: SessionChannelBuildMessage, RequestMessage, Equatable {
public typealias ResponseMessage = VoidResponse
public static let name = "DOCUMENTATION_INFO_REQUESTED"
/// The identifier for the session to initiate the request in.
public let sessionHandle: String
/// The channel to communicate with the client on.
public let responseChannel: UInt64
/// The request itself.
public let request: BuildRequestMessagePayload
public init(sessionHandle: String, responseChannel: UInt64, request: BuildRequestMessagePayload) {
self.sessionHandle = sessionHandle
self.responseChannel = responseChannel
self.request = request
}
public init(from deserializer: any Deserializer) throws {
try deserializer.beginAggregate(3)
self.sessionHandle = try deserializer.deserialize()
self.responseChannel = try deserializer.deserialize()
self.request = try deserializer.deserialize()
}
public func serialize<T: Serializer>(to serializer: T) {
serializer.serializeAggregate(3) {
serializer.serialize(self.sessionHandle)
serializer.serialize(self.responseChannel)
serializer.serialize(self.request)
}
}
}
/// A response to `DocumentationInfoRequest` with information about the documentation that will be built for the request.
///
/// For a description of how this feature works, see the `SWBBuildServiceSession.generateDocumentationInfo` documentation.
public struct DocumentationInfoResponse: Message, Equatable {
public static let name = "DOCUMENTATION_INFO_RECEIVED"
/// A serialized representation of the payload.
public let output: [DocumentationInfoMessagePayload]
public init(output: [DocumentationInfoMessagePayload]) {
self.output = output
}
public init(from deserializer: any Deserializer) throws {
try deserializer.beginAggregate(1)
self.output = try deserializer.deserialize()
}
public func serialize<T: Serializer>(to serializer: T) {
serializer.serializeAggregate(1) {
serializer.serialize(self.output)
}
}
}
let documentationMessageTypes: [any Message.Type] = [
DocumentationInfoRequest.self,
DocumentationInfoResponse.self,
]