1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2021-2022 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
//
//===----------------------------------------------------------------------===//
import Foundation
/// A message that the host can send to the plugin, including definitions of the corresponding serializable data structures.
enum HostToPluginMessage: Codable {
/// The host requests that the plugin create build commands (corresponding to a `.buildTool` capability) for a target in the package graph.
case createBuildToolCommands(
context: InputContext,
rootPackageId: InputContext.Package.Id,
targetId: InputContext.Target.Id,
pluginGeneratedSources: [InputContext.URL.Id],
pluginGeneratedResources: [InputContext.URL.Id]
)
/// The host requests that the plugin perform a user command (corresponding to a `.command` capability) on a package in the graph.
case performCommand(context: InputContext, rootPackageId: InputContext.Package.Id, arguments: [String])
struct InputContext: Codable {
let paths: [URL]
let targets: [Target]
let products: [Product]
let packages: [Package]
let pluginWorkDirId: URL.Id
let toolSearchDirIds: [URL.Id]
let accessibleTools: [String: Tool]
// Wrapper struct for encoding information about a tool that's accessible to the plugin.
struct Tool: Codable {
let path: URL.Id
let triples: [String]?
}
/// A single absolute path in the wire structure, represented as a tuple
/// consisting of the ID of the base path and subpath off of that path.
/// This avoids repetition of path components in the wire representation.
struct URL: Codable {
typealias Id = Int
let baseURLId: URL.Id?
let subpath: String
}
/// A package in the wire structure. All references to other entities are
/// their ID numbers.
struct Package: Codable {
typealias Id = Int
let identity: String
let displayName: String
let directoryId: URL.Id
let origin: Origin
let toolsVersion: ToolsVersion
let dependencies: [Dependency]
let productIds: [Product.Id]
let targetIds: [Target.Id]
enum Origin: Codable {
case root
case local(
path: URL.Id)
case repository(
url: String,
displayVersion: String,
scmRevision: String)
case registry(
identity: String,
displayVersion: String)
}
struct ToolsVersion: Codable {
let major: Int
let minor: Int
let patch: Int
}
/// A dependency on a package in the wire structure. All references to
/// other entities are ID numbers.
struct Dependency: Codable {
let packageId: Package.Id
}
}
/// A product in the wire structure. All references to other entities are
/// their ID numbers.
struct Product: Codable {
typealias Id = Int
let name: String
let targetIds: [Target.Id]
let info: ProductInfo
/// Information for each type of product in the wire structure. All
/// references to other entities are their ID numbers.
enum ProductInfo: Codable {
case executable(
mainTargetId: Target.Id)
case library(
kind: LibraryKind)
enum LibraryKind: Codable {
case `static`
case `dynamic`
case automatic
}
}
}
/// A target in the wire structure. All references to other entities are
/// their ID numbers.
struct Target: Codable {
typealias Id = Int
let name: String
let directoryId: URL.Id
let dependencies: [Dependency]
let info: TargetInfo
/// A dependency on either a target or a product in the wire structure.
/// All references to other entities are ID their numbers.
enum Dependency: Codable {
case target(
targetId: Target.Id)
case product(
productId: Product.Id)
}
/// Type-specific information for a target in the wire structure. All
/// references to other entities are their ID numbers.
enum TargetInfo: Codable {
case swiftSourceModuleInfo(
moduleName: String,
kind: SourceModuleKind,
sourceFiles: [File],
compilationConditions: [String],
linkedLibraries: [String],
linkedFrameworks: [String])
case clangSourceModuleInfo(
moduleName: String,
kind: SourceModuleKind,
sourceFiles: [File],
preprocessorDefinitions: [String],
headerSearchPaths: [String],
publicHeadersDirId: URL.Id?,
linkedLibraries: [String],
linkedFrameworks: [String])
case binaryArtifactInfo(
kind: BinaryArtifactKind,
origin: BinaryArtifactOrigin,
artifactId: URL.Id)
case systemLibraryInfo(
pkgConfig: String?,
compilerFlags: [String],
linkerFlags: [String])
struct File: Codable {
let basePathId: URL.Id
let name: String
let type: FileType
enum FileType: String, Codable {
case source
case header
case resource
case unknown
}
}
enum SourceModuleKind: String, Codable {
case generic
case executable
case snippet
case test
case macro
}
enum BinaryArtifactKind: Codable {
case xcframework
case artifactsArchive
}
enum BinaryArtifactOrigin: Codable {
case local
case remote(url: String)
}
}
}
}
/// A response to a request to run a build operation.
case buildOperationResponse(result: BuildResult)
struct BuildResult: Codable {
var succeeded: Bool
var logText: String
var builtArtifacts: [BuiltArtifact]
struct BuiltArtifact: Codable {
var path: URL
var kind: Kind
enum Kind: String, Codable {
case executable
case dynamicLibrary
case staticLibrary
}
}
}
/// A response to a request to run a test operation.
case testOperationResponse(result: TestResult)
struct TestResult: Codable {
var succeeded: Bool
var testTargets: [TestTarget]
var codeCoverageDataFile: String?
struct TestTarget: Codable {
var name: String
var testCases: [TestCase]
struct TestCase: Codable {
var name: String
var tests: [Test]
struct Test: Codable {
var name: String
var result: Result
var duration: Double
enum Result: String, Codable {
case succeeded
case skipped
case failed
}
}
}
}
}
/// A response to a request for symbol graph information for a target.
case symbolGraphResponse(result: SymbolGraphResult)
struct SymbolGraphResult: Codable {
var directoryPath: URL
}
/// A response of an error while trying to complete a request.
case errorResponse(error: String)
}
/// A message that the plugin can send to the host.
enum PluginToHostMessage: Codable {
/// The plugin emits a diagnostic.
case emitDiagnostic(severity: DiagnosticSeverity, message: String, file: String?, line: Int?)
enum DiagnosticSeverity: String, Codable {
case error, warning, remark
}
/// The plugin emits a progress message.
case emitProgress(message: String)
/// The plugin defines a build command.
case defineBuildCommand(configuration: CommandConfiguration, inputFiles: [URL], outputFiles: [URL])
/// The plugin defines a prebuild command.
case definePrebuildCommand(configuration: CommandConfiguration, outputFilesDirectory: URL)
struct CommandConfiguration: Codable {
var version = 2
var displayName: String?
var executable: URL
var arguments: [String]
var environment: [String: String]
var workingDirectory: URL?
}
/// The plugin is requesting that a build operation be run.
case buildOperationRequest(subset: BuildSubset, parameters: BuildParameters)
enum BuildSubset: Codable {
case all(includingTests: Bool)
case product(String)
case target(String)
}
struct BuildParameters: Codable {
var configuration: Configuration
enum Configuration: String, Codable {
case debug, release, inherit
}
var logging: LogVerbosity
enum LogVerbosity: String, Codable {
case concise, verbose, debug
}
var echoLogs: Bool
var otherCFlags: [String]
var otherCxxFlags: [String]
var otherSwiftcFlags: [String]
var otherLinkerFlags: [String]
}
/// The plugin is requesting that a test operation be run.
case testOperationRequest(subset: TestSubset, parameters: TestParameters)
enum TestSubset: Codable {
case all
case filtered([String])
}
struct TestParameters: Codable {
var enableCodeCoverage: Bool
}
/// The plugin is requesting symbol graph information for a given target and set of options.
case symbolGraphRequest(targetName: String, options: SymbolGraphOptions)
struct SymbolGraphOptions: Codable {
var minimumAccessLevel: AccessLevel
enum AccessLevel: String, Codable {
case `private`, `fileprivate`, `internal`, `public`, `open`
}
var includeSynthesized: Bool
var includeSPI: Bool
var emitExtensionBlocks: Bool
}
}
|