use of org.gradle.api.internal.project.ProjectInternal in project gradle by gradle.
the class DefaultProjectDependencyPublicationResolver method resolve.
@Override
public <T> T resolve(Class<T> coordsType, ProjectDependency dependency) {
// Could probably apply some caching and some immutable types
ProjectInternal dependencyProject = (ProjectInternal) dependency.getDependencyProject();
// Ensure target project is configured
projectConfigurer.configureFully(dependencyProject);
List<ProjectPublication> publications = new ArrayList<ProjectPublication>();
for (ProjectPublication publication : publicationRegistry.getPublications(dependencyProject.getPath())) {
if (!publication.isLegacy() && publication.getCoordinates(coordsType) != null) {
publications.add(publication);
}
}
if (publications.isEmpty()) {
// Project has no publications: simply use the project name in place of the dependency name
if (coordsType.isAssignableFrom(ModuleVersionIdentifier.class)) {
return coordsType.cast(new DefaultModuleVersionIdentifier(dependency.getGroup(), dependencyProject.getName(), dependency.getVersion()));
}
throw new UnsupportedOperationException(String.format("Could not find any publications of type %s in %s.", coordsType.getSimpleName(), dependencyProject.getDisplayName()));
}
// Select all entry points. An entry point is a publication that does not contain a component whose parent is also published
Set<SoftwareComponent> ignored = new HashSet<SoftwareComponent>();
for (ProjectPublication publication : publications) {
if (publication.getComponent() != null && publication.getComponent() instanceof ComponentWithVariants) {
ComponentWithVariants parent = (ComponentWithVariants) publication.getComponent();
ignored.addAll(parent.getVariants());
}
}
Set<ProjectPublication> topLevel = new LinkedHashSet<ProjectPublication>();
for (ProjectPublication publication : publications) {
if (!publication.isAlias() && (publication.getComponent() == null || !ignored.contains(publication.getComponent()))) {
topLevel.add(publication);
}
}
// See if all entry points have the same identifier
Iterator<ProjectPublication> iterator = topLevel.iterator();
T candidate = iterator.next().getCoordinates(coordsType);
while (iterator.hasNext()) {
T alternative = iterator.next().getCoordinates(coordsType);
if (!candidate.equals(alternative)) {
TreeFormatter formatter = new TreeFormatter();
formatter.node("Publishing is not able to resolve a dependency on a project with multiple publications that have different coordinates.");
formatter.node("Found the following publications in " + dependencyProject.getDisplayName());
formatter.startChildren();
for (ProjectPublication publication : topLevel) {
formatter.node(publication.getDisplayName().getCapitalizedDisplayName() + " with coordinates " + publication.getCoordinates(coordsType));
}
formatter.endChildren();
throw new UnsupportedOperationException(formatter.toString());
}
}
return candidate;
}
use of org.gradle.api.internal.project.ProjectInternal in project gradle by gradle.
the class DefaultTaskExecutionPlan method getResolvedTaskMutationInfo.
private TaskMutationInfo getResolvedTaskMutationInfo(TaskInfo taskInfo) {
TaskInternal task = taskInfo.getTask();
TaskMutationInfo taskMutationInfo = taskMutations.get(taskInfo);
if (!taskMutationInfo.resolved) {
ProjectInternal project = (ProjectInternal) task.getProject();
ServiceRegistry serviceRegistry = project.getServices();
PathToFileResolver resolver = serviceRegistry.get(PathToFileResolver.class);
PropertyWalker propertyWalker = serviceRegistry.get(PropertyWalker.class);
TaskProperties taskProperties = DefaultTaskProperties.resolve(propertyWalker, resolver, task);
taskMutationInfo.outputPaths.addAll(getOutputPaths(canonicalizedFileCache, taskInfo, taskProperties.getOutputFiles(), taskProperties.getLocalStateFiles()));
taskMutationInfo.destroyablePaths.addAll(getDestroyablePaths(canonicalizedFileCache, taskInfo, taskProperties.getDestroyableFiles()));
taskMutationInfo.hasFileInputs = !taskProperties.getInputFileProperties().isEmpty();
taskMutationInfo.hasOutputs = taskProperties.hasDeclaredOutputs();
taskMutationInfo.hasLocalState = !taskProperties.getLocalStateFiles().isEmpty();
taskMutationInfo.resolved = true;
}
return taskMutationInfo;
}
use of org.gradle.api.internal.project.ProjectInternal in project gradle by gradle.
the class ValidatingTaskExecuter method execute.
public void execute(TaskInternal task, TaskStateInternal state, TaskExecutionContext context) {
List<String> messages = Lists.newArrayList();
FileResolver resolver = ((ProjectInternal) task.getProject()).getFileResolver();
final TaskValidationContext validationContext = new DefaultTaskValidationContext(resolver, messages);
try {
context.getTaskProperties().validate(validationContext);
} catch (Exception ex) {
throw new TaskExecutionException(task, ex);
}
if (!messages.isEmpty()) {
List<String> firstMessages = messages.subList(0, Math.min(5, messages.size()));
if (!validationContext.getHighestSeverity().report(task, firstMessages, state)) {
return;
}
}
executer.execute(task, state, context);
}
use of org.gradle.api.internal.project.ProjectInternal in project gradle by gradle.
the class GroovyCompile method getCompiler.
private Compiler<GroovyJavaJointCompileSpec> getCompiler(GroovyJavaJointCompileSpec spec) {
if (compiler == null) {
ProjectInternal projectInternal = (ProjectInternal) getProject();
WorkerDaemonFactory workerDaemonFactory = getServices().get(WorkerDaemonFactory.class);
IsolatedClassloaderWorkerFactory inProcessWorkerFactory = getServices().get(IsolatedClassloaderWorkerFactory.class);
FileResolver fileResolver = getServices().get(FileResolver.class);
GroovyCompilerFactory groovyCompilerFactory = new GroovyCompilerFactory(projectInternal, workerDaemonFactory, inProcessWorkerFactory, fileResolver);
Compiler<GroovyJavaJointCompileSpec> delegatingCompiler = groovyCompilerFactory.newCompiler(spec);
compiler = new CleaningGroovyCompiler(delegatingCompiler, getOutputs());
}
return compiler;
}
use of org.gradle.api.internal.project.ProjectInternal in project gradle by gradle.
the class SelectedTaskExecutionAction method bindAllReferencesOfProject.
private void bindAllReferencesOfProject(TaskExecutionGraph graph) {
Set<Project> seen = Sets.newHashSet();
for (Task task : graph.getAllTasks()) {
if (seen.add(task.getProject())) {
ProjectInternal projectInternal = (ProjectInternal) task.getProject();
projectInternal.bindAllModelRules();
}
}
}
Aggregations