-
Notifications
You must be signed in to change notification settings - Fork 104
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
Support for Windows Long Paths #398
base: main
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -60,12 +60,45 @@ class LocalFileSystem : public FileSystem { | |||||
Status MakeTemporaryDirectory( | ||||||
std::string dir_path, std::string* temp_dir) override; | ||||||
Status DeletePath(const std::string& path) override; | ||||||
|
||||||
private: | ||||||
inline std::string getOSValidPath(const std::string& _path); | ||||||
const char* kWindowsLongPathPrefix = "\\\\?\\"; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
To match Triton member variable convention. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But that's a constant, not a variable? AFAIK, constants should be named like the former, not the latter. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might be more idiomatic to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||
}; | ||||||
|
||||||
|
||||||
//! Converts incoming utf-8 path to an OS valid path | ||||||
//! | ||||||
//! On Linux there is not much to do but make sure correct slashes are used | ||||||
//! On Windows we need to take care of the long paths and handle them correctly | ||||||
//! to avoid legacy issues with MAX_PATH | ||||||
//! | ||||||
//! More details: | ||||||
//! https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry | ||||||
//! | ||||||
inline std::string | ||||||
LocalFileSystem::getOSValidPath(const std::string& _path) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Cascading effect where the local |
||||||
{ | ||||||
std::string path(_path); | ||||||
#ifdef _WIN32 | ||||||
// On Windows long paths must be marked correctly otherwise, due to backwards | ||||||
// compatibility, all paths are limited to MAX_PATH length | ||||||
if (path.size() >= MAX_PATH) { | ||||||
// Must be prefixed with "\\?\" to be considered long path | ||||||
if (path.substr(0, 4) != (kWindowsLongPathPrefix)) { | ||||||
// Long path but not "tagged" correctly | ||||||
path = (kWindowsLongPathPrefix) + path; | ||||||
} | ||||||
} | ||||||
std::replace(path.begin(), path.end(), '/', '\\'); | ||||||
#endif | ||||||
return path; | ||||||
} | ||||||
|
||||||
Status | ||||||
LocalFileSystem::FileExists(const std::string& path, bool* exists) | ||||||
{ | ||||||
*exists = (access(path.c_str(), F_OK) == 0); | ||||||
*exists = (access(getOSValidPath(path).c_str(), F_OK) == 0); | ||||||
return Status::Success; | ||||||
} | ||||||
|
||||||
|
@@ -75,7 +108,7 @@ LocalFileSystem::IsDirectory(const std::string& path, bool* is_dir) | |||||
*is_dir = false; | ||||||
|
||||||
struct stat st; | ||||||
if (stat(path.c_str(), &st) != 0) { | ||||||
if (stat(getOSValidPath(path).c_str(), &st) != 0) { | ||||||
return Status(Status::Code::INTERNAL, "failed to stat file " + path); | ||||||
} | ||||||
|
||||||
|
@@ -88,7 +121,7 @@ LocalFileSystem::FileModificationTime( | |||||
const std::string& path, int64_t* mtime_ns) | ||||||
{ | ||||||
struct stat st; | ||||||
if (stat(path.c_str(), &st) != 0) { | ||||||
if (stat(getOSValidPath(path).c_str(), &st) != 0) { | ||||||
return Status(Status::Code::INTERNAL, "failed to stat file " + path); | ||||||
} | ||||||
|
||||||
|
@@ -187,7 +220,7 @@ LocalFileSystem::GetDirectoryFiles( | |||||
Status | ||||||
LocalFileSystem::ReadTextFile(const std::string& path, std::string* contents) | ||||||
{ | ||||||
std::ifstream in(path, std::ios::in | std::ios::binary); | ||||||
std::ifstream in(getOSValidPath(path), std::ios::in | std::ios::binary); | ||||||
if (!in) { | ||||||
return Status( | ||||||
Status::Code::INTERNAL, | ||||||
|
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.
To match triton syntax conventions