2011-03-30 12:06:05 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2011-03-30 12:06:05 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef FILEUTILS_H
|
|
|
|
|
#define FILEUTILS_H
|
|
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QIODevice>
|
|
|
|
|
#include <QXmlStreamWriter> // Mac.
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QMetaType>
|
2011-03-30 12:06:05 +02:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QFile;
|
|
|
|
|
class QTemporaryFile;
|
|
|
|
|
class QWidget;
|
|
|
|
|
class QTextStream;
|
|
|
|
|
class QDataStream;
|
2011-07-05 12:59:14 +02:00
|
|
|
class QDateTime;
|
2011-03-30 12:06:05 +02:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
2011-07-05 12:59:14 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileUtils {
|
|
|
|
|
public:
|
|
|
|
|
static bool removeRecursively(const QString &filePath, QString *error = 0);
|
|
|
|
|
static bool copyRecursively(const QString &srcFilePath,
|
|
|
|
|
const QString &tgtFilePath, QString *error = 0);
|
|
|
|
|
static bool isFileNewerThan(const QString &filePath,
|
|
|
|
|
const QDateTime &timeStamp);
|
2011-10-20 22:33:54 +02:00
|
|
|
static QString resolveSymlinks(const QString &path);
|
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;
|
|
|
|
|
};
|
|
|
|
|
|
2011-11-08 18:06:45 +01:00
|
|
|
class QTCREATOR_UTILS_EXPORT FileName : private QString
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FileName();
|
|
|
|
|
explicit FileName(const QFileInfo &info);
|
2011-11-25 13:17:52 +01:00
|
|
|
QFileInfo toFileInfo() const;
|
2011-11-08 18:06:45 +01:00
|
|
|
static FileName fromString(const QString &filename);
|
2011-11-25 13:17:52 +01:00
|
|
|
static FileName fromUserInput(const QString &filename);
|
|
|
|
|
QString toString() const;
|
|
|
|
|
QString toUserOutput() const;
|
2012-01-19 15:26:54 +01:00
|
|
|
|
|
|
|
|
FileName parentDir() const;
|
2011-11-08 18:06:45 +01:00
|
|
|
|
|
|
|
|
bool operator==(const FileName &other) const;
|
2011-11-25 13:17:52 +01:00
|
|
|
bool operator!=(const FileName &other) const;
|
2011-11-08 18:06:45 +01:00
|
|
|
bool operator<(const FileName &other) const;
|
|
|
|
|
bool operator<=(const FileName &other) const;
|
|
|
|
|
bool operator>(const FileName &other) const;
|
|
|
|
|
bool operator>=(const FileName &other) const;
|
|
|
|
|
|
2011-11-25 13:17:52 +01:00
|
|
|
bool isChildOf(const FileName &s) const;
|
2012-07-18 14:46:05 +04:00
|
|
|
bool isChildOf(const QDir &dir) const;
|
2011-11-08 18:06:45 +01:00
|
|
|
bool endsWith(const QString &s) const;
|
|
|
|
|
|
2011-11-25 13:17:52 +01:00
|
|
|
Utils::FileName relativeChildPath(const FileName &parent) const;
|
2011-11-25 13:19:58 +01:00
|
|
|
Utils::FileName &appendPath(const QString &s);
|
|
|
|
|
Utils::FileName &append(const QString &str);
|
|
|
|
|
Utils::FileName &append(QChar str);
|
2011-11-08 18:06:45 +01:00
|
|
|
|
|
|
|
|
using QString::size;
|
|
|
|
|
using QString::count;
|
|
|
|
|
using QString::length;
|
|
|
|
|
using QString::isEmpty;
|
2011-11-25 13:17:52 +01:00
|
|
|
using QString::isNull;
|
|
|
|
|
using QString::clear;
|
2011-11-08 18:06:45 +01:00
|
|
|
private:
|
|
|
|
|
static Qt::CaseSensitivity cs;
|
|
|
|
|
FileName(const QString &string);
|
|
|
|
|
};
|
|
|
|
|
|
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
|