cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
/* This file is part of the KDE libraries
|
|
SPDX-FileCopyrightText: 2000-2005 David Faure <faure@kde.org>
|
|
SPDX-FileCopyrightText: 2003 Leo Savernik <l.savernik@aon.at>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KARCHIVE_P_H
|
|
#define KARCHIVE_P_H
|
|
|
|
#include "karchive.h"
|
|
|
|
#include <QSaveFile>
|
|
|
|
class KArchivePrivate
|
|
{
|
|
Q_DECLARE_TR_FUNCTIONS(KArchivePrivate)
|
|
|
|
public:
|
|
KArchivePrivate(KArchive *parent)
|
|
: q(parent)
|
|
{
|
|
}
|
|
~KArchivePrivate()
|
|
{
|
|
if (deviceOwned) {
|
|
delete dev; // we created it ourselves in open()
|
|
dev = nullptr;
|
|
}
|
|
|
|
delete saveFile;
|
|
delete rootDir;
|
|
}
|
|
|
|
KArchivePrivate(const KArchivePrivate &) = delete;
|
|
KArchivePrivate &operator=(const KArchivePrivate &) = delete;
|
|
|
|
static bool hasRootDir(KArchive *archive)
|
|
{
|
|
return archive->d->rootDir;
|
|
}
|
|
|
|
void abortWriting();
|
|
|
|
static QDateTime time_tToDateTime(uint time_t);
|
|
|
|
KArchiveDirectory *findOrCreate(const QString &path, int recursionCounter);
|
|
|
|
KArchive *q = nullptr;
|
|
KArchiveDirectory *rootDir = nullptr;
|
|
QSaveFile *saveFile = nullptr;
|
|
QIODevice *dev = nullptr;
|
|
QString fileName;
|
|
QIODevice::OpenMode mode = QIODevice::NotOpen;
|
|
bool deviceOwned = false; // if true, we (KArchive) own dev and must delete it
|
|
QString errorStr{tr("Unknown error")};
|
|
};
|
|
|
|
#endif // KARCHIVE_P_H
|