]> source.dussan.org Git - archiva.git/blob
54db5c91586de895f116e0cf0d50dcdc2b0195c2
[archiva.git] /
1 package org.apache.archiva.webdav.util;
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.apache.archiva.common.plexusbridge.PlexusSisuBridge;
22 import org.apache.lucene.store.Lock;
23 import org.apache.lucene.store.LockReleaseFailedException;
24 import org.apache.lucene.store.NativeFSLockFactory;
25 import org.apache.maven.index.NexusIndexer;
26 import org.apache.maven.index.context.IndexingContext;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.context.ApplicationContext;
30 import org.springframework.stereotype.Service;
31 import org.springframework.web.context.WebApplicationContext;
32 import org.springframework.web.context.support.WebApplicationContextUtils;
33
34 import javax.annotation.PostConstruct;
35 import javax.annotation.PreDestroy;
36 import javax.inject.Inject;
37 import javax.servlet.ServletContextEvent;
38 import javax.servlet.ServletContextListener;
39 import java.io.File;
40
41 /**
42  * @author Olivier Lamy
43  */
44 @Service
45 public class MavenIndexerCleaner
46     implements ServletContextListener
47 {
48     Logger log = LoggerFactory.getLogger( getClass() );
49
50
51     private PlexusSisuBridge plexusSisuBridge;
52
53     @Inject
54     private ApplicationContext applicationContext;
55
56     @PostConstruct
57     public void startup()
58         throws Exception
59     {
60         plexusSisuBridge = applicationContext.getBean( PlexusSisuBridge.class );
61         cleanupIndex();
62     }
63
64     @PreDestroy
65     public void shutdown()
66         throws Exception
67     {
68         cleanupIndex();
69     }
70
71
72     public void contextInitialized( ServletContextEvent servletContextEvent )
73     {
74         try
75         {
76             WebApplicationContext wacu =
77                 WebApplicationContextUtils.getRequiredWebApplicationContext( servletContextEvent.getServletContext() );
78             plexusSisuBridge = wacu.getBean( PlexusSisuBridge.class );
79             cleanupIndex();
80
81         }
82         catch ( Exception e )
83         {
84             log.error( e.getMessage(), e );
85             throw new RuntimeException( e.getMessage(), e );
86         }
87     }
88
89     public void contextDestroyed( ServletContextEvent servletContextEvent )
90     {
91         try
92         {
93             cleanupIndex();
94
95         }
96         catch ( Exception e )
97         {
98             log.error( e.getMessage(), e );
99             throw new RuntimeException( e.getMessage(), e );
100         }
101     }
102
103     public void cleanupIndex()
104         throws Exception
105     {
106         log.info( "cleanup IndexingContext" );
107         NexusIndexer nexusIndexer = plexusSisuBridge.lookup( NexusIndexer.class );
108         for ( IndexingContext context : nexusIndexer.getIndexingContexts().values() )
109         {
110             nexusIndexer.removeIndexingContext( context, true );
111         }
112
113         /*
114         try
115         {
116             NativeFSLockFactory nativeFSLockFactory =
117                 new NativeFSLockFactory( new File( "target/appserver-base/data/repositories/internal/.indexer" ) );
118             Lock lock = nativeFSLockFactory.makeLock( "write.lock" );
119             lock.release();
120             log.info( "cleanup lock" );
121         }
122         catch ( LockReleaseFailedException e )
123         {
124             // ignore
125         }*/
126
127     }
128
129
130 }