All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.spring.gradle.dependencymanagement.internal.maven.MavenPomResolver Maven / Gradle / Ivy

There is a newer version: 1.1.7
Show newest version
/*
 * Copyright 2014-2022 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
 *
 *      https://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 io.spring.gradle.dependencymanagement.internal.maven;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

import io.spring.gradle.dependencymanagement.internal.DependencyManagementConfigurationContainer;
import io.spring.gradle.dependencymanagement.internal.Exclusion;
import io.spring.gradle.dependencymanagement.internal.maven.EffectiveModelBuilder.ModelInput;
import io.spring.gradle.dependencymanagement.internal.pom.Coordinates;
import io.spring.gradle.dependencymanagement.internal.pom.Dependency;
import io.spring.gradle.dependencymanagement.internal.pom.Pom;
import io.spring.gradle.dependencymanagement.internal.pom.PomReference;
import io.spring.gradle.dependencymanagement.internal.pom.PomResolver;
import io.spring.gradle.dependencymanagement.internal.properties.CompositePropertySource;
import io.spring.gradle.dependencymanagement.internal.properties.MapPropertySource;
import io.spring.gradle.dependencymanagement.internal.properties.PropertySource;
import io.spring.gradle.dependencymanagement.org.apache.maven.model.Model;
import org.gradle.api.Project;
import org.gradle.api.artifacts.Configuration;
import org.gradle.api.artifacts.ModuleVersionIdentifier;
import org.gradle.api.artifacts.ResolvedArtifact;
import org.gradle.api.artifacts.dsl.DependencyHandler;
import org.gradle.api.specs.Specs;

/**
 * A {@link PomResolver} that uses the jarjared Maven API to access the pom's model.
 *
 * @author Andy Wilkinson
 */
public class MavenPomResolver implements PomResolver {

	private final PlatformCategoryAttributeConfigurer attributeConfigurer = new PlatformCategoryAttributeConfigurer();

	private final DependencyManagementConfigurationContainer configurationContainer;

	private final EffectiveModelBuilder effectiveModelBuilder;

	private final DependencyHandler dependencyHandler;

	/**
	 * Creates a new {@code MavenPomResolver}. Properties from the given {@code project}
	 * will be used during resolution. The given {@code configurationContainer} will be
	 * used to create configurations to resolve the poms.
	 * @param project the project
	 * @param configurationContainer the configuration container
	 */
	public MavenPomResolver(Project project, DependencyManagementConfigurationContainer configurationContainer) {
		this.configurationContainer = configurationContainer;
		this.effectiveModelBuilder = new EffectiveModelBuilder(project, configurationContainer,
				this.attributeConfigurer);
		this.dependencyHandler = project.getDependencies();
	}

	@Override
	public List resolvePomsLeniently(List pomReferences) {
		return createPoms(
				createConfiguration(pomReferences).getResolvedConfiguration().getLenientConfiguration()
						.getArtifacts(Specs.SATISFIES_ALL),
				pomReferences, new MapPropertySource(Collections.emptyMap()));
	}

	@Override
	public List resolvePoms(List pomReferences, PropertySource properties) {
		List deduplicatedPomReferences = deduplicate(pomReferences);
		return createPoms(
				createConfiguration(deduplicatedPomReferences).getResolvedConfiguration().getResolvedArtifacts(),
				deduplicatedPomReferences, properties);
	}

	private List deduplicate(List pomReferences) {
		List deduplicatedReferences = new ArrayList();
		Set seen = new HashSet();
		for (int i = pomReferences.size() - 1; i >= 0; i--) {
			PomReference pomReference = pomReferences.get(i);
			if (seen.add(createKey(pomReference.getCoordinates().getGroupId(),
					pomReference.getCoordinates().getArtifactId()))) {
				deduplicatedReferences.add(pomReference);
			}
		}
		Collections.reverse(deduplicatedReferences);
		return deduplicatedReferences;
	}

	private Configuration createConfiguration(List pomReferences) {
		Configuration configuration = this.configurationContainer.newConfiguration();
		for (PomReference pomReference : pomReferences) {
			final Coordinates coordinates = pomReference.getCoordinates();
			org.gradle.api.artifacts.Dependency dependency = this.dependencyHandler.create(coordinates.getGroupId()
					+ ":" + coordinates.getArtifactId() + ":" + coordinates.getVersion() + "@pom");
			this.attributeConfigurer.configureCategoryAttribute(dependency);
			configuration.getDependencies().add(dependency);
		}
		return configuration;
	}

	private List createPoms(Set resolvedArtifacts, List pomReferences,
			PropertySource properties) {
		Map referencesById = new HashMap();
		for (PomReference pomReference : pomReferences) {
			referencesById.put(createKey(pomReference.getCoordinates().getGroupId(),
					pomReference.getCoordinates().getArtifactId()), pomReference);
		}
		List modelInputs = new ArrayList();
		for (ResolvedArtifact resolvedArtifact : resolvedArtifacts) {
			ModuleVersionIdentifier id = resolvedArtifact.getModuleVersion().getId();
			PomReference reference = referencesById.get(createKey(id.getGroup(), id.getName()));
			CompositePropertySource allProperties = new CompositePropertySource(reference.getProperties(), properties);
			modelInputs.add(new ModelInput(resolvedArtifact.getFile(), allProperties));
		}
		return createPoms(modelInputs);
	}

	private List createPoms(List inputs) {
		List effectiveModels = this.effectiveModelBuilder.buildModels(inputs);
		List poms = new ArrayList(effectiveModels.size());
		for (Model effectiveModel : effectiveModels) {
			Coordinates coordinates = new Coordinates(effectiveModel.getGroupId(), effectiveModel.getArtifactId(),
					effectiveModel.getVersion());
			poms.add(new Pom(coordinates, getManagedDependencies(effectiveModel), getDependencies(effectiveModel),
					asMap(effectiveModel.getProperties())));
		}
		return poms;
	}

	private List getManagedDependencies(Model model) {
		if (model.getDependencyManagement() == null || model.getDependencyManagement().getDependencies() == null) {
			return Collections.emptyList();
		}
		List result = new ArrayList();
		for (io.spring.gradle.dependencymanagement.org.apache.maven.model.Dependency dependency : model
				.getDependencyManagement().getDependencies()) {
			result.add(createDependency(dependency));
		}
		return result;
	}

	private Dependency createDependency(
			io.spring.gradle.dependencymanagement.org.apache.maven.model.Dependency dependency) {
		Set exclusions = new LinkedHashSet();
		if (dependency.getExclusions() != null) {
			for (io.spring.gradle.dependencymanagement.org.apache.maven.model.Exclusion exclusion : dependency
					.getExclusions()) {
				exclusions.add(new Exclusion(exclusion.getGroupId(), exclusion.getArtifactId()));
			}
		}
		return new Dependency(
				new Coordinates(dependency.getGroupId(), dependency.getArtifactId(), dependency.getVersion()),
				dependency.isOptional(), dependency.getType(), dependency.getClassifier(), dependency.getScope(),
				exclusions);
	}

	private List getDependencies(Model model) {
		if (model.getDependencies() == null) {
			return Collections.emptyList();
		}
		List result = new ArrayList();
		for (io.spring.gradle.dependencymanagement.org.apache.maven.model.Dependency dependency : model
				.getDependencies()) {
			result.add(createDependency(dependency));
		}
		return result;
	}

	private Map asMap(Properties properties) {
		Map map = new HashMap();
		for (String name : properties.stringPropertyNames()) {
			map.put(name, properties.getProperty(name));
		}
		return map;
	}

	private String createKey(String group, String name) {
		return group + ":" + name;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy