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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
/*
SPDX-FileCopyrightText: 2007 Henrique Pinto <henrique.pinto@kdemail.net>
SPDX-FileCopyrightText: 2008-2009 Harald Hvaal <haraldhv@stud.ntnu.no>
SPDX-FileCopyrightText: 2009-2012 Raphael Kubo da Costa <rakuco@FreeBSD.org>
SPDX-FileCopyrightText: 2016 Vladyslav Batyrenko <mvlabat@gmail.com>
SPDX-License-Identifier: BSD-2-Clause
*/
#include "archiveinterface.h"
#include "ark_debug.h"
#include "jobs.h"
#include "mimetypes.h"
#include "windows_stat.h"
#include <QDir>
#include <QFileInfo>
namespace Kerfuffle
{
ReadOnlyArchiveInterface::ReadOnlyArchiveInterface(QObject *parent, const QVariantList &args)
: QObject(parent)
, m_numberOfVolumes(0)
, m_numberOfEntries(0)
, m_waitForFinishedSignal(false)
, m_isHeaderEncryptionEnabled(false)
, m_isCorrupt(false)
, m_isMultiVolume(false)
, m_unpackedSize(0)
{
Q_ASSERT(args.size() >= 2);
qRegisterMetaType<Kerfuffle::Query *>();
qCDebug(ARK_LOG) << "Created read-only interface for" << args.first().toString();
m_filename = args.first().toString();
m_mimetype = determineMimeType(m_filename);
connect(this, &ReadOnlyArchiveInterface::entry, this, &ReadOnlyArchiveInterface::onEntry);
m_metaData = args.at(1).value<KPluginMetaData>();
}
ReadOnlyArchiveInterface::~ReadOnlyArchiveInterface()
{
}
void ReadOnlyArchiveInterface::onEntry(Archive::Entry *archiveEntry)
{
Q_ASSERT(archiveEntry);
m_numberOfEntries += 1;
m_unpackedSize += archiveEntry->isSparse() ? archiveEntry->sparseSize() : archiveEntry->size();
}
QString ReadOnlyArchiveInterface::filename() const
{
return m_filename;
}
QString ReadOnlyArchiveInterface::comment() const
{
return m_comment;
}
bool ReadOnlyArchiveInterface::isReadOnly() const
{
return true;
}
bool ReadOnlyArchiveInterface::open()
{
return true;
}
void ReadOnlyArchiveInterface::setPassword(const QString &password)
{
m_password = password;
}
void ReadOnlyArchiveInterface::setHeaderEncryptionEnabled(bool enabled)
{
m_isHeaderEncryptionEnabled = enabled;
}
QString ReadOnlyArchiveInterface::password() const
{
return m_password;
}
bool ReadOnlyArchiveInterface::doKill()
{
// default implementation
return false;
}
void ReadOnlyArchiveInterface::setCorrupt(bool isCorrupt)
{
m_isCorrupt = isCorrupt;
}
bool ReadOnlyArchiveInterface::isCorrupt() const
{
return m_isCorrupt;
}
bool ReadOnlyArchiveInterface::isMultiVolume() const
{
return m_isMultiVolume;
}
void ReadOnlyArchiveInterface::setMultiVolume(bool value)
{
m_isMultiVolume = value;
}
int ReadOnlyArchiveInterface::numberOfVolumes() const
{
return m_numberOfVolumes;
}
QString ReadOnlyArchiveInterface::multiVolumeName() const
{
return filename();
}
ReadWriteArchiveInterface::ReadWriteArchiveInterface(QObject *parent, const QVariantList &args)
: ReadOnlyArchiveInterface(parent, args)
{
qCDebug(ARK_LOG) << "Created read-write interface for" << args.first().toString();
connect(this, &ReadWriteArchiveInterface::entryRemoved, this, &ReadWriteArchiveInterface::onEntryRemoved);
}
ReadWriteArchiveInterface::~ReadWriteArchiveInterface()
{
}
bool ReadOnlyArchiveInterface::waitForFinishedSignal()
{
return m_waitForFinishedSignal;
}
int ReadOnlyArchiveInterface::moveRequiredSignals() const
{
return 1;
}
int ReadOnlyArchiveInterface::copyRequiredSignals() const
{
return 1;
}
void ReadOnlyArchiveInterface::setWaitForFinishedSignal(bool value)
{
m_waitForFinishedSignal = value;
}
qulonglong ReadOnlyArchiveInterface::unpackedSize() const
{
return m_unpackedSize;
}
QString ReadOnlyArchiveInterface::permissionsToString(mode_t perm)
{
QString modeval;
if ((perm & S_IFMT) == QT_STAT_DIR) {
modeval.append(QLatin1Char('d'));
} else if ((perm & S_IFMT) == QT_STAT_LNK) {
modeval.append(QLatin1Char('l'));
} else {
modeval.append(QLatin1Char('-'));
}
modeval.append((perm & S_IRUSR) ? QLatin1Char('r') : QLatin1Char('-'));
modeval.append((perm & S_IWUSR) ? QLatin1Char('w') : QLatin1Char('-'));
if ((perm & S_ISUID) && (perm & S_IXUSR)) {
modeval.append(QLatin1Char('s'));
} else if ((perm & S_ISUID)) {
modeval.append(QLatin1Char('S'));
} else if ((perm & S_IXUSR)) {
modeval.append(QLatin1Char('x'));
} else {
modeval.append(QLatin1Char('-'));
}
modeval.append((perm & S_IRGRP) ? QLatin1Char('r') : QLatin1Char('-'));
modeval.append((perm & S_IWGRP) ? QLatin1Char('w') : QLatin1Char('-'));
if ((perm & S_ISGID) && (perm & S_IXGRP)) {
modeval.append(QLatin1Char('s'));
} else if ((perm & S_ISGID)) {
modeval.append(QLatin1Char('S'));
} else if ((perm & S_IXGRP)) {
modeval.append(QLatin1Char('x'));
} else {
modeval.append(QLatin1Char('-'));
}
modeval.append((perm & S_IROTH) ? QLatin1Char('r') : QLatin1Char('-'));
modeval.append((perm & S_IWOTH) ? QLatin1Char('w') : QLatin1Char('-'));
if ((perm & S_ISVTX) && (perm & S_IXOTH)) {
modeval.append(QLatin1Char('t'));
} else if ((perm & S_ISVTX)) {
modeval.append(QLatin1Char('T'));
} else if ((perm & S_IXOTH)) {
modeval.append(QLatin1Char('x'));
} else {
modeval.append(QLatin1Char('-'));
}
return modeval;
}
QStringList ReadOnlyArchiveInterface::entryFullPaths(const QList<Archive::Entry *> &entries, PathFormat format)
{
QStringList filesList;
for (const Archive::Entry *file : entries) {
filesList << file->fullPath(format);
}
return filesList;
}
QList<Archive::Entry *> ReadOnlyArchiveInterface::entriesWithoutChildren(const QList<Archive::Entry *> &entries)
{
// QMap is easy way to get entries sorted by their fullPath.
QMap<QString, Archive::Entry *> sortedEntries;
for (Archive::Entry *entry : entries) {
sortedEntries.insert(entry->fullPath(), entry);
}
QList<Archive::Entry *> filteredEntries;
QString lastFolder;
for (Archive::Entry *entry : std::as_const(sortedEntries)) {
if (!lastFolder.isEmpty() && entry->fullPath().startsWith(lastFolder)) {
continue;
}
lastFolder = (entry->fullPath().right(1) == QLatin1String("/")) ? entry->fullPath() : QString();
filteredEntries << entry;
}
return filteredEntries;
}
QStringList ReadOnlyArchiveInterface::entryPathsFromDestination(QStringList entries, const Archive::Entry *destination, int entriesWithoutChildren)
{
QStringList paths = QStringList();
entries.sort();
QString lastFolder;
const QString destinationPath = (destination == nullptr) ? QString() : destination->fullPath();
QString newPath;
int nameLength = 0;
for (const QString &entryPath : std::as_const(entries)) {
if (!lastFolder.isEmpty() && entryPath.startsWith(lastFolder)) {
// Replace last moved or copied folder path with destination path.
int charsCount = entryPath.length() - lastFolder.length();
if (entriesWithoutChildren != 1) {
charsCount += nameLength;
}
newPath = destinationPath + entryPath.right(charsCount);
} else {
const QString name = entryPath.split(QLatin1Char('/'), Qt::SkipEmptyParts).last();
if (entriesWithoutChildren != 1) {
newPath = destinationPath + name;
if (entryPath.right(1) == QLatin1String("/")) {
newPath += QLatin1Char('/');
}
} else {
// If the mode is set to Move and there is only one passed file in the list,
// we have to use destination as newPath.
newPath = destinationPath;
}
if (entryPath.right(1) == QLatin1String("/")) {
nameLength = name.length() + 1; // plus slash
lastFolder = entryPath;
} else {
nameLength = 0;
lastFolder = QString();
}
}
paths << newPath;
}
return paths;
}
bool ReadOnlyArchiveInterface::isHeaderEncryptionEnabled() const
{
return m_isHeaderEncryptionEnabled;
}
QMimeType ReadOnlyArchiveInterface::mimetype() const
{
return m_mimetype;
}
bool ReadOnlyArchiveInterface::hasBatchExtractionProgress() const
{
return false;
}
bool ReadOnlyArchiveInterface::isLocked() const
{
return false;
}
bool ReadWriteArchiveInterface::isReadOnly() const
{
if (isLocked()) {
return true;
}
// We set corrupt archives to read-only to avoid add/delete actions, that
// are likely to fail anyway.
if (isCorrupt()) {
return true;
}
QFileInfo fileInfo(filename());
if (fileInfo.exists()) {
return !fileInfo.isWritable();
} else {
return !fileInfo.dir().exists(); // TODO: Should also check if we can create a file in that directory
}
}
uint ReadOnlyArchiveInterface::numberOfEntries() const
{
return m_numberOfEntries;
}
void ReadWriteArchiveInterface::onEntryRemoved(const QString &path)
{
Q_UNUSED(path)
m_numberOfEntries--;
}
} // namespace Kerfuffle
#include "moc_archiveinterface.cpp"
|