com.intellij.psi.search.NonClasspathDirectoriesScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-api Show documentation
Show all versions of core-api Show documentation
A packaging of the IntelliJ Community Edition core-api library.
This is release number 1 of trunk branch 142.
The newest version!
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed 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.
*/
package com.intellij.psi.search;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.openapi.vfs.VfsUtilCore;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.util.Function;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
import java.util.List;
import java.util.Set;
/**
* @author peter
*/
public class NonClasspathDirectoriesScope extends GlobalSearchScope {
private final Set myRoots;
public NonClasspathDirectoriesScope(@NotNull Collection roots) {
myRoots = ContainerUtil.newHashSet(roots);
}
@Override
public boolean isSearchOutsideRootModel() {
return true;
}
@NotNull
public static GlobalSearchScope compose(@NotNull List roots) {
if (roots.isEmpty()) {
return EMPTY_SCOPE;
}
return new NonClasspathDirectoriesScope(roots);
}
@Override
public boolean contains(@NotNull VirtualFile file) {
return VfsUtilCore.isUnder(file, myRoots);
}
@Override
public int compare(@NotNull VirtualFile file1, @NotNull VirtualFile file2) {
return 0;
}
@Override
public boolean isSearchInModuleContent(@NotNull Module aModule) {
return false;
}
@Override
public boolean isSearchInLibraries() {
return false;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof NonClasspathDirectoriesScope)) return false;
NonClasspathDirectoriesScope that = (NonClasspathDirectoriesScope)o;
if (!myRoots.equals(that.myRoots)) return false;
return true;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + myRoots.hashCode();
return result;
}
@NotNull
@Override
public String getDisplayName() {
if (myRoots.size() == 1) {
VirtualFile root = myRoots.iterator().next();
return "Directory '" + root.getName() + "'";
}
return "Directories " + StringUtil.join(myRoots, new Function() {
@Override
public String fun(VirtualFile file) {
return "'" + file.getName() + "'";
}
}, ", ");
}
}