<table><tr><td style="">rjvbb 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/D17289">View Revision</a></tr></table><br /><div><div><blockquote style="border-left: 3px solid #a7b5bf; color: #464c5c; font-style: italic; margin: 4px 0 12px 0; padding: 4px 12px; background-color: #f8f9fc;"><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);">Also, considering that "session" in `Core::initialize` is user-specified and defaults to an empty string, please do not use a 100% deterministic name,</pre></div></blockquote>

<p>From what I can see the function is only called from main() and the <tt style="background: #ebebeb; font-size: 13px;">session</tt> variable will not ever be an empty string in practice. I just tested with a newly created session: even there a new UUID was created before calling Core::initialize().</p>

<p>I can still add the user ID to the dirname just in case <tt style="background: #ebebeb; font-size: 13px;">session</tt> is ever empty after all. That's actually useful if TMPDIR isn't set to start with and the directory is created in /tmp .</p>

<p>I just tested QTemporaryDir. It only relieves me from handling the directory creation and deletion because I still have to create the absolute path (and thus prune it): giving just the directory name (instead of a full path) means the directory will be created in the current directory.</p>

<p>So I end up with a slightly cleaner snippet</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);">#if defined(Q_OS_UNIX)
    auto tmpPath = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
    const QString tmpName(QStringLiteral("/kdevelop-tmp-%1-").arg(getuid()));
    const auto pos = tmpPath.lastIndexOf(tmpName);
    if (pos >= 0) {
        // we must have been started by another KDevelop session,
        // restore the default TempLocation
        tmpPath = tmpPath.left(pos);
    }
    tmpPath += tmpName + session;
    m_tmpLocation = new QTemporaryDir(tmpPath);
    if (m_tmpLocation->isValid()) {
        qputenv("TMPDIR", tmpPath.toLatin1());
        qCDebug(SHELL) << "temp. directory:" << m_tmpLocation->path();
    }
#endif</pre></div>

<p>and still don't have a deterministic name because QTemporaryDir will always add something random to the name even if you don't include an "XXXXXX" pattern in the template. From the docs:</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);">If the templatePath ends with XXXXXX it will be used as the dynamic portion of the directory name, otherwise it will be appended.</pre></div>

<p>and this is obligatory on Unix as <tt style="background: #ebebeb; font-size: 13px;">mkdtemp()</tt> is used underneath. So the snippet above is actually broken, the temp dir is not at <tt style="background: #ebebeb; font-size: 13px;">tmpLocation</tt>.<br />
Come to think of it, the directory is also not emptied on creation as I want it to be; the class guarantees it never reuses an existing directory.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R32 KDevelop</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D17289">https://phabricator.kde.org/D17289</a></div></div><br /><div><strong>To: </strong>rjvbb, KDevelop, kfunk<br /><strong>Cc: </strong>pino, kfunk, kdevelop-devel, glebaccon, hase, antismap, iodelay, vbspam, geetamc, Pilzschaf, akshaydeo, surgenight, arrowd<br /></div>