import junit.framework.TestCase;
import net.sf.ehcache.CacheManager;
import org.apache.archiva.admin.model.beans.ManagedRepository;
+import org.apache.archiva.common.plexusbridge.PlexusSisuBridge;
import org.apache.commons.io.FileUtils;
import org.apache.archiva.configuration.ArchivaConfiguration;
import org.apache.archiva.configuration.Configuration;
import org.apache.archiva.configuration.ManagedRepositoryConfiguration;
import org.apache.archiva.configuration.RemoteRepositoryConfiguration;
+import org.apache.maven.index.NexusIndexer;
+import org.apache.maven.index.context.IndexingContext;
import org.junit.After;
import org.junit.Before;
import org.junit.runner.RunWith;
public void tearDown()
throws Exception
{
+
+
if ( sc != null )
{
sc.clearContents();
--- /dev/null
+package org.apache.archiva.webdav.util;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import com.opensymphony.xwork2.inject.Inject;
+import org.apache.archiva.common.plexusbridge.PlexusSisuBridge;
+import org.apache.maven.index.NexusIndexer;
+import org.apache.maven.index.context.IndexingContext;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.context.ApplicationContext;
+import org.springframework.stereotype.Service;
+import org.springframework.web.context.WebApplicationContext;
+import org.springframework.web.context.support.WebApplicationContextUtils;
+
+import javax.annotation.PostConstruct;
+import javax.annotation.PreDestroy;
+import javax.servlet.ServletContextEvent;
+import javax.servlet.ServletContextListener;
+
+/**
+ * @author Olivier Lamy
+ */
+@Service
+public class MavenIndexerCleaner
+ implements ServletContextListener
+{
+ Logger log = LoggerFactory.getLogger( getClass() );
+
+
+ PlexusSisuBridge plexusSisuBridge;
+
+ public void contextInitialized( ServletContextEvent servletContextEvent )
+ {
+ try
+ {
+ WebApplicationContext wacu =
+ WebApplicationContextUtils.getRequiredWebApplicationContext( servletContextEvent.getServletContext() );
+ plexusSisuBridge = wacu.getBean( PlexusSisuBridge.class );
+ cleanupIndex( );
+
+ }
+ catch ( Exception e )
+ {
+ log.error( e.getMessage(), e );
+ throw new RuntimeException( e.getMessage(), e );
+ }
+ }
+
+ public void contextDestroyed( ServletContextEvent servletContextEvent )
+ {
+ try
+ {
+ cleanupIndex( );
+
+ }
+ catch ( Exception e )
+ {
+ log.error( e.getMessage(), e );
+ throw new RuntimeException( e.getMessage(), e );
+ }
+ }
+
+ public void cleanupIndex( )
+ throws Exception
+ {
+ log.info( "cleanup IndexingContext" );
+ NexusIndexer nexusIndexer = plexusSisuBridge.lookup( NexusIndexer.class );
+ for ( IndexingContext context : nexusIndexer.getIndexingContexts().values() )
+ {
+ nexusIndexer.removeIndexingContext( context, true );
+ }
+ }
+
+ @Inject
+ private ApplicationContext applicationContext;
+
+ @PostConstruct
+ public void startup() throws Exception
+ {
+ plexusSisuBridge = applicationContext.getBean( PlexusSisuBridge.class );
+ cleanupIndex( );
+ }
+
+ @PreDestroy
+ public void shutdown()
+ throws Exception
+ {
+ cleanupIndex( );
+ }
+
+
+}