如何重新启动查找器应用程序



我正在使用以下applescript重新启动查找器应用程序。

osascript -e "tell application "Finder"" -e "delay 1" -e "try" -e "quit" -e "delay 1" -e "activate" -e "end try" -e "end tell"  

但有时此脚本不会重新启动查找器应用程序(仅退出查找器应用程序)。 我在控制台中没有收到任何错误。

http://www.cocoabuilder.com/archive/cocoa/113654-nsapplescript-buggy.html谁能帮帮我?

这是一个苹果脚本的方式。您不能依赖您所看到的特定延迟时间。因此,我们通过检查 Finder 是否在正在运行的进程列表中来手动等待它退出。当它不再在列表中时,我们知道它已退出,我们可以再次激活它。

您还会注意到,由于重复循环,我在脚本中进行了时间检查。以防万一出现问题,我们不希望重复循环永远运行。因此,如果它运行超过 10 秒,我们会自动退出重复循环。

tell application "Finder" to quit
set inTime to current date
repeat
    tell application "System Events"
        if "Finder" is not in (get name of processes) then exit repeat
    end tell
    if (current date) - inTime is greater than 10 then exit repeat
    delay 0.2
end repeat
tell application "Finder" to activate

这是该代码的 osascript 版本。

/usr/bin/osascript -e 'tell application "Finder" to quit' -e 'set inTime to current date' -e 'repeat' -e 'tell application "System Events"' -e 'if "Finder" is not in (get name of processes) then exit repeat' -e 'end tell' -e 'if (current date) - inTime is greater than 10 then exit repeat' -e 'delay 0.2' -e 'end repeat' -e 'tell application "Finder" to activate'

如果您使用的是Cocoa,这是错误的处理方式。在可能的情况下,您应该始终使用本机API,同时尝试调用本身构建并运行AppleScript的shell脚本。您的 AppleScript 在尝试重新启动之前会等待一秒钟,这是一个任意值。您实际上应该等待Finder退出。

相反,您应该使用 NSRunningApplication 类来管理此问题,方法是使用键值观察来监视实例的 terminated 属性,以便您可以在应用终止时重新启动应用:

//assume "finder" is an ivar of type NSRunningApplication
//it has to be a strong reference or it will be released before the observation method
//is called
- (void)relaunchFinder
{
    NSArray* apps = [NSRunningApplication runningApplicationsWithBundleIdentifier:@"com.apple.finder"];
    if([apps count])
    {
        finder = [apps objectAtIndex:0];
        [finder addObserver:self forKeyPath:@"isTerminated" options:0 context:@"QuitFinder"];
        [finder terminate];
    }
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
    if (context == @"QuitFinder")
    {
        if([keyPath isEqualToString:@"isTerminated"])
        {
            [[NSWorkspace sharedWorkspace] launchAppWithBundleIdentifier:@"com.apple.finder" options:NSWorkspaceLaunchDefault additionalEventParamDescriptor:NULL launchIdentifier:NULL];
            [object removeObserver:self forKeyPath:@"isTerminated"];
        }
    } else {
        [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
    }
}

相关内容

  • 没有找到相关文章

最新更新