-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add Support for '\' in Windows Paths #2239
Conversation
@swift-ci please test |
@swift-ci please test linux platform |
@gmittert This seems to allow paths containing both |
That's intentional. Most Windows APIs are able to handle both It potentially paints over areas that are doing things like concatting paths with forward slashes, but since Windows supports the path style, I think that's for the better. |
cc @millenomi |
I am eagerly awaiting for this PR, looks very promising. Maybe I am missing something, but is it ok to allow Windows path separator in |
@lxbndr Based on how path is implemented it'll give you a file system path (e.g. |
86cc5aa
to
e2220be
Compare
Rebased. @swift-ci please test |
@swift-ci please test macos platform |
@gmittert Right, implementation of
I did rough implementation of first solution, and it kinda works. Does it make sense? Still not ready for PR yet, but if it sounds good, then guess I able to finish it - look for side effects, check tests, etc. |
@lxbndr Oh I see, (URL/NSURL).path should return a RFC 1808 style url and it doesn't right now. That does seem very wrong. The PathUtilities changes need to go in anyways, but I could drop the NSURL changes I have one and then you can PR your patch. Alternatively, I can fix the Does either work better for you? |
e2220be
to
4f37b6c
Compare
@swift-ci please test linux |
Foundation/NSURL.swift
Outdated
@@ -957,7 +957,7 @@ extension NSURL { | |||
|
|||
open func appendingPathComponent(_ pathComponent: String) -> URL? { | |||
var result : URL? = appendingPathComponent(pathComponent, isDirectory: false) | |||
if !pathComponent.hasSuffix("/") && isFileURL { | |||
if !validPathSeps.contains(where: { pathComponent.hasSuffix(String($0)) }) && isFileURL { |
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.
So;
Foundation distinguishes between paths (in NSString
s) and URL
s. The latter have harmonized behavior between all platforms, whereas the former can contain a platform path and can thus accommodate specialized platform behaviors.
Trying to append a \
to an URL is a programmer error regardless of platform. URL paths are specified to use /
as separators. Thus: I would back off this line and I'm okay taking the rest.
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.
The only bit that puts a wrench into this particular getup is that the result of URL
's .path
must be useable as a platform path, which can get complicated.
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.
The only bit that puts a wrench into this particular getup is that the result of
URL
's.path
must be useable as a platform path, which can get complicated.
Looks like /
path separator will meet this requirement for all platforms, as Windows is (more or less) loyal to both variants. But can you please add more on this "must" part? I always thought that URL/CFURL api clearly distinguish between file system paths and URL paths. Now I feel like I need to reevaluate this for myself.
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.
The only bit that puts a wrench into this particular getup is that the result of
URL
's.path
must be useable as a platform path, which can get complicated.
I see, that does complicate things :(. What are your thoughts on handling absolute URL paths then? On Windows, paths which begin with /
or \
are drive relative. That is, if my cwd is C:\
then /Users/gwenm
resolves to C:\Users\gwenm
.
Unfortunately, this makes /C:/Users/gwenm
not a valid windows path, so I think there really only two reasonable things to return from URL(fileURLWithPath: "C:\\Users\\gwenm").path
on Windows:
/C:/Users/gwenm
which, while not a valid Windows path, we would at least be able to add support for throughout Foundation so that e.g."foo".write(to: myURL.path, ...)
would work.C:/Users/gwenm
which isn't a proper RFC 1808 path as specified to be returned by Foundation, as an absolute path must start with/
, but would work directly with Windows apis (though would not be able to be copied and pasted into cmd.exe and directly used without first being quoted).
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.
Per above.
The only exceptions I make to this contract are those already documented in |
While URLs get converted to forward slashes on Windows, strings are handled as is and thus need to be able to handle \ separators. Since many Windows apis also support /, we'll handle that as well, and default to a posix style / if required.
4f37b6c
to
64d5f3e
Compare
Removed the check for backslashes in NSURL and left a comment on why it's not needed instead. |
@swift-ci please test linux |
1 similar comment
@swift-ci please test linux |
@millenomi One week courtesy ping |
@millenomi Courtesy ping :) |
I believe that Lily's comments have been addressed. I am going to merge this to get s-p-m on Windows working. |
While URLs get converted to forward slashes on Windows, strings are
handled as is and thus need to be able to handle \ separators. Since
many Windows apis also support /, we'll handle that as well, but default
to \ if required.