<table><tr><td style="">fvogt added a comment.
</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/D22723">View Revision</a></tr></table><br /><div><div><blockquote style="border-left: 3px solid #8C98B8;
          color: #6B748C;
          font-style: italic;
          margin: 4px 0 12px 0;
          padding: 8px 12px;
          background-color: #F8F9FC;">
<div style="font-style: normal;
          padding-bottom: 4px;">In <a href="https://phabricator.kde.org/D22723#501907" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;">D22723#501907</a>, <a href="https://phabricator.kde.org/p/apol/" style="
              border-color: #f1f7ff;
              color: #19558d;
              background-color: #f1f7ff;
                border: 1px solid transparent;
                border-radius: 3px;
                font-weight: bold;
                padding: 0 4px;">@apol</a> wrote:</div>
<div style="margin: 0;
          padding: 0;
          border: 0;
          color: rgb(107, 116, 140);"><blockquote style="border-left: 3px solid #8C98B8;
          color: #6B748C;
          font-style: italic;
          margin: 4px 0 12px 0;
          padding: 8px 12px;
          background-color: #F8F9FC;">
<div style="font-style: normal;
          padding-bottom: 4px;">In <a href="https://phabricator.kde.org/D22723#501690" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;">D22723#501690</a>, <a href="https://phabricator.kde.org/p/fvogt/" style="
              border-color: #f1f7ff;
              color: #19558d;
              background-color: #f1f7ff;
                border: 1px solid transparent;
                border-radius: 3px;
                font-weight: bold;
                padding: 0 4px;">@fvogt</a> wrote:</div>
<div style="margin: 0;
          padding: 0;
          border: 0;
          color: rgb(107, 116, 140);"><p>Looks like a hack still, with two Job objects for each job...</p>

<p>What about just merging <tt style="background: #ebebeb; font-size: 13px;">QObjectDecorator</tt> into <tt style="background: #ebebeb; font-size: 13px;">FindMatchesJobInternal</tt> by basically just adding a custom <tt style="background: #ebebeb; font-size: 13px;">done</tt> signal and ignoring the entire "decorators which are actually wrappers" business?</p>

<p>IMO this new <tt style="background: #ebebeb; font-size: 13px;">FindMatchesJobInternal</tt> class makes it even less obvious what's actually going on.</p></div>
</blockquote>

<p>This is how ThreadWeaver and especially QObjectDecorator is meant to be used.</p></div>
</blockquote>

<p>The way <tt style="background: #ebebeb; font-size: 13px;">ThreadWeaver::QObjectDecorator</tt> is apparently meant to be used is to wrap the custom job inside a <tt style="background: #ebebeb; font-size: 13px;">QObjectDecorator</tt> and use only the wrapper from there on:</p>

<p><a href="https://github.com/KDE/threadweaver/blob/239cf8fffe687c0a758f5170a40b26ae0acef7b0/autotests/QueueTests.cpp#L157" class="remarkup-link" target="_blank" rel="noreferrer">https://github.com/KDE/threadweaver/blob/239cf8fffe687c0a758f5170a40b26ae0acef7b0/autotests/QueueTests.cpp#L157</a></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);">autoDeleteJob = new QObjectDecorator(new AppendCharacterJob(QChar('a'), &sequence));
[...]
QVERIFY(autoDeleteJob != nullptr);
QVERIFY(connect(autoDeleteJob, SIGNAL(done(ThreadWeaver::JobPointer)),
                SLOT(deleteJob(ThreadWeaver::JobPointer))));</pre></div>

<p>which is not great, to say the least.</p>

<p>What this patch does on the surface is wrap the <tt style="background: #ebebeb; font-size: 13px;">QObjectDecorator</tt> inside an object that fakes being the custom job itself.<br />
That's actually a slightly better design than the code above does as now the pointer passed from the <tt style="background: #ebebeb; font-size: 13px;">done</tt> signal is not the <tt style="background: #ebebeb; font-size: 13px;">QObjectDecorator</tt> pointer but the custom class.</p>

<p>Still, IMO much better would be to just merge the <tt style="background: #ebebeb; font-size: 13px;">QObjectDecorator</tt> into the custom job as that would both avoid creating two job objects per job and make the code clearer and shorter.</p>

<blockquote style="border-left: 3px solid #a7b5bf; color: #464c5c; font-style: italic; margin: 4px 0 12px 0; padding: 4px 12px; background-color: #f8f9fc;"><p>I don't really know why you say it's confusing. The confusing part so far was that jobDone slot was never called.</p></blockquote>

<p>Which likely happened because the author was confused by the code...</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R308 KRunner</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D22723">https://phabricator.kde.org/D22723</a></div></div><br /><div><strong>To: </strong>apol, Frameworks, fvogt, davidedmundson<br /><strong>Cc: </strong>kde-frameworks-devel, LeGast00n, sbergeron, michaelh, ngraham, bruns<br /></div>