~ under the License.
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>archiva-consumers</artifactId>
<groupId>org.apache.archiva</groupId>
<artifactId>archiva-consumer-api</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.apache.archiva</groupId>
+ <artifactId>archiva-configuration</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.archiva</groupId>
+ <artifactId>archiva-common</artifactId>
+ </dependency>
<dependency>
<groupId>org.apache.archiva</groupId>
<artifactId>metadata-model</artifactId>
<artifactId>metadata-repository-api</artifactId>
</dependency>
<dependency>
- <groupId>org.apache.archiva</groupId>
- <artifactId>archiva-repository-layer</artifactId>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-component-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus.registry</groupId>
+ <artifactId>plexus-registry-api</artifactId>
</dependency>
</dependencies>
</project>
import org.apache.archiva.metadata.model.ProjectVersionMetadata;
import org.apache.archiva.metadata.repository.MetadataRepository;
import org.apache.archiva.metadata.repository.MetadataResolutionException;
-import org.apache.archiva.metadata.repository.filter.IncludesFilter;
import org.apache.archiva.metadata.repository.storage.StorageMetadataResolver;
import org.apache.maven.archiva.common.utils.VersionUtil;
import org.apache.maven.archiva.configuration.ArchivaConfiguration;
import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
import org.apache.maven.archiva.consumers.ConsumerException;
import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
-import org.apache.maven.archiva.model.ArtifactReference;
-import org.apache.maven.archiva.repository.ManagedRepositoryContent;
-import org.apache.maven.archiva.repository.layout.LayoutException;
import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
import org.codehaus.plexus.registry.Registry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import java.io.File;
import java.util.ArrayList;
-import java.util.Arrays;
import java.util.Date;
import java.util.List;
private Date whenGathered;
- /**
- * @plexus.requirement
- */
- private ManagedRepositoryContent repository;
-
private List<String> includes = new ArrayList<String>();
/**
private MetadataRepository metadataRepository;
/**
- * FIXME: this needs to be configurable based on storage type, and availability of proxy module
- * ... could be a different type since we need methods to modify the storage metadata, which would also allow more
- * appropriate methods to pass in the already determined repository configuration, for example, instead of the ID
+ * FIXME: this needs to be configurable based on storage type
*
* @plexus.requirement role-hint="maven2"
*/
private static final Logger log = LoggerFactory.getLogger( ArchivaMetadataCreationConsumer.class );
+ private String repoId;
+
public String getId()
{
return this.id;
public void beginScan( ManagedRepositoryConfiguration repo, Date whenGathered )
throws ConsumerException
{
- this.repository.setRepository( repo );
+ repoId = repo.getId();
this.whenGathered = whenGathered;
}
// note that we do minimal processing including checksums and POM information for performance of
// the initial scan. Any request for this information will be intercepted and populated on-demand
// or picked up by subsequent scans
- ArtifactReference artifact;
- try
- {
- artifact = repository.toArtifactReference( path );
- }
- catch ( LayoutException e )
- {
- throw new ConsumerException( e.getMessage(), e );
- }
- File file = new File( repository.getRepoRoot(), path );
+ ArtifactMetadata artifact = storageResolver.getArtifactForPath( repoId, path );
ProjectMetadata project = new ProjectMetadata();
- project.setNamespace( artifact.getGroupId() );
- project.setId( artifact.getArtifactId() );
+ project.setNamespace( artifact.getNamespace() );
+ project.setId( artifact.getProject() );
String projectVersion = VersionUtil.getBaseVersion( artifact.getVersion() );
// TODO: maybe not too efficient since it may have already been read and stored for this artifact
ProjectVersionMetadata versionMetadata = null;
try
{
- versionMetadata =
- storageResolver.getProjectVersion( repository.getId(), artifact.getGroupId(), artifact.getArtifactId(),
- projectVersion );
+ versionMetadata = storageResolver.getProjectVersion( repoId, artifact.getNamespace(), artifact.getProject(),
+ projectVersion );
}
catch ( MetadataResolutionException e )
{
createVersionMetadata = true;
}
- // A bit weird to reconstruct the file we already have, but don't want to expose getArtifactFromFile in the
- // storage API
- IncludesFilter<String> filter = new IncludesFilter<String>( Arrays.asList( file.getName() ) );
- ArtifactMetadata artifactMeta = storageResolver.getArtifacts( repository.getId(), artifact.getGroupId(),
- artifact.getArtifactId(), projectVersion,
- filter ).iterator().next();
- artifactMeta.setVersion( artifact.getVersion() );
- artifactMeta.setWhenGathered( whenGathered );
-
// TODO: transaction
// read the metadata and update it if it is newer or doesn't exist
- metadataRepository.updateArtifact( repository.getId(), project.getNamespace(), project.getId(), projectVersion,
- artifactMeta );
+ artifact.setWhenGathered( whenGathered );
+ metadataRepository.updateArtifact( repoId, project.getNamespace(), project.getId(), projectVersion, artifact );
if ( createVersionMetadata )
{
- metadataRepository.updateProjectVersion( repository.getId(), project.getNamespace(), project.getId(),
- versionMetadata );
+ metadataRepository.updateProjectVersion( repoId, project.getNamespace(), project.getId(), versionMetadata );
}
- metadataRepository.updateProject( repository.getId(), project );
+ metadataRepository.updateProject( repoId, project );
}
public void completeScan()
return artifacts;
}
+ public ArtifactMetadata getArtifactForPath( String repoId, String path )
+ {
+ ArtifactMetadata metadata = pathTranslator.getArtifactForPath( repoId, path );
+
+ populateArtifactMetadataFromFile( metadata, new File( getRepositoryBasedir( repoId ), path ) );
+
+ return metadata;
+ }
+
private ArtifactMetadata getArtifactFromFile( String repoId, String namespace, String projectId,
String projectVersion, File file )
{
ArtifactMetadata metadata = pathTranslator.getArtifactFromId( repoId, namespace, projectId, projectVersion,
file.getName() );
+ populateArtifactMetadataFromFile( metadata, file );
+
+ return metadata;
+ }
+
+ private static void populateArtifactMetadataFromFile( ArtifactMetadata metadata, File file )
+ {
metadata.setWhenGathered( new Date() );
metadata.setFileLastModified( file.lastModified() );
ChecksummedFile checksummedFile = new ChecksummedFile( file );
log.error( "Unable to checksum file " + file + ": " + e.getMessage() );
}
metadata.setSize( file.length() );
-
- return metadata;
}
private boolean isProject( File dir, Filter<String> filter )