qt5base-lts/tests/manual/filetest/main.cpp
Thiago Macieira 5a9b1425e1 QFileSystemEngine/Unix: rework the getting of nsec-precision file times
It was working on Linux because _GNU_SOURCE gets us POSIX.1-2008
compatibility, but not on macOS or the BSDs. There, we were still stuck
to full second precision.

This commit uses the template trick introduced by the futimes code
(which itself was inspired by commit 2fb42eb4af
in QtNetwork). Also note how it adds support for birth time, if the
system's stat struct has that information.

Tested to work on MacOS and FreeBSD. The manual filetest produces:
 Name:   .
 Path:   . (/usr/home/tjmaciei/src/qt/qt5)
 Size:   1536    Type: Directory
 Attrs:   readable writable executable hidden nativepath
 Mode:   drwxr-xr-x
 Owner:  tjmaciei (1001) Group:  tjmaciei (1001)
 Access: 2017-07-13T20:03:47.916
 Birth:  2017-07-13T20:03:47.916
 Change: 2017-07-13T20:04:41.648
 Modified: 2017-07-13T20:04:41.648

Linux will require support for statx(2).

Change-Id: I8d96dea9955d4c749b99fffd14cd97d7a8c6d45d
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
2017-08-06 23:14:26 +00:00

228 lines
7.5 KiB
C++

