blob: 4db2ce33a13b14b757232ca33de4243ee5d9bde7 [file] [log] [blame]
/*
* Copyright 2000-2009 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.execution.junit2.info;
import com.intellij.execution.Location;
import com.intellij.execution.PsiLocation;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModuleUtil;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiMethod;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Iterator;
// Author: dyoma
public class MethodLocation extends Location<PsiMethod> {
private static final Logger LOG = Logger.getInstance("#com.intellij.execution.junit2.info.MethodLocation");
private final Project myProject;
@NotNull private final PsiMethod myMethod;
private final Location<PsiClass> myClassLocation;
public MethodLocation(@NotNull final Project project, @NotNull final PsiMethod method, @NotNull final Location<PsiClass> classLocation) {
myProject = project;
myMethod = method;
myClassLocation = classLocation;
}
public static MethodLocation elementInClass(final PsiMethod psiElement, final PsiClass psiClass) {
final Location<PsiClass> classLocation = PsiLocation.fromPsiElement(psiClass);
return new MethodLocation(classLocation.getProject(), psiElement, classLocation);
}
@NotNull
public PsiMethod getPsiElement() {
return myMethod;
}
@NotNull
public Project getProject() {
return myProject;
}
@Nullable
@Override
public Module getModule() {
return ModuleUtil.findModuleForPsiElement(myMethod);
}
public PsiClass getContainingClass() {
return myClassLocation.getPsiElement();
}
@NotNull
public <T extends PsiElement> Iterator<Location<T>> getAncestors(final Class<T> ancestorClass, final boolean strict) {
final Iterator<Location<T>> fromClass = myClassLocation.getAncestors(ancestorClass, false);
if (strict) return fromClass;
return new Iterator<Location<T>>() {
private boolean myFirstStep = ancestorClass.isInstance(myMethod);
public boolean hasNext() {
return myFirstStep || fromClass.hasNext();
}
public Location<T> next() {
final Location<T> location = myFirstStep ? (Location<T>)(Location)MethodLocation.this : fromClass.next();
myFirstStep = false;
return location;
}
public void remove() {
LOG.assertTrue(false);
}
};
}
}