]> source.dussan.org Git - archiva.git/blob
7f15d59128932f17e70896515f40151684ba93b2
[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.archiva.repository.events.RepositoryListener;
23 import org.apache.commons.lang.time.DateUtils;
24 import org.apache.maven.archiva.common.utils.VersionComparator;
25 import org.apache.maven.archiva.common.utils.VersionUtil;
26 import org.apache.maven.archiva.model.ArtifactReference;
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
32 import java.io.File;
33 import java.text.ParseException;
34 import java.text.SimpleDateFormat;
35 import java.util.ArrayList;
36 import java.util.Calendar;
37 import java.util.Collections;
38 import java.util.Date;
39 import java.util.List;
40 import java.util.Set;
41 import java.util.regex.Matcher;
42
43 /**
44  * Purge from repository all snapshots older than the specified days in the repository configuration.
45  * 
46  */
47 public class DaysOldRepositoryPurge
48     extends AbstractRepositoryPurge
49 {
50     private SimpleDateFormat timestampParser;
51
52     private int daysOlder;
53
54     private int retentionCount;
55
56     public DaysOldRepositoryPurge( ManagedRepositoryContent repository, int daysOlder,
57                                    int retentionCount, List<RepositoryListener> listeners )
58     {
59         super( repository, listeners );
60         this.daysOlder = daysOlder;
61         this.retentionCount = retentionCount;
62         timestampParser = new SimpleDateFormat( "yyyyMMdd.HHmmss" );
63         timestampParser.setTimeZone( DateUtils.UTC_TIME_ZONE );
64     }
65
66     public void process( String path )
67         throws RepositoryPurgeException
68     {
69         try
70         {
71             File artifactFile = new File( repository.getRepoRoot(), path );
72
73             if ( !artifactFile.exists() )
74             {
75                 return;
76             }
77
78             ArtifactReference artifact = repository.toArtifactReference( path );
79
80             Calendar olderThanThisDate = Calendar.getInstance( DateUtils.UTC_TIME_ZONE );
81             olderThanThisDate.add( Calendar.DATE, -daysOlder );
82
83             // respect retention count
84             VersionedReference reference = new VersionedReference();
85             reference.setGroupId( artifact.getGroupId() );
86             reference.setArtifactId( artifact.getArtifactId() );
87             reference.setVersion( artifact.getVersion() );
88
89             List<String> versions = new ArrayList<String>( repository.getVersions( reference ) );
90
91             Collections.sort( versions, VersionComparator.getInstance() );
92
93             if ( retentionCount > versions.size() )
94             {
95                 // Done. nothing to do here. skip it.
96                 return;
97             }
98
99             int countToPurge = versions.size() - retentionCount;
100
101             for ( String version : versions )
102             {
103                 if ( countToPurge-- <= 0 )
104                 {
105                     break;
106                 }
107
108                 ArtifactReference newArtifactReference =
109                     repository.toArtifactReference( artifactFile.getAbsolutePath() );
110                 newArtifactReference.setVersion( version );
111
112                 File newArtifactFile = repository.toFile( newArtifactReference );
113
114                 // Is this a generic snapshot "1.0-SNAPSHOT" ?
115                 if ( VersionUtil.isGenericSnapshot( newArtifactReference.getVersion() ) )
116                 {
117                     if ( newArtifactFile.lastModified() < olderThanThisDate.getTimeInMillis() )
118                     {
119                         doPurgeAllRelated( newArtifactReference );
120                     }
121                 }
122                 // Is this a timestamp snapshot "1.0-20070822.123456-42" ?
123                 else if ( VersionUtil.isUniqueSnapshot( newArtifactReference.getVersion() ) )
124                 {
125                     Calendar timestampCal = uniqueSnapshotToCalendar( newArtifactReference.getVersion() );
126
127                     if ( timestampCal.getTimeInMillis() < olderThanThisDate.getTimeInMillis() )
128                     {
129                         doPurgeAllRelated( newArtifactReference );
130                     }
131                     else if ( newArtifactFile.lastModified() < olderThanThisDate.getTimeInMillis() )
132                     {
133                         doPurgeAllRelated( newArtifactReference );
134                     }
135                 }
136             }
137         }
138         catch ( ContentNotFoundException e )
139         {
140             throw new RepositoryPurgeException( e.getMessage(), e );
141         }
142         catch ( LayoutException e )
143         {
144             log.debug( "Not processing file that is not an artifact: " + e.getMessage() );
145         }
146     }
147
148     private Calendar uniqueSnapshotToCalendar( String version )
149     {
150         // The latestVersion will contain the full version string "1.0-alpha-5-20070821.213044-8"
151         // This needs to be broken down into ${base}-${timestamp}-${build_number}
152
153         Matcher m = VersionUtil.UNIQUE_SNAPSHOT_PATTERN.matcher( version );
154         if ( m.matches() )
155         {
156             Matcher mtimestamp = VersionUtil.TIMESTAMP_PATTERN.matcher( m.group( 2 ) );
157             if ( mtimestamp.matches() )
158             {
159                 String tsDate = mtimestamp.group( 1 );
160                 String tsTime = mtimestamp.group( 2 );
161
162                 Date versionDate;
163                 try
164                 {
165                     versionDate = timestampParser.parse( tsDate + "." + tsTime );
166                     Calendar cal = Calendar.getInstance( DateUtils.UTC_TIME_ZONE );
167                     cal.setTime( versionDate );
168
169                     return cal;
170                 }
171                 catch ( ParseException e )
172                 {
173                     // Invalid Date/Time
174                     return null;
175                 }
176             }
177         }
178         return null;
179     }
180
181     private void doPurgeAllRelated( ArtifactReference reference )
182     {
183         try
184         {
185             Set<ArtifactReference> related = repository.getRelatedArtifacts( reference );
186             purge( related );
187         }
188         catch ( ContentNotFoundException e )
189         {
190             // Nothing to do here - it means the repository would have been constructed incorrectly
191             log.debug( e.getMessage(), e );
192         }
193     }
194 }