Add std::fs::{Home|Media}Dirs - #158936
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Reviewed the Darwin parts.
calling those correctly requires an active Objective C autorelease pool, IIUC
Not that hard though, you can push and pop it with objc_autoreleasePoolPush/objc_autoreleasePoolPop. The bigger problem is that it requires linking Foundation, which has a startup cost we'd rather avoid.
This implementation diverges from the directories crate's mapping [...]
It seems to me that for something as nuanced as these user dirs (with a lot of platform-specific details that are not readily apparent), it might make sense to implement the desires std API in directories first? And once it stabilizes more there, we could upstream it to std?
This is mostly already the case. The only API-facing changes from directories here are:
The ideal API shape inside std and in a crate often differ slightly. This approved impl experiment is to determine if a form of this API that fits std's goals exists. I'm going to split the base directory discovery and the user/media directories into different types to better represent that the existence of these sets is not strongly correlated and fix the things @madsmtm pointed out w.r.t. docs and the darwin impl, then this should be good for proper libs-api review. The use of shlex for shell-unquote for the XDG user dirs needs a resolution, but doing the work to give shlex a rustc-dep-of-std feature can wait until we know whether that's the direction we want to take. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
I consider this fully ready for review now. r? @rust-lang/libs-api |
This comment has been minimized.
This comment has been minimized.
|
@rustbot author Rebasing and applying requested updates from ACP. |
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
|
|
@rustbot ready Commits nicely split the units of work again :3 |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Revert "Rollup merge of rust-lang#157518 - CAD97:xdg_basedir, r=aapoalas" This reverts commit ac80064, reversing changes made to 8d6b380. <!-- homu-ignore:start --> - rust-lang#157515 is superseded - This includes just the revert that's the first commit in rust-lang#158936
Revert "Rollup merge of rust-lang#157518 - CAD97:xdg_basedir, r=aapoalas" This reverts commit ac80064, reversing changes made to 8d6b380. <!-- homu-ignore:start --> - rust-lang#157515 is superseded - This includes just the revert that's the first commit in rust-lang#158936
Rollup merge of #162492 - CAD97:rm-xdg, r=ChrisDenton Revert "Rollup merge of #157518 - CAD97:xdg_basedir, r=aapoalas" This reverts commit ac80064, reversing changes made to 8d6b380. <!-- homu-ignore:start --> - #157515 is superseded - This includes just the revert that's the first commit in #158936
|
☔ The latest upstream changes (presumably #162622) made this pull request unmergeable. Please resolve the merge conflicts by rebasing. |
View all comments
std::fs::UserDirsor similar libs-team#830Replacement for
std::os::unix::xdgas suggested by libs-api in #157515 (comment). Exposes media directories common between the three big OSes in addition to the cache/config/data/state directories under a separate feature gate. API summary:Potentially outdated info
This implementation diverges from the
directoriescrate's mapping in that we setstate_dirin the non-unix constructors (to~/Library/Application Supporton Darwin and%APPDATA%on Windows). This mapping is derived from the idea that "state" files are application support files that are not important nor portable enough to the user to be "data" files.The XDG paths are as described in the XDG Base Directories Specification and the xdg-user-dirs tool.
$XDG_CONFIG_DIR/user-dirs.dirsis parsed directly to avoid delegating to potentially arbitrary shell execution.The Darwin paths are loaded via the
sysdir(3)API fromlibSystem.dylib(introduced in macOS 10.12 with a similar timeline for other Darwin OSes, deprecating the earlierNSSystemDirectories.hAPI). Using the File System Effectively points to preferring the Foundation framework'sNSSearchPathForDirectoriesInDomain(_:_:_:)orNSFileManager.URLForDirectoryinstead, but calling those correctly requires an active Objective C autorelease pool, IIUC. TheLibrary/Application Supportdirectory is used forconfig_home,data_home, andstate_home; the Apple documentationThe Library Directory Stores App-Specific Filesdirectly calls out placing data and configuration files inLibrary/Application Support, and state files are just less user-meaningful data files.The Windows paths are loaded via the Known Folders API (introduced in Vista).
config_homeanddata_homeare placed inAppData\Roamingas files intended to be important and portable to the user, whilecache_homeandstate_homeare placed inAppData\Localas files that aren't.I'm not fully confident about the handling of the XDG base directory paths which don't have good cross-platform analogs, as well as the exact API for the search path dealing functions, but I'm confident that the shape of the rest of the API does match the stdlib API style. Common paths are platform-independent enough of a needed concept to be exposed by std, IMHO, but platform-specific that a struct with public fields (even
#[non_exhaustive]) seems incorrect, specifically because of platform-specific paths that we may want to expose like is already done for XDG.The one API change I could see doing is moving
state_dirinto the XDGUserDirsExt. I chose not to do this for this initial implementation, though, as getting the ideal choice of fallback for both Darwin and Windows can't be achieved in an OS-agnostic way:~/Library/Caches~/AppData/Local~/Library/Application Support~/AppData/Roaming~/Library/Application Support~/AppData/Roaming~/Library/Application Support~/AppData/LocalA more drastic change would be to move all four onto the unix
UserDirsExt, addingcaches/application_supportto the DarwinUserDirsExtandroaming_app_data/local_app_datato the WindowsUserDirsExt. This would be more "correct" but seems a bit heavy-handed, as it would mean applications need to pull in OS-specific extension traits just to place their support files in something more appropriate than a~/.appnamedirectory.We could also separate the "home" directory API from the "media" directory API. I'm neutral on this with one relevant note: the app-specific cache/config/data/state files need a subdirectory named after the application, so "
ProjectDirs" would exclude the media directories; it could make sense to have a type with just those and apush_application_subdirmethod.Switching the impl to using a pal
imp::UserDirscould be reasonable, but seems at odds with the desire to have the target agnostic way to "build your own"UserDirs. AnExtraUserDirsinstead of the#[allow(dead_code)]fields would make sense, I just didn't know how to best set up that in the pal layer.Disclaimer: This was worked on as part of my employment at Canonical. I initially proposed it independently of my employment, but improving std's functionality is part of my job description, so Canonical told me I should use work time on it.
AI Disclosure: I did not use AI to generate any of the code, with a partial exception for VSCode's AI-assisted smart autocomplete helping with the repetitive parts of the code. All nontrivial code was handwritten. As an experiment, I did use some AI to assist in exploring the problem and API design spaces.
I tested locally on my Ubuntu developer machine, but am relying on CI for Darwin and Windows tests. 🤞
cc @joshtriplett @nia-e