blob: 0cf15e6970c202cd233e03418f07b73a6d47f170 [file] [log] [blame]
/*
* 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.vfs.VfsUtilCore;
import com.intellij.openapi.vfs.VirtualFile;
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<VirtualFile> myRoots;
public NonClasspathDirectoriesScope(@NotNull Collection<VirtualFile> roots) {
myRoots = ContainerUtil.newHashSet(roots);
}
@Override
public boolean isSearchOutsideRootModel() {
return true;
}
@NotNull
public static GlobalSearchScope compose(List<VirtualFile> 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;
}
}