1 package org.apache.archiva.admin.mock;
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
22 import org.apache.archiva.common.filelock.DefaultFileLockManager;
23 import org.apache.archiva.common.utils.PathUtil;
24 import org.apache.archiva.configuration.ArchivaConfiguration;
25 import org.apache.archiva.indexer.ArchivaIndexManager;
26 import org.apache.archiva.indexer.ArchivaIndexingContext;
27 import org.apache.archiva.indexer.IndexCreationFailedException;
28 import org.apache.archiva.indexer.IndexUpdateFailedException;
29 import org.apache.archiva.indexer.UnsupportedBaseContextException;
30 import org.apache.archiva.proxy.ProxyRegistry;
31 import org.apache.archiva.proxy.maven.WagonFactory;
32 import org.apache.archiva.proxy.maven.WagonFactoryException;
33 import org.apache.archiva.proxy.maven.WagonFactoryRequest;
34 import org.apache.archiva.proxy.model.NetworkProxy;
35 import org.apache.archiva.repository.EditableRepository;
36 import org.apache.archiva.repository.ManagedRepository;
37 import org.apache.archiva.repository.base.PasswordCredentials;
38 import org.apache.archiva.repository.RemoteRepository;
39 import org.apache.archiva.repository.Repository;
40 import org.apache.archiva.repository.RepositoryType;
41 import org.apache.archiva.repository.UnsupportedRepositoryTypeException;
42 import org.apache.archiva.repository.storage.FilesystemAsset;
43 import org.apache.archiva.repository.storage.FilesystemStorage;
44 import org.apache.archiva.repository.storage.StorageAsset;
45 import org.apache.archiva.repository.features.IndexCreationFeature;
46 import org.apache.archiva.repository.features.RemoteIndexFeature;
47 import org.apache.archiva.repository.storage.StorageUtil;
48 import org.apache.commons.lang3.StringUtils;
49 import org.apache.maven.index.ArtifactContext;
50 import org.apache.maven.index.ArtifactContextProducer;
51 import org.apache.maven.index.DefaultScannerListener;
52 import org.apache.maven.index.Indexer;
53 import org.apache.maven.index.IndexerEngine;
54 import org.apache.maven.index.Scanner;
55 import org.apache.maven.index.ScanningRequest;
56 import org.apache.maven.index.ScanningResult;
57 import org.apache.maven.index.context.IndexCreator;
58 import org.apache.maven.index.context.IndexingContext;
59 import org.apache.maven.index.packer.IndexPacker;
60 import org.apache.maven.index.packer.IndexPackingRequest;
61 import org.apache.maven.index.updater.IndexUpdateRequest;
62 import org.apache.maven.index.updater.ResourceFetcher;
63 import org.apache.maven.index_shaded.lucene.index.IndexFormatTooOldException;
64 import org.apache.maven.wagon.ConnectionException;
65 import org.apache.maven.wagon.ResourceDoesNotExistException;
66 import org.apache.maven.wagon.StreamWagon;
67 import org.apache.maven.wagon.TransferFailedException;
68 import org.apache.maven.wagon.Wagon;
69 import org.apache.maven.wagon.authentication.AuthenticationException;
70 import org.apache.maven.wagon.authentication.AuthenticationInfo;
71 import org.apache.maven.wagon.authorization.AuthorizationException;
72 import org.apache.maven.wagon.events.TransferEvent;
73 import org.apache.maven.wagon.events.TransferListener;
74 import org.apache.maven.wagon.proxy.ProxyInfo;
75 import org.apache.maven.wagon.shared.http.AbstractHttpClientWagon;
76 import org.apache.maven.wagon.shared.http.HttpConfiguration;
77 import org.apache.maven.wagon.shared.http.HttpMethodConfiguration;
78 import org.slf4j.Logger;
79 import org.slf4j.LoggerFactory;
80 import org.springframework.stereotype.Service;
82 import javax.inject.Inject;
83 import java.io.FileNotFoundException;
84 import java.io.IOException;
85 import java.io.InputStream;
86 import java.net.MalformedURLException;
88 import java.nio.file.Files;
89 import java.nio.file.Path;
90 import java.nio.file.Paths;
91 import java.util.Collection;
92 import java.util.List;
94 import java.util.concurrent.ConcurrentSkipListSet;
95 import java.util.stream.Collectors;
97 @Service("archivaIndexManager#maven")
98 public class ArchivaIndexManagerMock implements ArchivaIndexManager {
100 private static final Logger log = LoggerFactory.getLogger( ArchivaIndexManagerMock.class );
103 private Indexer indexer;
106 private IndexerEngine indexerEngine;
109 private List<? extends IndexCreator> indexCreators;
112 private IndexPacker indexPacker;
115 private Scanner scanner;
118 private ArchivaConfiguration archivaConfiguration;
121 private WagonFactory wagonFactory;
124 ProxyRegistry proxyRegistry;
127 private ArtifactContextProducer artifactContextProducer;
129 private ConcurrentSkipListSet<Path> activeContexts = new ConcurrentSkipListSet<>( );
131 private static final int WAIT_TIME = 100;
132 private static final int MAX_WAIT = 10;
135 public static IndexingContext getMvnContext(ArchivaIndexingContext context ) throws UnsupportedBaseContextException
137 if ( !context.supports( IndexingContext.class ) )
139 log.error( "The provided archiva index context does not support the maven IndexingContext" );
140 throw new UnsupportedBaseContextException( "The context does not support the Maven IndexingContext" );
142 return context.getBaseContext( IndexingContext.class );
145 private Path getIndexPath( ArchivaIndexingContext ctx )
147 return ctx.getPath( ).getFilePath();
151 interface IndexUpdateConsumer
154 void accept( IndexingContext indexingContext ) throws IndexUpdateFailedException;
158 * This method is used to do some actions around the update execution code. And to make sure, that no other
159 * method is running on the same index.
161 private void executeUpdateFunction( ArchivaIndexingContext context, IndexUpdateConsumer function ) throws IndexUpdateFailedException
163 IndexingContext indexingContext = null;
166 indexingContext = getMvnContext( context );
168 catch ( UnsupportedBaseContextException e )
170 throw new IndexUpdateFailedException( "Maven index is not supported by this context", e );
172 final Path ctxPath = getIndexPath( context );
174 boolean active = false;
175 while ( loop-- > 0 && !active )
177 active = activeContexts.add( ctxPath );
180 Thread.currentThread( ).sleep( WAIT_TIME );
182 catch ( InterruptedException e )
191 function.accept( indexingContext );
195 activeContexts.remove( ctxPath );
200 throw new IndexUpdateFailedException( "Timeout while waiting for index release on context " + context.getId( ) );
205 public void pack( final ArchivaIndexingContext context ) throws IndexUpdateFailedException
207 executeUpdateFunction( context, indexingContext -> {
210 IndexPackingRequest request = new IndexPackingRequest( indexingContext,
211 indexingContext.acquireIndexSearcher( ).getIndexReader( ),
212 indexingContext.getIndexDirectoryFile( ) );
213 indexPacker.packIndex( request );
214 indexingContext.updateTimestamp( true );
216 catch ( IOException e )
218 log.error( "IOException while packing index of context " + context.getId( ) + ( StringUtils.isNotEmpty( e.getMessage( ) ) ? ": " + e.getMessage( ) : "" ) );
219 throw new IndexUpdateFailedException( "IOException during update of " + context.getId( ), e );
227 public void scan(final ArchivaIndexingContext context) throws IndexUpdateFailedException
229 executeUpdateFunction( context, indexingContext -> {
230 DefaultScannerListener listener = new DefaultScannerListener( indexingContext, indexerEngine, true, null );
231 ScanningRequest request = new ScanningRequest( indexingContext, listener );
232 ScanningResult result = scanner.scan( request );
233 if ( result.hasExceptions( ) )
235 log.error( "Exceptions occured during index scan of " + context.getId( ) );
236 result.getExceptions( ).stream( ).map( e -> e.getMessage( ) ).distinct( ).limit( 5 ).forEach(
237 s -> log.error( "Message: " + s )
245 public void update(final ArchivaIndexingContext context, final boolean fullUpdate) throws IndexUpdateFailedException
247 log.info( "start download remote index for remote repository {}", context.getRepository( ).getId( ) );
249 if ( !( context.getRepository( ) instanceof RemoteRepository) || !(context.getRepository().supportsFeature(RemoteIndexFeature.class)) )
251 throw new IndexUpdateFailedException( "The context is not associated to a remote repository with remote index " + context.getId( ) );
253 RemoteIndexFeature rif = context.getRepository().getFeature(RemoteIndexFeature.class).get();
254 remoteUpdateUri = context.getRepository().getLocation().resolve(rif.getIndexUri());
256 final RemoteRepository remoteRepository = (RemoteRepository) context.getRepository( );
258 executeUpdateFunction( context,
262 // create a temp directory to download files
263 Path tempIndexDirectory = Paths.get( indexingContext.getIndexDirectoryFile( ).getParent( ), ".tmpIndex" );
264 Path indexCacheDirectory = Paths.get( indexingContext.getIndexDirectoryFile( ).getParent( ), ".indexCache" );
265 Files.createDirectories( indexCacheDirectory );
266 if ( Files.exists( tempIndexDirectory ) )
268 org.apache.archiva.common.utils.FileUtils.deleteDirectory( tempIndexDirectory );
270 Files.createDirectories( tempIndexDirectory );
271 tempIndexDirectory.toFile( ).deleteOnExit( );
272 String baseIndexUrl = indexingContext.getIndexUpdateUrl( );
274 String wagonProtocol = remoteUpdateUri.toURL( ).getProtocol( );
276 NetworkProxy networkProxy = null;
277 if ( remoteRepository.supportsFeature( RemoteIndexFeature.class ) )
279 RemoteIndexFeature rif = remoteRepository.getFeature( RemoteIndexFeature.class ).get( );
280 if ( StringUtils.isNotBlank( rif.getProxyId( ) ) )
282 networkProxy = proxyRegistry.getNetworkProxy( rif.getProxyId( ) );
283 if ( networkProxy == null )
286 "your remote repository is configured to download remote index trought a proxy we cannot find id:{}",
291 final StreamWagon wagon = (StreamWagon) wagonFactory.getWagon(
292 new WagonFactoryRequest( wagonProtocol, remoteRepository.getExtraHeaders( ) ).networkProxy(
295 int readTimeout = (int) rif.getDownloadTimeout( ).toMillis( ) * 1000;
296 wagon.setReadTimeout( readTimeout );
297 wagon.setTimeout( (int) remoteRepository.getTimeout( ).toMillis( ) * 1000 );
299 if ( wagon instanceof AbstractHttpClientWagon)
301 HttpConfiguration httpConfiguration = new HttpConfiguration( );
302 HttpMethodConfiguration httpMethodConfiguration = new HttpMethodConfiguration( );
303 httpMethodConfiguration.setUsePreemptive( true );
304 httpMethodConfiguration.setReadTimeout( readTimeout );
305 httpConfiguration.setGet( httpMethodConfiguration );
306 AbstractHttpClientWagon.class.cast( wagon ).setHttpConfiguration( httpConfiguration );
309 wagon.addTransferListener( new DownloadListener( ) );
310 ProxyInfo proxyInfo = null;
311 if ( networkProxy != null )
313 proxyInfo = new ProxyInfo( );
314 proxyInfo.setType( networkProxy.getProtocol( ) );
315 proxyInfo.setHost( networkProxy.getHost( ) );
316 proxyInfo.setPort( networkProxy.getPort( ) );
317 proxyInfo.setUserName( networkProxy.getUsername( ) );
318 proxyInfo.setPassword(new String(networkProxy.getPassword()));
320 AuthenticationInfo authenticationInfo = null;
321 if ( remoteRepository.getLoginCredentials( ) != null && ( remoteRepository.getLoginCredentials( ) instanceof PasswordCredentials) )
323 PasswordCredentials creds = (PasswordCredentials) remoteRepository.getLoginCredentials( );
324 authenticationInfo = new AuthenticationInfo( );
325 authenticationInfo.setUserName( creds.getUsername( ) );
326 authenticationInfo.setPassword( new String( creds.getPassword( ) ) );
328 wagon.connect( new org.apache.maven.wagon.repository.Repository( remoteRepository.getId( ), baseIndexUrl ), authenticationInfo,
331 Path indexDirectory = indexingContext.getIndexDirectoryFile( ).toPath( );
332 if ( !Files.exists( indexDirectory ) )
334 Files.createDirectories( indexDirectory );
337 ResourceFetcher resourceFetcher =
338 new WagonResourceFetcher( log, tempIndexDirectory, wagon, remoteRepository );
339 IndexUpdateRequest request = new IndexUpdateRequest( indexingContext, resourceFetcher );
340 request.setForceFullUpdate( fullUpdate );
341 request.setLocalIndexCacheDir( indexCacheDirectory.toFile( ) );
343 // indexUpdater.fetchAndUpdateIndex( request );
345 indexingContext.updateTimestamp( true );
349 catch ( AuthenticationException e )
351 log.error( "Could not login to the remote proxy for updating index of {}", remoteRepository.getId( ), e );
352 throw new IndexUpdateFailedException( "Login in to proxy failed while updating remote repository " + remoteRepository.getId( ), e );
354 catch ( ConnectionException e )
356 log.error( "Connection error during index update for remote repository {}", remoteRepository.getId( ), e );
357 throw new IndexUpdateFailedException( "Connection error during index update for remote repository " + remoteRepository.getId( ), e );
359 catch ( MalformedURLException e )
361 log.error( "URL for remote index update of remote repository {} is not correct {}", remoteRepository.getId( ), remoteUpdateUri, e );
362 throw new IndexUpdateFailedException( "URL for remote index update of repository is not correct " + remoteUpdateUri, e );
364 catch ( IOException e )
366 log.error( "IOException during index update of remote repository {}: {}", remoteRepository.getId( ), e.getMessage( ), e );
367 throw new IndexUpdateFailedException( "IOException during index update of remote repository " + remoteRepository.getId( )
368 + ( StringUtils.isNotEmpty( e.getMessage( ) ) ? ": " + e.getMessage( ) : "" ), e );
370 catch ( WagonFactoryException e )
372 log.error( "Wagon for remote index download of {} could not be created: {}", remoteRepository.getId( ), e.getMessage( ), e );
373 throw new IndexUpdateFailedException( "Error while updating the remote index of " + remoteRepository.getId( ), e );
380 public void addArtifactsToIndex( final ArchivaIndexingContext context, final Collection<URI> artifactReference ) throws IndexUpdateFailedException
382 final StorageAsset ctxUri = context.getPath();
383 executeUpdateFunction(context, indexingContext -> {
384 Collection<ArtifactContext> artifacts = artifactReference.stream().map(r -> artifactContextProducer.getArtifactContext(indexingContext, Paths.get(ctxUri.getFilePath().toUri().resolve(r)).toFile())).collect(Collectors.toList());
386 indexer.addArtifactsToIndex(artifacts, indexingContext);
387 } catch (IOException e) {
388 log.error("IOException while adding artifact {}", e.getMessage(), e);
389 throw new IndexUpdateFailedException("Error occured while adding artifact to index of "+context.getId()
390 + (StringUtils.isNotEmpty(e.getMessage()) ? ": "+e.getMessage() : ""));
396 public void removeArtifactsFromIndex( ArchivaIndexingContext context, Collection<URI> artifactReference ) throws IndexUpdateFailedException
398 final StorageAsset ctxUri = context.getPath();
399 executeUpdateFunction(context, indexingContext -> {
400 Collection<ArtifactContext> artifacts = artifactReference.stream().map(r -> artifactContextProducer.getArtifactContext(indexingContext, Paths.get(ctxUri.getFilePath().toUri().resolve(r)).toFile())).collect(Collectors.toList());
402 indexer.deleteArtifactsFromIndex(artifacts, indexingContext);
403 } catch (IOException e) {
404 log.error("IOException while removing artifact {}", e.getMessage(), e);
405 throw new IndexUpdateFailedException("Error occured while removing artifact from index of "+context.getId()
406 + (StringUtils.isNotEmpty(e.getMessage()) ? ": "+e.getMessage() : ""));
413 public boolean supportsRepository( RepositoryType type )
415 return type == RepositoryType.MAVEN;
419 public ArchivaIndexingContext createContext( Repository repository ) throws IndexCreationFailedException
421 log.debug("Creating context for repo {}, type: {}", repository.getId(), repository.getType());
422 if ( repository.getType( ) != RepositoryType.MAVEN )
424 throw new UnsupportedRepositoryTypeException( repository.getType( ) );
426 IndexingContext mvnCtx = null;
429 if ( repository instanceof RemoteRepository )
431 mvnCtx = createRemoteContext( (RemoteRepository) repository );
433 else if ( repository instanceof ManagedRepository )
435 mvnCtx = createManagedContext( (ManagedRepository) repository );
438 catch ( IOException e )
440 log.error( "IOException during context creation " + e.getMessage( ), e );
441 throw new IndexCreationFailedException( "Could not create index context for repository " + repository.getId( )
442 + ( StringUtils.isNotEmpty( e.getMessage( ) ) ? ": " + e.getMessage( ) : "" ), e );
444 MavenIndexContextMock context = new MavenIndexContextMock( repository, mvnCtx );
450 public ArchivaIndexingContext reset(ArchivaIndexingContext context) throws IndexUpdateFailedException {
451 ArchivaIndexingContext ctx;
452 executeUpdateFunction(context, indexingContext -> {
454 indexingContext.close(true);
455 } catch (IOException e) {
456 log.warn("Index close failed");
459 StorageUtil.deleteRecursively(context.getPath());
460 } catch (IOException e) {
461 throw new IndexUpdateFailedException("Could not delete index files");
465 Repository repo = context.getRepository();
466 ctx = createContext(context.getRepository());
467 if (repo instanceof EditableRepository) {
468 ((EditableRepository)repo).setIndexingContext(ctx);
470 } catch (IndexCreationFailedException e) {
471 throw new IndexUpdateFailedException("Could not create index");
477 public ArchivaIndexingContext move(ArchivaIndexingContext context, Repository repo) throws IndexCreationFailedException {
481 if (context.supports(IndexingContext.class)) {
483 StorageAsset newPath = getIndexPath(repo);
484 IndexingContext ctx = context.getBaseContext(IndexingContext.class);
485 Path oldPath = ctx.getIndexDirectoryFile().toPath();
486 if (oldPath.equals(newPath)) {
487 // Nothing to do, if path does not change
490 if (!Files.exists(oldPath)) {
491 return createContext(repo);
492 } else if (context.isEmpty()) {
494 return createContext(repo);
496 context.close(false);
497 Files.move(oldPath, newPath.getFilePath());
498 return createContext(repo);
500 } catch (IOException e) {
501 log.error("IOException while moving index directory {}", e.getMessage(), e);
502 throw new IndexCreationFailedException("Could not recreated the index.", e);
503 } catch (UnsupportedBaseContextException e) {
504 throw new IndexCreationFailedException("The given context, is not a maven context.");
507 throw new IndexCreationFailedException("Bad context type. This is not a maven context.");
512 public void updateLocalIndexPath(Repository repo) {
513 if (repo.supportsFeature(IndexCreationFeature.class)) {
514 IndexCreationFeature icf = repo.getFeature(IndexCreationFeature.class).get();
516 icf.setLocalIndexPath(getIndexPath(repo));
517 } catch (IOException e) {
518 log.error("Could not set local index path for {}. New URI: {}", repo.getId(), icf.getIndexPath());
524 public ArchivaIndexingContext mergeContexts(Repository destinationRepo, List<ArchivaIndexingContext> contexts, boolean packIndex) throws UnsupportedOperationException, IndexCreationFailedException {
528 private StorageAsset getIndexPath( Repository repo) throws IOException {
529 IndexCreationFeature icf = repo.getFeature(IndexCreationFeature.class).get();
530 Path repoDir = repo.getAsset("").getFilePath();
531 URI indexDir = icf.getIndexPath();
532 String indexPath = indexDir.getPath();
533 Path indexDirectory = null;
534 FilesystemStorage filesystemStorage = (FilesystemStorage) repo.getAsset("").getStorage();
535 if ( ! StringUtils.isEmpty(indexDir.toString( ) ) )
538 indexDirectory = PathUtil.getPathFromUri( indexDir );
539 // not absolute so create it in repository directory
540 if ( indexDirectory.isAbsolute( ) )
542 indexPath = indexDirectory.getFileName().toString();
543 filesystemStorage = new FilesystemStorage(indexDirectory.getParent(), new DefaultFileLockManager());
547 indexDirectory = repoDir.resolve( indexDirectory );
552 indexDirectory = repoDir.resolve( ".index" );
553 indexPath = ".index";
556 if ( !Files.exists( indexDirectory ) )
558 Files.createDirectories( indexDirectory );
560 return new FilesystemAsset( filesystemStorage, indexPath, indexDirectory);
563 private IndexingContext createRemoteContext(RemoteRepository remoteRepository ) throws IOException
565 Path appServerBase = archivaConfiguration.getAppServerBaseDir( );
567 String contextKey = "remote-" + remoteRepository.getId( );
570 // create remote repository path
571 Path repoDir = remoteRepository.getAsset("").getFilePath();
572 if ( !Files.exists( repoDir ) )
574 Files.createDirectories( repoDir );
577 StorageAsset indexDirectory = null;
579 // is there configured indexDirectory ?
580 if ( remoteRepository.supportsFeature( RemoteIndexFeature.class ) )
582 RemoteIndexFeature rif = remoteRepository.getFeature( RemoteIndexFeature.class ).get( );
583 indexDirectory = getIndexPath(remoteRepository);
584 String remoteIndexUrl = calculateIndexRemoteUrl( remoteRepository.getLocation( ), rif );
588 return getIndexingContext( remoteRepository, contextKey, repoDir, indexDirectory, remoteIndexUrl );
590 catch ( IndexFormatTooOldException e )
592 // existing index with an old lucene format so we need to delete it!!!
593 // delete it first then recreate it.
594 log.warn( "the index of repository {} is too old we have to delete and recreate it", //
595 remoteRepository.getId( ) );
596 org.apache.archiva.common.utils.FileUtils.deleteDirectory( indexDirectory.getFilePath() );
597 return getIndexingContext( remoteRepository, contextKey, repoDir, indexDirectory, remoteIndexUrl );
603 throw new IOException( "No remote index defined" );
607 private IndexingContext getIndexingContext( Repository repository, String contextKey, Path repoDir, StorageAsset indexDirectory, String indexUrl ) throws IOException
609 return indexer.createIndexingContext( contextKey, repository.getId( ), repoDir.toFile( ), indexDirectory.getFilePath().toFile( ),
610 repository.getLocation( ) == null ? null : repository.getLocation( ).toString( ),
616 private IndexingContext createManagedContext( ManagedRepository repository ) throws IOException
619 IndexingContext context;
620 // take care first about repository location as can be relative
621 Path repositoryDirectory = repository.getAsset("").getFilePath();
623 if ( !Files.exists( repositoryDirectory ) )
627 Files.createDirectories( repositoryDirectory );
629 catch ( IOException e )
631 log.error( "Could not create directory {}", repositoryDirectory );
635 StorageAsset indexDirectory = null;
637 if ( repository.supportsFeature( IndexCreationFeature.class ) )
639 indexDirectory = getIndexPath(repository);
641 String indexUrl = repositoryDirectory.toUri( ).toURL( ).toExternalForm( );
644 context = getIndexingContext( repository, repository.getId( ), repositoryDirectory, indexDirectory, indexUrl );
645 context.setSearchable( repository.isScanned( ) );
647 catch ( IndexFormatTooOldException e )
649 // existing index with an old lucene format so we need to delete it!!!
650 // delete it first then recreate it.
651 log.warn( "the index of repository {} is too old we have to delete and recreate it", //
652 repository.getId( ) );
653 org.apache.archiva.common.utils.FileUtils.deleteDirectory( indexDirectory.getFilePath() );
654 context = getIndexingContext( repository, repository.getId( ), repositoryDirectory, indexDirectory, indexUrl );
655 context.setSearchable( repository.isScanned( ) );
661 throw new IOException( "No repository index defined" );
665 private String calculateIndexRemoteUrl( URI baseUri, RemoteIndexFeature rif )
667 if ( rif.getIndexUri( ) == null )
669 return baseUri.resolve( ".index" ).toString( );
673 return baseUri.resolve( rif.getIndexUri( ) ).toString( );
677 private static final class DownloadListener
678 implements TransferListener
680 private Logger log = LoggerFactory.getLogger( getClass( ) );
682 private String resourceName;
684 private long startTime;
686 private int totalLength = 0;
689 public void transferInitiated( TransferEvent transferEvent )
691 startTime = System.currentTimeMillis( );
692 resourceName = transferEvent.getResource( ).getName( );
693 log.debug( "initiate transfer of {}", resourceName );
697 public void transferStarted( TransferEvent transferEvent )
699 this.totalLength = 0;
700 resourceName = transferEvent.getResource( ).getName( );
701 log.info( "start transfer of {}", transferEvent.getResource( ).getName( ) );
705 public void transferProgress( TransferEvent transferEvent, byte[] buffer, int length )
707 log.debug( "transfer of {} : {}/{}", transferEvent.getResource( ).getName( ), buffer.length, length );
708 this.totalLength += length;
712 public void transferCompleted( TransferEvent transferEvent )
714 resourceName = transferEvent.getResource( ).getName( );
715 long endTime = System.currentTimeMillis( );
716 log.info( "end of transfer file {} {} kb: {}s", transferEvent.getResource( ).getName( ),
717 this.totalLength / 1024, ( endTime - startTime ) / 1000 );
721 public void transferError( TransferEvent transferEvent )
723 log.info( "error of transfer file {}: {}", transferEvent.getResource( ).getName( ),
724 transferEvent.getException( ).getMessage( ), transferEvent.getException( ) );
728 public void debug( String message )
730 log.debug( "transfer debug {}", message );
734 private static class WagonResourceFetcher
735 implements ResourceFetcher
740 Path tempIndexDirectory;
744 RemoteRepository remoteRepository;
746 private WagonResourceFetcher( Logger log, Path tempIndexDirectory, Wagon wagon,
747 RemoteRepository remoteRepository )
750 this.tempIndexDirectory = tempIndexDirectory;
752 this.remoteRepository = remoteRepository;
756 public void connect( String id, String url )
763 public void disconnect( )
770 public InputStream retrieve(String name )
771 throws IOException, FileNotFoundException
775 log.info( "index update retrieve file, name:{}", name );
776 Path file = tempIndexDirectory.resolve( name );
777 Files.deleteIfExists( file );
778 file.toFile( ).deleteOnExit( );
779 wagon.get( addParameters( name, remoteRepository ), file.toFile( ) );
780 return Files.newInputStream( file );
782 catch ( AuthorizationException | TransferFailedException e )
784 throw new IOException( e.getMessage( ), e );
786 catch ( ResourceDoesNotExistException e )
788 FileNotFoundException fnfe = new FileNotFoundException( e.getMessage( ) );
794 // FIXME remove crappy copy/paste
795 protected String addParameters( String path, RemoteRepository remoteRepository )
797 if ( remoteRepository.getExtraParameters( ).isEmpty( ) )
802 boolean question = false;
804 StringBuilder res = new StringBuilder( path == null ? "" : path );
806 for ( Map.Entry<String, String> entry : remoteRepository.getExtraParameters( ).entrySet( ) )
810 res.append( '?' ).append( entry.getKey( ) ).append( '=' ).append( entry.getValue( ) );
814 return res.toString( );