blob: 0a8d3b9620246fe2e8af0033773c6178dd2567a2 [file] [log] [blame]
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# 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.
"""Implementation for the java_package_configuration rule"""
load(":common/java/java_helper.bzl", "helper")
_java_common_internal = _builtins.internal.java_common_internal_do_not_use
PackageSpecificationInfo = _builtins.toplevel.PackageSpecificationInfo
JavaPackageConfigurationInfo = provider(
"A provider for Java per-package configuration",
fields = [
"data",
"javac_opts",
"matches",
"package_specs",
],
)
def _matches(package_specs, label):
for spec in package_specs:
if spec.contains(label):
return True
return False
def _rule_impl(ctx):
javacopts = _java_common_internal.expand_java_opts(ctx, "javacopts", tokenize = True)
javacopts_depset = helper.detokenize_javacopts(javacopts)
package_specs = [package[PackageSpecificationInfo] for package in ctx.attr.packages]
return [
DefaultInfo(),
JavaPackageConfigurationInfo(
data = depset(ctx.files.data),
javac_opts = javacopts_depset,
matches = lambda label: _matches(package_specs, label),
package_specs = package_specs,
),
]
java_package_configuration = rule(
implementation = _rule_impl,
doc = """
<p>
Configuration to apply to a set of packages.
Configurations can be added to
<code><a href="${link java_toolchain.javacopts}">java_toolchain.javacopts</a></code>s.
</p>
<h4 id="java_package_configuration_example">Example:</h4>
<pre class="code">
<code class="lang-starlark">
java_package_configuration(
name = "my_configuration",
packages = [":my_packages"],
javacopts = ["-Werror"],
)
package_group(
name = "my_packages",
packages = [
"//com/my/project/...",
"-//com/my/project/testing/...",
],
)
java_toolchain(
...,
package_configuration = [
":my_configuration",
]
)
</code>
</pre>
""",
attrs = {
"packages": attr.label_list(
cfg = "exec",
providers = [PackageSpecificationInfo],
doc = """
The set of <code><a href="${link package_group}">package_group</a></code>s
the configuration should be applied to.
""",
),
"javacopts": attr.string_list(
doc = """
Java compiler flags.
""",
),
"data": attr.label_list(
allow_files = True,
doc = """
The list of files needed by this configuration at runtime.
""",
),
"output_licenses": attr.license() if hasattr(attr, "license") else attr.string_list(),
},
)