blob: 2f6f4106dbb3dfb1ba359322f9c767c63d4a3204 [file] [log] [blame]
// Copyright 2020 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.
package com.google.devtools.build.lib.rules.java;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.lib.analysis.RuleContext;
import com.google.devtools.build.lib.packages.Type;
import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec;
import javax.annotation.Nullable;
/** The Android Lint part of {@code java_toolchain}. */
@AutoValue
@AutoCodec
abstract class AndroidLintTool {
abstract JavaToolchainTool tool();
abstract ImmutableList<String> options();
abstract ImmutableList<JavaPackageConfigurationProvider> packageConfiguration();
@Nullable
static AndroidLintTool fromRuleContext(RuleContext ruleContext) {
JavaToolchainTool tool =
JavaToolchainTool.fromRuleContext(
ruleContext, "android_lint_runner", "android_lint_data", "android_lint_jvm_opts");
if (tool == null) {
return null;
}
ImmutableList<String> options =
ImmutableList.copyOf(ruleContext.attributes().get("android_lint_opts", Type.STRING_LIST));
ImmutableList<JavaPackageConfigurationProvider> packageConfiguration =
ImmutableList.copyOf(
ruleContext.getPrerequisites(
"android_lint_package_configuration", JavaPackageConfigurationProvider.class));
return create(tool, options, packageConfiguration);
}
@AutoCodec.Instantiator
static AndroidLintTool create(
JavaToolchainTool tool,
ImmutableList<String> options,
ImmutableList<JavaPackageConfigurationProvider> packageConfiguration) {
return new AutoValue_AndroidLintTool(tool, options, packageConfiguration);
}
}