This project has retired. For details please refer to its Attic page.
TemporaryGroupIndexCleaner xref
View Javadoc
1   package org.apache.archiva.indexer.merger;
2   /*
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   */
20  
21  import org.slf4j.Logger;
22  import org.slf4j.LoggerFactory;
23  import org.springframework.scheduling.annotation.Scheduled;
24  import org.springframework.stereotype.Service;
25  
26  import javax.inject.Inject;
27  import java.util.Date;
28  
29  /**
30   * @author Olivier Lamy
31   * @since 1.4-M2
32   */
33  @Service
34  public class TemporaryGroupIndexCleaner
35  {
36      private Logger log = LoggerFactory.getLogger( getClass() );
37  
38      @Inject
39      private IndexMerger indexMerger;
40  
41  
42      public TemporaryGroupIndexCleaner( )
43      {
44  
45      }
46  
47      // 900000
48      @Scheduled(fixedDelay = 900000)
49      public void cleanTemporaryIndex()
50      {
51  
52          indexMerger.getTemporaryGroupIndexes()
53              .stream()
54              .forEach( temporaryGroupIndex ->
55                   {
56                       // cleanup files older than the ttl
57                       if ( new Date().getTime() - temporaryGroupIndex.getCreationTime() >
58                           temporaryGroupIndex.getMergedIndexTtl() )
59                       {
60                           log.info( "cleanTemporaryIndex for groupId {}", temporaryGroupIndex.getGroupId() );
61                           indexMerger.cleanTemporaryGroupIndex( temporaryGroupIndex );
62  
63                       }
64                   }
65          );
66      }
67  }