edu.umd.cs.findbugs.detect.InitializeNonnullFieldsInConstructor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotbugs Show documentation
Show all versions of spotbugs Show documentation
SpotBugs: Because it's easy!
The newest version!
/*
* FindBugs - Find bugs in Java programs
* Copyright (C) 2004-2006 University of Maryland
*
* This library 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 2.1 of the License, or (at your option) any later version.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package edu.umd.cs.findbugs.detect;
import java.util.HashSet;
import org.apache.bcel.Const;
import org.apache.bcel.classfile.Code;
import org.apache.bcel.classfile.Field;
import org.apache.bcel.classfile.JavaClass;
import edu.umd.cs.findbugs.BugInstance;
import edu.umd.cs.findbugs.BugReporter;
import edu.umd.cs.findbugs.OpcodeStack;
import edu.umd.cs.findbugs.Priorities;
import edu.umd.cs.findbugs.ba.AnalysisContext;
import edu.umd.cs.findbugs.ba.NullnessAnnotation;
import edu.umd.cs.findbugs.ba.XFactory;
import edu.umd.cs.findbugs.ba.XField;
import edu.umd.cs.findbugs.bcel.OpcodeStackDetector;
public class InitializeNonnullFieldsInConstructor extends OpcodeStackDetector {
final BugReporter bugReporter;
final HashSet initializedFields = new HashSet<>();
final HashSet nonnullFields = new HashSet<>();
final HashSet nonnullStaticFields = new HashSet<>();
public InitializeNonnullFieldsInConstructor(BugReporter bugReporter) {
this.bugReporter = bugReporter;
}
@Override
public void setupVisitorForClass(JavaClass obj) {
super.setupVisitorForClass(obj);
nonnullFields.clear();
}
@Override
public void visitAfter(JavaClass obj) {
super.visitAfter(obj);
nonnullFields.clear();
nonnullStaticFields.clear();
}
@Override
public void visit(Field obj) {
super.visit(obj);
XField f = XFactory.createXField(this);
if (checkForInitialization(f) && !f.isSynthetic()) {
if (f.isStatic()) {
nonnullStaticFields.add(f);
} else {
nonnullFields.add(f);
}
}
}
public boolean checkForInitialization(XField f) {
if (!f.isReferenceType() || f.isFinal()) {
return false;
}
NullnessAnnotation annotation = AnalysisContext.currentAnalysisContext().getNullnessAnnotationDatabase()
.getResolvedAnnotation(f, false);
boolean isNonnull = annotation == NullnessAnnotation.NONNULL;
return isNonnull;
}
@Override
public void visit(Code code) {
boolean interesting = Const.CONSTRUCTOR_NAME.equals(getMethodName()) || Const.STATIC_INITIALIZER_NAME.equals(getMethodName());
if (!interesting) {
return;
}
secondaryConstructor = false;
HashSet needToInitialize = getMethod().isStatic() ? nonnullStaticFields : nonnullFields;
if (needToInitialize.isEmpty()) {
return;
}
// initialize any variables we want to initialize for the method
super.visit(code); // make callbacks to sawOpcode for all opcodes
if (!secondaryConstructor && !initializedFields.containsAll(needToInitialize)) {
int priority = Priorities.NORMAL_PRIORITY;
if (needToInitialize.size() - initializedFields.size() == 1 && needToInitialize.size() > 1) {
priority = Priorities.HIGH_PRIORITY;
}
for (XField f : needToInitialize) {
if (initializedFields.contains(f)) {
continue;
}
BugInstance b = new BugInstance(this, "NP_NONNULL_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR", priority)
.addClassAndMethod(this).addField(f);
bugReporter.reportBug(b);
}
}
initializedFields.clear();
}
boolean secondaryConstructor;
@Override
public void sawOpcode(int seen) {
if (secondaryConstructor) {
return;
}
switch (seen) {
case Const.INVOKESPECIAL:
if (!getMethod().isStatic() && Const.CONSTRUCTOR_NAME.equals(getNameConstantOperand()) && isSelfOperation()) {
OpcodeStack.Item invokedOn = stack.getItemMethodInvokedOn(this);
if (invokedOn.isInitialParameter() && invokedOn.getRegisterNumber() == 0) {
secondaryConstructor = true;
}
break;
}
break;
case Const.PUTFIELD:
if (getMethod().isStatic()) {
return;
}
OpcodeStack.Item left = stack.getStackItem(1);
if (left.isInitialParameter() && left.getRegisterNumber() == 0 && isSelfOperation()) {
XField f = getXFieldOperand();
if (f == null) {
break;
}
if (checkForInitialization(f)) {
initializedFields.add(f);
}
}
break;
case Const.PUTSTATIC:
if (!getMethod().isStatic()) {
break;
}
if (isSelfOperation()) {
XField f = getXFieldOperand();
if (f == null) {
break;
}
OpcodeStack.Item itemToAssign = stack.getStackItem(0);
if (itemToAssign != null) {
XField fieldToAssign = itemToAssign.getXField();
// do not count a field as initialized, if it is assigned to itself or if it is assigned another not initialized field
if (fieldToAssign != null && (f.equals(fieldToAssign) || !initializedFields.contains(fieldToAssign))) {
break;
}
}
if (checkForInitialization(f)) {
initializedFields.add(f);
}
}
break;
default:
break;
}
}
public boolean isSelfOperation() {
return getClassConstantOperand().equals(getClassName());
}
}