blob: 700a300e090686100c9a3acb228bde1aa8863678 [file] [log] [blame]
package com.jetbrains.python.refactoring.classes;
import com.jetbrains.python.psi.*;
import org.jetbrains.annotations.NotNull;
import java.io.Serializable;
import java.util.Comparator;
/**
* Compares elements by their dependencies.
* If A depends on B, then A < B
*/
public class PyDependenciesComparator implements Comparator<PyElement>, Serializable {
/**
* Singleton comparator instance
*/
public static final PyDependenciesComparator INSTANCE = new PyDependenciesComparator();
private PyDependenciesComparator() {
}
@Override
public int compare(@NotNull final PyElement o1, @NotNull final PyElement o2) {
if (depends(o1, o2)) {
return 1;
}
if (depends(o2, o1)) {
return -1;
}
return getBlockType(o1).compareTo(getBlockType(o2));
}
@NotNull
private static BlockType getBlockType(@NotNull final PyElement statement) {
for (BlockType type : BlockType.values()) {
if (type.myClass.isAssignableFrom(statement.getClass())) {
return type;
}
}
return BlockType.OTHER;
}
/**
* @return true if first param depends on second.
*/
public static boolean depends(@NotNull final PyElement o1, @NotNull final PyElement o2) {
final DependencyVisitor visitor = new DependencyVisitor(o2);
o1.accept(visitor);
return visitor.isDependencyFound();
}
/**
* Types of class members in order, they should appear
*/
private enum BlockType {
DOC(PyExpressionStatement.class),
DECLARATION(PyAssignmentStatement.class),
METHOD(PyFunction.class),
OTHER(PyElement.class);
@NotNull
private final Class<? extends PyElement> myClass;
BlockType(@NotNull final Class<? extends PyElement> aClass) {
myClass = aClass;
}
}
}