| # 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("//java/common:java_common.bzl", "java_common") |
| load("//java/common/rules/impl:java_helper.bzl", "helper") |
| |
| # copybara: default visibility |
| |
| _java_common_internal = java_common.internal_DO_NOT_USE() |
| |
| 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. |
| """, |
| ), |
| # buildifier: disable=attr-licenses |
| "output_licenses": attr.license() if hasattr(attr, "license") else attr.string_list(), |
| }, |
| ) |