org.gradle.api.internalResolverResults 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 2015 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.api.internal.artifacts;
import org.gradle.api.artifacts.ResolveException;
import org.gradle.api.artifacts.ResolvedConfiguration;
import org.gradle.api.artifacts.result.ResolutionResult;
import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.VisitedArtifactSet;
import org.gradle.api.internal.artifacts.ivyservice.resolveengine.projectresult.ResolvedLocalComponentsResult;
import javax.annotation.Nullable;
public interface ResolverResults {
boolean hasError();
/**
* Returns the old model, slowly being replaced by the new model represented by {@link ResolutionResult}. Requires artifacts to be resolved.
*/
ResolvedConfiguration getResolvedConfiguration();
/**
* Returns details of the artifacts visited during dependency graph resolution. This set is later refined during artifact resolution and replaced with a new instance.
*/
VisitedArtifactSet getVisitedArtifacts();
/**
* Returns the dependency graph resolve result.
*/
ResolutionResult getResolutionResult();
/**
* Returns details of the local components in the resolved dependency graph.
*/
ResolvedLocalComponentsResult getResolvedLocalComponents();
/**
* Marks the dependency graph resolution as successful, with the given result.
*/
void graphResolved(ResolutionResult resolutionResult, ResolvedLocalComponentsResult resolvedLocalComponentsResult, VisitedArtifactSet visitedArtifacts);
void failed(ResolveException failure);
/**
* Attaches some opaque state calculated during dependency graph resolution that will later be required to resolve the artifacts.
*/
void retainState(Object artifactResolveState);
/**
* Returns the opaque state required to resolve the artifacts.
*/
Object getArtifactResolveState();
/**
* Marks artifact resolution as successful, clearing state provided by {@link #retainState(Object)}.
*/
void artifactsResolved(ResolvedConfiguration resolvedConfiguration, VisitedArtifactSet visitedArtifacts);
/**
* Consumes the failure, allowing to either throw or do something else with it. Consuming effectively
* removes the exception from the underlying resolver results, meaning that subsequent calls to consume
* will return null.
*/
@Nullable
ResolveException consumeNonFatalFailure();
/**
* Returns the failure, fatal or non fatal, or null if there's no failure. Used internally to
* set the failure on the resolution build operation result. In opposite to {@link #consumeNonFatalFailure()},
* this doesn't consume the error, so subsequent calls will return the same instance, unless the error was
* consumed in between.
*/
@Nullable
Throwable getFailure();
boolean hasResolutionResult();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy