* under the License.
*/
+import java.text.ParseException;
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
import org.apache.archiva.repository.scanner.RepositoryScanStatistics;
-import org.apache.commons.collections.CollectionUtils;
+import org.apache.commons.lang.StringUtils;
import org.apache.maven.archiva.common.ArchivaException;
import org.apache.maven.archiva.configuration.ArchivaConfiguration;
import org.apache.maven.archiva.configuration.ConfigurationEvent;
import org.apache.maven.archiva.scheduled.tasks.ArchivaTask;
import org.apache.maven.archiva.scheduled.tasks.DatabaseTask;
import org.apache.maven.archiva.scheduled.tasks.RepositoryTask;
-import org.apache.maven.archiva.scheduled.tasks.RepositoryTaskSelectionPredicate;
import org.codehaus.plexus.personality.plexus.lifecycle.phase.Startable;
import org.codehaus.plexus.personality.plexus.lifecycle.phase.StartingException;
import org.codehaus.plexus.personality.plexus.lifecycle.phase.StoppingException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import java.text.ParseException;
-import java.util.ArrayList;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Set;
-
/**
* Default implementation of a scheduling component for archiva.
*
throw new ArchivaException( "Unable to get repository scanning queue:" + e.getMessage(), e );
}
- return CollectionUtils.exists( queue, new RepositoryTaskSelectionPredicate( repositoryId ) );
+ for ( Task t : queue )
+ {
+ if ( t instanceof RepositoryTask )
+ {
+ RepositoryTask task = (RepositoryTask) t;
+ if ( StringUtils.equals( repositoryId, task.getRepositoryId() ) )
+ {
+ return true;
+ }
+ }
+ }
+
+ return false;
}
public boolean isProcessingDatabaseTask()
+++ /dev/null
-package org.apache.maven.archiva.scheduled.tasks;
-
-/*
- * 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 org.apache.commons.collections.Predicate;
-import org.apache.commons.lang.StringUtils;
-
-/**
- * RepositoryTaskSelectionPredicate
- *
- * @version $Id$
- */
-public class RepositoryTaskSelectionPredicate
- implements Predicate
-{
- private String repoid;
-
- public RepositoryTaskSelectionPredicate( String repositoryId )
- {
- this.repoid = repositoryId;
- }
-
- public boolean evaluate( Object object )
- {
- boolean satisfies = false;
-
- if ( object instanceof RepositoryTask )
- {
- RepositoryTask task = (RepositoryTask) object;
- return StringUtils.equals( repoid, task.getRepositoryId() );
- }
-
- return satisfies;
- }
-
-}