-
Notifications
You must be signed in to change notification settings - Fork 48
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
Implement : -files0-from (#378) #509
Conversation
I will add more tests as soon as possible. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #509 +/- ##
==========================================
- Coverage 87.55% 87.47% -0.08%
==========================================
Files 31 31
Lines 6715 6770 +55
Branches 300 305 +5
==========================================
+ Hits 5879 5922 +43
- Misses 623 628 +5
- Partials 213 220 +7 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR implements support for the "-files0-from" argument, allowing the program to read starting points from either stdin or a specified file, in line with GNU findutils behavior. Key changes include:
- Adding the "from_file" field to the configuration structure.
- Integrating logic in "parse_args" to handle "-files0-from" for both piped input and file-based input.
- Adding tests in both the core module and integration tests along with an updated Cargo.toml dependency.
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
src/find/mod.rs | Added support for "-files0-from" argument and file/stdi management. |
tests/find_cmd_tests.rs | Introduced new tests validating "-files0-from" behavior under various conditions. |
Cargo.toml | Added the "atty" dependency required for checking the STDIN state. |
Comments suppressed due to low confidence (1)
src/find/mod.rs:168
- [nitpick] The error message for an empty starting point in the file branch includes an extra phrase ("OR File is empty") compared to the STDIN branch. Consider unifying the messages to improve consistency.
return Err("Empty starting point detected in -files0-from input OR File is empty".into());
I have migrated the tests so as to avoid using panic! ,works as intended. Thank you. |
@tavianator I'm still clueless on how should I go on to fix testcase 2 , my solution above won't work |
So looking more at how GNU find works here, I think what you should do is: when you see The reason I suggest this is that only the last tavianator@graphene $ printf a > a
tavianator@graphene $ printf b > b
tavianator@graphene $ find -files0-from a -files0-from b
b This is intentional by GNU find: https://savannah.gnu.org/bugs/?66965 |
Co-authored-by: Tavian Barnes <[email protected]>
Co-authored-by: Tavian Barnes <[email protected]>
…erand + Test remove
@tavianator , Regarding the original Issue (Test 2) is now also solved. Please review the latest commit . |
That would almost work, but you also have to ensure that $ find -files0-from - -files0-from file doesn't read from stdin at all, so I think it's easiest to delay reading the file. |
To be really honest that is a very edge case , I don't see any user or a script using -files0-from twice but I understand the need for maximum compatibility hence, I have fixed it as per your suggestion in latest commit. |
src/find/matchers/mod.rs
Outdated
.collect(); | ||
// empty starting point checker | ||
if string_segments.iter().any(|s| s.is_empty()) { | ||
println!("find: invalid zero-length file name"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be eprintln!()
, and you should also set the exit code to 1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any clue on how can I set the exit code to 1?
I don't see how current implementation allows me to set custom exit code without exiting in between of execution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like it would take more refactoring to make that work nicely. Feel free to defer it to a future PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Surely.
Co-authored-by: Tavian Barnes <[email protected]>
Co-authored-by: Tavian Barnes <[email protected]>
Co-authored-by: Tavian Barnes <[email protected]>
This LGTM now except for those few nits. Sorry for so much back and forth, it's a surprisingly finicky feature! |
No worries :) |
@hanbings @sylvestre , |
This is truly amazing work! Many thanks to all the contributors! |
Implements : #378
Huge Thanks to @hanbings for the implementation guide.