-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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] MissingBreakInSwitch - last default case does not contain a break #659
Comments
I think a couple of things should be considered here:
Maybe the best scenario would be to have a boolean property to allow simply skipping the last case, and in any case, and keep a separate rule to enforce the default being last ( |
The combination of best practce rule for default being last and allowing to skip the last, whichever it is, sounds like the optimal solution to me. |
Are there any plans to support last default without a break? While it's a good idea to raise a warning on non-last default cases without breaks, of course, the standard code style in pretty much everywhere I've seen is to use default as the last case - without a break, but the current rule creates false positives. |
The approved approach is to extend There is currently no-one taking on this, but being an XPath rule should be easily extensible by anyone willing to contribute to PMD. |
package networking;
import java.io.IOException;
import java.io.InputStream;
import java.net.Socket;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
@SuppressWarnings("PMD.ShortClassName")
public final class Time {
private static final String HOSTNAME = "time.nist.gov";
private Time() {
throw new IllegalStateException("Private constructor");
}
@SuppressWarnings("fallthrough")
public static void main(String[] args) {
try {
Date d;
switch (args.length) {
case 0:
d = Time.getDateFromNetwork();
System.out.println("It is " + d);
System.exit(0);
case 1:
d = Time.getDateFromNetwork(args[0], 37);
System.out.println("It is " + d);
System.exit(0);
case 2:
default:
d = Time.getDateFromNetwork(args[0], Integer.parseInt(args[1]));
System.out.println("It is " + d);
System.exit(0);
}
} catch (IOException e) {
System.err.println(e.getMessage());
}
}
public static Date getDateFromNetwork() throws IOException {
return getDateFromNetwork(HOSTNAME, 37);
}
public static Date getDateFromNetwork(String host, int port)
throws IOException {
// The time protocol sets the epoch at 1900,
// the Java Date class at 1970. This number
// converts between them.
// long differenceBetweenEpochs = 2208988800L;
TimeZone gmt = TimeZone.getTimeZone("GMT");
Calendar epoch1900 = Calendar.getInstance(gmt);
epoch1900.set(1900, 01, 01, 00, 00, 00);
long epoch1900ms = epoch1900.getTime().getTime();
Calendar epoch1970 = Calendar.getInstance(gmt);
epoch1970.set(1970, 01, 01, 00, 00, 00);
long epoch1970ms = epoch1970.getTime().getTime();
long differenceInMS = epoch1970ms - epoch1900ms;
long differenceBetweenEpochs = differenceInMS / 1000;
Socket socket = new Socket(host, port);
socket.setSoTimeout(15_000);
InputStream raw = socket.getInputStream();
long secondsSince1900 = 0;
for (int i = 0; i < 4; i++) {
secondsSince1900 = (secondsSince1900 << 8) | raw.read();
}
long secondsSince1970 = secondsSince1900 - differenceBetweenEpochs;
long msSince1970 = secondsSince1970 * 1000;
return new Date(msSince1970);
}
} The empty case statement breaks the above rule giving a false positive. Obviously, there's not a fix in for this as yet. Do you have a workaround or do we suppress the rule until a fix is in? Why can't PMD recognise the SuppressWarnings for fall through or comments beside the case statements stating the same? |
@Fernal73 I guess, the rule triggers, because you have not a single break in your switch statement. Since you already have the variable
Would you mind creating a new feature request for this? We have this a little bit e.g. for rules, that check unused code - |
I didn't need a break statement since System.exit exits not just the
function but also the program. The error flagged was about a failure to
catch the fall through. Adding a break statement would simply make it unreachable anyway.
I didn't connect it to not having a single break statement.
Thanks for helping refactor the code.
That does take out the PMD error.
Is the SuppressWarning("fallthrough")
suppressing any or all of the PMD related rules?
My intention is not to test every PMD rule and ways to break it.
That's incidental.
I guess this PMD rule wasn't 'fool-proof'.
It wouldn't catch bad programming practice.
A question arises though:
Should System.exit be put on par with break and return tokens for this
rule? How does this rule handle throw statements?
But then again, why in heaven would anyone want to do that?
Any scenarios come to mind?
The last time I wrote up an issue, you closed it as a duplicate. What guarantee is there that you won't do the same once more?
https://checkstyle.sourceforge.io/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/FallThroughCheck.html
|
Revisiting this post, I couldn't help wondering if PMD needs an UnreachableCode rule in the case of statements like above where the program is exited and evidently any statements after that are null and void. Any statements immediately following |
This has been fixed with PMD 7.0.0-rc1. |
Rule: MissingBreakInSwitch
Description:
A switch statement does not contain a break, even if it is the default case.
Code Sample demonstrating the issue:
https://www.codacy.com/app/zolyfarkas/spf4j/issues?&filters=W3siaWQiOiJDYXRlZ29yeSIsInZhbHVlcyI6WyJFcnJvciBQcm9uZSJdfV0=
Running PMD through: Codacy
The text was updated successfully, but these errors were encountered: