-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpom_file.bzl
366 lines (319 loc) · 11.7 KB
/
pom_file.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
# Copyright (C) 2018 The Google Bazel Common Authors.
#
# 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.
"""Skylark rules to make publishing Maven artifacts simpler.
"""
load("@rules_java//java:defs.bzl", "java_library")
load("@bazel_skylib//lib:unittest.bzl", "asserts", "unittest")
MavenInfo = provider(
fields = {
"maven_artifacts": """
The Maven coordinates for the artifacts that are exported by this target: i.e. the target
itself and its transitively exported targets.
""",
"maven_dependencies": """
The Maven coordinates of the direct dependencies, and the transitively exported targets, of
this target.
""",
},
)
_EMPTY_MAVEN_INFO = MavenInfo(
maven_artifacts = depset(),
maven_dependencies = depset(),
)
_MAVEN_COORDINATES_PREFIX = "maven_coordinates="
def _maven_artifacts(targets):
return [target[MavenInfo].maven_artifacts for target in targets if MavenInfo in target]
def _collect_maven_info_impl(_target, ctx):
tags = getattr(ctx.rule.attr, "tags", [])
deps = getattr(ctx.rule.attr, "deps", [])
exports = getattr(ctx.rule.attr, "exports", [])
runtime_deps = getattr(ctx.rule.attr, "runtime_deps", [])
maven_artifacts = []
for tag in tags:
if tag in ("maven:compile_only", "maven:shaded"):
return [_EMPTY_MAVEN_INFO]
if tag.startswith(_MAVEN_COORDINATES_PREFIX):
maven_artifacts.append(tag[len(_MAVEN_COORDINATES_PREFIX):])
return [MavenInfo(
maven_artifacts = depset(maven_artifacts, transitive = _maven_artifacts(exports)),
maven_dependencies = depset(
[],
transitive = _maven_artifacts(deps + exports + runtime_deps),
),
)]
_collect_maven_info = aspect(
attr_aspects = [
"deps",
"exports",
"runtime_deps",
],
doc = """
Collects the Maven information for targets, their dependencies, and their transitive exports.
""",
implementation = _collect_maven_info_impl,
)
def _prefix_index_of(item, prefixes):
"""Returns the index of the first value in `prefixes` that is a prefix of `item`.
If none of the prefixes match, return the size of `prefixes`.
Args:
item: the item to match
prefixes: prefixes to match against
Returns:
an integer representing the index of the match described above.
"""
for index, prefix in enumerate(prefixes):
if item.startswith(prefix):
return index
return len(prefixes)
def _sort_artifacts(artifacts, prefixes):
"""Sorts `artifacts`, preferring group ids that appear earlier in `prefixes`.
Values in `prefixes` do not need to be complete group ids. For example, passing `prefixes =
['io.bazel']` will match `io.bazel.rules:rules-artifact:1.0`. If multiple prefixes match an
artifact, the first one in `prefixes` will be used.
_Implementation note_: Skylark does not support passing a comparator function to the `sorted()`
builtin, so this constructs a list of tuples with elements:
- `[0]` = an integer corresponding to the index in `prefixes` that matches the artifact (see
`_prefix_index_of`)
- `[1]` = parts of the complete artifact, split on `:`. This is used as a tiebreaker when
multilple artifacts have the same index referenced in `[0]`. The individual parts are used so
that individual artifacts in the same group are sorted correctly - if just the string is used,
the colon that separates the artifact name from the version will sort lower than a longer
name. For example:
- `com.example.project:base:1
- `com.example.project:extension:1
"base" sorts lower than "exension".
- `[2]` = the complete artifact. this is a convenience so that after sorting, the artifact can
be returned.
The `sorted` builtin will first compare the index element and if it needs a tiebreaker, will
recursively compare the contents of the second element.
Args:
artifacts: artifacts to be sorted
prefixes: the preferred group ids used to sort `artifacts`
Returns:
A new, sorted list containing the contents of `artifacts`.
"""
indexed = []
for artifact in artifacts:
parts = artifact.split(":")
indexed.append((_prefix_index_of(parts[0], prefixes), parts, artifact))
return [x[-1] for x in sorted(indexed)]
DEP_BLOCK = """
<dependency>
<groupId>{0}</groupId>
<artifactId>{1}</artifactId>
<version>{2}</version>
</dependency>
""".strip()
CLASSIFIER_DEP_BLOCK = """
<dependency>
<groupId>{0}</groupId>
<artifactId>{1}</artifactId>
<version>{2}</version>
<type>{3}</type>
<classifier>{4}</classifier>
</dependency>
""".strip()
DEP_PKG_BLOCK = """
<dependency>
<groupId>{0}</groupId>
<artifactId>{1}</artifactId>
<packaging>{2}</packaging>
<version>{3}</version>
</dependency>
""".strip()
def _pom_file(ctx):
mvn_deps = depset(
[],
transitive = [target[MavenInfo].maven_dependencies for target in ctx.attr.targets],
)
formatted_deps = []
for dep in _sort_artifacts(mvn_deps.to_list(), ctx.attr.preferred_group_ids):
parts = dep.split(":")
if ":".join(parts[0:2]) in ctx.attr.excluded_artifacts:
continue
if len(parts) == 3:
template = DEP_BLOCK
elif len(parts) == 4:
template = DEP_PKG_BLOCK
elif len(parts) == 5:
template = CLASSIFIER_DEP_BLOCK
else:
fail("Unknown dependency format: %s" % dep)
formatted_deps.append(template.format(*parts))
substitutions = {}
substitutions.update(ctx.attr.substitutions)
substitutions.update({
"{generated_bzl_deps}": "\n".join(formatted_deps),
"{pom_version}": ctx.var.get("pom_version", "LOCAL-SNAPSHOT"),
})
ctx.actions.expand_template(
template = ctx.file.template_file,
output = ctx.outputs.pom_file,
substitutions = substitutions,
)
pom_file = rule(
attrs = {
"template_file": attr.label(
allow_single_file = True,
),
"substitutions": attr.string_dict(
allow_empty = True,
mandatory = False,
),
"targets": attr.label_list(
mandatory = True,
aspects = [_collect_maven_info],
),
"preferred_group_ids": attr.string_list(),
"excluded_artifacts": attr.string_list(),
},
doc = """
Creates a Maven POM file for `targets`.
This rule scans the deps, runtime_deps, and exports of `targets` and their transitive exports,
checking each for tags of the form `maven_coordinates=<coords>`. These tags are used to build
the list of Maven dependencies for the generated POM.
Users should call this rule with a `template_file` that contains a `{generated_bzl_deps}`
placeholder. The rule will replace this with the appropriate XML for all dependencies.
Additional placeholders to replace can be passed via the `substitutions` argument.
The dependencies included will be sorted alphabetically by groupId, then by artifactId. The
`preferred_group_ids` can be used to specify groupIds (or groupId-prefixes) that should be
sorted ahead of other artifacts. Artifacts in the same group will be sorted alphabetically.
Args:
name: the name of target. The generated POM file will use this name, with `.xml` appended
targets: a list of build target(s) that represent this POM file
template_file: a pom.xml file that will be used as a template for the generated POM
substitutions: an optional mapping of placeholders to replacement values that will be applied
to the `template_file` (e.g. `{'GROUP_ID': 'com.example.group'}`). `{pom_version}` is
implicitly included in this mapping and can be configured by passing `bazel build
--define=pom_version=<version>`.
preferred_group_ids: an optional list of maven groupIds that will be used to sort the
generated deps.
excluded_artifacts: an optional list of maven artifacts in the format "groupId:artifactId"
that should be excluded from the generated pom file.
""",
outputs = {"pom_file": "%{name}.xml"},
implementation = _pom_file,
)
def _fake_java_library(name, deps = None, exports = None, runtime_deps = None):
src_file = ["%s.java" % name]
native.genrule(
name = "%s_source_file" % name,
outs = src_file,
cmd = "echo 'class %s {}' > $@" % name,
)
java_library(
name = name,
srcs = src_file,
tags = ["maven_coordinates=%s:_:_" % name],
javacopts = ["-Xep:DefaultPackage:OFF"],
deps = deps or [],
exports = exports or [],
runtime_deps = runtime_deps or [],
)
def _maven_info_test_impl(ctx):
env = unittest.begin(ctx)
asserts.equals(
env,
expected = sorted(ctx.attr.maven_artifacts),
actual = sorted(ctx.attr.target[MavenInfo].maven_artifacts.to_list()),
msg = "MavenInfo.maven_artifacts",
)
asserts.equals(
env,
expected = sorted(ctx.attr.maven_dependencies),
actual = sorted(ctx.attr.target[MavenInfo].maven_dependencies.to_list()),
msg = "MavenInfo.maven_dependencies",
)
return unittest.end(env)
_maven_info_test = unittest.make(
_maven_info_test_impl,
attrs = {
"target": attr.label(aspects = [_collect_maven_info]),
"maven_artifacts": attr.string_list(),
"maven_dependencies": attr.string_list(),
},
)
def pom_file_tests():
"""Tests for `pom_file` and `MavenInfo`.
"""
_fake_java_library(name = "A")
_fake_java_library(
name = "DepOnA",
deps = [":A"],
)
_maven_info_test(
name = "a_test",
target = ":A",
maven_artifacts = ["A:_:_"],
maven_dependencies = [],
)
_maven_info_test(
name = "dependencies_test",
target = ":DepOnA",
maven_artifacts = ["DepOnA:_:_"],
maven_dependencies = ["A:_:_"],
)
_fake_java_library(
name = "RuntimeDepOnA",
runtime_deps = [":A"],
)
_maven_info_test(
name = "runtime_dependencies_test",
target = ":RuntimeDepOnA",
maven_artifacts = ["RuntimeDepOnA:_:_"],
maven_dependencies = ["A:_:_"],
)
_fake_java_library(
name = "ExportsA",
exports = [":A"],
)
_maven_info_test(
name = "exports_test",
target = ":ExportsA",
maven_artifacts = [
"ExportsA:_:_",
"A:_:_",
],
maven_dependencies = ["A:_:_"],
)
_fake_java_library(
name = "TransitiveExports",
exports = [":ExportsA"],
)
_maven_info_test(
name = "transitive_exports_test",
target = ":TransitiveExports",
maven_artifacts = [
"TransitiveExports:_:_",
"ExportsA:_:_",
"A:_:_",
],
maven_dependencies = [
"ExportsA:_:_",
"A:_:_",
],
)
_fake_java_library(
name = "TransitiveDeps",
deps = [":ExportsA"],
)
_maven_info_test(
name = "transitive_deps_test",
target = ":TransitiveDeps",
maven_artifacts = ["TransitiveDeps:_:_"],
maven_dependencies = [
"ExportsA:_:_",
"A:_:_",
],
)