// Copyright 2015 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.android; import com.google.common.collect.ImmutableList; import com.google.devtools.build.lib.actions.Artifact; import com.google.devtools.build.lib.analysis.RuleContext; import com.google.devtools.build.lib.analysis.actions.CustomCommandLine; import com.google.devtools.build.lib.analysis.actions.SpawnAction; import com.google.devtools.build.lib.cmdline.Label; import com.google.devtools.build.lib.collect.nestedset.NestedSetBuilder; import com.google.devtools.build.lib.packages.RuleClass.ConfiguredTargetFactory.RuleErrorException; import com.google.devtools.build.lib.rules.java.JavaCompilationArtifacts; import com.google.devtools.build.lib.rules.java.JavaSemantics; import com.google.devtools.build.lib.rules.java.JavaTargetAttributes; import com.google.devtools.build.lib.rules.java.ProguardHelper.ProguardOutput; import java.util.Map; import java.util.Optional; /** * Pluggable semantics for Android rules. * *

A new instance of this class is created for each configured target, therefore, it is allowed * to keep state. */ public interface AndroidSemantics { default AndroidManifest renameManifest( AndroidDataContext dataContext, AndroidManifest rawManifest) throws InterruptedException { return rawManifest.renameManifestIfNeeded(dataContext); } default Optional maybeDoLegacyManifestMerging( Map mergeeManifests, AndroidDataContext dataContext, Artifact primaryManifest) { if (mergeeManifests.isEmpty()) { return Optional.empty(); } throw new UnsupportedOperationException(); } /** Returns the name of the file in which the file names of native dependencies are listed. */ String getNativeDepsFileName(); /** * Returns the command line options to be used when compiling Java code for {@code android_*} * rules. * *

These will come after the default options specified by the toolchain, and before the ones in * the {@code javacopts} attribute. */ ImmutableList getCompatibleJavacOptions(RuleContext ruleContext); /** * Configures the builder for generating the output jar used to configure the main dex file. * * @throws InterruptedException */ void addMainDexListActionArguments( RuleContext ruleContext, SpawnAction.Builder builder, CustomCommandLine.Builder commandLine, Artifact proguardMap) throws InterruptedException; /** Given an Android {@code manifest}, returns a list of relevant Proguard specs. */ ImmutableList getProguardSpecsForManifest( AndroidDataContext dataContext, Artifact manifest); /** * Add coverage instrumentation to the Java compilation of an Android binary. * * @throws InterruptedException */ void addCoverageSupport( RuleContext ruleContext, AndroidCommon common, JavaSemantics javaSemantics, boolean forAndroidTest, JavaTargetAttributes.Builder attributes, JavaCompilationArtifacts.Builder artifactsBuilder) throws InterruptedException; /** Returns the list of attributes that may contribute Java runtime dependencies. */ ImmutableList getAttributesWithJavaRuntimeDeps(RuleContext ruleContext); /** A hook for checks of internal-only or external-only attributes of {@code android_binary}. */ default void validateAndroidBinaryRuleContext(RuleContext ruleContext) throws RuleErrorException {} /** A hook for checks of internal-only or external-only attributes of {@code android_library}. */ default void validateAndroidLibraryRuleContext(RuleContext ruleContext) throws RuleErrorException {} /** The artifact for the map that proguard will output. */ Artifact getProguardOutputMap(RuleContext ruleContext) throws InterruptedException; /** Maybe post process the dex files and proguard output map. */ AndroidBinary.DexPostprocessingOutput postprocessClassesDexZip( RuleContext ruleContext, NestedSetBuilder filesBuilder, Artifact classesDexZip, ProguardOutput proguardOutput) throws InterruptedException; default AndroidDataContext makeContextForNative(RuleContext ruleContext) { return AndroidDataContext.forNative(ruleContext); } }