ios - StartInterval 键如何影响启动的守护进程
<p><p>我有一个作为守护进程运行的应用程序。我在 iOS 8 设备上将应用 plist 放在 <strong>/Library/LaunchDaemons</strong> 下,并通过执行命令启动它</p>
<blockquote>
<p>launchctl load /Library/LaunchDaemons/com.mycompany.testapp.plist</p>
</blockquote>
<p>在我的 laumchd plist 中注意,应用程序通过执行命令作为守护进程运行</p>
<p>我想让这个应用程序仅在它崩溃或被杀死时重新启动。如果我故意使用代码 0 退出它,我不希望它重新启动。我试过下面的配置。这适用于 iOS 7,但不适用于 iOS 8。</p>
<pre><code><key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<true/>
</dict>
</code></pre>
<p>因此我尝试添加另一个设置为 <strong>10</strong> 的键 <strong>StartInterval</strong>。</p>
<pre><code><key>StartInterval</key>
<integer>10</integer>
</code></pre>
<p>我通过使用代码 0 退出并使用命令 kill -9 终止我的应用程序来测试此场景。此键使我的应用程序在被杀死 10 秒后重新启动。但是,当我的应用程序运行时,我担心这个键的结果。 </p>
<p>这个键对启动和运行的应用程序有影响吗?我已经监视了日志,似乎 StartInterval 键对正在运行的守护程序没有任何作用。但是,我不太确定。你能解释更多关于它的信息吗?非常感谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>根据此链接<a href="http://pitaya.ch/documentation/iOS8_0APIDiffs.html" rel="noreferrer noopener nofollow">http://pitaya.ch/documentation/iOS8_0APIDiffs.html</a>在标题中启动的所有痕迹都消失了。 (搜索 <code>/usr/include/launch.h</code>,您会看到它已被删除)
似乎是因为移动到新的 <code>libxpc</code> 作为 <code>launchd</code> 的基础(参见 <a href="http://technologeeks.com/docs/launchd.pdf" rel="noreferrer noopener nofollow">http://technologeeks.com/docs/launchd.pdf</a> 中的最后一张幻灯片)。</p>
<p>似乎他们改变了 iOS 8 中的 <code>launchd</code> 行为。Apple 自己的 LaunchDaemons(位于 <code>/System/Library/LaunchDaemons/</code> 下)有些也有 <code>KeepAlive </code>-字典格式的属性。如果你杀死它们,它们会立即由 <code>launchd</code> 重生。</p>
<p>但经过一些测试后,让 <code>KeepAlive</code>-property 工作的唯一方法是添加添加 <code>LaunchEvents</code>(参见 <a href="http://technologeeks.com/docs/launchd.pdf" rel="noreferrer noopener nofollow">http://technologeeks.com/docs/launchd.pdf</a> 中的幻灯片 21ff)和/或 <code>MachServices</code> 到 plist 或将 <code>KeepAlive</code>-属性更改为:</p>
<pre><code><key>KeepAlive</key>
<true/>
</code></pre>
<p>但是除了执行 <code>launchctl unload/Library/LaunchDaemons/com.mycompany.testapp.plist</code> 之外,没有办法杀死你的守护进程而不重新启动它。</p>
<p>我的工作 list :</p>
<pre><code><?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>Program</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>POSIXSpawnType</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>
</code></pre>
<p>关于 <code>StartInterval</code>-property:除了 <code>KeepAlive</code>-property 对于一些重要的守护进程(例如 <code>com.apple.locationd</code>) 并且它们似乎运行得很好。所以我认为你不必担心......</p></p>
<p style="font-size: 20px;">关于ios - StartInterval 键如何影响启动的守护进程,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26627227/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26627227/
</a>
</p>
页:
[1]