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
|
/*
SPDX-FileCopyrightText: 2016 Elvis Angelaccio <elvis.angelaccio@kde.org>
SPDX-License-Identifier: BSD-2-Clause
*/
#include "archiveformat.h"
#include "ark_debug.h"
#include <QJsonArray>
namespace Kerfuffle
{
ArchiveFormat::ArchiveFormat()
{
}
ArchiveFormat::ArchiveFormat(const QMimeType &mimeType,
Archive::EncryptionType encryptionType,
int minCompLevel,
int maxCompLevel,
int defaultCompLevel,
bool supportsWriteComment,
bool supportsTesting,
bool supportsMultiVolume,
const QVariantMap &compressionMethods,
const QString &defaultCompressionMethod,
const QStringList &encryptionMethods,
const QString &defaultEncryptionMethod)
: m_mimeType(mimeType)
, m_encryptionType(encryptionType)
, m_minCompressionLevel(minCompLevel)
, m_maxCompressionLevel(maxCompLevel)
, m_defaultCompressionLevel(defaultCompLevel)
, m_supportsWriteComment(supportsWriteComment)
, m_supportsTesting(supportsTesting)
, m_supportsMultiVolume(supportsMultiVolume)
, m_compressionMethods(compressionMethods)
, m_defaultCompressionMethod(defaultCompressionMethod)
, m_encryptionMethods(encryptionMethods)
, m_defaultEncryptionMethod(defaultEncryptionMethod)
{
}
ArchiveFormat ArchiveFormat::fromMetadata(const QMimeType &mimeType, const KPluginMetaData &metadata)
{
const QJsonObject json = metadata.rawData();
const QStringList mimeTypes = metadata.mimeTypes();
for (const QString &mime : mimeTypes) {
if (mimeType.name() != mime) {
continue;
}
const QJsonObject formatProps = json[mime].toObject();
int minCompLevel = formatProps[QStringLiteral("CompressionLevelMin")].toInt();
int maxCompLevel = formatProps[QStringLiteral("CompressionLevelMax")].toInt();
int defaultCompLevel = formatProps[QStringLiteral("CompressionLevelDefault")].toInt();
bool supportsWriteComment = formatProps[QStringLiteral("SupportsWriteComment")].toBool();
bool supportsTesting = formatProps[QStringLiteral("SupportsTesting")].toBool();
bool supportsMultiVolume = formatProps[QStringLiteral("SupportsMultiVolume")].toBool();
QVariantMap compressionMethods = formatProps[QStringLiteral("CompressionMethods")].toObject().toVariantMap();
QString defaultCompMethod = formatProps[QStringLiteral("CompressionMethodDefault")].toString();
// We use a QStringList instead of QVariantMap for encryption methods, to
// allow arbitrary ordering of the items.
QStringList encryptionMethods;
const QJsonArray array = formatProps[QStringLiteral("EncryptionMethods")].toArray();
for (const QJsonValue &value : array) {
encryptionMethods.append(value.toString());
}
QString defaultEncMethod = formatProps[QStringLiteral("EncryptionMethodDefault")].toString();
Archive::EncryptionType encType = Archive::Unencrypted;
if (formatProps[QStringLiteral("HeaderEncryption")].toBool()) {
encType = Archive::HeaderEncrypted;
} else if (formatProps[QStringLiteral("Encryption")].toBool()) {
encType = Archive::Encrypted;
}
return ArchiveFormat(mimeType,
encType,
minCompLevel,
maxCompLevel,
defaultCompLevel,
supportsWriteComment,
supportsTesting,
supportsMultiVolume,
compressionMethods,
defaultCompMethod,
encryptionMethods,
defaultEncMethod);
}
return ArchiveFormat();
}
bool ArchiveFormat::isValid() const
{
return m_mimeType.isValid();
}
Archive::EncryptionType ArchiveFormat::encryptionType() const
{
return m_encryptionType;
}
int ArchiveFormat::minCompressionLevel() const
{
return m_minCompressionLevel;
}
int ArchiveFormat::maxCompressionLevel() const
{
return m_maxCompressionLevel;
}
int ArchiveFormat::defaultCompressionLevel() const
{
return m_defaultCompressionLevel;
}
bool ArchiveFormat::supportsWriteComment() const
{
return m_supportsWriteComment;
}
bool ArchiveFormat::supportsTesting() const
{
return m_supportsTesting;
}
bool ArchiveFormat::supportsMultiVolume() const
{
return m_supportsMultiVolume;
}
QVariantMap ArchiveFormat::compressionMethods() const
{
return m_compressionMethods;
}
QString ArchiveFormat::defaultCompressionMethod() const
{
return m_defaultCompressionMethod;
}
QStringList ArchiveFormat::encryptionMethods() const
{
return m_encryptionMethods;
}
QString ArchiveFormat::defaultEncryptionMethod() const
{
return m_defaultEncryptionMethod;
}
}
|