blob: 37f3751706a3db5bee1631d36fd99eb43a9e70c0 [file] [log] [blame]
/*
* Copyright 2003-2007 Dave Griffith, Bas Leijdekkers
*
* 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.siyeh.ig.classmetrics;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiTypeParameter;
import com.siyeh.InspectionGadgetsBundle;
import com.siyeh.ig.BaseInspectionVisitor;
import org.jetbrains.annotations.NotNull;
public class ClassNestingDepthInspection
extends ClassMetricInspection {
private static final int CLASS_NESTING_LIMIT = 1;
@Override
@NotNull
public String getID() {
return "InnerClassTooDeeplyNested";
}
@Override
@NotNull
public String getDisplayName() {
return InspectionGadgetsBundle.message(
"inner.class.too.deeply.nested.display.name");
}
@Override
protected int getDefaultLimit() {
return CLASS_NESTING_LIMIT;
}
@Override
protected String getConfigurationLabel() {
return InspectionGadgetsBundle.message(
"inner.class.too.deeply.nested.nesting.limit.option");
}
@Override
@NotNull
public String buildErrorString(Object... infos) {
final Integer nestingLevel = (Integer)infos[0];
return InspectionGadgetsBundle.message(
"inner.class.too.deeply.nested.problem.descriptor",
nestingLevel);
}
@Override
public BaseInspectionVisitor buildVisitor() {
return new ClassNestingLevel();
}
private class ClassNestingLevel extends BaseInspectionVisitor {
@Override
public void visitClass(@NotNull PsiClass aClass) {
// note: no call to super
if (aClass instanceof PsiTypeParameter) {
return;
}
final int nestingLevel = getNestingLevel(aClass);
if (nestingLevel <= getLimit()) {
return;
}
registerClassError(aClass, Integer.valueOf(nestingLevel));
}
private int getNestingLevel(PsiClass aClass) {
PsiElement ancestor = aClass.getParent();
int nestingLevel = 0;
while (ancestor != null) {
if (ancestor instanceof PsiClass) {
nestingLevel++;
}
ancestor = ancestor.getParent();
}
return nestingLevel;
}
}
}