2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-03-30 12:06:05 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2011-03-30 12:06:05 +02:00
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
2017-06-13 14:57:30 +02:00
|
|
|
#include "hostosinfo.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QCoreApplication>
|
2020-07-07 10:11:53 +02:00
|
|
|
#include <QDir>
|
|
|
|
|
#include <QFileInfo>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QMetaType>
|
2014-07-07 16:16:49 +02:00
|
|
|
#include <QStringList>
|
2019-05-09 16:35:25 +02:00
|
|
|
#include <QUrl>
|
2020-07-07 10:11:53 +02:00
|
|
|
#include <QXmlStreamWriter> // Mac.
|
2011-03-30 12:06:05 +02:00
|
|
|
|
2014-09-04 20:43:09 +02:00
|
|
|
#include <functional>
|
2017-06-29 15:04:01 +02:00
|
|
|
#include <memory>
|
2014-09-04 20:43:09 +02:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
namespace Utils { class FilePath; }
|
2014-02-13 11:49:13 +01:00
|
|
|
|
2011-03-30 12:06:05 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
2014-09-04 20:43:09 +02:00
|
|
|
class QDataStream;
|
|
|
|
|
class QDateTime;
|
|
|
|
|
class QDir;
|
2011-03-30 12:06:05 +02:00
|
|
|
class QFile;
|
2014-09-04 20:43:09 +02:00
|
|
|
class QFileInfo;
|
2011-03-30 12:06:05 +02:00
|
|
|
class QTemporaryFile;
|
|
|
|
|
class QTextStream;
|
2014-09-04 20:43:09 +02:00
|
|
|
class QWidget;
|
2014-02-13 11:49:13 +01:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
QTCREATOR_UTILS_EXPORT QDebug operator<<(QDebug dbg, const Utils::FilePath &c);
|
2014-02-13 11:49:13 +01:00
|
|
|
|
2018-06-05 14:22:26 +02:00
|
|
|
// for withNtfsPermissions
|
2017-05-24 15:31:40 +02:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
extern Q_CORE_EXPORT int qt_ntfs_permission_lookup;
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-03-30 12:06:05 +02:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FilePath
|
2012-09-05 15:52:53 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2019-05-28 13:49:26 +02:00
|
|
|
FilePath();
|
2019-05-10 13:18:37 +02:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
static FilePath fromString(const QString &filepath);
|
|
|
|
|
static FilePath fromFileInfo(const QFileInfo &info);
|
|
|
|
|
static FilePath fromStringWithExtension(const QString &filepath, const QString &defaultExtension);
|
|
|
|
|
static FilePath fromUserInput(const QString &filepath);
|
|
|
|
|
static FilePath fromUtf8(const char *filepath, int filepathSize = -1);
|
|
|
|
|
static FilePath fromVariant(const QVariant &variant);
|
2019-05-10 13:18:37 +02:00
|
|
|
|
2015-02-27 09:42:48 +02:00
|
|
|
const QString &toString() const;
|
2019-05-10 13:18:37 +02:00
|
|
|
QFileInfo toFileInfo() const;
|
2019-05-09 16:35:25 +02:00
|
|
|
QVariant toVariant() const;
|
|
|
|
|
|
2012-09-05 15:52:53 +02:00
|
|
|
QString toUserOutput() const;
|
2019-05-17 13:54:27 +02:00
|
|
|
QString shortNativePath() const;
|
|
|
|
|
|
2019-08-14 10:49:09 +02:00
|
|
|
QString fileName() const;
|
|
|
|
|
QString fileNameWithPathComponents(int pathComponents) const;
|
2014-10-24 13:15:54 +02:00
|
|
|
bool exists() const;
|
2019-08-12 01:41:41 +02:00
|
|
|
bool isWritablePath() const;
|
2012-09-05 15:52:53 +02:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
FilePath parentDir() const;
|
2019-12-18 18:55:27 +01:00
|
|
|
FilePath absolutePath() const;
|
2012-09-05 15:52:53 +02:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
bool operator==(const FilePath &other) const;
|
|
|
|
|
bool operator!=(const FilePath &other) const;
|
|
|
|
|
bool operator<(const FilePath &other) const;
|
|
|
|
|
bool operator<=(const FilePath &other) const;
|
|
|
|
|
bool operator>(const FilePath &other) const;
|
|
|
|
|
bool operator>=(const FilePath &other) const;
|
|
|
|
|
FilePath operator+(const QString &s) const;
|
2012-09-05 15:52:53 +02:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
bool isChildOf(const FilePath &s) const;
|
2012-09-05 15:52:53 +02:00
|
|
|
bool isChildOf(const QDir &dir) const;
|
2019-10-21 15:06:28 +02:00
|
|
|
bool startsWith(const QString &s) const;
|
2012-09-05 15:52:53 +02:00
|
|
|
bool endsWith(const QString &s) const;
|
|
|
|
|
|
2019-05-28 16:55:43 +02:00
|
|
|
bool isDir() const;
|
2019-05-17 13:36:48 +02:00
|
|
|
bool isNewerThan(const QDateTime &timeStamp) const;
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
FilePath relativeChildPath(const FilePath &parent) const;
|
|
|
|
|
FilePath pathAppended(const QString &str) const;
|
|
|
|
|
FilePath stringAppended(const QString &str) const;
|
2019-12-04 13:36:04 +01:00
|
|
|
FilePath resolvePath(const QString &fileName) const;
|
2012-09-05 15:52:53 +02:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
FilePath canonicalPath() const;
|
2019-05-17 13:44:09 +02:00
|
|
|
|
2020-02-19 17:35:56 +01:00
|
|
|
FilePath operator/(const QString &str) const;
|
|
|
|
|
|
2019-05-10 12:23:27 +02:00
|
|
|
void clear() { m_data.clear(); }
|
|
|
|
|
bool isEmpty() const { return m_data.isEmpty(); }
|
|
|
|
|
|
|
|
|
|
uint hash(uint seed) const;
|
2019-05-10 11:48:14 +02:00
|
|
|
|
2019-07-23 12:48:27 +02:00
|
|
|
// NOTE: FilePath operations on FilePath created from URL currenly
|
2019-05-09 16:35:25 +02:00
|
|
|
// do not work except for .toVariant() and .toUrl().
|
2019-05-28 13:49:26 +02:00
|
|
|
static FilePath fromUrl(const QUrl &url);
|
2019-05-09 16:35:25 +02:00
|
|
|
QUrl toUrl() const;
|
|
|
|
|
|
2012-09-05 15:52:53 +02:00
|
|
|
private:
|
2019-05-10 12:23:27 +02:00
|
|
|
QString m_data;
|
2019-05-09 16:35:25 +02:00
|
|
|
QUrl m_url;
|
2012-09-05 15:52:53 +02:00
|
|
|
};
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
QTCREATOR_UTILS_EXPORT QTextStream &operator<<(QTextStream &s, const FilePath &fn);
|
2014-09-22 16:20:51 +03:00
|
|
|
|
2019-12-17 14:07:53 +01:00
|
|
|
using FilePaths = QList<FilePath>;
|
2019-05-28 13:49:26 +02:00
|
|
|
|
2019-05-29 19:28:43 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT CommandLine
|
|
|
|
|
{
|
|
|
|
|
public:
|
2019-06-05 15:35:15 +02:00
|
|
|
enum RawType { Raw };
|
2019-05-29 19:28:43 +02:00
|
|
|
|
2019-07-31 09:19:23 +02:00
|
|
|
CommandLine();
|
2019-07-23 10:17:57 +02:00
|
|
|
explicit CommandLine(const QString &executable);
|
2019-06-05 15:35:15 +02:00
|
|
|
explicit CommandLine(const FilePath &executable);
|
2019-07-23 10:17:57 +02:00
|
|
|
CommandLine(const QString &exe, const QStringList &args);
|
2019-07-23 12:39:05 +02:00
|
|
|
CommandLine(const FilePath &exe, const QStringList &args);
|
2019-06-05 15:35:15 +02:00
|
|
|
CommandLine(const FilePath &exe, const QString &unparsedArgs, RawType);
|
2019-05-29 19:28:43 +02:00
|
|
|
|
2019-06-04 10:55:37 +02:00
|
|
|
void addArg(const QString &arg, OsType osType = HostOsInfo::hostOs());
|
|
|
|
|
void addArgs(const QStringList &inArgs, OsType osType = HostOsInfo::hostOs());
|
2019-06-05 15:35:15 +02:00
|
|
|
|
|
|
|
|
void addArgs(const QString &inArgs, RawType);
|
2019-05-29 19:28:43 +02:00
|
|
|
|
|
|
|
|
QString toUserOutput() const;
|
|
|
|
|
|
|
|
|
|
FilePath executable() const { return m_executable; }
|
|
|
|
|
QString arguments() const { return m_arguments; }
|
2019-06-05 12:53:22 +02:00
|
|
|
QStringList splitArguments(OsType osType = HostOsInfo::hostOs()) const;
|
2019-05-29 19:28:43 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
FilePath m_executable;
|
|
|
|
|
QString m_arguments;
|
|
|
|
|
};
|
|
|
|
|
|
2011-07-05 12:59:14 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileUtils {
|
|
|
|
|
public:
|
2020-06-11 15:41:26 +02:00
|
|
|
#ifdef QT_GUI_LIB
|
|
|
|
|
class QTCREATOR_UTILS_EXPORT CopyAskingForOverwrite
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CopyAskingForOverwrite(QWidget *dialogParent);
|
|
|
|
|
bool operator()(const QFileInfo &src, const QFileInfo &dest, QString *error);
|
|
|
|
|
QStringList files() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QWidget *m_parent;
|
|
|
|
|
QStringList m_files;
|
|
|
|
|
bool m_overwriteAll = false;
|
|
|
|
|
bool m_skipAll = false;
|
|
|
|
|
};
|
|
|
|
|
#endif // QT_GUI_LIB
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
static bool removeRecursively(const FilePath &filePath, QString *error = nullptr);
|
2020-07-07 10:11:53 +02:00
|
|
|
static bool copyRecursively(const FilePath &srcFilePath,
|
|
|
|
|
const FilePath &tgtFilePath,
|
|
|
|
|
QString *error = nullptr);
|
|
|
|
|
template<typename T>
|
|
|
|
|
static bool copyRecursively(const FilePath &srcFilePath,
|
|
|
|
|
const FilePath &tgtFilePath,
|
|
|
|
|
QString *error,
|
|
|
|
|
T &©Helper);
|
2021-01-11 15:57:16 +01:00
|
|
|
static bool copyIfDifferent(const FilePath &srcFilePath,
|
|
|
|
|
const FilePath &tgtFilePath);
|
2019-05-28 13:49:26 +02:00
|
|
|
static FilePath resolveSymlinks(const FilePath &path);
|
2013-08-16 17:10:45 +02:00
|
|
|
static QString fileSystemFriendlyName(const QString &name);
|
2013-12-09 12:56:24 +01:00
|
|
|
static int indexOfQmakeUnfriendly(const QString &name, int startpos = 0);
|
|
|
|
|
static QString qmakeFriendlyName(const QString &name);
|
2019-05-28 13:49:26 +02:00
|
|
|
static bool makeWritable(const FilePath &path);
|
2013-10-23 22:07:46 +03:00
|
|
|
static QString normalizePathName(const QString &name);
|
2014-04-11 17:45:11 +02:00
|
|
|
|
|
|
|
|
static bool isRelativePath(const QString &fileName);
|
|
|
|
|
static bool isAbsolutePath(const QString &fileName) { return !isRelativePath(fileName); }
|
2019-05-28 13:49:26 +02:00
|
|
|
static FilePath commonPath(const FilePath &oldCommonPath, const FilePath &fileName);
|
|
|
|
|
static QByteArray fileId(const FilePath &fileName);
|
2011-07-05 12:59:14 +02:00
|
|
|
};
|
|
|
|
|
|
2020-07-07 10:11:53 +02:00
|
|
|
template<typename T>
|
|
|
|
|
bool FileUtils::copyRecursively(const FilePath &srcFilePath,
|
|
|
|
|
const FilePath &tgtFilePath,
|
|
|
|
|
QString *error,
|
|
|
|
|
T &©Helper)
|
|
|
|
|
{
|
|
|
|
|
const QFileInfo srcFileInfo = srcFilePath.toFileInfo();
|
|
|
|
|
if (srcFileInfo.isDir()) {
|
|
|
|
|
if (!tgtFilePath.exists()) {
|
|
|
|
|
QDir targetDir(tgtFilePath.toString());
|
|
|
|
|
targetDir.cdUp();
|
|
|
|
|
if (!targetDir.mkdir(tgtFilePath.fileName())) {
|
|
|
|
|
if (error) {
|
|
|
|
|
*error = QCoreApplication::translate("Utils::FileUtils",
|
|
|
|
|
"Failed to create directory \"%1\".")
|
|
|
|
|
.arg(tgtFilePath.toUserOutput());
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const QDir sourceDir(srcFilePath.toString());
|
|
|
|
|
const QStringList fileNames = sourceDir.entryList(
|
|
|
|
|
QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot | QDir::Hidden | QDir::System);
|
|
|
|
|
for (const QString &fileName : fileNames) {
|
|
|
|
|
const FilePath newSrcFilePath = srcFilePath / fileName;
|
|
|
|
|
const FilePath newTgtFilePath = tgtFilePath / fileName;
|
|
|
|
|
if (!copyRecursively(newSrcFilePath, newTgtFilePath, error, copyHelper))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (!copyHelper(srcFileInfo, tgtFilePath.toFileInfo(), error))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-24 15:31:40 +02:00
|
|
|
// for actually finding out if e.g. directories are writable on Windows
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2018-06-05 14:22:26 +02:00
|
|
|
T withNtfsPermissions(const std::function<T()> &task)
|
2017-05-24 15:31:40 +02:00
|
|
|
{
|
|
|
|
|
qt_ntfs_permission_lookup++;
|
|
|
|
|
T result = task();
|
|
|
|
|
qt_ntfs_permission_lookup--;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-19 15:37:39 +01:00
|
|
|
template <>
|
2018-06-05 14:22:26 +02:00
|
|
|
QTCREATOR_UTILS_EXPORT void withNtfsPermissions(const std::function<void()> &task);
|
2018-02-19 15:37:39 +01:00
|
|
|
|
2017-05-24 15:31:40 +02:00
|
|
|
#else // Q_OS_WIN
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2018-06-05 14:22:26 +02:00
|
|
|
T withNtfsPermissions(const std::function<T()> &task)
|
2017-05-24 15:31:40 +02:00
|
|
|
{
|
|
|
|
|
return task();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // Q_OS_WIN
|
|
|
|
|
|
2011-03-30 12:06:05 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileReader
|
|
|
|
|
{
|
2011-06-14 12:22:14 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(Utils::FileUtils) // sic!
|
2011-03-30 12:06:05 +02:00
|
|
|
public:
|
|
|
|
|
static QByteArray fetchQrc(const QString &fileName); // Only for internal resources
|
|
|
|
|
bool fetch(const QString &fileName, QIODevice::OpenMode mode = QIODevice::NotOpen); // QIODevice::ReadOnly is implicit
|
|
|
|
|
bool fetch(const QString &fileName, QIODevice::OpenMode mode, QString *errorString);
|
|
|
|
|
bool fetch(const QString &fileName, QString *errorString)
|
|
|
|
|
{ return fetch(fileName, QIODevice::NotOpen, errorString); }
|
2017-08-18 14:32:39 +02:00
|
|
|
#ifdef QT_GUI_LIB
|
2011-03-30 12:06:05 +02:00
|
|
|
bool fetch(const QString &fileName, QIODevice::OpenMode mode, QWidget *parent);
|
|
|
|
|
bool fetch(const QString &fileName, QWidget *parent)
|
|
|
|
|
{ return fetch(fileName, QIODevice::NotOpen, parent); }
|
2017-08-18 14:32:39 +02:00
|
|
|
#endif // QT_GUI_LIB
|
2011-03-30 12:06:05 +02:00
|
|
|
const QByteArray &data() const { return m_data; }
|
|
|
|
|
const QString &errorString() const { return m_errorString; }
|
|
|
|
|
private:
|
|
|
|
|
QByteArray m_data;
|
|
|
|
|
QString m_errorString;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class QTCREATOR_UTILS_EXPORT FileSaverBase
|
|
|
|
|
{
|
2011-06-14 12:22:14 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(Utils::FileUtils) // sic!
|
2011-03-30 12:06:05 +02:00
|
|
|
public:
|
|
|
|
|
FileSaverBase();
|
2017-07-03 12:02:26 +02:00
|
|
|
virtual ~FileSaverBase();
|
2011-03-30 12:06:05 +02:00
|
|
|
|
|
|
|
|
QString fileName() const { return m_fileName; }
|
|
|
|
|
bool hasError() const { return m_hasError; }
|
|
|
|
|
QString errorString() const { return m_errorString; }
|
|
|
|
|
virtual bool finalize();
|
|
|
|
|
bool finalize(QString *errStr);
|
2017-08-18 14:32:39 +02:00
|
|
|
#ifdef QT_GUI_LIB
|
2011-03-30 12:06:05 +02:00
|
|
|
bool finalize(QWidget *parent);
|
2017-08-18 14:32:39 +02:00
|
|
|
#endif
|
2011-03-30 12:06:05 +02:00
|
|
|
|
|
|
|
|
bool write(const char *data, int len);
|
|
|
|
|
bool write(const QByteArray &bytes);
|
|
|
|
|
bool setResult(QTextStream *stream);
|
|
|
|
|
bool setResult(QDataStream *stream);
|
|
|
|
|
bool setResult(QXmlStreamWriter *stream);
|
|
|
|
|
bool setResult(bool ok);
|
|
|
|
|
|
2017-06-29 15:04:01 +02:00
|
|
|
QFile *file() { return m_file.get(); }
|
|
|
|
|
|
2011-03-30 12:06:05 +02:00
|
|
|
protected:
|
2017-06-29 15:04:01 +02:00
|
|
|
std::unique_ptr<QFile> m_file;
|
2011-03-30 12:06:05 +02:00
|
|
|
QString m_fileName;
|
|
|
|
|
QString m_errorString;
|
2018-07-23 10:45:40 +02:00
|
|
|
bool m_hasError = false;
|
2011-03-30 12:06:05 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Q_DISABLE_COPY(FileSaverBase)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class QTCREATOR_UTILS_EXPORT FileSaver : public FileSaverBase
|
|
|
|
|
{
|
2011-06-14 12:22:14 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(Utils::FileUtils) // sic!
|
2011-03-30 12:06:05 +02:00
|
|
|
public:
|
2018-05-07 15:07:21 +02:00
|
|
|
// QIODevice::WriteOnly is implicit
|
|
|
|
|
explicit FileSaver(const QString &filename, QIODevice::OpenMode mode = QIODevice::NotOpen);
|
2011-03-30 12:06:05 +02:00
|
|
|
|
2018-05-07 15:07:21 +02:00
|
|
|
bool finalize() override;
|
2011-03-30 12:06:05 +02:00
|
|
|
using FileSaverBase::finalize;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool m_isSafe;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class QTCREATOR_UTILS_EXPORT TempFileSaver : public FileSaverBase
|
|
|
|
|
{
|
2011-06-14 12:22:14 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(Utils::FileUtils) // sic!
|
2011-03-30 12:06:05 +02:00
|
|
|
public:
|
|
|
|
|
explicit TempFileSaver(const QString &templ = QString());
|
2018-05-07 15:07:21 +02:00
|
|
|
~TempFileSaver() override;
|
2011-03-30 12:06:05 +02:00
|
|
|
|
|
|
|
|
void setAutoRemove(bool on) { m_autoRemove = on; }
|
|
|
|
|
|
|
|
|
|
private:
|
2018-07-23 10:45:40 +02:00
|
|
|
bool m_autoRemove = true;
|
2011-03-30 12:06:05 +02:00
|
|
|
};
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
inline uint qHash(const Utils::FilePath &a, uint seed = 0) { return a.hash(seed); }
|
2011-03-30 12:06:05 +02:00
|
|
|
|
2019-05-10 12:23:27 +02:00
|
|
|
} // namespace Utils
|
2011-11-08 18:06:45 +01:00
|
|
|
|
2017-06-13 14:57:30 +02:00
|
|
|
namespace std {
|
2019-12-18 10:52:17 +01:00
|
|
|
template<> struct QTCREATOR_UTILS_EXPORT hash<Utils::FilePath>
|
2017-06-13 14:57:30 +02:00
|
|
|
{
|
2019-05-28 13:49:26 +02:00
|
|
|
using argument_type = Utils::FilePath;
|
2017-06-13 14:57:30 +02:00
|
|
|
using result_type = size_t;
|
2019-12-17 14:18:14 +01:00
|
|
|
result_type operator()(const argument_type &fn) const;
|
2017-06-13 14:57:30 +02:00
|
|
|
};
|
|
|
|
|
} // namespace std
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
Q_DECLARE_METATYPE(Utils::FilePath)
|
2019-07-31 09:19:23 +02:00
|
|
|
Q_DECLARE_METATYPE(Utils::CommandLine)
|