org.gradle.internal.execution.UnitOfWork 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 2018 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.execution;
import com.google.common.collect.ImmutableSortedMap;
import org.gradle.api.file.FileCollection;
import org.gradle.caching.internal.CacheableEntity;
import org.gradle.caching.internal.origin.OriginMetadata;
import org.gradle.internal.execution.history.changes.ExecutionStateChanges;
import org.gradle.internal.file.TreeType;
import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
import java.time.Duration;
import java.util.Optional;
public interface UnitOfWork extends CacheableEntity {
/**
* Executes the work synchronously.
*/
ExecutionOutcome execute();
Optional getTimeout();
void visitOutputProperties(OutputPropertyVisitor visitor);
long markExecutionTime();
/**
* Loading from cache failed and all outputs were removed.
*/
void outputsRemovedAfterFailureToLoadFromCache();
CacheHandler createCacheHandler();
void persistResult(ImmutableSortedMap finalOutputs, boolean successful, OriginMetadata originMetadata);
Optional getChangesSincePreviousExecution();
/**
* Paths to locations changed by the unit of work.
*
*
* We don't want to invalidate the whole file system mirror for artifact transformations, since I know exactly which parts need to be invalidated.
* For tasks though, we still need to invalidate everything.
*
*
* @return {@link Optional#empty()} if the unit of work cannot guarantee that only some files have been changed or an iterable of the paths which were changed by the unit of work.
*/
Optional extends Iterable> getChangingOutputs();
@FunctionalInterface
interface OutputPropertyVisitor {
void visitOutputProperty(String name, TreeType type, FileCollection roots);
}
ImmutableSortedMap snapshotAfterOutputsGenerated();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy