/******************************************************************************* * Copyright (c) 2007 Alphonse Van Assche and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Alphonse Van Assche - initial API and implementation * Red Hat Inc. - ongoing maintenance *******************************************************************************/ package org.eclipse.linuxtools.internal.rpm.rpmlint.builder; import java.util.ArrayList; import java.util.List; import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.IResourceVisitor; import org.eclipse.linuxtools.internal.rpm.rpmlint.Activator; /** * Resourse visitor accepting only spec and rpm files. */ public class RpmlintPreVisitor implements IResourceVisitor { private List<String> paths = new ArrayList<>(); @Override public boolean visit(IResource resource) { if (Activator.SPECFILE_EXTENSION.equals(resource.getFileExtension()) || Activator.RPMFILE_EXTENSION.equals(resource .getFileExtension())) { // we previsiting resource to be able to run rpmlint command // only once. That improve drasticaly the perfs. if (resource.getLocation()==null) { paths.add(resource.getLocationURI().toString()); } else { paths.add(resource.getLocation().toOSString()); } } return true; } /** * @return List of the accepted paths. */ public List<String> getVisitedPaths() { return paths; } }