]> source.dussan.org Git - archiva.git/blob
1b25607eea00ce4df9a0f7aeef829d9b3cec3f8d
[archiva.git] /
1 package org.apache.maven.archiva.consumers.core.repository;
2
3 /*
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
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
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
19  * under the License.
20  */
21
22 import org.apache.maven.archiva.common.utils.VersionComparator;
23 import org.apache.maven.archiva.common.utils.VersionUtil;
24 import org.apache.maven.archiva.database.ArtifactDAO;
25 import org.apache.maven.archiva.model.ArtifactReference;
26 import org.apache.maven.archiva.model.ProjectReference;
27 import org.apache.maven.archiva.model.VersionedReference;
28 import org.apache.maven.archiva.repository.ContentNotFoundException;
29 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
30 import org.apache.maven.archiva.repository.layout.LayoutException;
31 import org.apache.maven.archiva.repository.metadata.MetadataTools;
32 import org.apache.maven.archiva.repository.metadata.RepositoryMetadataException;
33
34 import java.io.File;
35 import java.io.IOException;
36 import java.util.ArrayList;
37 import java.util.Collections;
38 import java.util.List;
39
40 /**
41  * <p>
42  * This will look in a single managed repository, and purge any snapshots that are present
43  * that have a corresponding released version on the same repository.
44  * </p>
45  * 
46  * <p>
47  * So, if you have the following (presented in the m2/default layout form) ...
48  * <pre>
49  *   /com/foo/foo-tool/1.0-SNAPSHOT/foo-tool-1.0-SNAPSHOT.jar
50  *   /com/foo/foo-tool/1.1-SNAPSHOT/foo-tool-1.1-SNAPSHOT.jar
51  *   /com/foo/foo-tool/1.2.1-SNAPSHOT/foo-tool-1.2.1-SNAPSHOT.jar
52  *   /com/foo/foo-tool/1.2.1/foo-tool-1.2.1.jar
53  *   /com/foo/foo-tool/2.0-SNAPSHOT/foo-tool-2.0-SNAPSHOT.jar
54  *   /com/foo/foo-tool/2.0/foo-tool-2.0.jar
55  *   /com/foo/foo-tool/2.1-SNAPSHOT/foo-tool-2.1-SNAPSHOT.jar
56  * </pre>
57  * then the current highest ranked released (non-snapshot) version is 2.0, which means
58  * the snapshots from 1.0-SNAPSHOT, 1.1-SNAPSHOT, 1.2.1-SNAPSHOT, and 2.0-SNAPSHOT can
59  * be purged.  Leaving 2.1-SNAPSHOT in alone.
60  * </p>
61  *
62  * @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
63  * @version $Id$
64  */
65 public class CleanupReleasedSnapshotsRepositoryPurge
66     extends AbstractRepositoryPurge
67 {
68     private MetadataTools metadataTools;
69
70     public CleanupReleasedSnapshotsRepositoryPurge( ManagedRepositoryContent repository, ArtifactDAO artifactDao,
71                                                     MetadataTools metadataTools )
72     {
73         super( repository, artifactDao );
74         this.metadataTools = metadataTools;
75     }
76
77     public void process( String path )
78         throws RepositoryPurgeException
79     {
80         try
81         {
82             File artifactFile = new File( repository.getRepoRoot(), path );
83
84             if ( !artifactFile.exists() )
85             {
86                 // Nothing to do here, file doesn't exist, skip it.
87                 return;
88             }
89
90             ArtifactReference artifact = repository.toArtifactReference( path );
91
92             if ( !VersionUtil.isSnapshot( artifact.getVersion() ) )
93             {
94                 // Nothing to do here, not a snapshot, skip it.
95                 return;
96             }
97
98             ProjectReference reference = new ProjectReference();
99             reference.setGroupId( artifact.getGroupId() );
100             reference.setArtifactId( artifact.getArtifactId() );
101
102             // Gather up all of the versions.
103             List<String> allVersions = new ArrayList<String>( repository.getVersions( reference ) );
104
105             // Split the versions into released and snapshots.
106             List<String> releasedVersions = new ArrayList<String>();
107             List<String> snapshotVersions = new ArrayList<String>();
108
109             for ( String version : allVersions )
110             {
111                 if ( VersionUtil.isSnapshot( version ) )
112                 {
113                     snapshotVersions.add( version );
114                 }
115                 else
116                 {
117                     releasedVersions.add( version );
118                 }
119             }
120
121             Collections.sort( allVersions, VersionComparator.getInstance() );
122             Collections.sort( releasedVersions, VersionComparator.getInstance() );
123             Collections.sort( snapshotVersions, VersionComparator.getInstance() );
124
125             // Find out the highest released version.
126             String highestReleasedVersion = allVersions.get( allVersions.size() - 1 );
127
128             // Now clean out any version that is earlier than the highest released version.
129             boolean needsMetadataUpdate = false;
130
131             VersionedReference versionRef = new VersionedReference();
132             versionRef.setGroupId( artifact.getGroupId() );
133             versionRef.setArtifactId( artifact.getArtifactId() );
134
135             for ( String version : snapshotVersions )
136             {
137                 if ( VersionComparator.getInstance().compare( version, highestReleasedVersion ) < 0 )
138                 {
139                     versionRef.setVersion( version );
140                     repository.deleteVersion( versionRef );
141                     needsMetadataUpdate = true;
142                 }
143             }
144
145             if ( needsMetadataUpdate )
146             {
147                 updateMetadata( artifact );
148             }
149         }
150         catch ( LayoutException e )
151         {
152             throw new RepositoryPurgeException( e.getMessage(), e );
153         }
154         catch ( ContentNotFoundException e )
155         {
156             throw new RepositoryPurgeException( e.getMessage(), e );
157         }
158     }
159
160     private void updateMetadata( ArtifactReference artifact )
161     {
162         VersionedReference versionRef = new VersionedReference();
163         versionRef.setGroupId( artifact.getGroupId() );
164         versionRef.setArtifactId( artifact.getArtifactId() );
165         versionRef.setVersion( artifact.getVersion() );
166
167         ProjectReference projectRef = new ProjectReference();
168         projectRef.setGroupId( artifact.getGroupId() );
169         projectRef.setArtifactId( artifact.getArtifactId() );
170
171         try
172         {
173             metadataTools.updateMetadata( repository, versionRef );
174         }
175         catch ( ContentNotFoundException e )
176         {
177             // Ignore. (Just means we have no snapshot versions left to reference).
178         }
179         catch ( RepositoryMetadataException e )
180         {
181             // Ignore. 
182         }
183         catch ( IOException e )
184         {
185             // Ignore. 
186         }
187         catch ( LayoutException e )
188         {
189             // Ignore.
190         }
191
192         try
193         {
194             metadataTools.updateMetadata( repository, projectRef );
195         }
196         catch ( ContentNotFoundException e )
197         {
198             // Ignore. (Just means we have no snapshot versions left to reference).
199         }
200         catch ( RepositoryMetadataException e )
201         {
202             // Ignore. 
203         }
204         catch ( IOException e )
205         {
206             // Ignore. 
207         }
208         catch ( LayoutException e )
209         {
210             // Ignore.
211         }
212     }
213 }