-
Notifications
You must be signed in to change notification settings - Fork 49
/
XCHammerConfig.swift
250 lines (211 loc) · 9.13 KB
/
XCHammerConfig.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
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
// Copyright 2018-present, Pinterest, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import Foundation
import PathKit
/// Xcode Scheme configuration for each target.
///
/// @note in some conditions, it's useful to setup different runtime
/// configurations for a target with the Xcode GUI. Consider that these options
/// will not apply to Bazel command line invocations. At the time of writing,
/// there is no general primitives to express runtime arguments or env in Bazel
/// in Bazel.
///
/// @note this data type _follows_ the format of XcodeGen's Target Scheme
/// https://github.com/yonaskolb/XcodeGen/blob/master/Docs/ProjectSpec.md#target-scheme
public struct XCHammerSchemeActionConfig: Codable {
public struct ExecutionAction: Codable, Equatable {
public let script: String
public let name: String
public let settingsTarget: String?
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
script = try container.decode(String.self, forKey: .script)
name = try container.decodeIfPresent(String.self, forKey: .name) ?? "Run Script"
settingsTarget = try container.decodeIfPresent(String.self, forKey: .settingsTarget)
}
}
public struct EnvironmentVariable: Codable, Equatable {
public let variable: String
public let value: String
public let enabled: Bool
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
variable = try container.decode(String.self, forKey: .variable)
value = try container.decode(String.self, forKey: .value)
enabled = try container.decodeIfPresent(Bool.self, forKey: .enabled) ?? true
}
}
/// Scheme runtime command line arguments for each target
public let commandLineArguments: [String: Bool]?
/// Scheme runtime environment Variables for each target
public let environmentVariables: [XCHammerSchemeActionConfig.EnvironmentVariable]?
/// Xcode Scheme Pre-Actions
public let preActions: [ExecutionAction]?
/// Xcode Scheme Post-Actions
public let postActions: [ExecutionAction]?
}
/// The type of a scheme action.
public enum SchemeActionType: String, Codable, Equatable {
case build = "Build"
case run = "Run"
case test = "Test"
case profile = "Profile"
case archive = "Archive"
}
public struct XCHammerTargetConfig: Codable {
/// Meta scheme configuration keyed by the action type
/// @note Defaults are empty otherwise.
public let schemeConfig: [String /*SchemeActionType*/ : XCHammerSchemeActionConfig]?
/// Bazel Target options
/// Options passed to `bazel build`.
let buildBazelOptions: String?
/// Options passed to `bazel` itself. This applies to any subcommand.
let buildBazelStartupOptions: String?
/// Template for the `Bazel build` runscript relative to the
/// workspace root.
/// Variables:
/// __BAZEL_COMMAND__
/// This is the actual build invocation.
///
/// i.e.
/// # MyTemplate.sh.tpl
/// # Some scripting things..
/// __BAZEL_COMMAND__
public let buildBazelTemplate: String?
/// Like XCHammerProjectConfig.xcconfigOverrides but for targets
/// Target configs replace project configs
public let xcconfigOverrides: [String: String]?
}
public struct XCHammerProjectConfig: Codable {
/// Paths for included source files and directories.
/// These paths are relative to the workspace root.
/// Recursive Directory: Path/**
/// Entire Directory: Path/
/// File or Directory: Path/ToFileOrDir
///
/// Generally, include all paths where sources are contained.
///
/// Granularity is useful to decompose projects into a xcworkspace
/// @note: if a given target's BUILD file is not included, it will not be
/// included. This is useful for creating Xcode projects containing
/// specific targets.
///
/// @note XCHammer targets are configured to build and link dependencies
/// across a given workspace.
public let paths: [String]?
/// Bazel Project Options
/// Provide Bazel options for a given platform:
/// i.e.
/// ios_x86_64
/// If no options are provided, then defaults are applied.
/// @see BazelBuildSettings
/// Interesting platforms include
/// macos_x86_64
/// ios_x86_64, ios_i386, ios_arm64, ios_armv7
/// watchos_i386, watchos_armv7k, tvos_x86_64
/// @note: this is written into a python program which is later
/// serialized. Spaces and escapes matter.
public let buildBazelPlatformOptions: [String: [String]]?
/// Enable generation of transitive Xcode targets.
/// Defaults to `true`
/// @note this is _generally_ required for Xcode projects to build with
/// Xcode.
/// For Non Xcode enabled C++/C/ObjC projects, header search paths are
/// propagated so that / indexing, code completion, and other semantic
/// features work.
public let generateTransitiveXcodeTargets: Bool
/// Enable generation of transitive Xcode schemes
/// Defaults to `true`
public let generateXcodeSchemes: Bool
/// xcconfig file overrides keyed by Xcode config name
///
/// Generally, "build settings", importantly compiler options, are
/// propagated to Xcode by XCHammer automatically.
///
/// Generally, the default XCHammer Xcode build should match Bazel by
/// default ( if not it's a bug )
///
/// _Why would an xcconfig be needed then?_
///
/// - Xcode's default settings may need to be overridden to make the Bazel
/// build the same as the Xcode one.
///
/// - Some Xcode idioms don't exist in Bazel and a user may need to control
/// such options e.g. static analyzer settings.
///
/// - It may be useful to have divergence in Bazel -> Xcode settings for
/// some local development tasks.
///
/// - Some people are more comfortable changing XCConfigs and they want to
/// change them locally.
///
/// note: by setting this, all diagnostic options are filtered out.
/// note: config names are case sensitive here e.g. 'Debug'
public let xcconfigOverrides: [String: String]?
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
paths = try container.decodeIfPresent(
[String]?.self, forKey: .paths) as? [String]
buildBazelPlatformOptions = try container.decodeIfPresent(
[String: [String]].self, forKey: .buildBazelPlatformOptions)
generateXcodeSchemes = (try container.decodeIfPresent(
Bool.self, forKey: .generateXcodeSchemes)) ?? true
generateTransitiveXcodeTargets = (try container.decodeIfPresent(
Bool.self, forKey: .generateTransitiveXcodeTargets)) ?? true
xcconfigOverrides = (try container.decodeIfPresent(
[String: String].self, forKey: .xcconfigOverrides)) ?? nil
}
}
public struct XCHammerConfig: Codable {
/// Labels for all targets.
/// Transitve dependencies are converted into targets unless excluded by
/// source filters.
public let targets: [String]
/// Optional config for each target keyed by Bazel Label
public let targetConfig: [String: XCHammerTargetConfig]?
/// All of the projects keyed by Project name
public let projects: [String: XCHammerProjectConfig]
public func getTargetConfig(for label: String) -> XCHammerTargetConfig? {
return targetConfig?[label]
}
static let empty: XCHammerConfig = XCHammerConfig(targets: [], targetConfig:
[:], projects: [:])
}
public enum XCHammerConfigValidationError : Error {
case invalidXCConfig(String)
}
/// Validate an XCHammerConfig in the context of a WORKSPACE
public func validate(config: XCHammerConfig, workspaceRootPath: Path) throws -> Bool {
/// TODO: Validate that full labels are passed in
func validateXCConfigInput(overrides: [String: String]) throws {
try overrides.forEach {
k, v in
let path = workspaceRootPath + Path(v)
if !path.isFile {
throw XCHammerConfigValidationError.invalidXCConfig(v)
}
}
}
try config.projects.forEach {
projectName, project in
if let overrides = project.xcconfigOverrides {
try validateXCConfigInput(overrides: overrides)
}
}
try config.targetConfig?.forEach {
targetName, target in
if let overrides = target.xcconfigOverrides {
try validateXCConfigInput(overrides: overrides)
}
}
return true
}