org.sonar.python.checks.regex.MultipleWhitespaceCheck Maven / Gradle / Ivy
The newest version!
/*
* SonarQube Python Plugin
* Copyright (C) 2011-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 Sonar Source-Available License Version 1, as published by SonarSource SA.
*
* 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 Sonar Source-Available License for more details.
*
* You should have received a copy of the Sonar Source-Available License
* along with this program; if not, see https://sonarsource.com/license/ssal/
*/
package org.sonar.python.checks.regex;
import java.util.List;
import java.util.Optional;
import java.util.regex.Pattern;
import javax.annotation.Nullable;
import org.sonar.check.Rule;
import org.sonar.plugins.python.api.quickfix.PythonQuickFix;
import org.sonar.plugins.python.api.quickfix.PythonTextEdit;
import org.sonar.plugins.python.api.tree.CallExpression;
import org.sonar.python.regex.PythonRegexIssueLocation;
import org.sonarsource.analyzer.commons.regex.RegexIssueLocation;
import org.sonarsource.analyzer.commons.regex.RegexParseResult;
import org.sonarsource.analyzer.commons.regex.ast.RegexSyntaxElement;
import org.sonarsource.analyzer.commons.regex.finders.MultipleWhitespaceFinder;
@Rule(key = "S6326")
public class MultipleWhitespaceCheck extends AbstractRegexCheck {
public static final String QUICK_FIX_FORMAT = "Replace spaces with quantifier \"%s\"";
@Override
public void checkRegex(RegexParseResult regexParseResult, CallExpression regexFunctionCall) {
Optional.ofNullable(regexFunctionCall.calleeSymbol())
.flatMap(symbol -> Optional.ofNullable(symbol.fullyQualifiedName()))
.filter(fqn -> lookedUpFunctions().containsKey(fqn))
.filter(fqn -> !regexParseResult.getResult().activeFlags().contains(Pattern.COMMENTS))
.ifPresent(fqn -> new MultipleWhitespaceFinder(this::addIssue).visit(regexParseResult));
}
@Override
public PreciseIssue addIssue(RegexSyntaxElement regexTree, String message, @Nullable Integer cost, List secondaries) {
var issue = super.addIssue(regexTree, message, cost, secondaries);
var whitespacesCount = regexTree.getRange().getEndingOffset() - regexTree.getRange().getBeginningOffset() + 1;
var quickFixReplacement = String.format("{%d}", whitespacesCount);
var issueLocation = PythonRegexIssueLocation.preciseLocation(regexTree, null);
var textEdit = new PythonTextEdit(quickFixReplacement,
issueLocation.startLine(),
issueLocation.startLineOffset(),
issueLocation.endLine(),
issueLocation.endLineOffset());
issue.addQuickFix(PythonQuickFix.newQuickFix(String.format(QUICK_FIX_FORMAT, quickFixReplacement), textEdit));
return issue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy