blob: c30fac403c168829cd34efa2f719bfe3a807eb0a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Pivotal Software, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Pivotal Software, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.text.quicksearch.internal.core.priority;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.runtime.IPath;
import org.eclipse.text.quicksearch.internal.core.preferences.QuickSearchPreferences;
/**
* Default implementation of PriorityFunction. It doesn't de-emphasize anything but
* if has some list of extensions and names that are used to ignore some types of
* files and directories.
* <p>
* This class can be used as is and customised by changing the lists, or it can be
* subclassed and inherit some of the default behaviour by calling super.priority()
*/
public class DefaultPriorityFunction extends PriorityFunction {
/**
* If true, any resources marked as 'derived' in the Eclipse workspace will
* be ignored.
*/
public boolean ignoreDerived = true;
/**
* The default priority function causes any resources that end with these strings to
* be ignored.
*/
public String[] ignoredExtensions = {
"~", ".bin", ".bmp", ".class", ".com", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
".doc", ".docx", ".exe", ".gif", ".jar", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
".jpg", ".jpeg", ".odp", ".odt", ".p12", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
".pdf", ".png", ".ppt", ".pptx", ".psd", //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
".svg", ".xls", ".xlsx", ".zip" //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
};
/**
* The default priority function causes any resource who's name (i.e last path segment)
* starts with any of these Strings to be ignored.
*/
public String[] ignoredPrefixes = {
"." //$NON-NLS-1$
};
/**
* The default priority function causes any resources who's name equals any of these
* Strings to be ignored.
*/
public String[] ignoredNames = {
"bin", "build", "target" //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
};
@Override
public double priority(IResource r) {
if (r!=null && r.isAccessible()) {
if (ignoreDerived && r.isDerived()) {
return PRIORITY_IGNORE;
}
if (isIgnoredLinkedContainer(r)) {
return PRIORITY_IGNORE;
}
String name = r.getName();
for (String ext : ignoredExtensions) {
if (name.regionMatches(true, name.length() - ext.length(), ext, 0, ext.length())) {
return PRIORITY_IGNORE;
}
}
for (String pre : ignoredPrefixes) {
if (name.startsWith(pre)) {
return PRIORITY_IGNORE;
}
}
for (String n : ignoredNames) {
if (name.equals(n)) {
return PRIORITY_IGNORE;
}
}
return PRIORITY_DEFAULT;
}
return PRIORITY_IGNORE;
}
/**
* We want to avoid searching the same files / folders twice in cases where users have 'overlapping projects'.
* I.e a project contains folders that are actually correspond to other projects also imported in the workspace.
* <p>
* See https://issuetracker.springsource.com/browse/STS-3783
*/
private boolean isIgnoredLinkedContainer(IResource resource) {
if (!(resource instanceof IContainer) || !resource.isLinked(IResource.NONE)) {
return false;
}
IPath location = resource.getLocation();
if (location == null) {
return true;
}
IWorkspaceRoot root = resource.getWorkspace().getRoot();
IContainer linkTarget = root.getContainerForLocation(location);
return linkTarget != null;
}
/**
* Initialize some configurable settings from an instance of QuickSearchPreferences
*/
public void configure(QuickSearchPreferences preferences) {
String[] pref = preferences.getIgnoredExtensions();
if (pref!=null) {
this.ignoredExtensions = pref;
}
pref = preferences.getIgnoredNames();
if (pref!=null) {
this.ignoredNames = pref;
}
pref = preferences.getIgnoredPrefixes();
if (pref!=null) {
this.ignoredPrefixes = pref;
}
}
}