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

New lint const_is_empty #12310

Merged
merged 5 commits into from
Mar 9, 2024
Merged

New lint const_is_empty #12310

merged 5 commits into from
Mar 9, 2024

Conversation

samueltardieu
Copy link
Contributor

This lint detects calls to .is_empty() on an entity initialized from a string literal and flag them as suspicious. To avoid triggering on macros called from generated code, it checks that the .is_empty() receiver, the call itself and the initialization come from the same context.

Fixes #12307

changelog: [const_is_empty]: new lint

@rustbot
Copy link
Collaborator

rustbot commented Feb 18, 2024

r? @xFrednet

rustbot has assigned @xFrednet.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties label Feb 18, 2024
@bors
Copy link
Collaborator

bors commented Feb 19, 2024

☔ The latest upstream changes (presumably #12306) made this pull request unmergeable. Please resolve the merge conflicts.

@samueltardieu
Copy link
Contributor Author

Updated to account for the $DIR replacement policy change in tests (1d107ab).

Copy link
Member

@xFrednet xFrednet left a comment

Choose a reason for hiding this comment

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

The implementation looks good to me. I would like to see a few more tests. Once they are added, we can merge this :D

tests/ui/const_is_empty.rs Show resolved Hide resolved
@samueltardieu
Copy link
Contributor Author

The implementation looks good to me. I would like to see a few more tests. Once they are added, we can merge this :D

Done. I've also added a third commit which uses constant folding to identify more cases, including those involving const, slices, and arrays. I've kept it separated as it requires modifications to the clippy_utils::consts module.

@samueltardieu
Copy link
Contributor Author

samueltardieu commented Feb 19, 2024

A lintcheck run on the top 500 packages from crates.io reveals one hit in the cc crate:

fn which(tool: &Path, path_entries: Option<OsString>) -> Option<PathBuf> {
    fn check_exe(exe: &mut PathBuf) -> bool {
        let exe_ext = std::env::consts::EXE_EXTENSION;
        exe.exists() || (!exe_ext.is_empty() && exe.set_extension(exe_ext) && exe.exists())
    }

    []
}

A #[allow(clippy::const_is_empty)] will be required here (although it appears that Clippy is rarely used on this crate). I would say that this is a consequence of a missing add_extension() method in the standard library which forces to play this kind of game with executables whose name may contain a dot on an extensionless system (as exe.set_extension("") would remove the suffix starting at the latest dot).

@bors
Copy link
Collaborator

bors commented Feb 25, 2024

☔ The latest upstream changes (presumably #12346) made this pull request unmergeable. Please resolve the merge conflicts.

@samueltardieu
Copy link
Contributor Author

Rebased on master

Copy link
Member

@xFrednet xFrednet left a comment

Choose a reason for hiding this comment

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

Thank you for the update and also running this on 500 crates :)

clippy_lints/src/methods/mod.rs Outdated Show resolved Hide resolved
clippy_lints/src/methods/mod.rs Outdated Show resolved Hide resolved
Comment on lines +413 to +414
self.fetch_path_and_apply(qpath, e.hir_id, self.typeck_results.expr_ty(e), |this, result| {
let result = mir_to_const(this.lcx, result)?;
Copy link
Member

Choose a reason for hiding this comment

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

I have the feeling using miri to check if the value is constant can cause annoying false positives. Though, you ran it in 500 crates, and it only generated a single warning, which indicates that this fear might be overly cautions.

I would suggest adding a restriction at this position, to only evaluate the path, if it's a local path, meaning it comes from the same crate. Constant values of dependencies are not always in the control of the user and should therefore be seen as a black box IMO. (Maybe this should be configurable)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've run lintcheck on the 1000 most popular crates: no new hit compared to the 1 on 500 crates. But you're right, we might want to err on the side of caution, I've added such a check in an additional commit so that you can have a look at it separately. Tell me if it requires stashing, even though the changes are logically separated.

Copy link
Member

Choose a reason for hiding this comment

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

I would guess that the likelihood of a crate using external constants highly depends on the type of crate. Crates.io mainly hosts libraries, they would probably provide such constant values but use them rarly

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, except constants such as the path separator, but this is now taken care of, so we get no hit in popular libraries.

clippy_utils/src/consts.rs Show resolved Hide resolved
@@ -788,6 +834,40 @@ pub fn mir_to_const<'tcx>(lcx: &LateContext<'tcx>, result: mir::Const<'tcx>) ->
}
}

fn mir_is_empty<'tcx>(lcx: &LateContext<'tcx>, result: mir::Const<'tcx>) -> Option<bool> {
Copy link
Member

Choose a reason for hiding this comment

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

It looks like most is_empty functions in rustc's std are already static. Could we maybe make our lives easier and throw the whole <recv>.is_empty() expression into the constant evaluation? That seems easier than this entire thing.

(I haven't worked with const too much, so excuse me, if this suggestion is invalid)

Copy link
Contributor Author

@samueltardieu samueltardieu Feb 26, 2024

Choose a reason for hiding this comment

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

Yes, probably, if those methods were const they would not trigger a warning but the use of their result might.

Those methods are const already, it is surprising that the use of their result does not trigger a warning. But as far as I can see, no warning is triggered on this code even for the if true:

fn main() {
    if true {
        println!("True");
    }

    if [0u8; 0].is_empty() {
        println!("Is empty");
    }
}

tests/ui/const_is_empty.rs Show resolved Hide resolved
@samueltardieu
Copy link
Contributor Author

r? @matthiaskrgr
(solliciting another reviewer as @xFrednet seems to be busy right now)

@rustbot rustbot assigned matthiaskrgr and unassigned xFrednet Mar 6, 2024
@xFrednet xFrednet assigned xFrednet and unassigned matthiaskrgr Mar 9, 2024
@xFrednet
Copy link
Member

xFrednet commented Mar 9, 2024

LGTM, thank you for addressing my comments.

The last few weeks have been a bit busy (And I also genuinely needed a break), sorry for delaying the review.

Either way, let's get this merged :D

@bors r+

@bors
Copy link
Collaborator

bors commented Mar 9, 2024

📌 Commit 898ed88 has been approved by xFrednet

It is now in the queue for this repository.

@bors
Copy link
Collaborator

bors commented Mar 9, 2024

⌛ Testing commit 898ed88 with merge 453242c...

@samueltardieu
Copy link
Contributor Author

The last few weeks have been a bit busy (And I also genuinely needed a break)

I can relate, no problem, that's why I requested another reviewer instead of bothering you.

@bors
Copy link
Collaborator

bors commented Mar 9, 2024

☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test
Approved by: xFrednet
Pushing 453242c to master...

@bors bors merged commit 453242c into rust-lang:master Mar 9, 2024
8 checks passed
@samueltardieu samueltardieu deleted the issue-12307 branch September 2, 2024 07:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Warn when calling is_empty on non-empty value
5 participants