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

Issue #15263: Add conditional expressions flag to UnnecessaryParenthe… #15681

Merged
merged 1 commit into from
Oct 18, 2024

Conversation

@MohanadKh03
Copy link
Contributor Author

GitHub, generate report

@MohanadKh03 MohanadKh03 force-pushed the 15263-unnecessary-parens branch from fbdc5a4 to 842f17e Compare September 23, 2024 22:13
Copy link
Member

@mahfouz72 mahfouz72 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, Direction is good
Items

Comment on lines 110 to 105
String f;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Most probably the next reviewer will ask you to revert these unrelated changes.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh these are because of the 120 lines rule , It would get broken if they were reverted back

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for sharing a reason.
I am ok to keep deletions, we are not extending Input with new code, but lines are growing due to more violations in file.

@MohanadKh03 MohanadKh03 force-pushed the 15263-unnecessary-parens branch from 842f17e to b34613a Compare September 24, 2024 19:00
Copy link
Member

@mahfouz72 mahfouz72 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, but we still need to generate reports

@MohanadKh03
Copy link
Contributor Author

MohanadKh03 commented Sep 26, 2024

GitHub, generate report

@romani
Copy link
Member

romani commented Sep 26, 2024

We will wait for final report,

but concern me fact that new default behavior is very aggressive, a lot of new violations .
I also find myself liking to do (....) ? ... : ... ; parentheses on condition.

We might not make it default token.

@romani romani closed this Sep 26, 2024
@romani romani reopened this Sep 26, 2024
@MohanadKh03
Copy link
Contributor Author

MohanadKh03 commented Sep 26, 2024

IMO it really is aggressive but isnt the point of the check is to rule out all unnecessary parentheses ? I think it is always subjective to like using parentheses in code for readability even if it , syntactically speaking , does not make a difference if there are parentheses or not

Like with using bitwise operators I think it's more readable to have brackets in this example
((a && b) || c) but this check still rules it as a violation because it should rule out the unnecessary checks IMO unnecessary means in a way that does not affect the code if it's removed
This checks's strictness actually is mentioned here #10946 before and I think it's kind of a tradeoff whether to have strict-unnecessary vs readability especially since it's really subjective but if we go full-unnecessary mode like how the bitwise operators is ruled out then i'd say we have to rule it out for conditional expressions as well

@MohanadKh03
Copy link
Contributor Author

Hey @romani You closed/reopened at the same day so I was wondering WDYT is it too strict / aggressive to add ?

@romani
Copy link
Member

romani commented Sep 29, 2024

It was inaccurate, pressing on phone. PR is still good. But unfortunately I lost track of it, thanks a lot for pinning. I will meditate for a bit, and will make decision on next 1-2 days.

Please move forward, and choose other issue to contribute.

@romani
Copy link
Member

romani commented Oct 1, 2024

IMO it really is aggressive but isnt the point of the check is to rule out all unnecessary parentheses ?

yes, it is goal of this Check. BUT there is default behavior and custom behavior.
default behavior is based on some subjective understanding of coding style, in most Checks default mode is not very aggressive.
In custom behavior users can do anything they want.
Check defines target of validation by "tokens".

if users wants to activate this Checks, he will read more on it, to get maximum from it.
If user hesitant, better to not frustrate him on controversial cases, us he might simply disable whole Check. So by making default to be aggressive we potentially decrease usage of Check and can even "kill" it.

We can make example in xdoc pages on how to do this, so users will find it decently quickly.


After looking at may case in diff report.
I see that most people like placing () on expression before ?. It looks like help to parse by brain.

I am voting for not placing this token QUESTION as default to this Check.

@rnveach , @nrmancuso please vote.

One more exercise we can do to prove our subjective idea on default behavior.
In your report we see diff in pmd/spottbugs projects (team that is crazy about code quality) we can send PR to them and see it they accept it.
And people who are less crazy on quality - spring-integration .

if 2 out of 3 accept PR with removal of () it means we can do it as default and Check will be mostly welcomed by engineers.

@romani romani requested review from rnveach and nrmancuso October 1, 2024 12:40
@nrmancuso nrmancuso removed their assignment Oct 12, 2024
@MohanadKh03
Copy link
Contributor Author

@romani Pinging as a reminder of what's next ? Should we send the PR to pmd,spotbugs and spring-integration ?

@romani
Copy link
Member

romani commented Oct 13, 2024

@rdiachenko , please share your opinion on how you like new behavior and if you agree to make it default.

@MohanadKh03 , please send PR to PMD or spotbugs, to test feedback.
you can fix not all cases in their code base, but several, you can share link to report with all to let them see whole picture.

@romani
Copy link
Member

romani commented Oct 17, 2024

@MohanadKh03, of you have no time for extra PRs , let's trust my experience and just remove tokens from default and put example on how to enable such validation.
With this we will merge this PR quickly.

@romani romani assigned romani and unassigned rnveach Oct 17, 2024
@MohanadKh03
Copy link
Contributor Author

