05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#ifndef IOUTILS_H
|
|
#define IOUTILS_H
|
|
|
|
#include "qmake_global.h"
|
|
|
|
#include <qstring.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
namespace QMakeInternal {
|
|
|
|
/*!
|
|
This class provides replacement functionality for QFileInfo, QFile & QDir,
|
|
as these are abysmally slow.
|
|
*/
|
|
class QMAKE_EXPORT IoUtils {
|
|
public:
|
|
enum FileType {
|
|
FileNotFound = 0,
|
|
FileIsRegular = 1,
|
|
FileIsDir = 2
|
|
};
|
|
|
|
static QString binaryAbsLocation(const QString &argv0);
|
|
static FileType fileType(const QString &fileName);
|
|
static bool exists(const QString &fileName) { return fileType(fileName) != FileNotFound; }
|
|
static bool isRelativePath(const QString &fileName);
|
|
static bool isAbsolutePath(const QString &fileName) { return !isRelativePath(fileName); }
|
|
static QStringView pathName(const QString &fileName); // Requires normalized path
|
|
static QStringView fileName(const QString &fileName); // Requires normalized path
|
|
static QString resolvePath(const QString &baseDir, const QString &fileName);
|
|
static QString shellQuoteUnix(const QString &arg);
|
|
static QString shellQuoteWin(const QString &arg);
|
|
static QString shellQuote(const QString &arg)
|
|
#ifdef Q_OS_UNIX
|
|
{ return shellQuoteUnix(arg); }
|
|
#else
|
|
{ return shellQuoteWin(arg); }
|
|
#endif
|
|
#if defined(PROEVALUATOR_FULL)
|
|
static bool touchFile(const QString &targetFileName, const QString &referenceFileName, QString *errorString);
|
|
# if defined(QT_BUILD_QMAKE) && defined(Q_OS_UNIX)
|
|
static bool readLinkTarget(const QString &symlinkPath, QString *target);
|
|
# endif
|
|
#endif
|
|
};
|
|
|
|
} // namespace ProFileEvaluatorInternal
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // IOUTILS_H
|