Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[java] PrematureDeclaration as result of method call (false positive) #1429

Closed
ben-manes opened this issue Nov 3, 2018 · 4 comments · Fixed by #3199
Closed

[java] PrematureDeclaration as result of method call (false positive) #1429

ben-manes opened this issue Nov 3, 2018 · 4 comments · Fixed by #3199
Labels
a:false-positive PMD flags a piece of code that is not problematic
Milestone

Comments

@ben-manes
Copy link

ben-manes commented Nov 3, 2018

Affects PMD Version:
6.9.0

Rule:
PrematureDeclaration

Description:
The result of a ConcurrentMap#put is captured for handling later in the method. As put has a side effect, the logic changes if the declaration is moved downward.

Code Sample demonstrating the issue:

var prior = cache.put(uri, cachedPath);

if (ref == null) {
  return PathRef.create(cachedPath, 1);
}
if (prior == null) {
  ref.count().incrementAndGet();
}
@jsotuyod
Copy link
Member

jsotuyod commented Nov 5, 2018

@ben-manes thanks for the report. Unfortunately, as you said, this requires PMD knowing that Map.put has side effects.

To do so, PMD would either have to look into Map itself (we don't have the source, only the binary classes, and again, Map is an interface); or we would have to somehow whitelist this usage (which may be hard to maintain as the list of methods with side effects may be indefinitely long).

For the time being I don't think we have a better fix than to suppress this warning, but I'll keep it open for future reference. Any ideas on better ways to work this out are welcomed.

@jsotuyod jsotuyod added the a:false-positive PMD flags a piece of code that is not problematic label Nov 5, 2018
@Andy-2639
Copy link

I think this is related to #1208

Maybe all method calls with unknown behavior (as far as I understand this means literally all method calls) should be excluded from the premature declaration rule.

@linusjf
Copy link

linusjf commented Jan 28, 2021

Another code sample where PrematureDeclaration is displaying False-positive with methods that have side-effects...

package ds; 

import java.io.BufferedInputStream; 
import java.io.File;
 import java.io.IOException; 
import java.io.InputStream;
 import java.net.Socket; 
import java.net.URL; 
import java.net.URLConnection; 
import java.nio.file.Files; 

import java.util.NoSuchElementException;

 public final class BinaryInputStream { 
private static final int EOF = -1; // end of file private static final String READING_EMPTY = "Reading from empty input stream"; private BufferedInputStream in; 
// the input stream 
private int buffer;
 // one character buffer 
private int n; 
// number of bits left in buffer
 

 public BinaryInputStream() {
 in = new BufferedInputStream(System.in); fillBuffer(); 
} 

 private void fillBuffer() { 
try { buffer = in.read(); n = 8; } catch (IOException e) { System.err.println("EOF : " + e.getMessage()); buffer = EOF; n = -1; } } 

 public boolean isEmpty() { return buffer == EOF; } 

public char readChar() { 
if (isEmpty()) throw new NoSuchElementException(READING_EMPTY); // special case when aligned byte 
if (n == 8) {
 int x = buffer; 
fillBuffer();
 return (char) (x & 0xff); 
} 
// combine last N bits of current buffer with first 8-N bits of new buffer 
int x = buffer; x <<= 8 - n; 
int oldN = n; // flagged for PrematureDeclaration

fillBuffer();
 if (isEmpty()) throw new NoSuchElementException(READING_EMPTY); 
n = oldN; 
x |= buffer >>> n;
 return (char) (x & 0xff); 
// the above code doesn't quite work for the last character if N = 8 
// because buffer will be -1 
} 

  } 

oowekyala added a commit to oowekyala/pmd that referenced this issue Apr 5, 2021
@oowekyala oowekyala added this to the 7.0.0 milestone Apr 5, 2021
@adangel adangel linked a pull request Apr 10, 2021 that will close this issue
4 tasks
@adangel adangel mentioned this issue Jan 23, 2023
55 tasks
@adangel
Copy link
Member

adangel commented Apr 22, 2023

This has been fixed with PMD 7.0.0-rc1.

@adangel adangel closed this as completed Apr 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:false-positive PMD flags a piece of code that is not problematic
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants