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

root/handle: readdir wrappers? #110

Open
cyphar opened this issue Nov 13, 2024 · 1 comment
Open

root/handle: readdir wrappers? #110

cyphar opened this issue Nov 13, 2024 · 1 comment
Labels
api/handle Related to the handle API. api/root Related to the Root API. api/rust Related to the Rust API.
Milestone

Comments

@cyphar
Copy link
Member

cyphar commented Nov 13, 2024

Rust's stdlib doesn't provide a way for users to construct a ReadDir iterator (nor DirEntry) so if someone wants to implement an iterator over subtrees using libpathrs they would need to manually use rustix and adopt the logic we have for iteration in src/utils/dir.rs.

I suspect these would be Rust-only helpers since exporting them to C would be quite ugly.

@cyphar cyphar added api/rust Related to the Rust API. api/root Related to the Root API. api/handle Related to the handle API. labels Nov 13, 2024
@cyphar cyphar added this to the 0.3.0 milestone Nov 13, 2024
@warpfork
Copy link

Just dropping a quick +1 here: I'd really like to be able to do this!

The API of this library overall is What I Want in a big way -- opening a root and resolving a series of paths relative to it is both logically and safety/stability-wise exactly what I'm looking for in almost all the code I ever write regarding the filesystem. (So, thanks to everyone who built and contributes to this!)

So I'm super enthusiastic to pretty much ditch as much std::fs usage in Rust as I can, and move fully over to this API as consistently and completely as possible in my projects. For both the safety gains and for code quality.

The escape valves around Handle and getting either a raw fd or using .reopen(...) to convert over to std::fs::File in Rust are great. However, they're a little clunky (and in the case of std::fs::File in Rust, don't accomplish everything: one can't get to an readdir APIs when starting from that position in the standard library!). The more that can be done without leaving libpathrs, the happier I would be.

I haven't tried to use rustix yet and it sounds promising. But I'd likely be in favor of seeing some more ready-made integration there (even if it becomes somewhat rust specific). Or at least some docs and examples showing how it can be done would be great, because I bet I'm not going to be the last person to want this :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api/handle Related to the handle API. api/root Related to the Root API. api/rust Related to the Rust API.
Projects
None yet
Development

No branches or pull requests

2 participants