aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/tools/fileinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/tools/fileinfo.h')
-rw-r--r--src/lib/corelib/tools/fileinfo.h95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/lib/corelib/tools/fileinfo.h b/src/lib/corelib/tools/fileinfo.h
new file mode 100644
index 000000000..b5731cedd
--- /dev/null
+++ b/src/lib/corelib/tools/fileinfo.h
@@ -0,0 +1,95 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Build Suite.
+**
+** 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
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#ifndef QBS_FILEINFO_H
+#define QBS_FILEINFO_H
+
+#include "filetime.h"
+#include "qbs_export.h"
+
+#if defined(Q_OS_UNIX)
+#include <sys/stat.h>
+#endif
+
+#include <QString>
+
+QT_FORWARD_DECLARE_CLASS(QFileInfo)
+
+namespace qbs {
+namespace Internal {
+
+class FileInfo
+{
+public:
+ FileInfo(const QString &fileName);
+
+ bool exists() const;
+ FileTime lastModified() const;
+ FileTime lastStatusChange() const;
+ bool isDir() const;
+
+ static QString fileName(const QString &fp);
+ static QString baseName(const QString &fp);
+ static QString completeBaseName(const QString &fp);
+ static QString path(const QString &fp);
+ static void splitIntoDirectoryAndFileName(const QString &filePath, QString *dirPath, QString *fileName);
+ static void splitIntoDirectoryAndFileName(const QString &filePath, QStringRef *dirPath, QStringRef *fileName);
+ static bool exists(const QString &fp);
+ static bool isAbsolute(const QString &fp);
+ static bool isPattern(const QStringRef &str);
+ static bool isPattern(const QString &str);
+ static QString resolvePath(const QString &base, const QString &rel);
+ static bool globMatches(const QRegExp &pattern, const QString &subject);
+ static bool isFileCaseCorrect(const QString &filePath);
+
+private:
+#if defined(Q_OS_WIN)
+ struct InternalStatType
+ {
+ quint8 z[36];
+ };
+#elif defined(Q_OS_UNIX)
+ typedef struct stat InternalStatType;
+#else
+# error unknown platform
+#endif
+ InternalStatType m_stat;
+};
+
+bool removeFileRecursion(const QFileInfo &f, QString *errorMessage);
+
+// FIXME: Used by tests.
+bool QBS_EXPORT removeDirectoryWithContents(const QString &path, QString *errorMessage);
+bool QBS_EXPORT copyFileRecursion(const QString &sourcePath, const QString &targetPath,
+ bool preserveSymLinks, QString *errorMessage);
+
+} // namespace Internal
+} // namespace qbs
+
+#endif