All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.java.checks.SwitchCaseTooBigCheck Maven / Gradle / Ivy

The newest version!
/*
 * SonarQube Java
 * Copyright (C) 2012 SonarSource
 * [email protected]
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.sonar.java.checks;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;
import com.sonar.sslr.api.Trivia;
import org.sonar.api.server.rule.RulesDefinition;
import org.sonar.check.Priority;
import org.sonar.check.Rule;
import org.sonar.check.RuleProperty;
import org.sonar.java.model.JavaTree;
import org.sonar.plugins.java.api.tree.CaseGroupTree;
import org.sonar.plugins.java.api.tree.CaseLabelTree;
import org.sonar.plugins.java.api.tree.StatementTree;
import org.sonar.plugins.java.api.tree.SwitchStatementTree;
import org.sonar.plugins.java.api.tree.Tree;
import org.sonar.squidbridge.annotations.ActivatedByDefault;
import org.sonar.squidbridge.annotations.SqaleConstantRemediation;
import org.sonar.squidbridge.annotations.SqaleSubCharacteristic;

import java.util.List;

@Rule(
  key = "S1151",
  name = "\"switch case\" clauses should not have too many lines",
  tags = {"brain-overload"},
  priority = Priority.MAJOR)
@ActivatedByDefault
@SqaleSubCharacteristic(RulesDefinition.SubCharacteristics.READABILITY)
@SqaleConstantRemediation("5min")
public class SwitchCaseTooBigCheck extends SubscriptionBaseVisitor {

  private static final int DEFAULT_MAX = 5;

  @RuleProperty(defaultValue = "" + DEFAULT_MAX,
    description = "Maximum number of lines")
  public int max = DEFAULT_MAX;

  @Override
  public List nodesToVisit() {
    return ImmutableList.of(Tree.Kind.SWITCH_STATEMENT);
  }

  @Override
  public void visitNode(Tree tree) {
    SwitchStatementTree switchStatementTree = (SwitchStatementTree) tree;
    for (CaseGroupTree caseGroupTree : switchStatementTree.cases()) {
      List labels = caseGroupTree.labels();
      for (int i = 0; i < labels.size() - 1; i++) {
        CaseLabelTree currentLabel = labels.get(i);
        int caseStartLine = line(currentLabel);
        int nextCaseStartLine = line(labels.get(i + 1));

        check(currentLabel, caseStartLine, nextCaseStartLine);
      }

      CaseLabelTree lastLabel = Iterables.getLast(labels);
      int startLine = Math.min(line(lastLabel) + 1, firstStatementLine(caseGroupTree.body()));
      int endLine = getNextLine(switchStatementTree, caseGroupTree);
      check(lastLabel, startLine, endLine);
    }
  }

  private int firstStatementLine(List body) {
    if (!body.isEmpty()) {
      StatementTree firstStatement = body.get(0);
      int firstStatementLine = line(body.get(0));
      List trivias = ((JavaTree) firstStatement).getToken().getTrivia();
      if (!trivias.isEmpty()) {
        return Math.min(firstLineTrivia(trivias), firstStatementLine);
      }
      return firstStatementLine;
    }
    return Integer.MAX_VALUE;
  }

  private int firstLineTrivia(List trivias) {
    return trivias.get(0).getToken().getLine();
  }

  private void check(CaseLabelTree caseLabelTree, int caseStartLine, int nextCaseStartLine) {
    int lines = Math.max(nextCaseStartLine - caseStartLine, 1);

    if (lines > max) {
      addIssue(caseLabelTree, "Reduce this switch case number of lines from " + lines + " to at most " + max + ", for example by extracting code into methods.");
    }
  }

  private int getNextLine(SwitchStatementTree switchStatementTree, CaseGroupTree caseGroupTree) {
    int switchLastLine = line(switchStatementTree.closeBraceToken());
    List cases = switchStatementTree.cases();
    int indexOfCaseGroup = cases.indexOf(caseGroupTree);
    if (indexOfCaseGroup == cases.size() - 1) {
      return switchLastLine;
    } else {
      return line(cases.get(indexOfCaseGroup + 1));
    }
  }

  private int line(Tree tree) {
    return ((JavaTree) tree).getLine();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy