2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-03-30 12:06:05 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-03-30 12:06:05 +02:00
|
|
|
|
|
|
|
|
#ifndef FILEUTILS_H
|
|
|
|
|
#define FILEUTILS_H
|
|
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QXmlStreamWriter> // Mac.
|
|
|
|
|
#include <QMetaType>
|
2014-09-12 12:52:34 +02:00
|
|
|
#include <QMimeData>
|
2014-07-07 16:16:49 +02:00
|
|
|
#include <QStringList>
|
2011-03-30 12:06:05 +02:00
|
|
|
|
2014-09-04 20:43:09 +02:00
|
|
|
#include <functional>
|
|
|
|
|
|
2014-02-13 11:49:13 +01:00
|
|
|
namespace Utils {class FileName; }
|
|
|
|
|
|
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;
|
|
|
|
|
class QDropEvent;
|
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
|
|
|
|
|
|
|
|
QTCREATOR_UTILS_EXPORT QDebug operator<<(QDebug dbg, const Utils::FileName &c);
|
|
|
|
|
|
2011-03-30 12:06:05 +02:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
2012-09-05 15:52:53 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileName : private QString
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FileName();
|
|
|
|
|
explicit FileName(const QFileInfo &info);
|
|
|
|
|
QFileInfo toFileInfo() const;
|
|
|
|
|
static FileName fromString(const QString &filename);
|
2014-09-16 15:58:32 +02:00
|
|
|
static FileName fromString(const QString &filename, const QString &defaultExtension);
|
2014-02-07 15:46:36 +01:00
|
|
|
static FileName fromLatin1(const QByteArray &filename);
|
2012-09-05 15:52:53 +02:00
|
|
|
static FileName fromUserInput(const QString &filename);
|
2014-11-27 12:11:46 +01:00
|
|
|
static FileName fromUtf8(const char *filename, int filenameSize = -1);
|
2012-09-05 15:52:53 +02:00
|
|
|
QString toString() const;
|
|
|
|
|
QString toUserOutput() const;
|
2015-01-10 23:23:15 +02:00
|
|
|
QString fileName(int pathComponents = 0) const;
|
2014-10-24 13:15:54 +02:00
|
|
|
bool exists() const;
|
2012-09-05 15:52:53 +02:00
|
|
|
|
|
|
|
|
FileName parentDir() const;
|
|
|
|
|
|
|
|
|
|
bool operator==(const FileName &other) const;
|
|
|
|
|
bool operator!=(const FileName &other) const;
|
|
|
|
|
bool operator<(const FileName &other) const;
|
|
|
|
|
bool operator<=(const FileName &other) const;
|
|
|
|
|
bool operator>(const FileName &other) const;
|
|
|
|
|
bool operator>=(const FileName &other) const;
|
|
|
|
|
|
|
|
|
|
bool isChildOf(const FileName &s) const;
|
|
|
|
|
bool isChildOf(const QDir &dir) const;
|
|
|
|
|
bool endsWith(const QString &s) const;
|
|
|
|
|
|
2014-07-15 23:33:17 +03:00
|
|
|
FileName relativeChildPath(const FileName &parent) const;
|
|
|
|
|
FileName &appendPath(const QString &s);
|
|
|
|
|
FileName &appendString(const QString &str);
|
|
|
|
|
FileName &appendString(QChar str);
|
2012-09-05 15:52:53 +02:00
|
|
|
|
|
|
|
|
using QString::size;
|
|
|
|
|
using QString::count;
|
|
|
|
|
using QString::length;
|
|
|
|
|
using QString::isEmpty;
|
|
|
|
|
using QString::isNull;
|
|
|
|
|
using QString::clear;
|
|
|
|
|
private:
|
|
|
|
|
FileName(const QString &string);
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-27 10:49:18 +01:00
|
|
|
QTCREATOR_UTILS_EXPORT QTextStream &operator<<(QTextStream &s, const FileName &fn);
|
2014-09-22 16:20:51 +03:00
|
|
|
|
2014-11-27 12:11:46 +01:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileNameList : public QList<FileName>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
inline FileNameList() { }
|
|
|
|
|
inline explicit FileNameList(const FileName &i) { append(i); }
|
|
|
|
|
inline FileNameList(const FileNameList &l) : QList<FileName>(l) { }
|
|
|
|
|
inline FileNameList(const QList<FileName> &l) : QList<FileName>(l) { }
|
|
|
|
|
|
|
|
|
|
int removeDuplicates();
|
|
|
|
|
};
|
|
|
|
|
|
2011-07-05 12:59:14 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileUtils {
|
|
|
|
|
public:
|
2012-09-05 15:52:53 +02:00
|
|
|
static bool removeRecursively(const FileName &filePath, QString *error = 0);
|
|
|
|
|
static bool copyRecursively(const FileName &srcFilePath, const FileName &tgtFilePath,
|
2014-09-22 16:20:51 +03:00
|
|
|
QString *error = 0, const std::function<bool (QFileInfo, QFileInfo, QString *)> ©Helper = std::function<bool (QFileInfo, QFileInfo, QString *)>());
|
2012-09-05 15:52:53 +02:00
|
|
|
static bool isFileNewerThan(const FileName &filePath, const QDateTime &timeStamp);
|
|
|
|
|
static FileName resolveSymlinks(const FileName &path);
|
2012-08-24 15:00:44 +02:00
|
|
|
static QString shortNativePath(const FileName &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);
|
2012-10-15 11:53:22 +02:00
|
|
|
static bool makeWritable(const FileName &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); }
|
|
|
|
|
static QString resolvePath(const QString &baseDir, const QString &fileName);
|
2011-07-05 12:59:14 +02:00
|
|
|
};
|
|
|
|
|
|
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); }
|
|
|
|
|
bool fetch(const QString &fileName, QIODevice::OpenMode mode, QWidget *parent);
|
|
|
|
|
bool fetch(const QString &fileName, QWidget *parent)
|
|
|
|
|
{ return fetch(fileName, QIODevice::NotOpen, parent); }
|
|
|
|
|
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();
|
|
|
|
|
virtual ~FileSaverBase();
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
bool finalize(QWidget *parent);
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
QFile *m_file;
|
|
|
|
|
QString m_fileName;
|
|
|
|
|
QString m_errorString;
|
|
|
|
|
bool m_hasError;
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
explicit FileSaver(const QString &filename, QIODevice::OpenMode mode = QIODevice::NotOpen); // QIODevice::WriteOnly is implicit
|
|
|
|
|
|
|
|
|
|
virtual bool finalize();
|
|
|
|
|
using FileSaverBase::finalize;
|
|
|
|
|
QFile *file() { return m_file; }
|
|
|
|
|
|
|
|
|
|
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());
|
|
|
|
|
~TempFileSaver();
|
|
|
|
|
|
|
|
|
|
QTemporaryFile *file() { return reinterpret_cast<QTemporaryFile *>(m_file); }
|
|
|
|
|
|
|
|
|
|
void setAutoRemove(bool on) { m_autoRemove = on; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool m_autoRemove;
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-07 16:16:49 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileDropSupport : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2014-09-12 12:52:34 +02:00
|
|
|
struct FileSpec {
|
|
|
|
|
FileSpec(const QString &path, int r = -1, int c = -1) : filePath(path), line(r), column(c) {}
|
|
|
|
|
QString filePath;
|
|
|
|
|
int line;
|
|
|
|
|
int column;
|
|
|
|
|
};
|
|
|
|
|
// returns true if the event should be accepted
|
2014-09-04 20:43:09 +02:00
|
|
|
typedef std::function<bool(QDropEvent*)> DropFilterFunction;
|
|
|
|
|
|
|
|
|
|
FileDropSupport(QWidget *parentWidget, const DropFilterFunction &filterFunction
|
|
|
|
|
= DropFilterFunction());
|
2014-07-07 16:16:49 +02:00
|
|
|
|
2014-09-10 14:00:12 +02:00
|
|
|
static QStringList mimeTypesForFilePaths();
|
|
|
|
|
|
2014-07-07 16:16:49 +02:00
|
|
|
signals:
|
2014-09-12 12:52:34 +02:00
|
|
|
void filesDropped(const QList<Utils::FileDropSupport::FileSpec> &files);
|
2014-07-07 16:16:49 +02:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void emitFilesDropped();
|
|
|
|
|
|
|
|
|
|
private:
|
2014-09-04 20:43:09 +02:00
|
|
|
DropFilterFunction m_filterFunction;
|
2014-09-12 12:52:34 +02:00
|
|
|
QList<FileSpec> m_files;
|
2014-07-07 16:16:49 +02:00
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-12 12:52:34 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileDropMimeData : public QMimeData
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2014-09-29 14:41:42 +02:00
|
|
|
FileDropMimeData();
|
|
|
|
|
|
|
|
|
|
void setOverrideFileDropAction(Qt::DropAction action);
|
|
|
|
|
Qt::DropAction overrideFileDropAction() const;
|
|
|
|
|
bool isOverridingFileDropAction() const;
|
|
|
|
|
|
2014-09-12 12:52:34 +02:00
|
|
|
void addFile(const QString &filePath, int line = -1, int column = -1);
|
|
|
|
|
QList<FileDropSupport::FileSpec> files() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QList<FileDropSupport::FileSpec> m_files;
|
2014-09-29 14:41:42 +02:00
|
|
|
Qt::DropAction m_overrideDropAction;
|
|
|
|
|
bool m_isOverridingDropAction;
|
2014-09-12 12:52:34 +02:00
|
|
|
};
|
|
|
|
|
|
2011-07-13 18:02:35 +02:00
|
|
|
} // namespace Utils
|
2011-03-30 12:06:05 +02:00
|
|
|
|
2011-11-09 15:08:53 +01:00
|
|
|
QT_BEGIN_NAMESPACE
|
2011-11-08 18:06:45 +01:00
|
|
|
QTCREATOR_UTILS_EXPORT uint qHash(const Utils::FileName &a);
|
2011-11-09 15:08:53 +01:00
|
|
|
QT_END_NAMESPACE
|
2011-11-08 18:06:45 +01:00
|
|
|
|
2011-11-25 13:17:52 +01:00
|
|
|
Q_DECLARE_METATYPE(Utils::FileName)
|
|
|
|
|
|
2011-03-30 12:06:05 +02:00
|
|
|
#endif // FILEUTILS_H
|