Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 1 | // Copyright 2015 The Bazel Authors. All rights reserved. |
| 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 | package com.google.devtools.build.lib.skyframe; |
| 15 | |
| 16 | import static com.google.devtools.build.lib.actions.util.ActionCacheTestHelper.AMNESIAC_CACHE; |
| 17 | |
tomlu | a155b53 | 2017-11-08 20:12:47 +0100 | [diff] [blame] | 18 | import com.google.common.base.Preconditions; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 19 | import com.google.common.base.Predicate; |
| 20 | import com.google.common.base.Predicates; |
janakr | 93e3eea | 2017-03-30 22:09:37 +0000 | [diff] [blame] | 21 | import com.google.common.base.Suppliers; |
Lukacs Berki | d3262d1 | 2015-10-30 14:33:51 +0000 | [diff] [blame] | 22 | import com.google.common.collect.ImmutableList; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 23 | import com.google.common.collect.ImmutableMap; |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 24 | import com.google.common.collect.ImmutableSet; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 25 | import com.google.common.collect.Iterables; |
| 26 | import com.google.common.collect.Range; |
| 27 | import com.google.common.collect.Sets; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 28 | import com.google.devtools.build.lib.actions.Action; |
Rumou Duan | 33bab46 | 2016-04-25 17:55:12 +0000 | [diff] [blame] | 29 | import com.google.devtools.build.lib.actions.ActionAnalysisMetadata; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 30 | import com.google.devtools.build.lib.actions.ActionCacheChecker; |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 31 | import com.google.devtools.build.lib.actions.ActionExecutionContext; |
| 32 | import com.google.devtools.build.lib.actions.ActionExecutionException; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 33 | import com.google.devtools.build.lib.actions.ActionExecutionStatusReporter; |
ulfjack | 7599a4d | 2017-07-21 13:58:33 +0200 | [diff] [blame] | 34 | import com.google.devtools.build.lib.actions.ActionInputPrefetcher; |
tomlu | 3d1a194 | 2017-11-29 14:01:21 -0800 | [diff] [blame] | 35 | import com.google.devtools.build.lib.actions.ActionKeyContext; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 36 | import com.google.devtools.build.lib.actions.ActionLogBufferPathGenerator; |
janakr | 93e3eea | 2017-03-30 22:09:37 +0000 | [diff] [blame] | 37 | import com.google.devtools.build.lib.actions.ActionLookupData; |
| 38 | import com.google.devtools.build.lib.actions.ActionLookupValue; |
ruperts | 841880d | 2017-10-18 00:58:29 +0200 | [diff] [blame] | 39 | import com.google.devtools.build.lib.actions.ActionResult; |
janakr | 0175ce3 | 2018-02-26 15:54:57 -0800 | [diff] [blame] | 40 | import com.google.devtools.build.lib.actions.Actions; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 41 | import com.google.devtools.build.lib.actions.Artifact; |
janakr | 45b308a | 2018-06-08 12:51:58 -0700 | [diff] [blame^] | 42 | import com.google.devtools.build.lib.actions.ArtifactOwner; |
tomlu | 1cdcdf9 | 2018-01-16 11:07:51 -0800 | [diff] [blame] | 43 | import com.google.devtools.build.lib.actions.ArtifactRoot; |
cparsons | e2d200f | 2018-03-06 16:15:11 -0800 | [diff] [blame] | 44 | import com.google.devtools.build.lib.actions.BasicActionLookupValue; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 45 | import com.google.devtools.build.lib.actions.BuildFailedException; |
| 46 | import com.google.devtools.build.lib.actions.Executor; |
shahan | 602cc85 | 2018-06-06 20:09:57 -0700 | [diff] [blame] | 47 | import com.google.devtools.build.lib.actions.FileStateValue; |
| 48 | import com.google.devtools.build.lib.actions.FileValue; |
shahan | 499503b | 2018-06-07 18:57:07 -0700 | [diff] [blame] | 49 | import com.google.devtools.build.lib.actions.MetadataProvider; |
janakr | 0175ce3 | 2018-02-26 15:54:57 -0800 | [diff] [blame] | 50 | import com.google.devtools.build.lib.actions.MutableActionGraph.ActionConflictException; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 51 | import com.google.devtools.build.lib.actions.ResourceManager; |
| 52 | import com.google.devtools.build.lib.actions.ResourceSet; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 53 | import com.google.devtools.build.lib.actions.TestExecException; |
| 54 | import com.google.devtools.build.lib.actions.cache.ActionCache; |
jmmv | 9573a0d | 2017-09-26 11:59:22 -0400 | [diff] [blame] | 55 | import com.google.devtools.build.lib.actions.cache.Protos.ActionCacheStatistics; |
| 56 | import com.google.devtools.build.lib.actions.cache.Protos.ActionCacheStatistics.MissReason; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 57 | import com.google.devtools.build.lib.actions.util.DummyExecutor; |
| 58 | import com.google.devtools.build.lib.actions.util.TestAction; |
Kristina Chodorow | f9fdc8d | 2015-12-08 12:49:31 +0000 | [diff] [blame] | 59 | import com.google.devtools.build.lib.analysis.BlazeDirectories; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 60 | import com.google.devtools.build.lib.analysis.ConfiguredTarget; |
janakr | 3b63a4e | 2017-09-14 09:55:40 +0200 | [diff] [blame] | 61 | import com.google.devtools.build.lib.analysis.ServerDirectories; |
Googler | bfd4e24 | 2016-07-15 22:23:37 +0000 | [diff] [blame] | 62 | import com.google.devtools.build.lib.analysis.TopLevelArtifactContext; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 63 | import com.google.devtools.build.lib.buildtool.SkyframeBuilder; |
philwo | 3bcb9f6 | 2017-09-06 12:52:21 +0200 | [diff] [blame] | 64 | import com.google.devtools.build.lib.clock.BlazeClock; |
| 65 | import com.google.devtools.build.lib.clock.Clock; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 66 | import com.google.devtools.build.lib.events.Reporter; |
| 67 | import com.google.devtools.build.lib.events.StoredEventHandler; |
Rumou Duan | a1c7534 | 2016-10-12 22:39:19 +0000 | [diff] [blame] | 68 | import com.google.devtools.build.lib.exec.SingleBuildFileCache; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 69 | import com.google.devtools.build.lib.pkgcache.PathPackageLocator; |
tomlu | 6ed4fd5 | 2018-04-03 10:01:10 -0700 | [diff] [blame] | 70 | import com.google.devtools.build.lib.skyframe.AspectValue.AspectKey; |
Nathan Harmata | d4f7594 | 2016-10-18 08:55:17 +0000 | [diff] [blame] | 71 | import com.google.devtools.build.lib.skyframe.ExternalFilesHelper.ExternalFileAction; |
John Cater | 5e9ce94 | 2016-10-12 17:23:30 +0000 | [diff] [blame] | 72 | import com.google.devtools.build.lib.skyframe.PackageLookupFunction.CrossRepositoryLabelViolationStrategy; |
Janak Ramakrishnan | 3bf4fd0 | 2017-03-21 19:01:13 +0000 | [diff] [blame] | 73 | import com.google.devtools.build.lib.skyframe.SkyframeActionExecutor.ActionCompletedReceiver; |
| 74 | import com.google.devtools.build.lib.skyframe.SkyframeActionExecutor.ProgressSupplier; |
shahan | 569e169 | 2018-02-20 16:06:00 -0800 | [diff] [blame] | 75 | import com.google.devtools.build.lib.skyframe.serialization.autocodec.AutoCodec; |
Florian Weikert | cca703a | 2015-12-07 09:56:38 +0000 | [diff] [blame] | 76 | import com.google.devtools.build.lib.testutil.FoundationTestCase; |
Luis Fernando Pino Duque | be10218 | 2016-05-23 14:03:55 +0000 | [diff] [blame] | 77 | import com.google.devtools.build.lib.testutil.TestConstants; |
Kristina Chodorow | f9fdc8d | 2015-12-08 12:49:31 +0000 | [diff] [blame] | 78 | import com.google.devtools.build.lib.testutil.TestRuleClassProvider; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 79 | import com.google.devtools.build.lib.testutil.TestUtils; |
| 80 | import com.google.devtools.build.lib.util.AbruptExitException; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 81 | import com.google.devtools.build.lib.util.io.TimestampGranularityMonitor; |
| 82 | import com.google.devtools.build.lib.vfs.FileSystem; |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 83 | import com.google.devtools.build.lib.vfs.FileSystemUtils; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 84 | import com.google.devtools.build.lib.vfs.Path; |
| 85 | import com.google.devtools.build.lib.vfs.PathFragment; |
tomlu | ee6a686 | 2018-01-17 14:36:26 -0800 | [diff] [blame] | 86 | import com.google.devtools.build.lib.vfs.Root; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 87 | import com.google.devtools.build.skyframe.CycleInfo; |
| 88 | import com.google.devtools.build.skyframe.ErrorInfo; |
| 89 | import com.google.devtools.build.skyframe.EvaluationProgressReceiver; |
| 90 | import com.google.devtools.build.skyframe.EvaluationResult; |
| 91 | import com.google.devtools.build.skyframe.InMemoryMemoizingEvaluator; |
| 92 | import com.google.devtools.build.skyframe.RecordingDifferencer; |
janakr | 1cde872 | 2017-10-10 03:22:21 +0200 | [diff] [blame] | 93 | import com.google.devtools.build.skyframe.SequencedRecordingDifferencer; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 94 | import com.google.devtools.build.skyframe.SequentialBuildDriver; |
Kristina Chodorow | f9fdc8d | 2015-12-08 12:49:31 +0000 | [diff] [blame] | 95 | import com.google.devtools.build.skyframe.SkyFunction; |
Rumou Duan | 7387620 | 2016-06-06 18:52:08 +0000 | [diff] [blame] | 96 | import com.google.devtools.build.skyframe.SkyFunctionException; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 97 | import com.google.devtools.build.skyframe.SkyFunctionName; |
| 98 | import com.google.devtools.build.skyframe.SkyKey; |
| 99 | import com.google.devtools.build.skyframe.SkyValue; |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 100 | import java.io.IOException; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 101 | import java.io.PrintStream; |
| 102 | import java.util.ArrayList; |
| 103 | import java.util.Collection; |
| 104 | import java.util.Collections; |
| 105 | import java.util.HashMap; |
| 106 | import java.util.HashSet; |
| 107 | import java.util.List; |
| 108 | import java.util.Map; |
| 109 | import java.util.Set; |
| 110 | import java.util.UUID; |
| 111 | import java.util.concurrent.atomic.AtomicReference; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 112 | import javax.annotation.Nullable; |
Janak Ramakrishnan | ad77f97 | 2016-07-29 20:58:42 +0000 | [diff] [blame] | 113 | import org.junit.Before; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 114 | |
| 115 | /** |
| 116 | * The common code that's shared between various builder tests. |
| 117 | */ |
Florian Weikert | cca703a | 2015-12-07 09:56:38 +0000 | [diff] [blame] | 118 | public abstract class TimestampBuilderTestCase extends FoundationTestCase { |
shahan | 1fe2312 | 2018-02-28 09:18:36 -0800 | [diff] [blame] | 119 | @AutoCodec |
janakr | 573807d | 2018-01-11 14:02:35 -0800 | [diff] [blame] | 120 | protected static final ActionLookupValue.ActionLookupKey ACTION_LOOKUP_KEY = |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 121 | new SingletonActionLookupKey(); |
shahan | 1fe2312 | 2018-02-28 09:18:36 -0800 | [diff] [blame] | 122 | |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 123 | protected static final Predicate<Action> ALWAYS_EXECUTE_FILTER = Predicates.alwaysTrue(); |
| 124 | protected static final String CYCLE_MSG = "Yarrrr, there be a cycle up in here"; |
| 125 | |
| 126 | protected Clock clock = BlazeClock.instance(); |
| 127 | protected TimestampGranularityMonitor tsgm; |
janakr | 1cde872 | 2017-10-10 03:22:21 +0200 | [diff] [blame] | 128 | protected RecordingDifferencer differencer = new SequencedRecordingDifferencer(); |
Rumou Duan | 7387620 | 2016-06-06 18:52:08 +0000 | [diff] [blame] | 129 | private Set<ActionAnalysisMetadata> actions; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 130 | |
tomlu | 3d1a194 | 2017-11-29 14:01:21 -0800 | [diff] [blame] | 131 | protected final ActionKeyContext actionKeyContext = new ActionKeyContext(); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 132 | |
Florian Weikert | 92b2236 | 2015-12-03 10:17:18 +0000 | [diff] [blame] | 133 | @Before |
| 134 | public final void initialize() throws Exception { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 135 | inMemoryCache = new InMemoryActionCache(); |
| 136 | tsgm = new TimestampGranularityMonitor(clock); |
| 137 | ResourceManager.instance().setAvailableResources(ResourceSet.createWithRamCpuIo(100, 1, 1)); |
| 138 | actions = new HashSet<>(); |
janakr | 93e3eea | 2017-03-30 22:09:37 +0000 | [diff] [blame] | 139 | actionTemplateExpansionFunction = |
tomlu | 3d1a194 | 2017-11-29 14:01:21 -0800 | [diff] [blame] | 140 | new ActionTemplateExpansionFunction(actionKeyContext, Suppliers.ofInstance(false)); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | protected void clearActions() { |
| 144 | actions.clear(); |
| 145 | } |
| 146 | |
Rumou Duan | 7387620 | 2016-06-06 18:52:08 +0000 | [diff] [blame] | 147 | protected <T extends ActionAnalysisMetadata> T registerAction(T action) { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 148 | actions.add(action); |
| 149 | return action; |
| 150 | } |
| 151 | |
Ulf Adams | 94f6330 | 2016-04-29 15:04:13 +0000 | [diff] [blame] | 152 | protected Builder createBuilder(ActionCache actionCache) throws Exception { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 153 | return createBuilder(actionCache, 1, /*keepGoing=*/ false); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Create a ParallelBuilder with a DatabaseDependencyChecker using the |
| 158 | * specified ActionCache. |
| 159 | */ |
| 160 | protected Builder createBuilder( |
Ulf Adams | 94f6330 | 2016-04-29 15:04:13 +0000 | [diff] [blame] | 161 | ActionCache actionCache, final int threadCount, final boolean keepGoing) throws Exception { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 162 | return createBuilder(actionCache, threadCount, keepGoing, null); |
| 163 | } |
| 164 | |
| 165 | protected Builder createBuilder( |
| 166 | final ActionCache actionCache, |
| 167 | final int threadCount, |
| 168 | final boolean keepGoing, |
Ulf Adams | 94f6330 | 2016-04-29 15:04:13 +0000 | [diff] [blame] | 169 | @Nullable EvaluationProgressReceiver evaluationProgressReceiver) throws Exception { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 170 | AtomicReference<PathPackageLocator> pkgLocator = |
John Cater | e0d1d0e | 2017-11-28 20:47:41 -0800 | [diff] [blame] | 171 | new AtomicReference<>( |
| 172 | new PathPackageLocator( |
| 173 | outputBase, |
tomlu | ee6a686 | 2018-01-17 14:36:26 -0800 | [diff] [blame] | 174 | ImmutableList.of(Root.fromPath(rootDirectory)), |
John Cater | e0d1d0e | 2017-11-28 20:47:41 -0800 | [diff] [blame] | 175 | BazelSkyframeExecutorConstants.BUILD_FILES_BY_PRIORITY)); |
Ulf Adams | c73051c6 | 2016-03-23 09:18:13 +0000 | [diff] [blame] | 176 | AtomicReference<TimestampGranularityMonitor> tsgmRef = new AtomicReference<>(tsgm); |
janakr | 3b63a4e | 2017-09-14 09:55:40 +0200 | [diff] [blame] | 177 | BlazeDirectories directories = |
| 178 | new BlazeDirectories( |
Klaus Aehlig | c2499c4 | 2018-02-27 05:47:21 -0800 | [diff] [blame] | 179 | new ServerDirectories(rootDirectory, outputBase, outputBase), |
janakr | 3b63a4e | 2017-09-14 09:55:40 +0200 | [diff] [blame] | 180 | rootDirectory, |
cushon | 849df36 | 2018-05-14 01:51:45 -0700 | [diff] [blame] | 181 | /* defaultSystemJavabase= */ null, |
janakr | 3b63a4e | 2017-09-14 09:55:40 +0200 | [diff] [blame] | 182 | TestConstants.PRODUCT_NAME); |
nharmata | 3fb7d34 | 2018-02-23 11:37:51 -0800 | [diff] [blame] | 183 | ExternalFilesHelper externalFilesHelper = ExternalFilesHelper.createForTesting( |
Nathan Harmata | d4f7594 | 2016-10-18 08:55:17 +0000 | [diff] [blame] | 184 | pkgLocator, |
| 185 | ExternalFileAction.DEPEND_ON_EXTERNAL_PKG_FOR_EXTERNAL_REPO_PATHS, |
| 186 | directories); |
janakr | 1cde872 | 2017-10-10 03:22:21 +0200 | [diff] [blame] | 187 | differencer = new SequencedRecordingDifferencer(); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 188 | |
| 189 | ActionExecutionStatusReporter statusReporter = |
| 190 | ActionExecutionStatusReporter.create(new StoredEventHandler()); |
| 191 | final SkyframeActionExecutor skyframeActionExecutor = |
shahan | b1dd4e3 | 2018-05-09 08:23:31 -0700 | [diff] [blame] | 192 | new SkyframeActionExecutor( |
| 193 | actionKeyContext, |
| 194 | new AtomicReference<>(statusReporter), |
shahan | 0015d18 | 2018-05-15 15:09:46 -0700 | [diff] [blame] | 195 | /*sourceRootSupplier=*/ () -> ImmutableList.of(), |
shahan | b1dd4e3 | 2018-05-09 08:23:31 -0700 | [diff] [blame] | 196 | /*usesActionFileSystem=*/ () -> false); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 197 | |
Ulf Adams | 94f6330 | 2016-04-29 15:04:13 +0000 | [diff] [blame] | 198 | Path actionOutputBase = scratch.dir("/usr/local/google/_blaze_jrluser/FAKEMD5/action_out/"); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 199 | skyframeActionExecutor.setActionLogBufferPathGenerator( |
| 200 | new ActionLogBufferPathGenerator(actionOutputBase)); |
| 201 | |
shahan | 499503b | 2018-06-07 18:57:07 -0700 | [diff] [blame] | 202 | MetadataProvider cache = |
| 203 | new SingleBuildFileCache(rootDirectory.getPathString(), scratch.getFileSystem()); |
ulfjack | 7599a4d | 2017-07-21 13:58:33 +0200 | [diff] [blame] | 204 | skyframeActionExecutor.configure(cache, ActionInputPrefetcher.NONE); |
Rumou Duan | a1c7534 | 2016-10-12 22:39:19 +0000 | [diff] [blame] | 205 | |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 206 | final InMemoryMemoizingEvaluator evaluator = |
| 207 | new InMemoryMemoizingEvaluator( |
Kristina Chodorow | f9fdc8d | 2015-12-08 12:49:31 +0000 | [diff] [blame] | 208 | ImmutableMap.<SkyFunctionName, SkyFunction>builder() |
shahan | 602cc85 | 2018-06-06 20:09:57 -0700 | [diff] [blame] | 209 | .put(FileStateValue.FILE_STATE, new FileStateFunction(tsgmRef, externalFilesHelper)) |
| 210 | .put(FileValue.FILE, new FileFunction(pkgLocator)) |
janakr | 45b308a | 2018-06-08 12:51:58 -0700 | [diff] [blame^] | 211 | .put(Artifact.ARTIFACT, new ArtifactFunction()) |
Damien Martin-Guillerez | bc8b5e0 | 2016-02-05 22:09:09 +0000 | [diff] [blame] | 212 | .put( |
| 213 | SkyFunctions.ACTION_EXECUTION, |
Ulf Adams | c73051c6 | 2016-03-23 09:18:13 +0000 | [diff] [blame] | 214 | new ActionExecutionFunction(skyframeActionExecutor, tsgmRef)) |
Damien Martin-Guillerez | bc8b5e0 | 2016-02-05 22:09:09 +0000 | [diff] [blame] | 215 | .put( |
| 216 | SkyFunctions.PACKAGE, |
Kristina Chodorow | f9fdc8d | 2015-12-08 12:49:31 +0000 | [diff] [blame] | 217 | new PackageFunction(null, null, null, null, null, null, null)) |
John Cater | 5e9ce94 | 2016-10-12 17:23:30 +0000 | [diff] [blame] | 218 | .put( |
| 219 | SkyFunctions.PACKAGE_LOOKUP, |
John Cater | 0c0735a | 2016-11-11 01:52:02 +0000 | [diff] [blame] | 220 | new PackageLookupFunction( |
| 221 | null, |
| 222 | CrossRepositoryLabelViolationStrategy.ERROR, |
John Cater | e0d1d0e | 2017-11-28 20:47:41 -0800 | [diff] [blame] | 223 | BazelSkyframeExecutorConstants.BUILD_FILES_BY_PRIORITY)) |
Damien Martin-Guillerez | bc8b5e0 | 2016-02-05 22:09:09 +0000 | [diff] [blame] | 224 | .put( |
| 225 | SkyFunctions.WORKSPACE_AST, |
Damien Martin-Guillerez | 4ecfe51 | 2016-01-22 11:03:23 +0000 | [diff] [blame] | 226 | new WorkspaceASTFunction(TestRuleClassProvider.getRuleClassProvider())) |
Damien Martin-Guillerez | bc8b5e0 | 2016-02-05 22:09:09 +0000 | [diff] [blame] | 227 | .put( |
| 228 | SkyFunctions.WORKSPACE_FILE, |
| 229 | new WorkspaceFileFunction( |
| 230 | TestRuleClassProvider.getRuleClassProvider(), |
John Cater | e0d1d0e | 2017-11-28 20:47:41 -0800 | [diff] [blame] | 231 | TestConstants.PACKAGE_FACTORY_BUILDER_FACTORY_FOR_TESTING |
carmi | d6a9828 | 2018-03-13 19:19:16 -0700 | [diff] [blame] | 232 | .builder(directories) |
nharmata | e57e9a3 | 2018-04-02 15:10:24 -0700 | [diff] [blame] | 233 | .build(TestRuleClassProvider.getRuleClassProvider()), |
Kristina Chodorow | 5a2936f | 2016-04-22 17:02:19 +0000 | [diff] [blame] | 234 | directories)) |
Damien Martin-Guillerez | bc8b5e0 | 2016-02-05 22:09:09 +0000 | [diff] [blame] | 235 | .put(SkyFunctions.EXTERNAL_PACKAGE, new ExternalPackageFunction()) |
John Cater | 5e9ce94 | 2016-10-12 17:23:30 +0000 | [diff] [blame] | 236 | .put( |
| 237 | SkyFunctions.ACTION_TEMPLATE_EXPANSION, |
| 238 | new DelegatingActionTemplateExpansionFunction()) |
Kristina Chodorow | f9fdc8d | 2015-12-08 12:49:31 +0000 | [diff] [blame] | 239 | .build(), |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 240 | differencer, |
| 241 | evaluationProgressReceiver); |
| 242 | final SequentialBuildDriver driver = new SequentialBuildDriver(evaluator); |
| 243 | PrecomputedValue.BUILD_ID.set(differencer, UUID.randomUUID()); |
Damien Martin-Guillerez | 777f3af | 2017-02-08 17:22:02 +0000 | [diff] [blame] | 244 | PrecomputedValue.ACTION_ENV.set(differencer, ImmutableMap.<String, String>of()); |
Kristina Chodorow | f9fdc8d | 2015-12-08 12:49:31 +0000 | [diff] [blame] | 245 | PrecomputedValue.PATH_PACKAGE_LOCATOR.set(differencer, pkgLocator.get()); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 246 | |
| 247 | return new Builder() { |
janakr | 0175ce3 | 2018-02-26 15:54:57 -0800 | [diff] [blame] | 248 | private void setGeneratingActions() throws ActionConflictException { |
janakr | 573807d | 2018-01-11 14:02:35 -0800 | [diff] [blame] | 249 | if (evaluator.getExistingValue(ACTION_LOOKUP_KEY) == null) { |
Janak Ramakrishnan | ad77f97 | 2016-07-29 20:58:42 +0000 | [diff] [blame] | 250 | differencer.inject( |
janakr | 93e3eea | 2017-03-30 22:09:37 +0000 | [diff] [blame] | 251 | ImmutableMap.of( |
janakr | 573807d | 2018-01-11 14:02:35 -0800 | [diff] [blame] | 252 | ACTION_LOOKUP_KEY, |
cparsons | e2d200f | 2018-03-06 16:15:11 -0800 | [diff] [blame] | 253 | new BasicActionLookupValue( |
janakr | 0175ce3 | 2018-02-26 15:54:57 -0800 | [diff] [blame] | 254 | Actions.filterSharedActionsAndThrowActionConflict( |
| 255 | actionKeyContext, ImmutableList.copyOf(actions)), |
| 256 | false))); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | |
| 260 | @Override |
| 261 | public void buildArtifacts( |
| 262 | Reporter reporter, |
| 263 | Set<Artifact> artifacts, |
| 264 | Set<ConfiguredTarget> parallelTests, |
| 265 | Set<ConfiguredTarget> exclusiveTests, |
gregce | 45ae096 | 2017-07-22 00:11:13 +0200 | [diff] [blame] | 266 | Set<ConfiguredTarget> targetsToBuild, |
| 267 | Set<ConfiguredTarget> targetsToSkip, |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 268 | Collection<AspectValue> aspects, |
| 269 | Executor executor, |
cpeyser | 8e9b28f | 2018-06-04 08:05:13 -0700 | [diff] [blame] | 270 | Set<ConfiguredTargetKey> builtTargets, |
tomlu | 6ed4fd5 | 2018-04-03 10:01:10 -0700 | [diff] [blame] | 271 | Set<AspectKey> builtAspects, |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 272 | boolean explain, |
Googler | bfd4e24 | 2016-07-15 22:23:37 +0000 | [diff] [blame] | 273 | Range<Long> lastExecutionTimeRange, |
| 274 | TopLevelArtifactContext topLevelArtifactContext) |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 275 | throws BuildFailedException, AbruptExitException, InterruptedException, |
| 276 | TestExecException { |
| 277 | skyframeActionExecutor.prepareForExecution( |
| 278 | reporter, |
| 279 | executor, |
janakr | c8dce99 | 2017-09-25 21:48:27 +0200 | [diff] [blame] | 280 | keepGoing, |
| 281 | /*explain=*/ false, |
tomlu | 3d1a194 | 2017-11-29 14:01:21 -0800 | [diff] [blame] | 282 | new ActionCacheChecker( |
| 283 | actionCache, null, actionKeyContext, ALWAYS_EXECUTE_FILTER, null), |
Janak Ramakrishnan | ad77f97 | 2016-07-29 20:58:42 +0000 | [diff] [blame] | 284 | null); |
Janak Ramakrishnan | 3bf4fd0 | 2017-03-21 19:01:13 +0000 | [diff] [blame] | 285 | skyframeActionExecutor.setActionExecutionProgressReportingObjects( |
| 286 | EMPTY_PROGRESS_SUPPLIER, EMPTY_COMPLETION_RECEIVER); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 287 | |
| 288 | List<SkyKey> keys = new ArrayList<>(); |
| 289 | for (Artifact artifact : artifacts) { |
Janak Ramakrishnan | ad77f97 | 2016-07-29 20:58:42 +0000 | [diff] [blame] | 290 | keys.add(ArtifactSkyKey.key(artifact, true)); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 291 | } |
| 292 | |
janakr | 0175ce3 | 2018-02-26 15:54:57 -0800 | [diff] [blame] | 293 | try { |
| 294 | setGeneratingActions(); |
| 295 | } catch (ActionConflictException e) { |
| 296 | throw new IllegalStateException(e); |
| 297 | } |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 298 | EvaluationResult<SkyValue> result = driver.evaluate(keys, keepGoing, threadCount, reporter); |
| 299 | |
| 300 | if (result.hasError()) { |
| 301 | boolean hasCycles = false; |
| 302 | for (Map.Entry<SkyKey, ErrorInfo> entry : result.errorMap().entrySet()) { |
| 303 | Iterable<CycleInfo> cycles = entry.getValue().getCycleInfo(); |
| 304 | hasCycles |= !Iterables.isEmpty(cycles); |
| 305 | } |
| 306 | if (hasCycles) { |
| 307 | throw new BuildFailedException(CYCLE_MSG); |
| 308 | } else if (result.errorMap().isEmpty() || keepGoing) { |
| 309 | throw new BuildFailedException(); |
| 310 | } else { |
| 311 | SkyframeBuilder.rethrow(Preconditions.checkNotNull(result.getError().getException())); |
| 312 | } |
| 313 | } |
| 314 | } |
| 315 | }; |
| 316 | } |
| 317 | |
| 318 | /** A non-persistent cache. */ |
| 319 | protected InMemoryActionCache inMemoryCache; |
| 320 | |
Rumou Duan | 7387620 | 2016-06-06 18:52:08 +0000 | [diff] [blame] | 321 | protected SkyFunction actionTemplateExpansionFunction; |
| 322 | |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 323 | /** A class that records an event. */ |
| 324 | protected static class Button implements Runnable { |
| 325 | protected boolean pressed = false; |
| 326 | |
| 327 | @Override |
| 328 | public void run() { |
| 329 | pressed = true; |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | /** A class that counts occurrences of an event. */ |
| 334 | static class Counter implements Runnable { |
| 335 | int count = 0; |
| 336 | |
| 337 | @Override |
| 338 | public void run() { |
| 339 | count++; |
| 340 | } |
| 341 | } |
| 342 | |
Rumou Duan | a1c7534 | 2016-10-12 22:39:19 +0000 | [diff] [blame] | 343 | protected Artifact createSourceArtifact(String name) { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 344 | return createSourceArtifact(scratch.getFileSystem(), name); |
| 345 | } |
| 346 | |
janakr | 45b308a | 2018-06-08 12:51:58 -0700 | [diff] [blame^] | 347 | private static Artifact createSourceArtifact(FileSystem fs, String name) { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 348 | Path root = fs.getPath(TestUtils.tmpDir()); |
janakr | 45b308a | 2018-06-08 12:51:58 -0700 | [diff] [blame^] | 349 | return new Artifact.SourceArtifact( |
| 350 | ArtifactRoot.asSourceRoot(Root.fromPath(root)), |
| 351 | PathFragment.create(name), |
| 352 | ArtifactOwner.NullArtifactOwner.INSTANCE); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | protected Artifact createDerivedArtifact(String name) { |
| 356 | return createDerivedArtifact(scratch.getFileSystem(), name); |
| 357 | } |
| 358 | |
| 359 | Artifact createDerivedArtifact(FileSystem fs, String name) { |
| 360 | Path execRoot = fs.getPath(TestUtils.tmpDir()); |
nharmata | b4060b6 | 2017-04-04 17:11:39 +0000 | [diff] [blame] | 361 | PathFragment execPath = PathFragment.create("out").getRelative(name); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 362 | return new Artifact( |
tomlu | 1cdcdf9 | 2018-01-16 11:07:51 -0800 | [diff] [blame] | 363 | ArtifactRoot.asDerivedRoot(execRoot, execRoot.getRelative("out")), |
janakr | 573807d | 2018-01-11 14:02:35 -0800 | [diff] [blame] | 364 | execPath, |
| 365 | ACTION_LOOKUP_KEY); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | /** |
| 369 | * Creates and returns a new "amnesiac" builder based on the amnesiac cache. |
| 370 | */ |
Ulf Adams | 94f6330 | 2016-04-29 15:04:13 +0000 | [diff] [blame] | 371 | protected Builder amnesiacBuilder() throws Exception { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 372 | return createBuilder(AMNESIAC_CACHE); |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Creates and returns a new caching builder based on the inMemoryCache. |
| 377 | */ |
Ulf Adams | 94f6330 | 2016-04-29 15:04:13 +0000 | [diff] [blame] | 378 | protected Builder cachingBuilder() throws Exception { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 379 | return createBuilder(inMemoryCache); |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * Creates a TestAction from 'inputs' to 'outputs', and a new button, such |
| 384 | * that executing the action causes the button to be pressed. The button is |
| 385 | * returned. |
| 386 | */ |
| 387 | protected Button createActionButton(Collection<Artifact> inputs, Collection<Artifact> outputs) { |
| 388 | Button button = new Button(); |
| 389 | registerAction(new TestAction(button, inputs, outputs)); |
| 390 | return button; |
| 391 | } |
| 392 | |
| 393 | /** |
| 394 | * Creates a TestAction from 'inputs' to 'outputs', and a new counter, such |
| 395 | * that executing the action causes the counter to be incremented. The |
| 396 | * counter is returned. |
| 397 | */ |
| 398 | protected Counter createActionCounter(Collection<Artifact> inputs, Collection<Artifact> outputs) { |
| 399 | Counter counter = new Counter(); |
| 400 | registerAction(new TestAction(counter, inputs, outputs)); |
| 401 | return counter; |
| 402 | } |
| 403 | |
| 404 | protected static Set<Artifact> emptySet = Collections.emptySet(); |
| 405 | |
| 406 | protected void buildArtifacts(Builder builder, Artifact... artifacts) |
| 407 | throws BuildFailedException, AbruptExitException, InterruptedException, TestExecException { |
tomlu | f903eb5 | 2017-10-27 12:12:11 -0400 | [diff] [blame] | 408 | buildArtifacts(builder, new DummyExecutor(fileSystem, rootDirectory), artifacts); |
Rumou Duan | a1c7534 | 2016-10-12 22:39:19 +0000 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | protected void buildArtifacts(Builder builder, Executor executor, Artifact... artifacts) |
| 412 | throws BuildFailedException, AbruptExitException, InterruptedException, TestExecException { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 413 | |
| 414 | tsgm.setCommandStartTime(); |
| 415 | Set<Artifact> artifactsToBuild = Sets.newHashSet(artifacts); |
cpeyser | 8e9b28f | 2018-06-04 08:05:13 -0700 | [diff] [blame] | 416 | Set<ConfiguredTargetKey> builtTargets = new HashSet<>(); |
tomlu | 6ed4fd5 | 2018-04-03 10:01:10 -0700 | [diff] [blame] | 417 | Set<AspectKey> builtAspects = new HashSet<>(); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 418 | try { |
| 419 | builder.buildArtifacts( |
| 420 | reporter, |
| 421 | artifactsToBuild, |
| 422 | null, |
| 423 | null, |
| 424 | null, |
| 425 | null, |
gregce | 45ae096 | 2017-07-22 00:11:13 +0200 | [diff] [blame] | 426 | null, |
Rumou Duan | a1c7534 | 2016-10-12 22:39:19 +0000 | [diff] [blame] | 427 | executor, |
tomlu | 6ed4fd5 | 2018-04-03 10:01:10 -0700 | [diff] [blame] | 428 | builtTargets, |
| 429 | builtAspects, |
| 430 | false /*explain*/, |
Googler | bfd4e24 | 2016-07-15 22:23:37 +0000 | [diff] [blame] | 431 | null, |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 432 | null); |
| 433 | } finally { |
| 434 | tsgm.waitForTimestampGranularity(reporter.getOutErr()); |
| 435 | } |
| 436 | } |
| 437 | |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 438 | /** {@link TestAction} that copies its single input to its single output. */ |
| 439 | protected static class CopyingAction extends TestAction { |
| 440 | CopyingAction(Runnable effect, Artifact input, Artifact output) { |
| 441 | super(effect, ImmutableSet.of(input), ImmutableSet.of(output)); |
| 442 | } |
| 443 | |
| 444 | @Override |
ruperts | 841880d | 2017-10-18 00:58:29 +0200 | [diff] [blame] | 445 | public ActionResult execute(ActionExecutionContext actionExecutionContext) |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 446 | throws ActionExecutionException { |
ruperts | 841880d | 2017-10-18 00:58:29 +0200 | [diff] [blame] | 447 | ActionResult actionResult = super.execute(actionExecutionContext); |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 448 | try { |
| 449 | FileSystemUtils.copyFile( |
| 450 | Iterables.getOnlyElement(getInputs()).getPath(), |
| 451 | Iterables.getOnlyElement(getOutputs()).getPath()); |
| 452 | } catch (IOException e) { |
| 453 | throw new IllegalStateException(e); |
| 454 | } |
ruperts | 841880d | 2017-10-18 00:58:29 +0200 | [diff] [blame] | 455 | return actionResult; |
Janak Ramakrishnan | 08b0f7f | 2016-07-13 17:00:59 +0000 | [diff] [blame] | 456 | } |
| 457 | } |
| 458 | |
ruperts | 5afd9ee | 2017-09-28 19:47:49 -0400 | [diff] [blame] | 459 | /** In-memory {@link ActionCache} backed by a HashMap */ |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 460 | protected static class InMemoryActionCache implements ActionCache { |
| 461 | |
| 462 | private final Map<String, Entry> actionCache = new HashMap<>(); |
| 463 | |
| 464 | @Override |
| 465 | public synchronized void put(String key, ActionCache.Entry entry) { |
| 466 | actionCache.put(key, entry); |
| 467 | } |
| 468 | |
| 469 | @Override |
| 470 | public synchronized Entry get(String key) { |
| 471 | return actionCache.get(key); |
| 472 | } |
| 473 | |
| 474 | @Override |
| 475 | public synchronized void remove(String key) { |
| 476 | actionCache.remove(key); |
| 477 | } |
| 478 | |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 479 | public synchronized void reset() { |
| 480 | actionCache.clear(); |
| 481 | } |
| 482 | |
| 483 | @Override |
| 484 | public long save() { |
| 485 | // safe to ignore |
| 486 | return 0; |
| 487 | } |
| 488 | |
| 489 | @Override |
Yun Peng | e44da5a | 2017-06-16 21:34:09 +0200 | [diff] [blame] | 490 | public void clear() { |
| 491 | // safe to ignore |
| 492 | } |
| 493 | |
| 494 | @Override |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 495 | public void dump(PrintStream out) { |
| 496 | out.println("In-memory action cache has " + actionCache.size() + " records"); |
| 497 | } |
jmmv | 9573a0d | 2017-09-26 11:59:22 -0400 | [diff] [blame] | 498 | |
| 499 | @Override |
| 500 | public void accountHit() { |
| 501 | // Not needed for these tests. |
| 502 | } |
| 503 | |
| 504 | @Override |
| 505 | public void accountMiss(MissReason reason) { |
| 506 | // Not needed for these tests. |
| 507 | } |
| 508 | |
| 509 | @Override |
| 510 | public void mergeIntoActionCacheStatistics(ActionCacheStatistics.Builder builder) { |
| 511 | // Not needed for these tests. |
| 512 | } |
| 513 | |
| 514 | @Override |
| 515 | public void resetStatistics() { |
| 516 | // Not needed for these tests. |
| 517 | } |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 518 | } |
| 519 | |
shahan | 569e169 | 2018-02-20 16:06:00 -0800 | [diff] [blame] | 520 | static class SingletonActionLookupKey extends ActionLookupValue.ActionLookupKey { |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 521 | @Override |
janakr | 573807d | 2018-01-11 14:02:35 -0800 | [diff] [blame] | 522 | public SkyFunctionName functionName() { |
| 523 | return SkyFunctions.CONFIGURED_TARGET; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 524 | } |
| 525 | } |
Rumou Duan | 7387620 | 2016-06-06 18:52:08 +0000 | [diff] [blame] | 526 | |
| 527 | private class DelegatingActionTemplateExpansionFunction implements SkyFunction { |
| 528 | @Override |
| 529 | public SkyValue compute(SkyKey skyKey, Environment env) |
| 530 | throws SkyFunctionException, InterruptedException { |
| 531 | return actionTemplateExpansionFunction.compute(skyKey, env); |
| 532 | } |
| 533 | |
| 534 | @Override |
| 535 | public String extractTag(SkyKey skyKey) { |
| 536 | return actionTemplateExpansionFunction.extractTag(skyKey); |
John Cater | 5e9ce94 | 2016-10-12 17:23:30 +0000 | [diff] [blame] | 537 | } |
Rumou Duan | 7387620 | 2016-06-06 18:52:08 +0000 | [diff] [blame] | 538 | } |
Janak Ramakrishnan | 3bf4fd0 | 2017-03-21 19:01:13 +0000 | [diff] [blame] | 539 | |
| 540 | private static final ProgressSupplier EMPTY_PROGRESS_SUPPLIER = |
| 541 | new ProgressSupplier() { |
| 542 | @Override |
| 543 | public String getProgressString() { |
| 544 | return ""; |
| 545 | } |
| 546 | }; |
| 547 | |
| 548 | private static final ActionCompletedReceiver EMPTY_COMPLETION_RECEIVER = |
| 549 | new ActionCompletedReceiver() { |
| 550 | @Override |
janakr | 93e3eea | 2017-03-30 22:09:37 +0000 | [diff] [blame] | 551 | public void actionCompleted(ActionLookupData actionLookupData) {} |
| 552 | |
| 553 | @Override |
| 554 | public void noteActionEvaluationStarted(ActionLookupData actionLookupData, Action action) {} |
Janak Ramakrishnan | 3bf4fd0 | 2017-03-21 19:01:13 +0000 | [diff] [blame] | 555 | }; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 556 | } |