注意:这里似乎存在类似的问题:Launch Helper Application with Launch Arguments in the Sandbox,但我在下面提供了一个更详尽的示例和源代码。
简短的前言:
我想编写一个 Xcode 源代码编辑器扩展(Xcode 8 中的新功能),它在触发时会启动我正在编写的配套 Mac 应用程序,并将用户在触发扩展时正在查看的源文件的行传递给 Mac 应用程序.
然后,助手 Mac 应用程序将为用户提供一个界面,用于执行其编辑功能。当用户完成他们的更改时,他们按下某种“保存”或“提交”按钮,然后这些更改被传播回 Xcode 扩展,然后返回到原始源文件本身。
到目前为止我所拥有的:
我为我的助手 mac 应用程序创建了一个简单的 Mac 应用程序。它目前所做的只是,在它的 Application Delegate 中的 applicationDidFinishLaunching(...) 实现中,尝试构建传入的启动参数的字符串,并将该字符串显示为警报的消息正文。见下文(注意我尝试使用 ProcessInfo.processInfo.arguments 和 CommandLine.arguments):
func applicationDidFinishLaunching(_ aNotification: Notification) {
let args = ProcessInfo.processInfo.arguments
var argString = ""
for arg in args {
argString += ", \(arg)"
}
let alert = NSAlert()
alert.addButton(withTitle: "OK")
alert.messageText = argString
alert.runModal()
}
我创建了一个相当样板的 Xcode 扩展,当通过 perform(with ...) 函数调用它时,会启动我的配套 Mac 助手应用程序。我尝试了多种方式启动助手应用程序,包括:
使用 NSWorkSpace 的 launchApplication(at: options: configuration:) :
class SourceEditorCommand: NSObject, XCSourceEditorCommand {
func perform(with invocation: XCSourceEditorCommandInvocation, completionHandler: @escaping (Error?) -> Void ) -> Void {
defer {
completionHandler(nil)
}
guard let url = NSWorkspace.shared().urlForApplication(withBundleIdentifier: "com.something.TestMacApp") else {
print("Couldn't find URL")
return
}
let options: NSWorkspaceLaunchOptions = NSWorkspaceLaunchOptions()
var configuration: [String: Any] = [String: Any]()
configuration["foo"] = "bar"
configuration[NSWorkspaceLaunchConfigurationArguments] = ["foobar"]
configuration[NSWorkspaceLaunchConfigurationEnvironment] = ["innerFoo" : "innerBar"]
do {
try NSWorkspace.shared().launchApplication(at: url, options: options, configuration: configuration)
} catch {
print("Failed")
}
}
}
使用自定义 Process 实例运行 bash 命令,同时尝试“open”和“fork”:
class SourceEditorCommand: NSObject, XCSourceEditorCommand {
func perform(with invocation: XCSourceEditorCommandInvocation, completionHandler: @escaping (Error?) -> Void ) -> Void {
defer {
completionHandler(nil)
}
runCommand(command: "open -b com.something.TestMacApp --args --foo=\"bar\"")
}
func runCommand(command: String) {
let task = Process()
task.launchPath = "/bin/sh"
task.arguments = ["-c", command]
task.launch()
}
}
问题
我已经存档/导出了帮助程序 Mac 应用程序并将其放在 Applications 文件夹中。当我构建并运行 Xcode 扩展并对其进行测试时,帮助程序 Mac 应用程序成功启动,但它从未在 applicationDidFinishLaunching(...) 中获取自定义启动参数。
我已经在几个地方阅读过,包括此处的 NSWorkSpace 配置选项的常量键的文档:https ://developer.apple.com/reference/appkit/nsworkspacelaunchconfigurationarguments “此常量不适用于沙盒应用程序。”
当我从终端运行相同的 bash 时:
open -b com.something.TestMacApp --args --foo="bar"
帮助应用程序成功读取传递的 --args 并将它们显示在警报中。我担心的是,由于应用沙盒,这根本不可能,但我希望还有另一种我缺少的解决方案。如果可能的话,其他一些也可以使用的替代方法:
如果可以让 Xcode 扩展本身具有接口,而不是帮助 Mac 应用程序,那么这将解决问题。但是我不相信这是可能的。
我也可以启动助手 Mac 应用程序,然后在启动后与它进行通信,尽管我再次认为沙盒问题可能会发挥作用。
就其价值而言,我主要是一名 iOS 开发人员。
谢谢你的帮助,
- 亚当·艾斯菲尔德