
org.sonar.java.checks.AbstractInSynchronizeChecker Maven / Gradle / Ivy
/*
* SonarQube Java
* Copyright (C) 2012-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.sonar.java.checks;
import org.sonar.java.checks.methods.AbstractMethodDetection;
import org.sonar.java.model.ModifiersUtils;
import org.sonar.plugins.java.api.JavaFileScannerContext;
import org.sonar.plugins.java.api.tree.MethodTree;
import org.sonar.plugins.java.api.tree.Modifier;
import org.sonar.plugins.java.api.tree.Tree;
import java.util.Arrays;
import java.util.Deque;
import java.util.LinkedList;
import java.util.List;
public abstract class AbstractInSynchronizeChecker extends AbstractMethodDetection {
private Deque withinSynchronizedBlock = new LinkedList<>();
@Override
public void setContext(JavaFileScannerContext context) {
withinSynchronizedBlock.push(false);
super.setContext(context);
}
@Override
public void leaveFile(JavaFileScannerContext context) {
withinSynchronizedBlock.clear();
}
@Override
public List nodesToVisit() {
return Arrays.asList(
Tree.Kind.METHOD_INVOCATION,
Tree.Kind.SYNCHRONIZED_STATEMENT,
Tree.Kind.METHOD,
Tree.Kind.LAMBDA_EXPRESSION);
}
@Override
public void visitNode(Tree tree) {
if (tree.is(Tree.Kind.METHOD_INVOCATION)) {
super.visitNode(tree);
} else if (tree.is(Tree.Kind.METHOD)) {
withinSynchronizedBlock.push(ModifiersUtils.hasModifier(((MethodTree) tree).modifiers(), Modifier.SYNCHRONIZED));
} else if (tree.is(Tree.Kind.SYNCHRONIZED_STATEMENT)) {
withinSynchronizedBlock.push(true);
} else if (tree.is(Tree.Kind.LAMBDA_EXPRESSION)) {
withinSynchronizedBlock.push(false);
}
}
@Override
public void leaveNode(Tree tree) {
if (tree.is(Tree.Kind.METHOD, Tree.Kind.SYNCHRONIZED_STATEMENT, Tree.Kind.LAMBDA_EXPRESSION)) {
withinSynchronizedBlock.pop();
}
}
public boolean isInSyncBlock() {
return withinSynchronizedBlock.peek();
}
public boolean hasAnyParentSync() {
return withinSynchronizedBlock.contains(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy