-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Process: .currentDirectoryURL and .executableURL fixes #2525
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
Merged
swift-ci
merged 1 commit into
swiftlang:master
from
spevans:pr_process_current_directory
Oct 22, 2019
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -232,8 +232,28 @@ open class Process: NSObject { | |
} | ||
|
||
// These properties can only be set before a launch. | ||
open var executableURL: URL? | ||
open var currentDirectoryURL = URL(fileURLWithPath: FileManager.default.currentDirectoryPath, isDirectory: true) | ||
private var _executable: URL? | ||
open var executableURL: URL? { | ||
get { _executable } | ||
set { | ||
guard let url = newValue, url.isFileURL else { | ||
fatalError("must provide a launch path") | ||
} | ||
_executable = url | ||
} | ||
} | ||
|
||
private var _currentDirectoryURL: URL? = URL(fileURLWithPath: FileManager.default.currentDirectoryPath, isDirectory: true) | ||
open var currentDirectoryURL: URL? { | ||
get { _currentDirectoryURL } | ||
set { | ||
guard let url = newValue, url.isFileURL else { | ||
fatalError("non-file URL argument") | ||
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. Similar 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. Same as above. |
||
} | ||
_currentDirectoryURL = url | ||
} | ||
} | ||
|
||
open var arguments: [String]? | ||
open var environment: [String : String]? // if not set, use current | ||
|
||
|
@@ -245,7 +265,7 @@ open class Process: NSObject { | |
|
||
@available(*, deprecated, renamed: "currentDirectoryURL") | ||
open var currentDirectoryPath: String { | ||
get { return currentDirectoryURL.path } | ||
get { return currentDirectoryURL!.path } | ||
set { currentDirectoryURL = URL(fileURLWithPath: newValue) } | ||
} | ||
|
||
|
@@ -478,8 +498,7 @@ open class Process: NSObject { | |
if let env = self.environment { | ||
environment = env | ||
} else { | ||
environment = ProcessInfo.processInfo.environment | ||
environment["PWD"] = currentDirectoryURL.path | ||
environment = ProcessInfo.processInfo.environment | ||
} | ||
|
||
// On Windows, the PATH is required in order to locate dlls needed by | ||
|
@@ -658,7 +677,6 @@ open class Process: NSObject { | |
env = e | ||
} else { | ||
env = ProcessInfo.processInfo.environment | ||
env["PWD"] = currentDirectoryURL.path | ||
} | ||
|
||
let nenv = env.count | ||
|
@@ -839,7 +857,7 @@ open class Process: NSObject { | |
|
||
let fileManager = FileManager() | ||
let previousDirectoryPath = fileManager.currentDirectoryPath | ||
if !fileManager.changeCurrentDirectoryPath(currentDirectoryURL.path) { | ||
if let dir = currentDirectoryURL?.path, !fileManager.changeCurrentDirectoryPath(dir) { | ||
throw _NSErrorWithErrno(errno, reading: true, url: currentDirectoryURL) | ||
} | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is
fatalError
correct? Should this not be an exception of sorts?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.
Darwin throws
NSException
sofatalError
is the swift equivalent. Also it is a property so nothing else that could be done anyway.