org.eclipse.aether.internal.impl.DefaultLocalRepositoryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-resolver-impl Show documentation
Show all versions of maven-resolver-impl Show documentation
An implementation of the repository system.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.eclipse.aether.internal.impl;
import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.impl.LocalRepositoryProvider;
import org.eclipse.aether.repository.LocalRepository;
import org.eclipse.aether.repository.LocalRepositoryManager;
import org.eclipse.aether.repository.NoLocalRepositoryManagerException;
import org.eclipse.aether.spi.localrepo.LocalRepositoryManagerFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static java.util.Objects.requireNonNull;
/**
*/
@Singleton
@Named
public class DefaultLocalRepositoryProvider implements LocalRepositoryProvider {
private static final Logger LOGGER = LoggerFactory.getLogger(DefaultLocalRepositoryProvider.class);
private final Map localRepositoryManagerFactories;
@Inject
public DefaultLocalRepositoryProvider(Map localRepositoryManagerFactories) {
this.localRepositoryManagerFactories = Collections.unmodifiableMap(localRepositoryManagerFactories);
}
@Override
public LocalRepositoryManager newLocalRepositoryManager(RepositorySystemSession session, LocalRepository repository)
throws NoLocalRepositoryManagerException {
requireNonNull(session, "session cannot be null");
requireNonNull(repository, "repository cannot be null");
PrioritizedComponents factories = PrioritizedComponents.reuseOrCreate(
session,
LocalRepositoryManagerFactory.class,
localRepositoryManagerFactories,
LocalRepositoryManagerFactory::getPriority);
List errors = new ArrayList<>();
for (PrioritizedComponent factory : factories.getEnabled()) {
try {
LocalRepositoryManager manager = factory.getComponent().newInstance(session, repository);
if (LOGGER.isDebugEnabled()) {
StringBuilder buffer = new StringBuilder(256);
buffer.append("Using manager ").append(manager.getClass().getSimpleName());
Utils.appendClassLoader(buffer, manager);
buffer.append(" with priority ").append(factory.getPriority());
buffer.append(" for ").append(repository.getBasePath());
LOGGER.debug(buffer.toString());
}
return manager;
} catch (NoLocalRepositoryManagerException e) {
// continue and try next factory
LOGGER.debug("Could not obtain local repository manager for {}", repository, e);
errors.add(e);
}
}
StringBuilder buffer = new StringBuilder(256);
if (factories.isEmpty()) {
buffer.append("No local repository managers registered");
} else {
buffer.append("Cannot access ").append(repository.getBasePath());
buffer.append(" with type ").append(repository.getContentType());
buffer.append(" using the available factories ");
factories.list(buffer);
}
// create exception: if one error, make it cause
NoLocalRepositoryManagerException ex = new NoLocalRepositoryManagerException(
repository, buffer.toString(), errors.size() == 1 ? errors.get(0) : null);
// if more errors, make them all suppressed
if (errors.size() > 1) {
errors.forEach(ex::addSuppressed);
}
throw ex;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy