Damien Martin-Guillerez | f88f4d8 | 2015-09-25 13:56:55 +0000 | [diff] [blame] | 1 | // Copyright 2014 The Bazel Authors. All rights reserved. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package com.google.devtools.build.lib.actions; |
| 16 | |
| 17 | import com.google.common.annotations.VisibleForTesting; |
| 18 | import com.google.common.base.Function; |
| 19 | import com.google.common.base.Functions; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 20 | import com.google.common.collect.Collections2; |
Googler | ece7572 | 2016-02-11 17:55:41 +0000 | [diff] [blame] | 21 | import com.google.common.collect.ImmutableSet; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 22 | import com.google.common.collect.Iterables; |
Michael Thvedt | 434e68e | 2016-02-09 00:57:46 +0000 | [diff] [blame] | 23 | import com.google.devtools.build.lib.actions.Artifact.ArtifactExpander; |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 24 | import com.google.devtools.build.lib.actions.Artifact.TreeFileArtifact; |
Mark Schaller | 6df8179 | 2015-12-10 18:47:47 +0000 | [diff] [blame] | 25 | import com.google.devtools.build.lib.util.Preconditions; |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 26 | import com.google.devtools.build.lib.vfs.PathFragment; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 27 | import java.util.ArrayList; |
| 28 | import java.util.Collection; |
| 29 | import java.util.List; |
Googler | ece7572 | 2016-02-11 17:55:41 +0000 | [diff] [blame] | 30 | import java.util.Set; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 31 | |
| 32 | /** |
| 33 | * Helper utility to create ActionInput instances. |
| 34 | */ |
| 35 | public final class ActionInputHelper { |
| 36 | private ActionInputHelper() { |
| 37 | } |
| 38 | |
| 39 | @VisibleForTesting |
Michael Thvedt | 434e68e | 2016-02-09 00:57:46 +0000 | [diff] [blame] | 40 | public static ArtifactExpander actionGraphArtifactExpander( |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 41 | final ActionGraph actionGraph) { |
Michael Thvedt | 434e68e | 2016-02-09 00:57:46 +0000 | [diff] [blame] | 42 | return new ArtifactExpander() { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 43 | @Override |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 44 | public void expand(Artifact mm, Collection<? super Artifact> output) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 45 | // Skyframe is stricter in that it checks that "mm" is a input of the action, because |
| 46 | // it cannot expand arbitrary middlemen without access to a global action graph. |
| 47 | // We could check this constraint here too, but it seems unnecessary. This code is |
| 48 | // going away anyway. |
| 49 | Preconditions.checkArgument(mm.isMiddlemanArtifact(), |
| 50 | "%s is not a middleman artifact", mm); |
Rumou Duan | 33bab46 | 2016-04-25 17:55:12 +0000 | [diff] [blame] | 51 | ActionAnalysisMetadata middlemanAction = actionGraph.getGeneratingAction(mm); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 52 | Preconditions.checkState(middlemanAction != null, mm); |
| 53 | // TODO(bazel-team): Consider expanding recursively or throwing an exception here. |
| 54 | // Most likely, this code will cause silent errors if we ever have a middleman that |
| 55 | // contains a middleman. |
| 56 | if (middlemanAction.getActionType() == Action.MiddlemanType.AGGREGATING_MIDDLEMAN) { |
| 57 | Artifact.addNonMiddlemanArtifacts(middlemanAction.getInputs(), output, |
| 58 | Functions.<Artifact>identity()); |
| 59 | } |
| 60 | |
| 61 | } |
| 62 | }; |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Most ActionInputs are created and never used again. On the off chance that one is, however, we |
| 67 | * implement equality via path comparison. Since file caches are keyed by ActionInput, equality |
| 68 | * checking does come up. |
| 69 | */ |
| 70 | private static class BasicActionInput implements ActionInput { |
| 71 | private final String path; |
Ulf Adams | 14db507 | 2017-03-20 16:00:51 +0000 | [diff] [blame] | 72 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 73 | public BasicActionInput(String path) { |
| 74 | this.path = Preconditions.checkNotNull(path); |
| 75 | } |
| 76 | |
| 77 | @Override |
| 78 | public String getExecPathString() { |
| 79 | return path; |
| 80 | } |
| 81 | |
| 82 | @Override |
Ulf Adams | 14db507 | 2017-03-20 16:00:51 +0000 | [diff] [blame] | 83 | public PathFragment getExecPath() { |
nharmata | b4060b6 | 2017-04-04 17:11:39 +0000 | [diff] [blame] | 84 | return PathFragment.create(path); |
Ulf Adams | 14db507 | 2017-03-20 16:00:51 +0000 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | @Override |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 88 | public int hashCode() { |
| 89 | return path.hashCode(); |
| 90 | } |
| 91 | |
| 92 | @Override |
| 93 | public boolean equals(Object other) { |
| 94 | if (this == other) { |
| 95 | return true; |
| 96 | } |
| 97 | if (other == null) { |
| 98 | return false; |
| 99 | } |
| 100 | if (!this.getClass().equals(other.getClass())) { |
| 101 | return false; |
| 102 | } |
| 103 | return this.path.equals(((BasicActionInput) other).path); |
| 104 | } |
| 105 | |
| 106 | @Override |
| 107 | public String toString() { |
| 108 | return "BasicActionInput: " + path; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Creates an ActionInput with just the given relative path and no digest. |
| 114 | * |
| 115 | * @param path the relative path of the input. |
| 116 | * @return a ActionInput. |
| 117 | */ |
| 118 | public static ActionInput fromPath(String path) { |
| 119 | return new BasicActionInput(path); |
| 120 | } |
| 121 | |
Ulf Adams | 11e52b4 | 2017-01-11 11:00:24 +0000 | [diff] [blame] | 122 | /** |
| 123 | * Creates an ActionInput with just the given relative path and no digest. |
| 124 | * |
| 125 | * @param path the relative path of the input. |
| 126 | * @return a ActionInput. |
| 127 | */ |
| 128 | public static ActionInput fromPath(PathFragment path) { |
| 129 | return fromPath(path.getPathString()); |
| 130 | } |
| 131 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 132 | /** |
| 133 | * Creates a sequence of {@link ActionInput}s from a sequence of string paths. |
| 134 | */ |
| 135 | public static Collection<ActionInput> fromPaths(Collection<String> paths) { |
laurentlb | 3d2a68c | 2017-06-30 00:32:04 +0200 | [diff] [blame^] | 136 | return Collections2.transform(paths, ActionInputHelper::fromPath); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | /** |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 140 | * Instantiates a concrete TreeFileArtifact with the given parent Artifact and path |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 141 | * relative to that Artifact. |
| 142 | */ |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 143 | public static TreeFileArtifact treeFileArtifact( |
| 144 | Artifact parent, PathFragment relativePath) { |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 145 | Preconditions.checkState(parent.isTreeArtifact(), |
| 146 | "Given parent %s must be a TreeArtifact", parent); |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 147 | return new TreeFileArtifact(parent, relativePath); |
| 148 | } |
| 149 | |
| 150 | public static TreeFileArtifact treeFileArtifact( |
| 151 | Artifact parent, PathFragment relativePath, ArtifactOwner artifactOwner) { |
| 152 | Preconditions.checkState(parent.isTreeArtifact(), |
| 153 | "Given parent %s must be a TreeArtifact", parent); |
| 154 | return new TreeFileArtifact( |
| 155 | parent, |
| 156 | relativePath, |
| 157 | artifactOwner); |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | /** |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 161 | * Instantiates a concrete TreeFileArtifact with the given parent Artifact and path |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 162 | * relative to that Artifact. |
| 163 | */ |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 164 | public static TreeFileArtifact treeFileArtifact(Artifact parent, String relativePath) { |
nharmata | b4060b6 | 2017-04-04 17:11:39 +0000 | [diff] [blame] | 165 | return treeFileArtifact(parent, PathFragment.create(relativePath)); |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 168 | /** Returns an Iterable of TreeFileArtifacts with the given parent and parent relative paths. */ |
| 169 | public static Iterable<TreeFileArtifact> asTreeFileArtifacts( |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 170 | final Artifact parent, Iterable<? extends PathFragment> parentRelativePaths) { |
| 171 | Preconditions.checkState(parent.isTreeArtifact(), |
| 172 | "Given parent %s must be a TreeArtifact", parent); |
laurentlb | 3d2a68c | 2017-06-30 00:32:04 +0200 | [diff] [blame^] | 173 | return Iterables.transform( |
| 174 | parentRelativePaths, pathFragment -> treeFileArtifact(parent, pathFragment)); |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 177 | /** Returns a Set of TreeFileArtifacts with the given parent and parent-relative paths. */ |
| 178 | public static Set<TreeFileArtifact> asTreeFileArtifacts( |
Googler | ece7572 | 2016-02-11 17:55:41 +0000 | [diff] [blame] | 179 | final Artifact parent, Set<? extends PathFragment> parentRelativePaths) { |
| 180 | Preconditions.checkState(parent.isTreeArtifact(), |
| 181 | "Given parent %s must be a TreeArtifact", parent); |
| 182 | |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 183 | ImmutableSet.Builder<TreeFileArtifact> builder = ImmutableSet.builder(); |
Googler | ece7572 | 2016-02-11 17:55:41 +0000 | [diff] [blame] | 184 | for (PathFragment path : parentRelativePaths) { |
Rumou Duan | a77f32c | 2016-04-13 21:59:21 +0000 | [diff] [blame] | 185 | builder.add(treeFileArtifact(parent, path)); |
Googler | ece7572 | 2016-02-11 17:55:41 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | return builder.build(); |
| 189 | } |
| 190 | |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 191 | /** |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 192 | * Expands middleman artifacts in a sequence of {@link ActionInput}s. |
| 193 | * |
| 194 | * <p>Non-middleman artifacts are returned untouched. |
| 195 | */ |
Michael Thvedt | 434e68e | 2016-02-09 00:57:46 +0000 | [diff] [blame] | 196 | public static List<ActionInput> expandArtifacts(Iterable<? extends ActionInput> inputs, |
| 197 | ArtifactExpander artifactExpander) { |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 198 | |
| 199 | List<ActionInput> result = new ArrayList<>(); |
| 200 | List<Artifact> containedArtifacts = new ArrayList<>(); |
| 201 | for (ActionInput input : inputs) { |
| 202 | if (!(input instanceof Artifact)) { |
| 203 | result.add(input); |
| 204 | continue; |
| 205 | } |
| 206 | containedArtifacts.add((Artifact) input); |
| 207 | } |
Michael Thvedt | 434e68e | 2016-02-09 00:57:46 +0000 | [diff] [blame] | 208 | Artifact.addExpandedArtifacts(containedArtifacts, result, artifactExpander); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 209 | return result; |
| 210 | } |
| 211 | |
Michael Thvedt | e3b1cb7 | 2016-02-08 23:32:27 +0000 | [diff] [blame] | 212 | /** Formatter for execPath String output. Public because {@link Artifact} uses it directly. */ |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 213 | public static final Function<ActionInput, String> EXEC_PATH_STRING_FORMATTER = |
laurentlb | 3d2a68c | 2017-06-30 00:32:04 +0200 | [diff] [blame^] | 214 | ActionInput::getExecPathString; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 215 | |
| 216 | public static Iterable<String> toExecPaths(Iterable<? extends ActionInput> artifacts) { |
| 217 | return Iterables.transform(artifacts, EXEC_PATH_STRING_FORMATTER); |
| 218 | } |
| 219 | } |