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

ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck #16101

Closed
mahfouz72 opened this issue Dec 31, 2024 · 7 comments

Comments

@mahfouz72
Copy link
Member

I have read check documentation: https://checkstyle.sourceforge.io/checks/coding/magicnumber.html
I have downloaded the latest checkstyle from: https://checkstyle.org/cmdline.html#Download_and_Run
I have executed the cli and showed it below, as cli describes the problem better than 1,000 words

D:\CS\test cat config.xml
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
    "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
    "https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
  <property name="severity" value="error"/>
  <property name="fileExtensions" value="java, properties, xml"/>
  <module name="TreeWalker">
    <module name="MagicNumber">
       <property name="ignoreNumbers" value="-2,-1,0,1,2,100"/>
       <property name="ignoreHashCodeMethod" value="true"/>
       <property name="ignoreFieldDeclaration" value="true"/>
        <property name="constantWaiverParentToken" value="ARRAY_INIT , ASSIGN  , ELIST , EXPR"/>
    </module>
  </module>
</module>
D:\CS\test cat src/Test.java
public class Test {
    public final int radius = 10;
    public final double area = (22 / 7.0) * radius * radius;
    // 2 violations above, but it should be ok because
    // ignoreFieldDeclaration = true
}
D:\CS\test java  -jar checkstyle-10.21.1-all.jar -c config.xml src/Test.java
Starting audit...
[ERROR] D:\CS\test\src\Test.java:3:33: '22' is a magic number. [MagicNumber]
[ERROR] D:\CS\test\src\Test.java:3:38: '7.0' is a magic number. [MagicNumber]
Audit done.
Checkstyle ends with 2 errors.

Describe what you expect in detail.

Although constantWaiverParentToken doesn't have STAR or DIV in the config. but still, there should be no violation because these magic numbers are in a field declaration and ignoreFieldDeclaration is true

constantWaiverParentToken =>
Specify tokens that are allowed in the AST path from the number literal to the enclosing constant definition.

ignoreFieldDeclaration => Ignore magic numbers in field declarations.


@mahfouz72 mahfouz72 changed the title ignoreFieldDeclaration property should Have the highest priority in MagicNumberCheck ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck Dec 31, 2024
@samr874
Copy link

samr874 commented Jan 2, 2025

@romani what is the status for this issue?? let me know?? are the contributions still active for this project??

@romani
Copy link
Member

romani commented Jan 2, 2025

are the contributions still active for this project??

contributors are whole world Java community, please step in, make comment "I am on it" and simply send PR with fix.
Please read and watch videos at https://checkstyle.org/beginning_development.html#Starting_Development
If you are new to project we recommend to get easy issues first, https://github.com/checkstyle/checkstyle/blob/master/.github/CONTRIBUTING.md#getting-started

@romani
Copy link
Member

romani commented Jan 2, 2025

@mahfouz72 , thank a lot for opening clear issue.

@ShamithaReddy
Copy link

I am on it

I have some questions related to my understanding @romani @mahfouz72

Current Behaviour:

  1. Within visitToken method, first checks for constants (final, interface, enum)
  2. If found, it checks against constantWaiverParentToken
  3. If no constants found, then checks ignoreFieldDeclaration
  4. The ignoreFieldDeclaration property is considered only if there are no constants found

As per the document , it mentions the magicnumbers are non-constants

where a magic number is a numeric literal that is not defined as a constant
Constant definition is any variable/field that has 'final' modifier.

According to this I suppose that ignoreFieldDeclaration flow neednt be modified:

  • If no constant is found, it then checks for field declarations and the ignoreFieldDeclaration property.

  • This ensures that only numeric literals that are not defined as constants (i.e., magic numbers) are reported, unless they are in a field declaration and ignoreFieldDeclaration is true.

  1. But my question is why are we checking isMagicNumberExists if constants are found?

a magic number is a numeric literal that is not defined as a constant

MagicNumberCheck.java#L261-L280

  1. If this is expected, ie. we have isMagicNumberExists check to verify that the number is being used in an approved way within that constant definition using constantWaiverParentToken, are we here required to enhance the functionality by adding the ignoreFieldDeclaration property on top of constantWaiverParentToken check?

@ShamithaReddy
Copy link

@romani could you please check the above comment

@mahfouz72
Copy link
Member Author

It is better to discuss implementation details in a PR, please push your code.

Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 15, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 16, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 17, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 18, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 18, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 18, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 23, 2025
Anmol202005 added a commit to Anmol202005/checkstyle that referenced this issue Jan 24, 2025
@github-actions github-actions bot added this to the 10.21.2 milestone Jan 24, 2025
@romani romani added the bug label Jan 24, 2025
@romani
Copy link
Member

romani commented Jan 26, 2025

Fix is merged .

Follow up to improve will be at #16228

@romani romani closed this as completed Jan 26, 2025
dongjoon-hyun pushed a commit to apache/spark that referenced this issue Feb 12, 2025
### What changes were proposed in this pull request?

This PR aims to upgrade `checkstyle` from 10.20.2 to 10.21.2.

### Why are the changes needed?

To pick up bug fixes:
- checkstyle-10.21.2
checkstyle/checkstyle#15939 - lineWrappingIndentation falsely detects incorrect indentation for text blocks
checkstyle/checkstyle#16101 - ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck
- checkstyle-10.21.1
checkstyle/checkstyle#11374 - UnusedLocalVariable: False Positive when inner class has same field as variable

Full release notes:

- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.2
- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.1

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Manually by:
```
bash ./dev/lint-java
```

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #49899 from wayneguow/checkstyle.

Authored-by: Wei Guo <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
trinhnx pushed a commit to trinhnx/checkstyle that referenced this issue Feb 26, 2025
kazemaksOG pushed a commit to kazemaksOG/spark-custom-scheduler that referenced this issue Mar 27, 2025
### What changes were proposed in this pull request?

This PR aims to upgrade `checkstyle` from 10.20.2 to 10.21.2.

### Why are the changes needed?

To pick up bug fixes:
- checkstyle-10.21.2
checkstyle/checkstyle#15939 - lineWrappingIndentation falsely detects incorrect indentation for text blocks
checkstyle/checkstyle#16101 - ignoreFieldDeclaration property should have the highest priority in MagicNumberCheck
- checkstyle-10.21.1
checkstyle/checkstyle#11374 - UnusedLocalVariable: False Positive when inner class has same field as variable

Full release notes:

- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.2
- https://github.com/checkstyle/checkstyle/releases/tag/checkstyle-10.21.1

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Manually by:
```
bash ./dev/lint-java
```

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes apache#49899 from wayneguow/checkstyle.

Authored-by: Wei Guo <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants