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

org.sonarsource.analyzer.commons.regex.finders.ReluctantQuantifierWithEmptyContinuationFinder Maven / Gradle / Ivy

The newest version!
/*
 * SonarSource Analyzers Regex Parsing Commons
 * Copyright (C) 2009-2024 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * 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  02110-1301, USA.
 */
package org.sonarsource.analyzer.commons.regex.finders;

import java.util.Collections;
import org.sonarsource.analyzer.commons.regex.MatchType;
import org.sonarsource.analyzer.commons.regex.RegexIssueReporter;
import org.sonarsource.analyzer.commons.regex.RegexParseResult;
import org.sonarsource.analyzer.commons.regex.ast.AutomatonState;
import org.sonarsource.analyzer.commons.regex.ast.Quantifier;
import org.sonarsource.analyzer.commons.regex.ast.RegexBaseVisitor;
import org.sonarsource.analyzer.commons.regex.ast.RepetitionTree;
import org.sonarsource.analyzer.commons.regex.ast.StartState;
import org.sonarsource.analyzer.commons.regex.helpers.RegexReachabilityChecker;
import org.sonarsource.analyzer.commons.regex.helpers.RegexTreeHelper;

import static org.sonarsource.analyzer.commons.regex.MatchType.NOT_SUPPORTED;

public class ReluctantQuantifierWithEmptyContinuationFinder extends RegexBaseVisitor {

  private static final String MESSAGE_FIX = "Fix this reluctant quantifier that will only ever match %s repetition%s.";
  private static final String MESSAGE_UNNECESSARY = "Remove the '?' from this unnecessarily reluctant quantifier.";

  private final RegexIssueReporter.ElementIssue regexElementIssueReporter;
  private final MatchType matchType;
  private AutomatonState endState;

  public ReluctantQuantifierWithEmptyContinuationFinder(RegexIssueReporter.ElementIssue regexElementIssueReporter) {
    this(regexElementIssueReporter, NOT_SUPPORTED);
  }

  public ReluctantQuantifierWithEmptyContinuationFinder(RegexIssueReporter.ElementIssue regexElementIssueReporter, MatchType matchType) {
    this.regexElementIssueReporter = regexElementIssueReporter;
    this.matchType = matchType;
  }

  @Override
  protected void before(RegexParseResult regexParseResult) {
    endState = regexParseResult.getFinalState();
  }

  @Override
  public void visitRepetition(RepetitionTree tree) {
    super.visitRepetition(tree);
    if (tree.getQuantifier().getModifier() == Quantifier.Modifier.RELUCTANT) {
      if (isFullMatchOrAnchoredAtEnd(tree.continuation())) {
        if (RegexTreeHelper.onlyMatchesEmptySuffix(tree.continuation())) {
          regexElementIssueReporter.report(tree, MESSAGE_UNNECESSARY, null, Collections.emptyList());
        }
      } else if (canBePartialMatchOrNotSupported() &&
        RegexReachabilityChecker.canReachWithoutConsumingInput(new StartState(tree.continuation(), tree.activeFlags()), endState)) {
        int minimumRepetitions = tree.getQuantifier().getMinimumRepetitions();
        regexElementIssueReporter.report(tree, String.format(MESSAGE_FIX, minimumRepetitions, minimumRepetitions == 1 ? "" : "s"), null, Collections.emptyList());
      }
    }
  }

  private boolean isFullMatchOrAnchoredAtEnd(AutomatonState state) {
    return matchType == MatchType.FULL || RegexTreeHelper.isAnchoredAtEnd(state);
  }

  private boolean canBePartialMatchOrNotSupported() {
    if (matchType == NOT_SUPPORTED) {
      // If the match type is not set explicitly, continue anyway, taking a small risk to report erroneous issues.
      return true;
    }
    // If we explicitly set the match type, we only want to continue if we are explicitly in PARTIAL mode, in order to avoid FP.
    return matchType == MatchType.PARTIAL;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy