use of org.apache.maven.index.context.IndexingContext in project archiva by apache.
the class MavenIndexManager method scan.
@Override
public void scan(final ArchivaIndexingContext context) throws IndexUpdateFailedException {
executeUpdateFunction(context, indexingContext -> {
DefaultScannerListener listener = new DefaultScannerListener(indexingContext, indexerEngine, true, null);
ScanningRequest request = new ScanningRequest(indexingContext, listener);
ScanningResult result = scanner.scan(request);
if (result.hasExceptions()) {
log.error("Exceptions occured during index scan of " + context.getId());
result.getExceptions().stream().map(e -> e.getMessage()).distinct().limit(5).forEach(s -> log.error("Message: " + s));
}
});
}
use of org.apache.maven.index.context.IndexingContext in project archiva by apache.
the class MavenIndexManager method move.
@Override
public ArchivaIndexingContext move(ArchivaIndexingContext context, Repository repo) throws IndexCreationFailedException {
if (context == null) {
return null;
}
if (context.supports(IndexingContext.class)) {
try {
Path newPath = getIndexPath(repo);
IndexingContext ctx = context.getBaseContext(IndexingContext.class);
Path oldPath = ctx.getIndexDirectoryFile().toPath();
if (oldPath.equals(newPath)) {
// Nothing to do, if path does not change
return context;
}
if (!Files.exists(oldPath)) {
return createContext(repo);
} else if (context.isEmpty()) {
context.close();
return createContext(repo);
} else {
context.close(false);
Files.move(oldPath, newPath);
return createContext(repo);
}
} catch (IOException e) {
log.error("IOException while moving index directory {}", e.getMessage(), e);
throw new IndexCreationFailedException("Could not recreated the index.", e);
} catch (UnsupportedBaseContextException e) {
throw new IndexCreationFailedException("The given context, is not a maven context.");
}
} else {
throw new IndexCreationFailedException("Bad context type. This is not a maven context.");
}
}
use of org.apache.maven.index.context.IndexingContext in project archiva by apache.
the class MavenIndexManager method createContext.
@Override
public ArchivaIndexingContext createContext(Repository repository) throws IndexCreationFailedException {
log.debug("Creating context for repo {}, type: {}", repository.getId(), repository.getType());
if (repository.getType() != RepositoryType.MAVEN) {
throw new UnsupportedRepositoryTypeException(repository.getType());
}
IndexingContext mvnCtx = null;
try {
if (repository instanceof RemoteRepository) {
mvnCtx = createRemoteContext((RemoteRepository) repository);
} else if (repository instanceof ManagedRepository) {
mvnCtx = createManagedContext((ManagedRepository) repository);
}
} catch (IOException e) {
log.error("IOException during context creation " + e.getMessage(), e);
throw new IndexCreationFailedException("Could not create index context for repository " + repository.getId() + (StringUtils.isNotEmpty(e.getMessage()) ? ": " + e.getMessage() : ""), e);
}
MavenIndexContext context = new MavenIndexContext(repository, mvnCtx);
return context;
}
use of org.apache.maven.index.context.IndexingContext in project archiva by apache.
the class MavenRepositorySearch method addIndexingContexts.
/**
* @param selectedRepos
* @return indexing contextId used
*/
private List<String> addIndexingContexts(List<String> selectedRepos) {
Set<String> indexingContextIds = new HashSet<>();
for (String repo : selectedRepos) {
try {
Repository rRepo = repositoryRegistry.getRepository(repo);
if (rRepo != null) {
if (rRepo.getType().equals(RepositoryType.MAVEN)) {
assert rRepo.getIndexingContext() != null;
IndexingContext context = rRepo.getIndexingContext().getBaseContext(IndexingContext.class);
if (context.isSearchable()) {
indexingContextIds.addAll(getRemoteIndexingContextIds(repo));
indexingContextIds.add(context.getId());
} else {
log.warn("indexingContext with id {} not searchable", rRepo.getId());
}
}
} else {
log.warn("Repository '{}' not found in configuration.", repo);
}
} catch (RepositorySearchException e) {
log.warn("RepositorySearchException occured while accessing index of repository '{}' : {}", repo, e.getMessage());
continue;
} catch (UnsupportedBaseContextException e) {
log.error("Fatal situation: Maven repository without IndexingContext found.");
continue;
}
}
return new ArrayList<>(indexingContextIds);
}
use of org.apache.maven.index.context.IndexingContext in project archiva by apache.
the class MavenRepositorySearch method getRemoteIndexingContextIds.
@Override
public Set<String> getRemoteIndexingContextIds(String managedRepoId) throws RepositorySearchException {
Set<String> ids = new HashSet<>();
List<ProxyConnector> proxyConnectors = null;
try {
proxyConnectors = proxyConnectorAdmin.getProxyConnectorAsMap().get(managedRepoId);
} catch (RepositoryAdminException e) {
throw new RepositorySearchException(e.getMessage(), e);
}
if (proxyConnectors == null || proxyConnectors.isEmpty()) {
return ids;
}
for (ProxyConnector proxyConnector : proxyConnectors) {
String remoteId = "remote-" + proxyConnector.getTargetRepoId();
RemoteRepository repo = repositoryRegistry.getRemoteRepository(proxyConnector.getTargetRepoId());
if (repo.getType() == RepositoryType.MAVEN) {
try {
IndexingContext context = repo.getIndexingContext() != null ? repo.getIndexingContext().getBaseContext(IndexingContext.class) : null;
if (context != null && context.isSearchable()) {
ids.add(remoteId);
}
} catch (UnsupportedBaseContextException e) {
// Ignore this one
}
}
}
return ids;
}
Aggregations