forked from bazelbuild/intellij
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_defs.bzl
391 lines (352 loc) · 13.4 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
"""Convenience methods for plugin_api."""
# The current indirect ij_product mapping (eg. "intellij-latest")
INDIRECT_IJ_PRODUCTS = {
# Indirect ij_product mapping for internal Blaze Plugin
"intellij-latest": "intellij-2021.3",
"intellij-latest-mac": "intellij-2021.3-mac",
"intellij-beta": "intellij-2022.1",
"intellij-under-dev": "intellij-2022.1",
"intellij-ue-latest": "intellij-ue-2021.3",
"intellij-ue-latest-mac": "intellij-ue-2021.3-mac",
"intellij-ue-beta": "intellij-ue-2022.1",
"intellij-ue-under-dev": "intellij-ue-2022.1",
"android-studio-latest": "android-studio-2021.2",
"android-studio-latest-mac": "android-studio-2021.2-mac",
"android-studio-beta": "android-studio-2021.3",
"android-studio-beta-mac": "android-studio-2021.3-mac",
"android-studio-canary": "android-studio-2021.3",
"clion-latest": "clion-2021.3",
"clion-latest-mac": "clion-2021.3-mac",
"clion-beta": "clion-2022.1",
"clion-under-dev": "clion-2022.1",
# Indirect ij_product mapping for Bazel Plugin OSS
"intellij-oss-stable": "intellij-2022.1",
"intellij-oss-beta": "intellij-2022.1",
"intellij-oss-under-dev": "intellij-2022.2",
"intellij-ue-oss-stable": "intellij-ue-2022.1",
"intellij-ue-oss-beta": "intellij-ue-2022.1",
"intellij-ue-oss-under-dev": "intellij-ue-2022.2",
"android-studio-oss-stable": "android-studio-2021.2",
"android-studio-oss-beta": "android-studio-2021.3",
"android-studio-oss-under-dev": "android-studio-2021.3",
"clion-oss-stable": "clion-2022.1",
"clion-oss-beta": "clion-2022.1",
"clion-oss-under-dev": "clion-2022.2",
}
DIRECT_IJ_PRODUCTS = {
"intellij-2021.2": struct(
ide = "intellij",
directory = "intellij_ce_2021_2",
),
"intellij-2021.2-mac": struct(
ide = "intellij",
directory = "intellij_ce_2021_2",
),
"intellij-2021.3": struct(
ide = "intellij",
directory = "intellij_ce_2021_3",
),
"intellij-2021.3-mac": struct(
ide = "intellij",
directory = "intellij_ce_2021_3",
),
"intellij-2022.1": struct(
ide = "intellij",
directory = "intellij_ce_2022_1",
),
"intellij-2022.1-mac": struct(
ide = "intellij",
directory = "intellij_ce_2022_1",
),
"intellij-2022.2": struct(
ide = "intellij",
directory = "intellij_ce_2022_2",
),
"intellij-2022.2-mac": struct(
ide = "intellij",
directory = "intellij_ce_2022_2",
),
"intellij-ue-2021.2": struct(
ide = "intellij-ue",
directory = "intellij_ue_2021_2",
),
"intellij-ue-2021.2-mac": struct(
ide = "intellij-ue",
directory = "intellij_ue_2021_2",
),
"intellij-ue-2021.3": struct(
ide = "intellij-ue",
directory = "intellij_ue_2021_3",
),
"intellij-ue-2021.3-mac": struct(
ide = "intellij-ue",
directory = "intellij_ue_2021_3",
),
"intellij-ue-2022.1": struct(
ide = "intellij-ue",
directory = "intellij_ue_2022_1",
),
"intellij-ue-2022.1-mac": struct(
ide = "intellij-ue",
directory = "intellij_ue_2022_1",
),
"intellij-ue-2022.2": struct(
ide = "intellij-ue",
directory = "intellij_ue_2022_2",
),
"intellij-ue-2022.2-mac": struct(
ide = "intellij-ue",
directory = "intellij_ue_2022_2",
),
"android-studio-2021.2": struct(
ide = "android-studio",
directory = "android_studio_2021_2",
),
"android-studio-2021.3": struct(
ide = "android-studio",
directory = "android_studio_2021_3",
),
"clion-2021.2": struct(
ide = "clion",
directory = "clion_2021_2",
),
"clion-2021.2-mac": struct(
ide = "clion",
directory = "clion_2021_2",
),
"clion-2021.3": struct(
ide = "clion",
directory = "clion_2021_3",
),
"clion-2021.3-mac": struct(
ide = "clion",
directory = "clion_2021_3",
),
"clion-2022.1": struct(
ide = "clion",
directory = "clion_2022_1",
),
"clion-2022.1-mac": struct(
ide = "clion",
directory = "clion_2022_1",
),
"clion-2022.2": struct(
ide = "clion",
directory = "clion_2022_2",
),
"clion-2022.2-mac": struct(
ide = "clion",
directory = "clion_2022_2",
),
}
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, android_studio = 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
android_studio = android_studio if android_studio != None else default
clion = clion if clion != None else default
ide_to_value = {
"intellij": intellij,
"intellij-ue": intellij_ue,
"android-studio": android_studio,
"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):
return "@" + value.directory + "//"
def select_from_plugin_api_directory(intellij, android_studio, clion, intellij_ue = None):
"""Internal convenience method to generate select statement from the IDE's plugin_api directories."""
ide_to_value = {
"intellij": intellij,
"intellij-ue": intellij_ue if intellij_ue else intellij,
"android-studio": android_studio,
"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-latest"]]
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-stable and oss-beta. 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-stable, oss-beta, internal-stable and internal-beta.
"""
aliases_to_build = []
plugin_api_versions = []
for alias in ["oss-stable", "latest", "oss-beta", "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 combine_visibilities(*args):
"""
Concatenates the given lists of visibilities and returns the combined list.
If one of the given elements is //visibility:public then return //visibility:public
If one of the lists is None, skip it.
If the result list is empty, then return None.
Args:
*args: the list of visibilities lists to combine
Returns:
the concatenated visibility targets list
"""
res = []
for arg in args:
if arg:
for visibility in arg:
if visibility == "//visibility:public":
return ["//visibility:public"]
res.append(visibility)
if res == []:
return None
return res
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 "$@"
zip -d "$@" mockito-extensions/*
""",
)
output_jars.append(output_jar_name)
native.java_import(
name = name,
jars = output_jars,
**kwargs
)