-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy pathbuild_defs.bzl
445 lines (386 loc) · 16 KB
/
build_defs.bzl
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
"""Convenience methods for plugin_api."""
load("@rules_java//java:defs.bzl", "java_import")
# The current indirect ij_product mapping (eg. "intellij-latest")
INDIRECT_IJ_PRODUCTS = {
"intellij-oss-oldest-stable": "intellij-2024.2",
"intellij-oss-latest-stable": "intellij-2024.3",
"intellij-oss-under-dev": "intellij-2025.1",
"intellij-ue-oss-oldest-stable": "intellij-ue-2024.2",
"intellij-ue-oss-latest-stable": "intellij-ue-2024.3",
"intellij-ue-oss-under-dev": "intellij-ue-2025.1",
"clion-oss-oldest-stable": "clion-2024.2",
"clion-oss-latest-stable": "clion-2024.3",
"clion-oss-under-dev": "clion-2025.1",
}
(CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_CANARY, CHANNEL_FREEFORM) = ("stable", "beta", "canary", "freeform")
INDIRECT_PRODUCT_CHANNELS = {
# Channel mapping for Bazel Plugin OSS
"intellij-oss-oldest-stable": CHANNEL_STABLE,
"intellij-oss-latest-stable": CHANNEL_STABLE,
"intellij-oss-under-dev": CHANNEL_CANARY,
"intellij-ue-oss-oldest-stable": CHANNEL_STABLE,
"intellij-ue-oss-latest-stable": CHANNEL_STABLE,
"intellij-ue-oss-under-dev": CHANNEL_CANARY,
"clion-oss-oldest-stable": CHANNEL_STABLE,
"clion-oss-latest-stable": CHANNEL_STABLE,
"clion-oss-under-dev": CHANNEL_CANARY,
}
def _check_channel_map():
if INDIRECT_PRODUCT_CHANNELS.keys() != INDIRECT_IJ_PRODUCTS.keys():
fail("Key mismatch between INDIRECT_PRODUCT_CHANNELS and INDIRECT_IJ_PRODUCTS: missing: %s extra: %s" % (
[k for k in INDIRECT_IJ_PRODUCTS.keys() if k not in INDIRECT_PRODUCT_CHANNELS.keys()],
[k for k in INDIRECT_PRODUCT_CHANNELS.keys() if k not in INDIRECT_IJ_PRODUCTS.keys()],
))
unexpected = [
(k, v)
for k, v in INDIRECT_PRODUCT_CHANNELS.items()
if v not in [CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_CANARY]
]
if unexpected:
fail("Unexpected values in INDIRECT_PRODUCT_CHANNELS: %s" % unexpected)
DIRECT_IJ_PRODUCTS = {
"intellij-2024.2": struct(
ide = "intellij",
directory = "intellij_ce_2024_2",
),
"intellij-2024.2-mac": struct(
ide = "intellij",
directory = "intellij_ce_2024_2",
),
"intellij-2024.3": struct(
ide = "intellij",
directory = "intellij_ce_2024_3",
),
"intellij-2024.3-mac": struct(
ide = "intellij",
directory = "intellij_ce_2024_3",
),
"intellij-2025.1": struct(
ide = "intellij",
directory = "intellij_ce_2025_1",
),
"intellij-2025.1-mac": struct(
ide = "intellij",
directory = "intellij_ce_2025_1",
),
"intellij-ue-2024.2": struct(
ide = "intellij-ue",
directory = "intellij_ue_2024_2",
),
"intellij-ue-2024.2-mac": struct(
ide = "intellij-ue",
directory = "intellij_ue_2024_2",
),
"intellij-ue-2024.3": struct(
ide = "intellij-ue",
directory = "intellij_ue_2024_3",
),
"intellij-ue-2024.3-mac": struct(
ide = "intellij-ue",
directory = "intellij_ue_2024_3",
),
"intellij-ue-2025.1": struct(
ide = "intellij-ue",
directory = "intellij_ue_2025_1",
),
"intellij-ue-2025.1-mac": struct(
ide = "intellij-ue",
directory = "intellij_ue_2025_1",
),
"clion-2024.2": struct(
ide = "clion",
directory = "clion_2024_2",
),
"clion-2024.2-mac": struct(
ide = "clion",
directory = "clion_2024_2",
),
"clion-2024.3": struct(
ide = "clion",
directory = "clion_2024_3",
),
"clion-2024.3-mac": struct(
ide = "clion",
directory = "clion_2024_3",
),
"clion-2025.1": struct(
ide = "clion",
directory = "clion_2025_1",
),
"clion-2025.1-mac": struct(
ide = "clion",
directory = "clion_2025_1",
),
}
def select_for_plugin_api(params):
"""Selects for a plugin_api.
Args:
params: A dict with ij_product -> value.
You may only include direct ij_products here,
not indirects (eg. intellij-latest).
Returns:
A select statement on all plugin_apis. Unless you include a "default",
a non-matched plugin_api will result in an error.
Example:
java_library(
name = "foo",
srcs = select_for_plugin_api({
"intellij-2016.3.1": [...my intellij 2016.3 sources ....],
"intellij-2012.2.4": [...my intellij 2016.2 sources ...],
}),
)
"""
for indirect_ij_product in INDIRECT_IJ_PRODUCTS:
if indirect_ij_product in params:
error_message = "".join([
"Do not select on indirect ij_product %s. " % indirect_ij_product,
"Instead, select on an exact ij_product.",
])
fail(error_message)
return _do_select_for_plugin_api(params)
def _do_select_for_plugin_api(params):
"""A version of select_for_plugin_api which accepts indirect products."""
if not params:
fail("Empty select_for_plugin_api")
expanded_params = dict(**params)
# Expand all indirect plugin_apis to point to their
# corresponding direct plugin_api.
#
# {"intellij-2016.3.1": "foo"} ->
# {"intellij-2016.3.1": "foo", "intellij-latest": "foo"}
fallback_value = None
for indirect_ij_product, resolved_plugin_api in INDIRECT_IJ_PRODUCTS.items():
if resolved_plugin_api in params:
expanded_params[indirect_ij_product] = params[resolved_plugin_api]
if not fallback_value:
fallback_value = params[resolved_plugin_api]
if indirect_ij_product in params:
expanded_params[resolved_plugin_api] = params[indirect_ij_product]
# Map the shorthand ij_products to full config_setting targets.
# This makes it more convenient so the user doesn't have to
# fully specify the path to the plugin_apis
select_params = dict()
for ij_product, value in expanded_params.items():
if ij_product == "default":
select_params["//conditions:default"] = value
else:
select_params["//intellij_platform_sdk:" + ij_product] = value
return select(
select_params,
no_match_error = "define an intellij product version, e.g. --define=ij_product=intellij-latest",
)
def select_for_ide(intellij = None, intellij_ue = None, clion = None, default = []):
"""Selects for the supported IDEs.
Args:
intellij: Files to use for IntelliJ. If None, will use default.
intellij_ue: Files to use for IntelliJ UE. If None, will use value chosen for 'intellij'.
android_studio: Files to use for Android Studio. If None will use default.
clion: Files to use for CLion. If None will use default.
default: Files to use for any IDEs not passed.
Returns:
A select statement on all plugin_apis to lists of files, sorted into IDEs.
Example:
java_library(
name = "foo",
srcs = select_for_ide(
clion = [":cpp_only_sources"],
default = [":java_only_sources"],
),
)
"""
intellij = intellij if intellij != None else default
intellij_ue = intellij_ue if intellij_ue != None else intellij
clion = clion if clion != None else default
ide_to_value = {
"intellij": intellij,
"intellij-ue": intellij_ue,
"clion": clion,
}
# Map (direct ij_product) -> corresponding ide value
params = dict()
for ij_product, value in DIRECT_IJ_PRODUCTS.items():
params[ij_product] = ide_to_value[value.ide]
params["default"] = default
return select_for_plugin_api(params)
def _plugin_api_directory(value):
if hasattr(value, "oss_workspace"):
directory = value.oss_workspace
else:
directory = value.directory
return "@" + directory + "//"
def select_from_plugin_api_directory(intellij, clion, intellij_ue = None):
"""Internal convenience method to generate select statement from the IDE's plugin_api directories.
Args:
intellij: the items that IntelliJ product to use.
clion: the items that clion product to use.
intellij_ue: the items that intellij ue product to use.
Returns:
a select statement map from DIRECT_IJ_PRODUCTS to items that they should use.
"""
ide_to_value = {
"intellij": intellij,
"intellij-ue": intellij_ue if intellij_ue else intellij,
"clion": clion,
}
# Map (direct ij_product) -> corresponding product directory
params = dict()
for ij_product, value in DIRECT_IJ_PRODUCTS.items():
params[ij_product] = [_plugin_api_directory(value) + item for item in ide_to_value[value.ide]]
# No ij_product == intellij-latest
params["default"] = params[INDIRECT_IJ_PRODUCTS["intellij-oss-latest-stable"]]
return select_for_plugin_api(params)
def select_from_plugin_api_version_directory(params):
"""Selects for a plugin_api direct version based on its directory.
Args:
params: A dict with ij_product -> value.
You may only include direct ij_products here,
not indirects (eg. intellij-latest).
Returns:
A select statement on all plugin_apis. Unless you include a "default",
a non-matched plugin_api will result in an error.
"""
for indirect_ij_product in INDIRECT_IJ_PRODUCTS:
if indirect_ij_product in params:
error_message = "".join([
"Do not select on indirect ij_product %s. " % indirect_ij_product,
"Instead, select on an exact ij_product.",
])
fail(error_message)
# Map (direct ij_product) -> corresponding value relative to product directory
for ij_product, value in params.items():
if ij_product != "default":
params[ij_product] = [_plugin_api_directory(DIRECT_IJ_PRODUCTS[ij_product]) + item for item in value]
return _do_select_for_plugin_api(params)
def get_versions_to_build(product):
""""Returns a set of unique product version aliases to test and build during regular release process.
For each product, we care about four versions aliases to build and release to JetBrains
repository; -latest, -beta, -oss-oldest-stable and oss-latest-stable.
However, some of these aliases can point to the same IDE version and this can lead
to conflicts if we attempt to blindly build and upload the four versions.
This function is used to return only the aliases that point to different
IDE versions of the given product.
Args:
product: name of the product; android-studio, clion, intellij-ue
Returns:
A space separated list of product version aliases to build, the values can be
oss-oldest-stable, oss-latest-stable, internal-stable and internal-beta.
"""
aliases_to_build = []
plugin_api_versions = []
for alias in ["oss-oldest-stable", "latest", "oss-latest-stable", "beta"]:
indirect_ij_product = product + "-" + alias
if indirect_ij_product not in INDIRECT_IJ_PRODUCTS:
fail(
"Product-version alias %s not found." % indirect_ij_product,
"Invalid product: %s only android-studio, clion and intellij-ue are accepted." % product,
)
version = INDIRECT_IJ_PRODUCTS[indirect_ij_product]
if version not in plugin_api_versions:
plugin_api_versions.append(version)
if alias == "latest":
aliases_to_build.append("internal-stable")
elif alias == "beta":
aliases_to_build.append("internal-beta")
else:
aliases_to_build.append(alias)
return " ".join(aliases_to_build)
def get_unique_supported_oss_ide_versions(product):
""""Returns the unique supported IDE versions for the given product in the OSS Bazel plugin
Args:
product: name of the product; android-studio, clion, intellij-ue
Returns:
A space separated list of the aliases of the unique IDE versions for the
OSS Bazel plugin.
"""
supported_versions = []
unique_aliases = []
for alias in ["oss-oldest-stable", "oss-latest-stable"]:
indirect_ij_product = product + "-" + alias
if indirect_ij_product not in INDIRECT_IJ_PRODUCTS:
fail(
"Product-version alias %s not found." % indirect_ij_product,
"Invalid product: %s, only android-studio, clion and intellij-ue are accepted." % product,
)
ver = INDIRECT_IJ_PRODUCTS[indirect_ij_product]
if ver not in supported_versions:
supported_versions.append(ver)
unique_aliases.append(alias)
return " ".join(unique_aliases)
def no_mockito_extensions(name, jars, **kwargs):
"""Removes mockito extensions from jars.
Args:
name: Name of the resulting java_import target.
jars: List of jars from which to remove mockito extensions.
**kwargs: Arbitrary attributes for the java_import target.
"""
output_jars = []
for input_jar in jars:
output_jar_name = name + "_" + input_jar.replace("/", "_")
output_jar = name + "/" + input_jar
native.genrule(
name = output_jar_name,
srcs = [input_jar],
outs = [output_jar],
cmd = """
cp "$<" "$@"
chmod u+w "$@"
tmpdir=$$(mktemp -d)
zipper="$$(pwd)/$(execpath @bazel_tools//tools/zip:zipper)"
"$$zipper" x "$@" -d ".out"
mv ".out" "$$tmpdir"
pushd "$$tmpdir/.out" >/dev/null
rm -fr "mockito-extensions"
# We store the results from `find` in a file to deal with filenames with spaces
files_to_tar_file=$$(mktemp)
find . -type f | sed 's:^./::' > "$${files_to_tar_file}"
"$$zipper" cC "../out.jar" "@$${files_to_tar_file}"
popd
cp "$$tmpdir/out.jar" "$@"
chmod u+rw "$@"
""",
tools = ["@bazel_tools//tools/zip:zipper"],
)
output_jars.append(output_jar_name)
java_import(
name = name,
jars = output_jars,
**kwargs
)
# Since 2022.3, JVM 17 is required to start IntelliJ
# https://blog.jetbrains.com/platform/2022/08/intellij-project-migrates-to-java-17/
def java_version_flags():
return ["-source", "17", "-target", "17"]
def select_for_channel(channel_map):
"""Returns a select based on the IDE channel (stable, beta, canary).
Args:
channel_map: a dict with keys "stable", "beta" and "canary". The rest of targets will be considered "freeform"
Returns:
A select that will select values from channel_map based on the build config.
"""
_check_channel_map()
if channel_map.keys() != [CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_CANARY, CHANNEL_FREEFORM]:
fail("channel_map must contain exactly %s, %s and %s" % (CHANNEL_STABLE, CHANNEL_BETA, CHANNEL_CANARY, CHANNEL_FREEFORM))
select_map = {
("//intellij_platform_sdk:%s" % indirect_product): channel_map[channel]
for indirect_product, channel in INDIRECT_PRODUCT_CHANNELS.items()
}
# We reverse INDIRECT_IJ_PRODUCTS.items() here to that the inverse map contains
# the first occurrence of any value that is duplicated, not the last:
inverse_ij_products = {v: k for k, v in reversed(INDIRECT_IJ_PRODUCTS.items())}
# Add directly specified IDE versions which some builds use:
select_map.update(
{
("//intellij_platform_sdk:%s" % direct_product): channel_map[INDIRECT_PRODUCT_CHANNELS[indirect_product]]
for direct_product, indirect_product in inverse_ij_products.items()
},
)
# Some IDE versions are not in a channel, but users would still like to build and test them:
select_map.update(
{
("//intellij_platform_sdk:%s" % direct_product): channel_map[CHANNEL_FREEFORM]
for direct_product in DIRECT_IJ_PRODUCTS.keys()
if direct_product not in inverse_ij_products
},
)
select_map.update({"//conditions:default": channel_map[CHANNEL_STABLE]})
return select(select_map)