<table><tr><td style="">adridg added inline comments.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D21146">View Revision</a></tr></table><br /><div><strong>INLINE COMMENTS</strong><div><div style="margin: 6px 0 12px 0;"><div style="border: 1px solid #C7CCD9; border-radius: 3px;"><div style="padding: 0; background: #F7F7F7; border-color: #e3e4e8; border-style: solid; border-width: 0 0 1px 0; margin: 0;"><div style="color: #74777d; background: #eff2f4; padding: 6px 8px; overflow: hidden;"><a style="float: right; text-decoration: none;" href="https://phabricator.kde.org/D21146#inline-118927">View Inline</a><span style="color: #4b4d51; font-weight: bold;">adridg</span> wrote in <span style="color: #4b4d51; font-weight: bold;">kprocesslist_unix_procstat.cpp:38</span></div>
<div style="margin: 8px 0; padding: 0 12px; color: #74777D;"><p style="padding: 0; margin: 8px;">I absolutely have Opinions on C++ style that apply here, so I'm going to talk to Tobias elsewhere.</p></div></div>
<div style="margin: 8px 0; padding: 0 12px;"><p style="padding: 0; margin: 8px;">In order to simplify cleanup, I'd use a RAII class as well:</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">/** @brief Wrapper around procstat_open_sysctl()
 * 
 * Hangs on to a procstat instance for its friend classes, and closes
 * it on destruction. Cast to bool to check for success.
 */
struct ProcStat
{
    ProcStat()
    {
        pstat = procstat_open_sysctl();
    }
    ~ProcStat()
    {
        procstat_close(pstat);
    }
    operator bool() const
    {
        return pstat;
    }
    
    struct procstat *pstat;
};</pre></div>

<p style="padding: 0; margin: 8px;">Lines 37-42 become <tt style="background: #ebebeb; font-size: 13px;">ProcStat p; if (!p) return rc;</tt>, but more importantly you can drop cleanup from other return paths since the destructor handles it.</p></div></div><br /><div style="border: 1px solid #C7CCD9; border-radius: 3px;"><div style="padding: 0; background: #F7F7F7; border-color: #e3e4e8; border-style: solid; border-width: 0 0 1px 0; margin: 0;"><div style="color: #74777d; background: #eff2f4; padding: 6px 8px; overflow: hidden;"><a style="float: right; text-decoration: none;" href="https://phabricator.kde.org/D21146#inline-124202">View Inline</a><span style="color: #4b4d51; font-weight: bold;">kprocesslist_unix_procstat.cpp:46</span></div>
<div style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; white-space: pre-wrap; clear: both; padding: 4px 0; margin: 0;"><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">    <span style="color: #aa4000">struct</span> <span class="n">kinfo_proc</span> <span style="color: #aa2211">*</span><span class="n">procs</span><span class="p">;</span>
</div><div style="padding: 0 8px; margin: 0 4px; background: rgba(151, 234, 151, .6);">    <span class="n">procs</span> <span style="color: #aa2211">=</span> <span class="n">procstat_getprocs</span><span class="p">(</span><span class="n">pstat</span><span class="p">,</span> <span class="n">KERN_PROC_PROC</span><span class="p">,</span> <span style="color: #601200">0</span><span class="p">,</span> <span style="color: #aa2211">&</span><span class="n">proc_count</span><span class="p">);</span>
</div></div></div>
<div style="margin: 8px 0; padding: 0 12px;"><p style="padding: 0; margin: 8px;">Similarly, you could</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">struct ProcStatProcesses
{
public:
    ProcStatProcesses(ProcStat& pstat) : parent(pstat)
    {
        procs = procstat_getprocs(parent.pstat, KERN_PROC_PROC, 0, &proc_count);
    }
    ~ProcStatProcesses()
    {
        if (procs)
        {
            procstat_freeprocs(parent.pstat, procs);
        }
    }
    operator bool() const
    {
        return procs && proc_count > 0;
    }

    ProcStat& parent;
    unsigned int proc_count;
    struct kinfo_proc *procs;
}</pre></div>

<p style="padding: 0; margin: 8px;">I'd probably also write an iterator for it, returning KProcessInfo from <tt style="background: #ebebeb; font-size: 13px;">operator*()</tt>, so that the magic is hidden away in small classes and the overall algorithm becomes a very short bit of text. You might call that over-engineered, since there's nothing wrong with the code as-written.</p></div></div></div></div></div><br /><div><strong>REPOSITORY</strong><div><div>R244 KCoreAddons</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D21146">https://phabricator.kde.org/D21146</a></div></div><br /><div><strong>To: </strong>tcberner, FreeBSD, adridg, davidedmundson<br /><strong>Cc: </strong>pino, apol, kde-frameworks-devel, LeGast00n, michaelh, ngraham, bruns<br /></div>