mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
55 lines
1.8 KiB
Swift
55 lines
1.8 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2024 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// Defines the batch size for target preparation.
|
|
///
|
|
/// If nil, SourceKit-LSP will default to preparing 1 target at a time.
|
|
///
|
|
/// - discriminator: strategy
|
|
public enum PreparationBatchingStrategy: Sendable, Equatable {
|
|
/// Prepare a fixed number of targets in a single batch.
|
|
///
|
|
/// `batchSize`: The number of targets to prepare in each batch.
|
|
case fixedTargetBatchSize(batchSize: Int)
|
|
}
|
|
|
|
extension PreparationBatchingStrategy: Codable {
|
|
private enum CodingKeys: String, CodingKey {
|
|
case strategy
|
|
case batchSize
|
|
}
|
|
|
|
private enum StrategyValue: String, Codable {
|
|
case fixedTargetBatchSize
|
|
}
|
|
|
|
public init(from decoder: any Decoder) throws {
|
|
let container = try decoder.container(keyedBy: CodingKeys.self)
|
|
let strategy = try container.decode(StrategyValue.self, forKey: .strategy)
|
|
|
|
switch strategy {
|
|
case .fixedTargetBatchSize:
|
|
let batchSize = try container.decode(Int.self, forKey: .batchSize)
|
|
self = .fixedTargetBatchSize(batchSize: batchSize)
|
|
}
|
|
}
|
|
|
|
public func encode(to encoder: any Encoder) throws {
|
|
var container = encoder.container(keyedBy: CodingKeys.self)
|
|
switch self {
|
|
case .fixedTargetBatchSize(let batchSize):
|
|
try container.encode(StrategyValue.fixedTargetBatchSize, forKey: .strategy)
|
|
try container.encode(batchSize, forKey: .batchSize)
|
|
}
|
|
}
|
|
}
|