@romani Yeah my bad I didnt have time for exploring PMD/Spotbugs . Alright ill work on it and the examples should obviously include the token parameter right ?

@romani
Copy link
Member

romani commented Oct 17, 2024

Yes. What is not enabled by default , is good to show users in examples. Users love examples.

@MohanadKh03 MohanadKh03 force-pushed the 15263-unnecessary-parens branch from b34613a to 5f98d02 Compare October 18, 2024 02:17
@MohanadKh03 MohanadKh03 force-pushed the 15263-unnecessary-parens branch from 5f98d02 to f72327f Compare October 18, 2024 02:24
@MohanadKh03
Copy link
Contributor Author

Apologies I have made a mistake while rebasing .. Going to fix rn

@romani
Copy link
Member

romani commented Oct 18, 2024

@MohanadKh03 MohanadKh03 force-pushed the 15263-unnecessary-parens branch from dc9296b to 5f98d02 Compare October 18, 2024 02:46
@MohanadKh03
Copy link
Contributor Author

MohanadKh03 commented Oct 18, 2024

Yes I did I just had problems with mixed old branches into my fork's master which messed things up. Apologies again for the CI spam

Update: Now it is fixed i got all branches together and fixed the first CI failure of not rebasing to master.. Sorry again for the spam

@romani
Copy link
Member

romani commented Oct 18, 2024

Please always run mvn clean verify on your local before pushing.
It catching most frequent issues. It will speedup collaboration, less pressure on CI

@MohanadKh03
Copy link
Contributor Author

MohanadKh03 commented Oct 18, 2024

Ah yes I did so .. the first CI problem was due to having been far away from master(job pr-age) that is why there was a mess in rebasing

@MohanadKh03
Copy link
Contributor Author

Ok my bad seems there indeed was a problem while running mvn clean verify
It is kind of weird though the CI and even locally it says that at line 381 there is an additional space 9 spaces and that i should delete one space of it to be 8 even though it already is 8 so somehow it is being modified while running mvn clean verify

<p id="Example3-config">
To configure the check to detect unnecessary parentheses around conditional expressions
<code> '?' </code>:
</p>
<source>
&lt;module name=&quot;Checker&quot;&gt;
&lt;module name=&quot;TreeWalker&quot;&gt;
&lt;module name=&quot;UnnecessaryParentheses&quot;&gt;
&lt;property name=&quot;tokens&quot; value=&quot;QUESTION&quot; /&gt;
&lt;/module&gt;
&lt;/module&gt;
&lt;/module&gt;
</source>
<p id="Example3-code">Example:</p>
<source>
class Example3 {
void method() {
int a = 9, b = 8;
int c = (a &gt; b) ? 1 : 0; // violation 'Unnecessary parentheses around expression'
int d = c == 1 ? (b % 2 == 0) ? 1 : 0 : 5;
// violation above 'Unnecessary parentheses around expression'
}
}
</source>

This is due to org.codehaus.mojo's xml-maven-plugin in the check-format goal

After some debugging it seems that the file is being modified while running mvn clean verify only
When I run only this mvn clean org.codehaus.mojo:xml-maven-plugin:1.1.0:check-format it does not have an error and does not modify the file but when using mvn clean verify it seems to modify the unnecessaryparentheses.xml in one of its steps ? Not sure why this happens , Can you please refer me to where I can check for this problem ? @romani

@@ -117,6 +117,21 @@ if ((++f) &gt; g &amp;&amp; a) { // violation, unnecessary paren
value="resources/com/puppycrawl/tools/checkstyle/checks/coding/unnecessaryparentheses/Example2.java"/>
<param name="type" value="code"/>
</macro>
<p id="Example3-config">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

delete a space here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done
Thanks a lot

… conditional expressions to UnnecessaryParenthesesCheck
@MohanadKh03 MohanadKh03 force-pushed the 15263-unnecessary-parens branch from 64cabf0 to 17ed694 Compare October 18, 2024 14:56
@romani
Copy link
Member

romani commented Oct 18, 2024

GitHub, generate website

@romani
Copy link
Member

romani commented Oct 18, 2024

Github, generate report for configs in PR description

@MohanadKh03
Copy link
Contributor Author

@romani Is this xwiki problem related to a certain change I have done ? I tried to debug the script thats failing but cant really get what this really means
[INFO] XWiki Platform - WebSocket ......................... FAILURE [ 0.248 s]

@romani
Copy link
Member

romani commented Oct 18, 2024

This is Not related failure, we have it from today in all other PRs. I will ignore it.

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok to merge

@romani romani merged commit 3dd7b9c into checkstyle:master Oct 18, 2024
111 of 112 checks passed
@MohanadKh03 MohanadKh03 deleted the 15263-unnecessary-parens branch October 18, 2024 20:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

UnnecessaryParenthesesCheck does not flag unnecessary parentheses in conditional expression
5 participants