blob: eaafc823d850474d048245081cd4cfde5266c410 [file] [log] [blame]
// Copyright 2018 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.starlarkbuildapi.java;
import com.google.devtools.build.docgen.annot.DocCategory;
import com.google.devtools.build.lib.cmdline.Label;
import com.google.devtools.build.lib.collect.nestedset.Depset;
import com.google.devtools.build.lib.starlarkbuildapi.FileApi;
import com.google.devtools.build.lib.starlarkbuildapi.FilesToRunProviderApi;
import com.google.devtools.build.lib.starlarkbuildapi.core.StructApi;
import javax.annotation.Nullable;
import net.starlark.java.annot.StarlarkBuiltin;
import net.starlark.java.annot.StarlarkMethod;
/**
* Provides access to information about the Java toolchain rule. Accessible as a 'java_toolchain'
* field on a Target struct.
*
* <p>This provider is implemented in Starlark. This class remains only for doc-gen purposes.
*/
@StarlarkBuiltin(
name = "JavaToolchainInfo",
category = DocCategory.PROVIDER,
doc =
"Provides access to information about the Java toolchain rule. "
+ "Accessible as a 'java_toolchain' field on a Target struct.")
public interface JavaToolchainStarlarkApiProviderApi extends StructApi {
@StarlarkMethod(name = "source_version", doc = "The java source version.", structField = true)
String getSourceVersion();
@StarlarkMethod(name = "target_version", doc = "The java target version.", structField = true)
String getTargetVersion();
@StarlarkMethod(name = "label", doc = "The toolchain label.", structField = true)
Label getToolchainLabel();
@StarlarkMethod(name = "single_jar", doc = "The SingleJar deploy jar.", structField = true)
FilesToRunProviderApi<? extends FileApi> getSingleJar();
@StarlarkMethod(
name = "bootclasspath",
doc = "The Java target bootclasspath entries. Corresponds to javac's -bootclasspath flag.",
structField = true)
Depset getStarlarkBootclasspath();
@StarlarkMethod(
name = "jvm_opt",
doc = "The default options for the JVM running the java compiler and associated tools.",
structField = true)
Depset getStarlarkJvmOptions();
@StarlarkMethod(
name = "ijar",
doc = "A FilesToRunProvider representing the ijar executable.",
structField = true)
FilesToRunProviderApi<?> getIjar();
@StarlarkMethod(
name = "jacocorunner",
doc = "The jacocorunner used by the toolchain.",
structField = true,
allowReturnNones = true)
@Nullable
FilesToRunProviderApi<?> getJacocoRunner();
@StarlarkMethod(name = "tools", doc = "The compilation tools.", structField = true)
Depset getStarlarkTools();
@StarlarkMethod(name = "java_runtime", doc = "The java runtime information.", structField = true)
JavaRuntimeInfoApi getJavaRuntime();
@Nullable
@StarlarkMethod(
name = "proguard_allowlister",
doc = "Return the binary to validate proguard configuration",
structField = true,
allowReturnNones = true)
FilesToRunProviderApi<? extends FileApi> getProguardAllowlister();
}