
org.gradle.plugins.ide.internal.DefaultIdeArtifactRegistry Maven / Gradle / Ivy
/*
* 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.plugins.ide.internal;
import com.google.common.collect.Lists;
import org.gradle.api.Task;
import org.gradle.api.Transformer;
import org.gradle.api.artifacts.component.ProjectComponentIdentifier;
import org.gradle.api.file.ConfigurableFileCollection;
import org.gradle.api.file.FileCollection;
import org.gradle.api.internal.DomainObjectContext;
import org.gradle.api.internal.file.FileOperations;
import org.gradle.api.internal.project.ProjectState;
import org.gradle.api.internal.project.ProjectStateRegistry;
import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
import org.gradle.internal.build.BuildState;
import org.gradle.util.CollectionUtils;
import javax.annotation.Nullable;
import java.util.List;
import java.util.concurrent.Callable;
public class DefaultIdeArtifactRegistry implements IdeArtifactRegistry {
private final IdeArtifactStore store;
private final ProjectStateRegistry projectRegistry;
private final FileOperations fileOperations;
private final ProjectComponentIdentifier currentProject;
public DefaultIdeArtifactRegistry(IdeArtifactStore store, ProjectStateRegistry projectRegistry, FileOperations fileOperations, DomainObjectContext domainObjectContext, BuildState currentBuild) {
this.store = store;
this.projectRegistry = projectRegistry;
this.fileOperations = fileOperations;
currentProject = projectRegistry.stateFor(currentBuild.getBuildIdentifier(), domainObjectContext.getProjectPath()).getComponentIdentifier();
}
@Override
public void registerIdeProject(IdeProjectMetadata ideProjectMetadata) {
store.put(currentProject, ideProjectMetadata);
}
@Nullable
@Override
public T getIdeProject(Class type, ProjectComponentIdentifier project) {
ProjectState projectState = projectRegistry.stateFor(project);
if (!projectState.getOwner().isImplicitBuild()) {
// Do not include implicit builds in workspace
for (IdeProjectMetadata ideProjectMetadata : store.get(project)) {
if (type.isInstance(ideProjectMetadata)) {
return type.cast(ideProjectMetadata);
}
}
}
return null;
}
@Override
public List> getIdeProjects(Class type) {
List> result = Lists.newArrayList();
for (ProjectState project : projectRegistry.getAllProjects()) {
if (project.getOwner().isImplicitBuild()) {
// Do not include implicit builds in workspace
continue;
}
ProjectComponentIdentifier projectId = project.getComponentIdentifier();
for (IdeProjectMetadata ideProjectMetadata : store.get(projectId)) {
if (type.isInstance(ideProjectMetadata)) {
T metadata = type.cast(ideProjectMetadata);
result.add(new MetadataReference(metadata, projectId));
}
}
}
return result;
}
@Override
public FileCollection getIdeProjectFiles(final Class extends IdeProjectMetadata> type) {
return fileOperations.immutableFiles(new Callable>() {
@Override
public List call() {
return CollectionUtils.collect(
getIdeProjects(type),
new Transformer>() {
@Override
public FileCollection transform(Reference> result) {
ConfigurableFileCollection singleton = fileOperations.configurableFiles(result.get().getFile());
singleton.builtBy(result.get().getGeneratorTasks());
return singleton;
}
});
}
});
}
private static class MetadataReference implements Reference {
private final T metadata;
private final ProjectComponentIdentifier projectId;
MetadataReference(T metadata, ProjectComponentIdentifier projectId) {
this.metadata = metadata;
this.projectId = projectId;
}
@Override
public T get() {
return metadata;
}
@Override
public ProjectComponentIdentifier getOwningProject() {
return projectId;
}
@Override
public void visitDependencies(TaskDependencyResolveContext context) {
for (Task task : get().getGeneratorTasks()) {
context.add(task);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy