<table><tr><td style="">poboiko created this revision.<br />poboiko added reviewers: Baloo, Frameworks.<br />Herald added projects: Frameworks, Baloo.<br />Herald added a subscriber: kde-frameworks-devel.<br />poboiko requested review of this revision.
</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/D15959">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>Right now, a race condition might happen. Signal <tt style="background: #ebebeb; font-size: 13px;">FileContentIndexer::done</tt> is connected to <tt style="background: #ebebeb; font-size: 13px;">FileIndexScheduler::scheduleIndexing</tt>,<br />
which does scheduling only when there is no active threads (NB: <tt style="background: #ebebeb; font-size: 13px;">FileContentIndexer</tt> is running inside one).<br />
The signal is emitted in the very end of <tt style="background: #ebebeb; font-size: 13px;">FileContentIndexer::run</tt>, which should be fine. However, after <tt style="background: #ebebeb; font-size: 13px;">run</tt> is finished,<br />
it also calls destructor for local <tt style="background: #ebebeb; font-size: 13px;">ExtractorProcess process</tt>, which destroys <tt style="background: #ebebeb; font-size: 13px;">QProcess m_extractorProcess</tt>, which itself waits for the process to finish.</p>

<p>If <tt style="background: #ebebeb; font-size: 13px;">FileContentIndexer::done</tt> signal is processed before process is finished, scheduling won't happen and baloo will be stuck in <tt style="background: #ebebeb; font-size: 13px;">ContentIndexing</tt> state.<br />
(which is exactly what pointed me to this issue: <tt style="background: #ebebeb; font-size: 13px;">File Indexer Monitor</tt> application showed that baloo is stuck in <tt style="background: #ebebeb; font-size: 13px;">ContentIndexing</tt>, when it clearly should be <tt style="background: #ebebeb; font-size: 13px;">Idle</tt>)</p>

<p>I suggest instead to emit <tt style="background: #ebebeb; font-size: 13px;">FileContentIndexer::done</tt> signal only when <tt style="background: #ebebeb; font-size: 13px;">ExtractorProcess</tt> is finished.</p></div></div><br /><div><strong>TEST PLAN</strong><div><p>I can no longer reproduce indexer being stuck in <tt style="background: #ebebeb; font-size: 13px;">ContentIndexing</tt> phase.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R293 Baloo</div></div></div><br /><div><strong>BRANCH</strong><div><div>wait-extractor-finish (branched from master)</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D15959">https://phabricator.kde.org/D15959</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>src/file/extractorprocess.cpp<br />
src/file/extractorprocess.h<br />
src/file/filecontentindexer.cpp</div></div></div><br /><div><strong>To: </strong>poboiko, Baloo, Frameworks<br /><strong>Cc: </strong>kde-frameworks-devel, ashaposhnikov, michaelh, astippich, spoorun, ngraham, bruns, abrahams<br /></div>