我有一个作为守护进程运行的应用程序。我在 iOS 8 设备上将应用 plist 放在 /Library/LaunchDaemons 下,并通过执行命令启动它
launchctl load /Library/LaunchDaemons/com.mycompany.testapp.plist
在我的 laumchd plist 中注意,应用程序通过执行命令作为守护进程运行
我想让这个应用程序仅在它崩溃或被杀死时重新启动。如果我故意使用代码 0 退出它,我不希望它重新启动。我试过下面的配置。这适用于 iOS 7,但不适用于 iOS 8。
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<true/>
</dict>
因此我尝试添加另一个设置为 10 的键 StartInterval。
<key>StartInterval</key>
<integer>10</integer>
我通过使用代码 0 退出并使用命令 kill -9 [PID] 终止我的应用程序来测试此场景。此键使我的应用程序在被杀死 10 秒后重新启动。但是,当我的应用程序运行时,我担心这个键的结果。
这个键对启动和运行的应用程序有影响吗?我已经监视了日志,似乎 StartInterval 键对正在运行的守护程序没有任何作用。但是,我不太确定。你能解释更多关于它的信息吗?非常感谢。
Best Answer-推荐答案 strong>
根据此链接http://pitaya.ch/documentation/iOS8_0APIDiffs.html在标题中启动的所有痕迹都消失了。 (搜索 /usr/include/launch.h ,您会看到它已被删除)
似乎是因为移动到新的 libxpc 作为 launchd 的基础(参见 http://technologeeks.com/docs/launchd.pdf 中的最后一张幻灯片)。
似乎他们改变了 iOS 8 中的 launchd 行为。Apple 自己的 LaunchDaemons(位于 /System/Library/LaunchDaemons/ 下)有些也有 KeepAlive -字典格式的属性。如果你杀死它们,它们会立即由 launchd 重生。
但经过一些测试后,让 KeepAlive -property 工作的唯一方法是添加添加 LaunchEvents (参见 http://technologeeks.com/docs/launchd.pdf 中的幻灯片 21ff)和/或 MachServices 到 plist 或将 KeepAlive -属性更改为:
<key>KeepAlive</key>
<true/>
但是除了执行 launchctl unload/Library/LaunchDaemons/com.mycompany.testapp.plist 之外,没有办法杀死你的守护进程而不重新启动它。
我的工作 list :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>rogram</key>
<string>/path/to/your/daemon</string>
<key>RunAtLoad</key>
<true/>
<key>Label</key>
<string>com.mycompany.testapp</string>
<key>EnablePressuredExit</key>
<false/>
<key>UserName</key>
<string>root</string>
<key>JetsamProperties</key>
<dict>
<key>JetsamPriority</key>
<integer>-49</integer>
<key>JetsamMemoryLimit</key>
<integer>10000</integer>
</dict>
<key>OSIXSpawnType</key>
<string>Adaptive</string>
<key>Disabled</key>
<false/>
<key>ThrottleInterval</key>
<integer>5</integer>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
<key>Crashed</key>
<true/>
</dict>
<key>MachServices</key>
<dict>
<key> com.mycompany.testapp.someMachService</key>
<true/>
</dict>
<key>EnableTransactions</key>
<false/>
<key>LaunchEvents</key>
<dict>
<key>com.apple.notifyd.matching</key>
<dict>
<key>SignificantTimeChangeNotification</key>
<dict>
<key>Notification</key>
<string>SignificantTimeChangeNotification</string>
</dict>
<key>SomeMoreNotifications</key>
[...]
</dict>
</dict>
</dict>
</plist>
关于 StartInterval -property:除了 KeepAlive -property 对于一些重要的守护进程(例如 com.apple.locationd ) 并且它们似乎运行得很好。所以我认为你不必担心......
关于ios - StartInterval 键如何影响启动的守护进程,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26627227/
|