org.gradle.internal.work.DefaultAsyncWorkTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* 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 org.gradle.internal.work;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ListMultimap;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import org.gradle.api.specs.Spec;
import org.gradle.internal.exceptions.DefaultMultiCauseException;
import org.gradle.internal.operations.BuildOperationRef;
import org.gradle.internal.resources.ProjectLeaseRegistry;
import org.gradle.util.CollectionUtils;
import java.util.List;
import java.util.Set;
import java.util.concurrent.locks.ReentrantLock;
public class DefaultAsyncWorkTracker implements AsyncWorkTracker {
private final ListMultimap items = ArrayListMultimap.create();
private final Set waiting = Sets.newHashSet();
private final ReentrantLock lock = new ReentrantLock();
private final ProjectLeaseRegistry projectLeaseRegistry;
public DefaultAsyncWorkTracker(ProjectLeaseRegistry projectLeaseRegistry) {
this.projectLeaseRegistry = projectLeaseRegistry;
}
@Override
public void registerWork(BuildOperationRef operation, AsyncWorkCompletion workCompletion) {
lock.lock();
try {
if (waiting.contains(operation)) {
throw new IllegalStateException("Another thread is currently waiting on the completion of work for the provided operation");
}
items.put(operation, workCompletion);
} finally {
lock.unlock();
}
}
@Override
public void waitForCompletion(BuildOperationRef operation, boolean releaseLocks) {
final List workItems;
lock.lock();
try {
workItems = ImmutableList.copyOf(items.get(operation));
items.removeAll(operation);
startWaiting(operation);
} finally {
lock.unlock();
}
try {
if (workItems.size() > 0) {
boolean workInProgress = CollectionUtils.any(workItems, new Spec() {
@Override
public boolean isSatisfiedBy(AsyncWorkCompletion workCompletion) {
return !workCompletion.isComplete();
}
});
// only release the project lock if we have to wait for items to finish
if (releaseLocks && workInProgress) {
projectLeaseRegistry.withoutProjectLock(
new Runnable() {
@Override
public void run() {
waitForItemsAndGatherFailures(workItems);
}
});
} else {
waitForItemsAndGatherFailures(workItems);
}
}
} finally {
stopWaiting(operation);
}
}
@Override
public boolean hasUncompletedWork(BuildOperationRef operation) {
lock.lock();
try {
List workItems = items.get(operation);
for (AsyncWorkCompletion workCompletion : workItems) {
if (!workCompletion.isComplete()) {
return true;
}
}
return false;
} finally {
lock.unlock();
}
}
private void waitForItemsAndGatherFailures(Iterable workItems) {
final List failures = Lists.newArrayList();
for (AsyncWorkCompletion item : workItems) {
try {
item.waitForCompletion();
} catch (Throwable t) {
if (Thread.currentThread().isInterrupted()) {
cancel(workItems);
}
failures.add(t);
}
}
if (failures.size() > 0) {
throw new DefaultMultiCauseException("There were failures while executing asynchronous work:", failures);
}
}
private void cancel(Iterable workItems) {
for (AsyncWorkCompletion workItem : workItems) {
workItem.cancel();
}
}
private void startWaiting(BuildOperationRef operation) {
lock.lock();
try {
waiting.add(operation);
} finally {
lock.unlock();
}
}
private void stopWaiting(BuildOperationRef operation) {
lock.lock();
try {
waiting.remove(operation);
} finally {
lock.unlock();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy