菜鸟教程小白 发表于 2022-12-13 02:52:43

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>&lt;key&gt;KeepAlive&lt;/key&gt;
&lt;dict&gt;
    &lt;key&gt;SuccessfulExit&lt;/key&gt;
    &lt;true/&gt;
&lt;/dict&gt;
</code></pre>

<p>因此我尝试添加另一个设置为 <strong>10</strong> 的键 <strong>StartInterval</strong>。</p>

<pre><code>&lt;key&gt;StartInterval&lt;/key&gt;
&lt;integer&gt;10&lt;/integer&gt;
</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>&lt;key&gt;KeepAlive&lt;/key&gt;
&lt;true/&gt;
</code></pre>

<p>但是除了执行 <code>launchctl unload/Library/LaunchDaemons/com.mycompany.testapp.plist</code> 之外,没有办法杀死你的守护进程而不重新启动它。</p>

<p>我的工作 list :</p>

<pre><code>&lt;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&gt;
&lt;!DOCTYPE plist PUBLIC &#34;-//Apple//DTD PLIST 1.0//EN&#34; &#34;http://www.apple.com/DTDs/PropertyList-1.0.dtd&#34;&gt;
&lt;plist version=&#34;1.0&#34;&gt;
&lt;dict&gt;
    &lt;key&gt;Program&lt;/key&gt;
    &lt;string&gt;/path/to/your/daemon&lt;/string&gt;
    &lt;key&gt;RunAtLoad&lt;/key&gt;
    &lt;true/&gt;
    &lt;key&gt;Label&lt;/key&gt;
    &lt;string&gt;com.mycompany.testapp&lt;/string&gt;
    &lt;key&gt;EnablePressuredExit&lt;/key&gt;
    &lt;false/&gt;
    &lt;key&gt;UserName&lt;/key&gt;
    &lt;string&gt;root&lt;/string&gt;
    &lt;key&gt;JetsamProperties&lt;/key&gt;
    &lt;dict&gt;
      &lt;key&gt;JetsamPriority&lt;/key&gt;
      &lt;integer&gt;-49&lt;/integer&gt;
      &lt;key&gt;JetsamMemoryLimit&lt;/key&gt;
      &lt;integer&gt;10000&lt;/integer&gt;
    &lt;/dict&gt;
    &lt;key&gt;POSIXSpawnType&lt;/key&gt;
    &lt;string&gt;Adaptive&lt;/string&gt;
    &lt;key&gt;Disabled&lt;/key&gt;
    &lt;false/&gt;
    &lt;key&gt;ThrottleInterval&lt;/key&gt;
    &lt;integer&gt;5&lt;/integer&gt;
    &lt;key&gt;KeepAlive&lt;/key&gt;
    &lt;dict&gt;
      &lt;key&gt;SuccessfulExit&lt;/key&gt;
      &lt;false/&gt;
      &lt;key&gt;Crashed&lt;/key&gt;
      &lt;true/&gt;
    &lt;/dict&gt;
    &lt;key&gt;MachServices&lt;/key&gt;
    &lt;dict&gt;
      &lt;key&gt; com.mycompany.testapp.someMachService&lt;/key&gt;
      &lt;true/&gt;
    &lt;/dict&gt;
    &lt;key&gt;EnableTransactions&lt;/key&gt;
    &lt;false/&gt;
    &lt;key&gt;LaunchEvents&lt;/key&gt;
    &lt;dict&gt;
      &lt;key&gt;com.apple.notifyd.matching&lt;/key&gt;
      &lt;dict&gt;
            &lt;key&gt;SignificantTimeChangeNotification&lt;/key&gt;
            &lt;dict&gt;
                &lt;key&gt;Notification&lt;/key&gt;
                &lt;string&gt;SignificantTimeChangeNotification&lt;/string&gt;
            &lt;/dict&gt;
            &lt;key&gt;SomeMoreNotifications&lt;/key&gt;
            [...]
      &lt;/dict&gt;
    &lt;/dict&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</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]
查看完整版本: ios - StartInterval 键如何影响启动的守护进程