1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/*
SPDX-FileCopyrightText: 2020 Igor Kushnir <igorkuo@gmail.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "filesystemhelpers.h"
#include <QByteArray>
#include <QByteArrayList>
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QString>
#include <QStringList>
bool FilesystemHelpers::createNewFileAndWrite(const QString& filePath,
const QByteArray& fileContents)
{
QFile file(filePath);
if (!file.open(QIODevice::NewOnly)) {
qCritical() << Q_FUNC_INFO << file.error() << file.errorString();
return false;
}
if (!fileContents.isEmpty() && file.write(fileContents) == -1) {
qCritical() << Q_FUNC_INFO << file.error() << file.errorString();
return false;
}
return true;
}
QString FilesystemHelpers::makeAbsoluteCreateAndWrite(const QString& dirPath, QString& filePath,
const QByteArray& fileContents)
{
const QFileInfo info{QDir{dirPath}, filePath};
QString pathToFile = info.absolutePath();
if (!QDir{}.mkpath(pathToFile)) {
return pathToFile;
}
filePath = info.absoluteFilePath();
if (!createNewFileAndWrite(filePath, fileContents)) {
return filePath;
}
return QString{};
}
QString FilesystemHelpers::makeAbsoluteCreateAndWrite(const QString& dirPath, QStringList& filePaths,
const QByteArrayList& fileContents)
{
Q_ASSERT(fileContents.size() == filePaths.size());
for (int i = 0; i < filePaths.size(); ++i) {
QString errorPath = makeAbsoluteCreateAndWrite(dirPath, filePaths[i], fileContents[i]);
if (!errorPath.isEmpty()) {
return errorPath;
}
}
return QString{};
}
QString FilesystemHelpers::makeAbsoluteCreateAndWrite(const QString& dirPath, QStringList& filePaths,
const QByteArray& commonFileContents)
{
for (auto& fPath : filePaths) {
QString errorPath = makeAbsoluteCreateAndWrite(dirPath, fPath, commonFileContents);
if (!errorPath.isEmpty()) {
return errorPath;
}
}
return QString{};
}
|