/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** 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 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.
**
** 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.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QDateTime>
#include <QDebug>
#include <QCoreApplication>
#include <QFileInfo>
#include <QFile>
#include <QDir>
#include <iostream>
#include <string>
static const char usage1[] =
"\nTests various file functionality in Qt\n\n"
"Usage: ";
static const char usage2[] =" [KEYWORD] [ARGUMENTS]\n\n"
"Keywords: ls FILES list file information\n"
" stat FILES print detailed file information\n"
" mv SOURCE TARGET rename files using QFile::rename\n"
" cp SOURCE TARGET copy files using QFile::copy\n"
" rm FILE remove file using QFile::remove\n"
" rmr DIR remove directory recursively\n"
" using QDir::removeRecursively\n";
std::ostream &operator<<(std::ostream &o, const QString &str)
{
return o << qPrintable(str);
}
std::ostream &operator<<(std::ostream &o, const QDateTime &dt)
{
if (dt.isValid())
return o << dt.toString(Qt::ISODateWithMs);
return o << '-';
}
static inline std::string permissions(QFile::Permissions permissions)
{
std::string result(10, '-');
if (permissions & QFile::ReadOwner)
result[1] = 'r';
if (permissions & QFile::WriteOwner)
result[2] = 'w';
if (permissions & QFile::ExeOwner)
result[3] = 'x';
if (permissions & QFile::ReadGroup)
result[4] = 'r';
if (permissions & QFile::WriteGroup)
result[5] = 'w';
if (permissions & QFile::ExeGroup)
result[6] = 'x';
if (permissions & QFile::ReadOther)
result[7] = 'r';
if (permissions & QFile::WriteOther)
result[8] = 'w';
if (permissions & QFile::ExeOther)
result[9] = 'x';
return result;
}
static inline std::string permissions(const QFileInfo &fi)
{
std::string result = permissions(fi.permissions());
if (fi.isSymLink())
result[0] = 'l';
else if (fi.isDir())
result[0] = 'd';
return result;
}
static int ls(int argCount, char **args)
{
for (int i = 0 ; i < argCount; ++i) {
const QFileInfo fi(QString::fromLocal8Bit(args[i]));
std::cout << QDir::toNativeSeparators(fi.absoluteFilePath()).toStdString() << ' ' << fi.size()
<< ' ' << permissions(fi);
if (fi.exists())
std::cout << " [exists]";
if (fi.isFile())
std::cout << " [file]";
if (fi.isSymLink()) {
std::cout << " [symlink to "
<< QDir::toNativeSeparators(fi.symLinkTarget()).toStdString() << ']';
}
if (fi.isDir())
std::cout << " [dir]";
std::cout << std::endl;
}
return 0;
}
static int stat(int argCount, char **args)
{
for (int i = 0 ; i < argCount; ++i) {
const QFileInfo fi(QFile::decodeName(args[i]));
std::cout << "Name:\t" << fi.fileName() << std::endl;
std::cout << "Path:\t" << QDir::toNativeSeparators(fi.path())
<< " (" << QDir::toNativeSeparators(fi.absolutePath()) << ')' << std::endl;
std::cout << "Size:\t" << fi.size()
<< "\tType: "
<< (fi.isSymLink() && !fi.exists() ? "Broken symlink" :
!fi.exists() ? "Non-existent" :
fi.isSymLink() ? "Symlink to " : "")
<< (!fi.exists() ? "" :
fi.isFile() ? "Regular file" :
fi.isDir() ? "Directory" : "Special node")
<< std::endl;
if (fi.isSymLink())
std::cout << "Target:\t" << fi.symLinkTarget() << std::endl;
std::cout << "Attrs: "
<< (fi.isReadable() ? " readable" : "")
<< (fi.isWritable() ? " writable" : "")
<< (fi.isExecutable() ? " executable" : "")
<< (fi.isHidden() ? " hidden" : "")
<< (fi.isNativePath() ? " nativepath" : "")
<< (fi.isRoot() ? " root" : "")
<< (fi.isBundle() ? " bundle" : "")
<< std::endl;
std::cout << "Mode:\t" << permissions(fi) << std::endl;
std::cout << "Owner:\t" << fi.owner() << " (" << fi.ownerId()
<< ")\tGroup:\t" << fi.group() << " (" << fi.groupId() << ')' << std::endl;
std::cout << "Access:\t" << fi.lastRead() << std::endl;
std::cout << "Birth:\t" << fi.birthTime() << std::endl;
std::cout << "Change:\t" << fi.metadataChangeTime() << std::endl;
std::cout << "Modified: " << fi.lastModified() << std::endl;
}
return 0;
}
static int mv(const char *sourceFileName, const char *targetFileName)
{
QFile sourceFile(QString::fromLocal8Bit(sourceFileName));
if (!sourceFile.rename(QString::fromLocal8Bit(targetFileName))) {
qWarning().nospace() << sourceFile.errorString();
return -1;
}
return 0;
}
static int cp(const char *sourceFileName, const char *targetFileName)
{
QFile sourceFile(QString::fromLocal8Bit(sourceFileName));
if (!sourceFile.copy(QString::fromLocal8Bit(targetFileName))) {
qWarning().nospace() << sourceFile.errorString();
return -1;
}
return 0;
}
static int rm(const char *fileName)
{
QFile file(QString::fromLocal8Bit(fileName));
if (!file.remove()) {
qWarning().nospace() << file.errorString();
return -1;
}
return 0;
}
static int rmr(const char *dirName)
{
#if QT_VERSION < 0x050000
Q_UNUSED(dirName)
return 1;
#else
QDir dir(QString::fromLocal8Bit(dirName));
if (!dir.removeRecursively()) {
qWarning().nospace() << "Failed to remove " << dir.absolutePath();
return -1;
}
return 0;
#endif
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
Q_UNUSED(a)
if (argc >= 3 && !qstrcmp(argv[1], "ls"))
return ls(argc -2, argv + 2);
if (argc >= 3 && !qstrcmp(argv[1], "stat"))
return stat(argc -2, argv + 2);
if (argc == 4 && !qstrcmp(argv[1], "mv"))
return mv(argv[2], argv[3]);
if (argc == 4 && !qstrcmp(argv[1], "cp"))
return cp(argv[2], argv[3]);
if (argc == 3 && !qstrcmp(argv[1], "rm"))
return rm(argv[2]);
if (argc == 3 && !qstrcmp(argv[1], "rmr"))
return rmr(argv[2]);
std::cerr << usage1 << argv[0] << usage2;
return 0;
}