aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java
diff options
context:
space:
mode:
authorGravatar asteinb <asteinb@google.com>2018-03-22 13:52:56 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-22 13:54:47 -0700
commit251e8e5cbd4411f2c061ca34147ee7631c539d92 (patch)
treebf17e4dcc3bd79cd38a79c799e20de70c4855644 /src/main/java
parent33439dc24284678f1a127665d9e6554b2bbe7966 (diff)
Add AndroidManifest and related classes for new manifest merging implementation
AndroidManifest represents a new class to handle decoupled Android manifest processing (as opposed to the existing ApplicationManifest, which handles manifests, resources, and assets all together). This new manifest processing pipeline will be used by the Skylark Android Data API. AndroidManifest wraps the manifest and related information, so we don't just pass around untyped Artifacts all the time. Additionally, the StampedAndroidManifest subclass explicitly states that a manifest has been stamped with the correct package (previous confusion between passing around the stamped and unstamped manifests has led to bugs in Blaze). Unlike the old manifest processing pipeline, AndroidManifest: - Does not support the old legacy manifest merger - Is decoupled from resource and asset processing - Does incremental merges - Always has the package defined at analysis time - Can be run without an input manifest (for rules which don't specify their own manifest but either inherit manifests that should be merged or to provide a dummy manifest for tooling) RELNOTES: none PiperOrigin-RevId: 190119992
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/AndroidManifest.java183
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/ManifestMergerActionBuilder.java6
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/ResourceContainer.java18
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/StampedAndroidManifest.java47
4 files changed, 236 insertions, 18 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidManifest.java b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidManifest.java
new file mode 100644
index 0000000000..4ef1b5af75
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidManifest.java
@@ -0,0 +1,183 @@
+// 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.rules.android;
+
+import com.google.common.collect.ImmutableList;
+import com.google.common.collect.ImmutableMap;
+import com.google.devtools.build.lib.actions.Artifact;
+import com.google.devtools.build.lib.analysis.ConfiguredTarget;
+import com.google.devtools.build.lib.analysis.RuleContext;
+import com.google.devtools.build.lib.cmdline.Label;
+import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
+import com.google.devtools.build.lib.packages.ImplicitOutputsFunction;
+import com.google.devtools.build.lib.packages.ImplicitOutputsFunction.SafeImplicitOutputsFunction;
+import com.google.devtools.build.lib.rules.java.JavaUtil;
+import com.google.devtools.build.lib.vfs.PathFragment;
+import javax.annotation.Nullable;
+
+/** Wraps an Android Manifest and provides utilities for working with it */
+@Immutable
+public class AndroidManifest {
+ private static final SafeImplicitOutputsFunction MERGED_MANIFEST =
+ ImplicitOutputsFunction.fromTemplates("{name}_manifest/AndroidManifest.xml");
+ private static final SafeImplicitOutputsFunction MERGE_LOG =
+ ImplicitOutputsFunction.fromTemplates("{name}_manifest/manifest_merger_log.txt");
+
+ private final RuleContext ruleContext;
+ /**
+ * The current manifest. May be null if this rule has no manifest and we have not yet generated
+ * one through merging or stamping.
+ */
+ @Nullable private final Artifact manifest;
+ private final String pkg;
+ private final boolean isDummy;
+
+ public static AndroidManifest empty(RuleContext ruleContext) {
+ return of(ruleContext, null, null);
+ }
+
+ /**
+ * @param ruleContext the current context
+ * @param manifest this target's manifest. Can be null if this target has no manifest, in which
+ * case a dummy manifest will be generated.
+ * @param customPackage this target's custom package. If null, the default package, derived from
+ * BUILD file location, will be used.
+ * @return an AndroidManifest object wrapping the manifest and package
+ */
+ public static AndroidManifest of(
+ RuleContext ruleContext, @Nullable Artifact manifest, @Nullable String customPackage) {
+ return new AndroidManifest(
+ ruleContext,
+ manifest,
+ customPackage == null ? getDefaultPackage(ruleContext) : customPackage,
+ manifest == null);
+ }
+
+ AndroidManifest(
+ RuleContext ruleContext, @Nullable Artifact manifest, String pkg, boolean isDummy) {
+ this.ruleContext = ruleContext;
+ this.manifest = manifest;
+ this.pkg = pkg;
+ this.isDummy = isDummy;
+ }
+
+ /**
+ * Merges the current manifest with manifests from the specified deps and stamps the result.
+ *
+ * <p>Manifests will not be merged if the dependencies do not provide {@link AndroidManifestInfo}
+ * or the provided manifests are generated dummies.
+ *
+ * <p>The resulting manifest will always be stamped if needed, even if no merging is done.
+ */
+ public StampedAndroidManifest stampAndMergeWith(ImmutableList<ConfiguredTarget> deps)
+ throws InterruptedException {
+ ImmutableMap.Builder<Artifact, Label> mergeeBuilder = ImmutableMap.builder();
+ for (ConfiguredTarget dep : deps) {
+ AndroidManifestInfo info = dep.get(AndroidManifestInfo.PROVIDER);
+ if (info == null || info.isDummy()) {
+ continue;
+ }
+ mergeeBuilder.put(info.getManifest(), dep.getLabel());
+ }
+
+ ImmutableMap<Artifact, Label> mergeeManifests = mergeeBuilder.build();
+
+ if (mergeeManifests.isEmpty()) {
+ return stamp();
+ }
+
+ Artifact merged = ruleContext.getImplicitOutputArtifact(MERGED_MANIFEST);
+
+ // Since we're already invoking an action to merge, we may as well stamp here as well.
+ getActionBuilder(merged)
+ .setMergeeManifests(mergeeManifests)
+ .setLogOut(ruleContext.getImplicitOutputArtifact(MERGE_LOG))
+ .build(ruleContext);
+
+ return new StampedAndroidManifest(ruleContext, merged, pkg, false);
+ }
+
+ /** If needed, stamps the manifest with the correct Java package */
+ StampedAndroidManifest stamp() throws InterruptedException {
+ Artifact stamped = ruleContext.getImplicitOutputArtifact(MERGED_MANIFEST);
+
+ getActionBuilder(stamped).build(ruleContext);
+
+ return new StampedAndroidManifest(ruleContext, stamped, pkg, isDummy);
+ }
+
+ /**
+ * Gets the manifest artifact wrapped by this object. May be null if the manifest is to be
+ * generated but has not been.
+ */
+ @Nullable
+ Artifact getManifest() {
+ return manifest;
+ }
+
+ String getPackage() {
+ return pkg;
+ }
+
+ boolean isDummy() {
+ return isDummy;
+ }
+
+ /** Gets a {@link ManifestMergerActionBuilder} with common settings always used by this object. */
+ private ManifestMergerActionBuilder getActionBuilder(Artifact manifestOutput) {
+ return new ManifestMergerActionBuilder(ruleContext)
+ .setCustomPackage(pkg)
+ // The current manifest merger action uses the "custom_package" value when working on
+ // "library" targets, and ignores it and removes any tool annotations from the manifest
+ // otherwise. As this method is not intended to produce a final merged manifest, even when
+ // run on a binary, always use the "library" settings here.
+ .setLibrary(true)
+ .setManifest(manifest)
+ .setManifestOutput(manifestOutput);
+ }
+
+ /** Gets the default Java package */
+ static String getDefaultPackage(RuleContext ruleContext) {
+ PathFragment dummyJar = ruleContext.getPackageDirectory().getChild("Dummy.jar");
+ return getJavaPackageFromPath(ruleContext, dummyJar);
+ }
+
+ /**
+ * Gets the Java package of a JAR file based on it's path.
+ *
+ * <p>Bazel requires that all Java code (including Android code) be in a path prefixed with "java"
+ * or "javatests" followed by the Java package; this method validates and takes advantage of that
+ * requirement.
+ *
+ * @param ruleContext the current context
+ * @param jarPathFragment The path to a JAR file contained in the current BUILD file's directory.
+ * @return the Java package, as a String
+ */
+ static String getJavaPackageFromPath(RuleContext ruleContext, PathFragment jarPathFragment) {
+ // TODO(bazel-team): JavaUtil.getJavaPackageName does not check to see if the path is valid.
+ // So we need to check for the JavaRoot.
+ if (JavaUtil.getJavaRoot(jarPathFragment) == null) {
+ ruleContext.ruleError(
+ "The location of your BUILD file determines the Java package used for "
+ + "Android resource processing. A directory named \"java\" or \"javatests\" will "
+ + "be used as your Java source root and the path of your BUILD file relative to "
+ + "the Java source root will be used as the package for Android resource "
+ + "processing. The Java source root could not be determined for \""
+ + ruleContext.getPackageDirectory()
+ + "\". Move your BUILD file under a java or javatests directory, or set the "
+ + "'custom_package' attribute.");
+ }
+ return JavaUtil.getJavaPackageName(jarPathFragment);
+ }
+}
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/ManifestMergerActionBuilder.java b/src/main/java/com/google/devtools/build/lib/rules/android/ManifestMergerActionBuilder.java
index f093925220..adff649444 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/ManifestMergerActionBuilder.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/ManifestMergerActionBuilder.java
@@ -99,8 +99,10 @@ public class ManifestMergerActionBuilder {
.getRunfilesSupport()
.getRunfilesArtifacts());
- builder.addExecPath("--manifest", manifest);
- inputs.add(manifest);
+ if (manifest != null) {
+ builder.addExecPath("--manifest", manifest);
+ inputs.add(manifest);
+ }
if (mergeeManifests != null && !mergeeManifests.isEmpty()) {
builder.add(
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/ResourceContainer.java b/src/main/java/com/google/devtools/build/lib/rules/android/ResourceContainer.java
index 182167a6fc..7457da4eb0 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/ResourceContainer.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/ResourceContainer.java
@@ -23,7 +23,6 @@ import com.google.devtools.build.lib.actions.Artifact;
import com.google.devtools.build.lib.analysis.RuleContext;
import com.google.devtools.build.lib.cmdline.Label;
import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
-import com.google.devtools.build.lib.rules.java.JavaUtil;
import com.google.devtools.build.lib.skylarkinterface.SkylarkCallable;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModule;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModuleCategory;
@@ -390,21 +389,8 @@ public abstract class ResourceContainer {
if (hasCustomPackage(ruleContext)) {
return ruleContext.attributes().get("custom_package", Type.STRING);
}
- Artifact rJavaSrcJar = getJavaSourceJar();
- // TODO(bazel-team): JavaUtil.getJavaPackageName does not check to see if the path is valid.
- // So we need to check for the JavaRoot.
- if (JavaUtil.getJavaRoot(rJavaSrcJar.getExecPath()) == null) {
- ruleContext.ruleError(
- "The location of your BUILD file determines the Java package used for "
- + "Android resource processing. A directory named \"java\" or \"javatests\" will "
- + "be used as your Java source root and the path of your BUILD file relative to "
- + "the Java source root will be used as the package for Android resource "
- + "processing. The Java source root could not be determined for \""
- + ruleContext.getPackageDirectory()
- + "\". Move your BUILD file under a java or javatests directory, or set the "
- + "'custom_package' attribute.");
- }
- return JavaUtil.getJavaPackageName(rJavaSrcJar.getExecPath());
+
+ return AndroidManifest.getJavaPackageFromPath(ruleContext, getJavaSourceJar().getExecPath());
}
private static boolean hasCustomPackage(RuleContext ruleContext) {
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/StampedAndroidManifest.java b/src/main/java/com/google/devtools/build/lib/rules/android/StampedAndroidManifest.java
new file mode 100644
index 0000000000..2486151a38
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/StampedAndroidManifest.java
@@ -0,0 +1,47 @@
+// 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.rules.android;
+
+import com.google.devtools.build.lib.actions.Artifact;
+import com.google.devtools.build.lib.analysis.RuleContext;
+import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
+
+/** An {@link AndroidManifest} stamped with the correct package. */
+@Immutable
+public class StampedAndroidManifest extends AndroidManifest {
+
+ StampedAndroidManifest(
+ RuleContext ruleContext, Artifact manifest, String pkg, boolean isDummy) {
+ super(ruleContext, manifest, pkg, isDummy);
+ }
+
+ @Override
+ StampedAndroidManifest stamp() {
+ // This manifest is already stamped
+ return this;
+ }
+
+ /**
+ * Gets the manifest artifact wrapped by this object. Stamped manifests are guaranteed to have a
+ * non-null manifest artifact.
+ */
+ @Override
+ Artifact getManifest() {
+ return super.getManifest();
+ }
+
+ public AndroidManifestInfo toProvider() {
+ return AndroidManifestInfo.of(getManifest(), getPackage(), isDummy());
+ }
+}