aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/plugins/metadata-store-cassandra/src
diff options
context:
space:
mode:
authorOlivier Lamy <olamy@apache.org>2014-03-24 01:36:39 +0000
committerOlivier Lamy <olamy@apache.org>2014-03-24 01:36:39 +0000
commit6b7feec1f102f11291d72c8c7b4ab50059ab5915 (patch)
tree2ab913817078fb7486994f76d20d24b21c805528 /archiva-modules/plugins/metadata-store-cassandra/src
parentfddb0ca9cfcee7194315b58217187c2303ea9fd1 (diff)
downloadarchiva-6b7feec1f102f11291d72c8c7b4ab50059ab5915.tar.gz
archiva-6b7feec1f102f11291d72c8c7b4ab50059ab5915.zip
fix checksum search cassandra search
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1580691 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/plugins/metadata-store-cassandra/src')
-rw-r--r--archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/CassandraMetadataRepository.java124
-rw-r--r--archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/DefaultCassandraArchivaManager.java13
2 files changed, 81 insertions, 56 deletions
diff --git a/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/CassandraMetadataRepository.java b/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/CassandraMetadataRepository.java
index 6eda35d5e..831686269 100644
--- a/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/CassandraMetadataRepository.java
+++ b/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/CassandraMetadataRepository.java
@@ -723,7 +723,7 @@ public class CassandraMetadataRepository
return projectMetadata;
}
- protected ProjectVersionMetadataModel map( ColumnSlice<String, String> columnSlice )
+ protected ProjectVersionMetadataModel mapProjectVersionMetadataModel( ColumnSlice<String, String> columnSlice )
{
ProjectVersionMetadataModel projectVersionMetadataModel = new ProjectVersionMetadataModel();
projectVersionMetadataModel.setId( getStringValue( columnSlice, "id" ) );
@@ -786,7 +786,8 @@ public class CassandraMetadataRepository
boolean creation = true;
if ( result.get().getCount() > 0 )
{
- projectVersionMetadataModel = map( result.get().getList().get( 0 ).getColumnSlice() );
+ projectVersionMetadataModel =
+ mapProjectVersionMetadataModel( result.get().getList().get( 0 ).getColumnSlice() );
creation = false;
}
else
@@ -1675,27 +1676,11 @@ public class CassandraMetadataRepository
for ( Row<String, String, Long> row : result.get() )
{
ColumnSlice<String, Long> columnSlice = row.getColumnSlice();
- String repositoryName =
- ss.fromByteBuffer( columnSlice.getColumnByName( "repositoryName" ).getValueBytes() );
+ String repositoryName = getAsStringValue( columnSlice, "repositoryName" );
if ( StringUtils.equals( repositoryName, repositoryId ) )
{
- ArtifactMetadata artifactMetadata = new ArtifactMetadata();
- artifactMetadata.setNamespace( getAsStringValue( columnSlice, "namespaceId" ) );
- artifactMetadata.setSize( getLongValue( columnSlice, "size" ) );
- artifactMetadata.setId( getAsStringValue( columnSlice, "id" ) );
- artifactMetadata.setFileLastModified( getLongValue( columnSlice, "fileLastModified" ) );
- artifactMetadata.setMd5( getAsStringValue( columnSlice, "md5" ) );
- artifactMetadata.setProject( getAsStringValue( columnSlice, "project" ) );
- artifactMetadata.setProjectVersion( getAsStringValue( columnSlice, "projectVersion" ) );
- artifactMetadata.setRepositoryId( repositoryName );
- artifactMetadata.setSha1( getAsStringValue( columnSlice, "sha1" ) );
- artifactMetadata.setVersion( getAsStringValue( columnSlice, "version" ) );
- Long whenGathered = getLongValue( columnSlice, "whenGathered" );
- if ( whenGathered != null )
- {
- artifactMetadata.setWhenGathered( new Date( whenGathered ) );
- }
- artifactMetadatas.add( artifactMetadata );
+
+ artifactMetadatas.add( mapArtifactMetadataLongColumnSlice( columnSlice ) );
}
}
@@ -1703,6 +1688,27 @@ public class CassandraMetadataRepository
}
+ protected ArtifactMetadata mapArtifactMetadataLongColumnSlice( ColumnSlice columnSlice )
+ {
+ ArtifactMetadata artifactMetadata = new ArtifactMetadata();
+ artifactMetadata.setNamespace( getAsStringValue( columnSlice, "namespaceId" ) );
+ artifactMetadata.setSize( getLongValue( columnSlice, "size" ) );
+ artifactMetadata.setId( getAsStringValue( columnSlice, "id" ) );
+ artifactMetadata.setFileLastModified( getLongValue( columnSlice, "fileLastModified" ) );
+ artifactMetadata.setMd5( getAsStringValue( columnSlice, "md5" ) );
+ artifactMetadata.setProject( getAsStringValue( columnSlice, "project" ) );
+ artifactMetadata.setProjectVersion( getAsStringValue( columnSlice, "projectVersion" ) );
+ artifactMetadata.setRepositoryId( getStringValue( columnSlice, "repositoryName" ) );
+ artifactMetadata.setSha1( getAsStringValue( columnSlice, "sha1" ) );
+ artifactMetadata.setVersion( getAsStringValue( columnSlice, "version" ) );
+ Long whenGathered = getLongValue( columnSlice, "whenGathered" );
+ if ( whenGathered != null )
+ {
+ artifactMetadata.setWhenGathered( new Date( whenGathered ) );
+ }
+ return artifactMetadata;
+ }
+
protected void populateFacets( final ArtifactMetadata artifactMetadata )
{
/* final List<MetadataFacetModel> metadataFacetModels = new ArrayList<MetadataFacetModel>();
@@ -1760,55 +1766,61 @@ public class CassandraMetadataRepository
}
@Override
- public List<ArtifactMetadata> getArtifactsByChecksum( final String repositoryId, final String checksum )
+ public Collection<ArtifactMetadata> getArtifactsByChecksum( final String repositoryId, final String checksum )
throws MetadataRepositoryException
{
-/* final List<ArtifactMetadataModel> artifactMetadataModels = new ArrayList<ArtifactMetadataModel>();
+ Keyspace keyspace = cassandraArchivaManager.getKeyspace();
+ StringSerializer ss = StringSerializer.get();
- if ( logger.isDebugEnabled() )
- {
- logger.debug( "all ArtifactMetadataModel: {}", getArtifactMetadataModelEntityManager().getAll() );
- }
+ // cql cannot run or in queries so running twice the query
+ Map<String, ArtifactMetadata> artifactMetadataMap = new HashMap<String, ArtifactMetadata>();
- // FIXME cql query
- getArtifactMetadataModelEntityManager().visitAll( new Function<ArtifactMetadataModel, Boolean>()
+ RangeSlicesQuery<String, String, String> query = HFactory //
+ .createRangeSlicesQuery( keyspace, ss, ss, ss ) //
+ .setColumnFamily( cassandraArchivaManager.getArtifactMetadataModelFamilyName() ) //
+ .setColumnNames( "namespaceId", "size", "id", "fileLastModified", "md5", "project", "projectVersion",
+ "repositoryName", "version", "whenGathered", "sha1" ); //
+
+ query = query.addEqualsExpression( "sha1", checksum );
+
+ QueryResult<OrderedRows<String, String, String>> result = query.execute();
+
+ for ( Row<String, String, String> row : result.get() )
{
- @Override
- public Boolean apply( ArtifactMetadataModel artifactMetadataModel )
+ ColumnSlice<String, String> columnSlice = row.getColumnSlice();
+ String repositoryName = getStringValue( columnSlice, "repositoryName" );
+ if ( StringUtils.equals( repositoryName, repositoryId ) )
{
- if ( artifactMetadataModel != null )
- {
- if ( StringUtils.equals( artifactMetadataModel.getRepositoryId(), repositoryId )
- && artifactMetadataModel.getNamespace() != null &&
- artifactMetadataModel.getProject() != null && artifactMetadataModel.getId() != null )
- {
- if ( StringUtils.equals( checksum, artifactMetadataModel.getMd5() ) || StringUtils.equals(
- checksum, artifactMetadataModel.getSha1() ) )
- {
- artifactMetadataModels.add( artifactMetadataModel );
- }
- }
- }
- return Boolean.TRUE;
+ artifactMetadataMap.put( row.getKey(), mapArtifactMetadataLongColumnSlice( columnSlice ) );
}
- } );
- List<ArtifactMetadata> artifactMetadatas = new ArrayList<ArtifactMetadata>( artifactMetadataModels.size() );
+ }
- for ( ArtifactMetadataModel model : artifactMetadataModels )
+ query = HFactory //
+ .createRangeSlicesQuery( keyspace, ss, ss, ss ) //
+ .setColumnFamily( cassandraArchivaManager.getArtifactMetadataModelFamilyName() ) //
+ .setColumnNames( "namespaceId", "size", "id", "fileLastModified", "md5", "project", "projectVersion",
+ "repositoryName", "version", "whenGathered", "sha1" ); //
+
+ query = query.addEqualsExpression( "md5", checksum );
+
+ result = query.execute();
+
+ for ( Row<String, String, String> row : result.get() )
{
- ArtifactMetadata artifactMetadata = getModelMapper().map( model, ArtifactMetadata.class );
- populateFacets( artifactMetadata );
- artifactMetadatas.add( artifactMetadata );
- }
+ ColumnSlice<String, String> columnSlice = row.getColumnSlice();
+ String repositoryName = getStringValue( columnSlice, "repositoryName" );
+ if ( StringUtils.equals( repositoryName, repositoryId ) )
+ {
- logger.debug( "getArtifactsByChecksum repositoryId: {}, checksum: {}, artifactMetadatas: {}", repositoryId,
- checksum, artifactMetadatas );
+ artifactMetadataMap.put( row.getKey(), mapArtifactMetadataLongColumnSlice( columnSlice ) );
+ }
+ }
- return artifactMetadatas;*/
- return Collections.emptyList();
+ return artifactMetadataMap.values();
}
+
@Override
public void removeArtifact( final String repositoryId, final String namespace, final String project,
final String version, final String id )
diff --git a/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/DefaultCassandraArchivaManager.java b/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/DefaultCassandraArchivaManager.java
index c993284d2..651507d02 100644
--- a/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/DefaultCassandraArchivaManager.java
+++ b/archiva-modules/plugins/metadata-store-cassandra/src/main/java/org/apache/archiva/metadata/repository/cassandra/DefaultCassandraArchivaManager.java
@@ -288,6 +288,19 @@ public class DefaultCassandraArchivaManager
whenGatheredColumn.setValidationClass( ComparatorType.LONGTYPE.getClassName() );
artifactMetadataModel.addColumnDefinition( whenGatheredColumn );
+ BasicColumnDefinition sha1Column = new BasicColumnDefinition();
+ sha1Column.setName( StringSerializer.get().toByteBuffer( "sha1" ) );
+ sha1Column.setIndexName( "sha1" );
+ sha1Column.setIndexType( ColumnIndexType.KEYS );
+ sha1Column.setValidationClass( ComparatorType.UTF8TYPE.getClassName() );
+ artifactMetadataModel.addColumnDefinition( sha1Column );
+
+ BasicColumnDefinition md5Column = new BasicColumnDefinition();
+ md5Column.setName( StringSerializer.get().toByteBuffer( "md5" ) );
+ md5Column.setIndexName( "md5" );
+ md5Column.setIndexType( ColumnIndexType.KEYS );
+ md5Column.setValidationClass( ComparatorType.UTF8TYPE.getClassName() );
+ artifactMetadataModel.addColumnDefinition( md5Column );
}