Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F36623961
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
59 KB
Subscribers
None
View Options
diff --git a/autotests/abstractkeylistmodeltest.cpp b/autotests/abstractkeylistmodeltest.cpp
index 2084a652..a4f182ee 100644
--- a/autotests/abstractkeylistmodeltest.cpp
+++ b/autotests/abstractkeylistmodeltest.cpp
@@ -1,255 +1,283 @@
/*
autotests/abstractkeylistmodeltest.cpp
This file is part of libkleopatra's test suite.
SPDX-FileCopyrightText: 2021 g10 Code GmbH
SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "abstractkeylistmodeltest.h"
#include "kleo/keygroup.h"
#include "models/keylistmodel.h"
#include <gpgme++/key.h>
#include <gpgme.h>
#include <QTest>
using namespace Kleo;
using namespace GpgME;
Q_DECLARE_METATYPE(KeyGroup)
namespace
{
Key createTestKey(const char *uid)
{
static int count = 0;
count++;
gpgme_key_t key;
gpgme_key_from_uid(&key, uid);
const QByteArray fingerprint = QByteArray::number(count, 16).rightJustified(40, '0');
key->fpr = strdup(fingerprint.constData());
return Key(key, false);
}
KeyGroup createGroup(const QString &name,
const std::vector<Key> &keys = std::vector<Key>(),
KeyGroup::Source source = KeyGroup::ApplicationConfig,
const QString &configName = QString())
{
const KeyGroup::Id groupId = (source == KeyGroup::ApplicationConfig) ?
(configName.isEmpty() ? name : configName) :
name;
KeyGroup g(groupId, name, keys, source);
return g;
}
}
void AbstractKeyListModelTest::testCreation()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
QCOMPARE( model->rowCount(), 0 );
}
void AbstractKeyListModelTest::testSetKeys()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
const std::vector<Key> keys = {
createTestKey("test1@example.net")
};
model->setKeys(keys);
QCOMPARE( model->rowCount(), 1 );
QVERIFY( model->index(keys[0]).isValid() );
const std::vector<Key> otherKeys = {
createTestKey("test2@example.net"),
createTestKey("test3@example.net")
};
model->setKeys(otherKeys);
QCOMPARE( model->rowCount(), 2 );
QVERIFY( model->index(otherKeys[0]).isValid() );
QVERIFY( model->index(otherKeys[1]).isValid() );
QVERIFY( !model->index(keys[0]).isValid() );
}
void AbstractKeyListModelTest::testSetGroups()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
const std::vector<KeyGroup> groups = {
createGroup("test1")
};
model->setGroups(groups);
QCOMPARE( model->rowCount(), 1 );
QVERIFY( model->index(groups[0]).isValid() );
const std::vector<KeyGroup> otherGroups = {
createGroup("test2"),
createGroup("test3")
};
model->setGroups(otherGroups);
QCOMPARE( model->rowCount(), 2 );
QVERIFY( model->index(otherGroups[0]).isValid() );
QVERIFY( model->index(otherGroups[1]).isValid() );
QVERIFY( !model->index(groups[0]).isValid() );
}
void AbstractKeyListModelTest::testKeys()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
const Key key = createTestKey("test@example.net");
const KeyGroup group = createGroup("test", {key});
model->setKeys({key});
model->setGroups({group});
QCOMPARE( model->rowCount(), 2 );
const QModelIndex keyIndex = model->index(key);
QVERIFY( keyIndex.isValid() );
const QModelIndex groupIndex = model->index(group);
QVERIFY( groupIndex.isValid() );
{
const auto keys = model->keys({});
QCOMPARE( keys.size(), 0 );
}
{
const auto keys = model->keys({keyIndex});
QCOMPARE( keys.size(), 1 );
QCOMPARE( keys[0].userID(0).addrSpec(), UserID::addrSpecFromString("test@example.net") );
}
{
// duplicate keys are removed from result
const auto keys = model->keys({keyIndex, keyIndex});
QCOMPARE( keys.size(), 1 );
QCOMPARE( keys[0].userID(0).addrSpec(), UserID::addrSpecFromString("test@example.net") );
}
{
// null keys are removed from result
const auto keys = model->keys({groupIndex});
QCOMPARE( keys.size(), 0 );
}
}
void AbstractKeyListModelTest::testIndex()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
const Key key = createTestKey("test@example.net");
const std::vector<KeyGroup> groups = {
createGroup("test", {key}, KeyGroup::UnknownSource),
createGroup("test", {key}, KeyGroup::GnuPGConfig),
createGroup("test", {key}, KeyGroup::ApplicationConfig, "test"),
createGroup("test", {key}, KeyGroup::ApplicationConfig, "otherConfigName")
};
model->setKeys({key});
model->setGroups(groups);
const QModelIndex keyIndex = model->index(0, 0);
QVERIFY( keyIndex.isValid() );
QVERIFY( !model->key(keyIndex).isNull() );
const QModelIndex groupIndex = model->index(1, 0);
QVERIFY( groupIndex.isValid() );
QVERIFY( !model->group(groupIndex).isNull() );
}
void AbstractKeyListModelTest::testIndexForGroup()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
const Key key = createTestKey("test@example.net");
const std::vector<KeyGroup> groups = {
createGroup("test", {key}, KeyGroup::UnknownSource),
createGroup("test", {key}, KeyGroup::GnuPGConfig),
createGroup("test", {key}, KeyGroup::ApplicationConfig, "test"),
createGroup("test", {key}, KeyGroup::ApplicationConfig, "otherConfigName")
};
model->setKeys({key});
model->setGroups(groups);
QSet<int> rows;
for (const KeyGroup &group : groups) {
const QModelIndex groupIndex = model->index(group);
QVERIFY( groupIndex.isValid() );
rows.insert(groupIndex.row());
}
QCOMPARE(rows.size(), 4);
}
void AbstractKeyListModelTest::testAddGroup()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
{
const QModelIndex resultIndex = model->addGroup(KeyGroup());
QVERIFY( !resultIndex.isValid() );
QCOMPARE( model->rowCount(), 0 );
}
{
const KeyGroup group = createGroup("test");
const QModelIndex resultIndex = model->addGroup(group);
QVERIFY( resultIndex.isValid() );
QCOMPARE( resultIndex.row(), 0 );
QCOMPARE( resultIndex.column(), 0 );
QVERIFY( !resultIndex.parent().isValid() );
QCOMPARE( model->rowCount(), 1 );
const KeyGroup groupInModel = model->group(model->index(0, 0));
QVERIFY( !groupInModel.isNull() );
QCOMPARE( groupInModel.id(), group.id() );
QCOMPARE( groupInModel.source(), group.source() );
QCOMPARE( groupInModel.name(), group.name() );
QCOMPARE( groupInModel.keys().size(), group.keys().size() );
}
}
void AbstractKeyListModelTest::testSetData()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
const Key key = createTestKey("test@example.net");
const KeyGroup group = createGroup("test");
model->setKeys({key});
model->setGroups({group});
const KeyGroup updatedGroup = createGroup("updated", {key});
QVERIFY( !model->setData(QModelIndex(), QVariant::fromValue(updatedGroup)) );
QVERIFY( !model->setData(model->index(key), QVariant::fromValue(updatedGroup)) );
const QModelIndex groupIndex = model->index(group);
QVERIFY( model->setData(groupIndex, QVariant::fromValue(updatedGroup)) );
const KeyGroup groupInModel = model->group(groupIndex);
QVERIFY( !groupInModel.isNull() );
QCOMPARE( groupInModel.name(), updatedGroup.name() );
QCOMPARE( groupInModel.keys().size(), updatedGroup.keys().size() );
}
+void AbstractKeyListModelTest::testRemoveGroup()
+{
+ QScopedPointer<AbstractKeyListModel> model(createModel());
+
+ const KeyGroup group = createGroup("test");
+ model->setGroups({group});
+
+ {
+ const bool result = model->removeGroup(KeyGroup());
+ QVERIFY( !result );
+ QCOMPARE( model->rowCount(), 1 );
+ }
+
+ {
+ const KeyGroup otherGroup = createGroup("test2");
+
+ const bool result = model->removeGroup(otherGroup);
+ QVERIFY( !result );
+ QCOMPARE( model->rowCount(), 1 );
+ }
+
+ {
+ const bool result = model->removeGroup(group);
+ QVERIFY( result );
+ QCOMPARE( model->rowCount(), 0 );
+ }
+}
+
void AbstractKeyListModelTest::testClear()
{
QScopedPointer<AbstractKeyListModel> model(createModel());
model->setGroups({
createGroup("test")
});
model->clear(AbstractKeyListModel::Keys);
QCOMPARE( model->rowCount(), 1 );
model->clear(AbstractKeyListModel::Groups);
QCOMPARE( model->rowCount(), 0 );
}
diff --git a/autotests/abstractkeylistmodeltest.h b/autotests/abstractkeylistmodeltest.h
index 0bd2b588..a2b243b0 100644
--- a/autotests/abstractkeylistmodeltest.h
+++ b/autotests/abstractkeylistmodeltest.h
@@ -1,39 +1,40 @@
/*
autotests/abstractkeylistmodeltest.h
This file is part of libkleopatra's test suite.
SPDX-FileCopyrightText: 2021 g10 Code GmbH
SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef ABSTRACTKEYLISTMODELTEST_H
#define ABSTRACTKEYLISTMODELTEST_H
#include <QObject>
namespace Kleo
{
class AbstractKeyListModel;
}
class AbstractKeyListModelTest: public QObject
{
Q_OBJECT
private Q_SLOTS:
void testCreation();
void testSetKeys();
void testSetGroups();
void testKeys();
void testIndex();
void testIndexForGroup();
void testAddGroup();
void testSetData();
+ void testRemoveGroup();
void testClear();
private:
virtual Kleo::AbstractKeyListModel *createModel() = 0;
};
#endif // ABSTRACTKEYLISTMODELTEST_H
diff --git a/src/models/keylistmodel.cpp b/src/models/keylistmodel.cpp
index c5d4c3f2..a49dbdf1 100644
--- a/src/models/keylistmodel.cpp
+++ b/src/models/keylistmodel.cpp
@@ -1,1344 +1,1388 @@
/* -*- mode: c++; c-basic-offset:4 -*-
models/keylistmodel.cpp
This file is part of libkleopatra, the KDE keymanagement library
SPDX-FileCopyrightText: 2007 Klarälvdalens Datakonsult AB
SPDX-FileCopyrightText: 2021 g10 Code GmbH
SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "keylistmodel.h"
#include "keycache.h"
#include "keylist.h"
#include "kleo/keygroup.h"
#include "kleo/predicates.h"
#include "kleo/keyfiltermanager.h"
#include "kleo/keyfilter.h"
#include "utils/formatting.h"
#ifdef KLEO_MODEL_TEST
# include <QAbstractItemModelTester>
#endif
#include <Libkleo/KeyFilterManager>
#include <Libkleo/KeyFilter>
#include <KLocalizedString>
#include <QFont>
#include <QColor>
#include <QHash>
#include <QIcon>
#include <QDate>
#include <gpgme++/key.h>
#ifndef Q_MOC_RUN // QTBUG-22829
#include <boost/graph/topological_sort.hpp>
#include <boost/graph/adjacency_list.hpp>
#endif
#include <algorithm>
#include <map>
#include <set>
#include <iterator>
#include <gpgme++/gpgmepp_version.h>
#if GPGMEPP_VERSION >= 0x10E00 // 1.14.0
# define GPGME_HAS_REMARKS
#endif
using namespace GpgME;
using namespace Kleo;
using namespace Kleo::KeyList;
Q_DECLARE_METATYPE(GpgME::Key)
Q_DECLARE_METATYPE(KeyGroup)
class AbstractKeyListModel::Private
{
AbstractKeyListModel *const q;
public:
explicit Private(AbstractKeyListModel *qq);
void updateFromKeyCache();
public:
int m_toolTipOptions = Formatting::Validity;
mutable QHash<const char *, QVariant> prettyEMailCache;
mutable QHash<const char *, QVariant> remarksCache;
bool m_useKeyCache = false;
KeyList::Options m_keyListOptions = AllKeys;
std::vector<GpgME::Key> m_remarkKeys;
};
AbstractKeyListModel::Private::Private(Kleo::AbstractKeyListModel *qq)
: q(qq)
{
}
void AbstractKeyListModel::Private::updateFromKeyCache()
{
if (m_useKeyCache) {
q->setKeys(m_keyListOptions == SecretKeysOnly ? KeyCache::instance()->secretKeys() : KeyCache::instance()->keys());
if (m_keyListOptions == IncludeGroups) {
q->setGroups(KeyCache::instance()->groups());
}
}
}
AbstractKeyListModel::AbstractKeyListModel(QObject *p)
: QAbstractItemModel(p), KeyListModelInterface(), d(new Private(this))
{
}
AbstractKeyListModel::~AbstractKeyListModel() {}
void AbstractKeyListModel::setToolTipOptions(int opts)
{
d->m_toolTipOptions = opts;
}
int AbstractKeyListModel::toolTipOptions() const
{
return d->m_toolTipOptions;
}
void AbstractKeyListModel::setRemarkKeys(const std::vector<GpgME::Key> &keys)
{
d->m_remarkKeys = keys;
}
std::vector<GpgME::Key> AbstractKeyListModel::remarkKeys() const
{
return d->m_remarkKeys;
}
Key AbstractKeyListModel::key(const QModelIndex &idx) const
{
if (idx.isValid()) {
return doMapToKey(idx);
} else {
return Key::null;
}
}
std::vector<Key> AbstractKeyListModel::keys(const QList<QModelIndex> &indexes) const
{
std::vector<Key> result;
result.reserve(indexes.size());
std::transform(indexes.begin(), indexes.end(),
std::back_inserter(result),
[this](const QModelIndex &idx) {
return this->key(idx);
});
result.erase(std::remove_if(result.begin(), result.end(), std::mem_fn(&GpgME::Key::isNull)), result.end());
_detail::remove_duplicates_by_fpr(result);
return result;
}
KeyGroup AbstractKeyListModel::group(const QModelIndex &idx) const
{
if (idx.isValid()) {
return doMapToGroup(idx);
} else {
return KeyGroup();
}
}
QModelIndex AbstractKeyListModel::index(const Key &key) const
{
return index(key, 0);
}
QModelIndex AbstractKeyListModel::index(const Key &key, int col) const
{
if (key.isNull() || col < 0 || col >= NumColumns) {
return {};
} else {
return doMapFromKey(key, col);
}
}
QList<QModelIndex> AbstractKeyListModel::indexes(const std::vector<Key> &keys) const
{
QList<QModelIndex> result;
result.reserve(keys.size());
std::transform(keys.begin(), keys.end(),
std::back_inserter(result),
[this](const Key &key) {
return this->index(key);
});
return result;
}
QModelIndex AbstractKeyListModel::index(const KeyGroup &group) const
{
return index(group, 0);
}
QModelIndex AbstractKeyListModel::index(const KeyGroup &group, int col) const
{
if (group.isNull() || col < 0 || col >= NumColumns) {
return {};
} else {
return doMapFromGroup(group, col);
}
}
void AbstractKeyListModel::setKeys(const std::vector<Key> &keys)
{
clear(Keys);
addKeys(keys);
}
QModelIndex AbstractKeyListModel::addKey(const Key &key)
{
const std::vector<Key> vec(1, key);
const QList<QModelIndex> l = doAddKeys(vec);
return l.empty() ? QModelIndex() : l.front();
}
void AbstractKeyListModel::removeKey(const Key &key)
{
if (key.isNull()) {
return;
}
doRemoveKey(key);
d->prettyEMailCache.remove(key.primaryFingerprint());
d->remarksCache.remove(key.primaryFingerprint());
}
QList<QModelIndex> AbstractKeyListModel::addKeys(const std::vector<Key> &keys)
{
std::vector<Key> sorted;
sorted.reserve(keys.size());
std::remove_copy_if(keys.begin(), keys.end(),
std::back_inserter(sorted),
std::mem_fn(&Key::isNull));
std::sort(sorted.begin(), sorted.end(), _detail::ByFingerprint<std::less>());
return doAddKeys(sorted);
}
void AbstractKeyListModel::setGroups(const std::vector<KeyGroup> &groups)
{
clear(Groups);
doSetGroups(groups);
}
QModelIndex AbstractKeyListModel::addGroup(const KeyGroup &group)
{
if (group.isNull()) {
return QModelIndex();
}
return doAddGroup(group);
}
+bool AbstractKeyListModel::removeGroup(const KeyGroup &group)
+{
+ if (group.isNull()) {
+ return false;
+ }
+ return doRemoveGroup(group);
+}
+
void AbstractKeyListModel::clear(ItemTypes types)
{
beginResetModel();
doClear(types);
if (types & Keys) {
d->prettyEMailCache.clear();
d->remarksCache.clear();
}
endResetModel();
}
int AbstractKeyListModel::columnCount(const QModelIndex &) const
{
return NumColumns;
}
QVariant AbstractKeyListModel::headerData(int section, Qt::Orientation o, int role) const
{
if (o == Qt::Horizontal)
if (role == Qt::DisplayRole || role == Qt::EditRole || role == Qt::ToolTipRole)
switch (section) {
case PrettyName: return i18n("Name");
case PrettyEMail: return i18n("E-Mail");
case Validity: return i18n("User-IDs");
case ValidFrom: return i18n("Valid From");
case ValidUntil: return i18n("Valid Until");
case TechnicalDetails: return i18n("Protocol");
case ShortKeyID: return i18n("Key-ID");
case KeyID: return i18n("Key-ID");
case Fingerprint: return i18n("Fingerprint");
case Issuer: return i18n("Issuer");
case SerialNumber: return i18n("Serial Number");
case Origin: return i18n("Origin");
case LastUpdate: return i18n("Last Update");
case OwnerTrust: return i18n("Certification Trust");
case Remarks: return i18n("Tags");
case NumColumns:;
}
return QVariant();
}
static QVariant returnIfValid(const QColor &t)
{
if (t.isValid()) {
return t;
} else {
return QVariant();
}
}
static QVariant returnIfValid(const QIcon &t)
{
if (!t.isNull()) {
return t;
} else {
return QVariant();
}
}
QVariant AbstractKeyListModel::data(const QModelIndex &index, int role) const
{
const Key key = this->key(index);
if (!key.isNull()) {
return data(key, index.column(), role);
}
const KeyGroup group = this->group(index);
if (!group.isNull()) {
return data(group, index.column(), role);
}
return QVariant();
}
QVariant AbstractKeyListModel::data(const Key &key, int column, int role) const
{
if (role == Qt::DisplayRole || role == Qt::EditRole) {
switch (column) {
case PrettyName:
return Formatting::prettyName(key);
case PrettyEMail:
if (const char *const fpr = key.primaryFingerprint()) {
const QHash<const char *, QVariant>::const_iterator it = d->prettyEMailCache.constFind(fpr);
if (it != d->prettyEMailCache.constEnd()) {
return *it;
} else {
return d->prettyEMailCache[fpr] = Formatting::prettyEMail(key);
}
} else {
return QVariant();
}
case Validity:
return Formatting::complianceStringShort(key);
case ValidFrom:
if (role == Qt::EditRole) {
return Formatting::creationDate(key);
} else {
return Formatting::creationDateString(key);
}
case ValidUntil:
if (role == Qt::EditRole) {
return Formatting::expirationDate(key);
} else {
return Formatting::expirationDateString(key);
}
case TechnicalDetails:
return Formatting::type(key);
case ShortKeyID:
return QString::fromLatin1(key.shortKeyID());
case KeyID:
return Formatting::prettyID(key.keyID());
case Summary:
return Formatting::summaryLine(key);
case Fingerprint:
return Formatting::prettyID(key.primaryFingerprint());
case Issuer:
return QString::fromUtf8(key.issuerName());
case Origin:
return Formatting::origin(key.origin());
case LastUpdate:
return Formatting::dateString(key.lastUpdate());
case SerialNumber:
return QString::fromUtf8(key.issuerSerial());
case OwnerTrust:
return Formatting::ownerTrustShort(key.ownerTrust());
case Remarks:
#ifdef GPGME_HAS_REMARKS
{
const char *const fpr = key.primaryFingerprint();
if (fpr && key.protocol() == GpgME::OpenPGP && key.numUserIDs() &&
d->m_remarkKeys.size()) {
if (!(key.keyListMode() & GpgME::SignatureNotations)) {
return i18n("Loading...");
}
const QHash<const char *, QVariant>::const_iterator it = d->remarksCache.constFind(fpr);
if (it != d->remarksCache.constEnd()) {
return *it;
} else {
GpgME::Error err;
const auto remarks = key.userID(0).remarks(d->m_remarkKeys, err);
if (remarks.size() == 1) {
const auto remark = QString::fromStdString(remarks[0]);
return d->remarksCache[fpr] = remark;
} else {
QStringList remarkList;
remarkList.reserve(remarks.size());
for (const auto &rem: remarks) {
remarkList << QString::fromStdString(rem);
}
const auto remark = remarkList.join(QStringLiteral("; "));
return d->remarksCache[fpr] = remark;
}
}
} else {
return QVariant();
}
}
#endif
return QVariant();
case NumColumns:
break;
}
} else if (role == Qt::ToolTipRole) {
return Formatting::toolTip(key, toolTipOptions());
} else if (role == Qt::FontRole) {
return KeyFilterManager::instance()->font(key, (column == ShortKeyID || column == KeyID || column == Fingerprint) ? QFont(QStringLiteral("monospace")) : QFont());
} else if (role == Qt::DecorationRole) {
return column == Icon ? returnIfValid(KeyFilterManager::instance()->icon(key)) : QVariant();
} else if (role == Qt::BackgroundRole) {
return returnIfValid(KeyFilterManager::instance()->bgColor(key));
} else if (role == Qt::ForegroundRole) {
return returnIfValid(KeyFilterManager::instance()->fgColor(key));
} else if (role == FingerprintRole) {
return QString::fromLatin1(key.primaryFingerprint());
} else if (role == KeyRole) {
return QVariant::fromValue(key);
}
return QVariant();
}
QVariant AbstractKeyListModel::data(const KeyGroup &group, int column, int role) const
{
if (role == Qt::DisplayRole || role == Qt::EditRole) {
switch (column) {
case PrettyName:
return group.name();
case PrettyEMail:
return QVariant();
case Validity:
return Formatting::complianceStringShort(group);
case ValidFrom:
return QString();
case ValidUntil:
return QString();
case TechnicalDetails:
return Formatting::type(group);
case ShortKeyID:
return QString();
case KeyID:
return QString();
case Summary:
return Formatting::summaryLine(group); // used for filtering
case Fingerprint:
return QString();
case Issuer:
return QString();
case Origin:
return QString();
case LastUpdate:
return QString();
case SerialNumber:
return QString();
case OwnerTrust:
return QString();
case Remarks:
return QVariant();
case NumColumns:
break;
}
} else if (role == Qt::ToolTipRole) {
return Formatting::toolTip(group, toolTipOptions());
} else if (role == Qt::FontRole) {
return QFont();
} else if (role == Qt::DecorationRole) {
return column == Icon ? QIcon::fromTheme("group") : QVariant();
} else if (role == Qt::BackgroundRole) {
} else if (role == Qt::ForegroundRole) {
} else if (role == GroupRole) {
return QVariant::fromValue(group);
}
return QVariant();
}
bool AbstractKeyListModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
Q_UNUSED(role)
Q_ASSERT(value.canConvert<KeyGroup>());
if (value.canConvert<KeyGroup>()) {
const KeyGroup group = value.value<KeyGroup>();
return doSetGroupData(index, group);
}
return false;
}
namespace
{
template <typename Base>
class TableModelMixin : public Base
{
public:
explicit TableModelMixin(QObject *p = nullptr) : Base(p) {}
~TableModelMixin() {}
using Base::index;
QModelIndex index(int row, int column, const QModelIndex &pidx = QModelIndex()) const override
{
return this->hasIndex(row, column, pidx) ? this->createIndex(row, column, nullptr) : QModelIndex();
}
private:
QModelIndex parent(const QModelIndex &) const override
{
return QModelIndex();
}
bool hasChildren(const QModelIndex &pidx) const override
{
return (pidx.model() == this || !pidx.isValid()) && this->rowCount(pidx) > 0 && this->columnCount(pidx) > 0;
}
};
class FlatKeyListModel
#ifndef Q_MOC_RUN
: public TableModelMixin<AbstractKeyListModel>
#else
: public AbstractKeyListModel
#endif
{
Q_OBJECT
public:
explicit FlatKeyListModel(QObject *parent = nullptr);
~FlatKeyListModel() override;
int rowCount(const QModelIndex &pidx) const override
{
return pidx.isValid() ? 0 : mKeysByFingerprint.size() + mGroups.size();
}
private:
Key doMapToKey(const QModelIndex &index) const override;
QModelIndex doMapFromKey(const Key &key, int col) const override;
QList<QModelIndex> doAddKeys(const std::vector<Key> &keys) override;
void doRemoveKey(const Key &key) override;
KeyGroup doMapToGroup(const QModelIndex &index) const override;
QModelIndex doMapFromGroup(const KeyGroup &group, int column) const override;
void doSetGroups(const std::vector<KeyGroup> &groups) override;
QModelIndex doAddGroup(const KeyGroup &group) override;
bool doSetGroupData(const QModelIndex &index, const KeyGroup &group) override;
+ bool doRemoveGroup(const KeyGroup &group) override;
void doClear(ItemTypes types) override
{
if (types & Keys) {
mKeysByFingerprint.clear();
}
if (types & Groups) {
mGroups.clear();
}
}
int firstGroupRow() const
{
return mKeysByFingerprint.size();
}
int lastGroupRow() const
{
return mKeysByFingerprint.size() + mGroups.size() - 1;
}
int groupIndex(const QModelIndex &index) const
{
if (!index.isValid()
|| index.row() < firstGroupRow() || index.row() > lastGroupRow()
|| index.column() >= NumColumns) {
return -1;
}
return index.row() - firstGroupRow();
}
private:
std::vector<Key> mKeysByFingerprint;
std::vector<KeyGroup> mGroups;
};
class HierarchicalKeyListModel : public AbstractKeyListModel
{
Q_OBJECT
public:
explicit HierarchicalKeyListModel(QObject *parent = nullptr);
~HierarchicalKeyListModel() override;
int rowCount(const QModelIndex &pidx) const override;
using AbstractKeyListModel::index;
QModelIndex index(int row, int col, const QModelIndex &pidx) const override;
QModelIndex parent(const QModelIndex &idx) const override;
bool hasChildren(const QModelIndex &pidx) const override
{
return rowCount(pidx) > 0;
}
private:
Key doMapToKey(const QModelIndex &index) const override;
QModelIndex doMapFromKey(const Key &key, int col) const override;
QList<QModelIndex> doAddKeys(const std::vector<Key> &keys) override;
void doRemoveKey(const Key &key) override;
KeyGroup doMapToGroup(const QModelIndex &index) const override;
QModelIndex doMapFromGroup(const KeyGroup &group, int column) const override;
void doSetGroups(const std::vector<KeyGroup> &groups) override;
QModelIndex doAddGroup(const KeyGroup &group) override;
bool doSetGroupData(const QModelIndex &index, const KeyGroup &group) override;
+ bool doRemoveGroup(const KeyGroup &group) override;
void doClear(ItemTypes types) override
{
if (types & Keys) {
mTopLevels.clear();
mKeysByFingerprint.clear();
mKeysByExistingParent.clear();
mKeysByNonExistingParent.clear();
}
if (types & Groups) {
mGroups.clear();
}
}
int firstGroupRow() const
{
return mTopLevels.size();
}
int lastGroupRow() const
{
return mTopLevels.size() + mGroups.size() - 1;
}
int groupIndex(const QModelIndex &index) const
{
if (!index.isValid()
|| index.row() < firstGroupRow() || index.row() > lastGroupRow()
|| index.column() >= NumColumns) {
return -1;
}
return index.row() - firstGroupRow();
}
private:
void addTopLevelKey(const Key &key);
void addKeyWithParent(const char *issuer_fpr, const Key &key);
void addKeyWithoutParent(const char *issuer_fpr, const Key &key);
private:
typedef std::map< std::string, std::vector<Key> > Map;
std::vector<Key> mKeysByFingerprint; // all keys
Map mKeysByExistingParent, mKeysByNonExistingParent; // parent->child map
std::vector<Key> mTopLevels; // all roots + parent-less
std::vector<KeyGroup> mGroups;
};
static const char *cleanChainID(const Key &key)
{
if (key.isRoot()) {
return "";
}
if (const char *chid = key.chainID()) {
return chid;
}
return "";
}
}
FlatKeyListModel::FlatKeyListModel(QObject *p)
: TableModelMixin<AbstractKeyListModel>(p)
{
}
FlatKeyListModel::~FlatKeyListModel() {}
Key FlatKeyListModel::doMapToKey(const QModelIndex &idx) const
{
Q_ASSERT(idx.isValid());
if (static_cast<unsigned>(idx.row()) < mKeysByFingerprint.size() && idx.column() < NumColumns) {
return mKeysByFingerprint[ idx.row() ];
} else {
return Key::null;
}
}
QModelIndex FlatKeyListModel::doMapFromKey(const Key &key, int col) const
{
Q_ASSERT(!key.isNull());
const std::vector<Key>::const_iterator it
= std::lower_bound(mKeysByFingerprint.begin(), mKeysByFingerprint.end(),
key, _detail::ByFingerprint<std::less>());
if (it == mKeysByFingerprint.end() || !_detail::ByFingerprint<std::equal_to>()(*it, key)) {
return {};
} else {
return createIndex(it - mKeysByFingerprint.begin(), col);
}
}
QList<QModelIndex> FlatKeyListModel::doAddKeys(const std::vector<Key> &keys)
{
Q_ASSERT(std::is_sorted(keys.begin(), keys.end(), _detail::ByFingerprint<std::less>()));
if (keys.empty()) {
return QList<QModelIndex>();
}
for (auto it = keys.begin(), end = keys.end(); it != end; ++it) {
// find an insertion point:
const std::vector<Key>::iterator pos = std::upper_bound(mKeysByFingerprint.begin(), mKeysByFingerprint.end(), *it, _detail::ByFingerprint<std::less>());
const unsigned int idx = std::distance(mKeysByFingerprint.begin(), pos);
if (idx > 0 && qstrcmp(mKeysByFingerprint[idx - 1].primaryFingerprint(), it->primaryFingerprint()) == 0) {
// key existed before - replace with new one:
mKeysByFingerprint[idx - 1] = *it;
Q_EMIT dataChanged(createIndex(idx - 1, 0), createIndex(idx - 1, NumColumns - 1));
} else {
// new key - insert:
beginInsertRows(QModelIndex(), idx, idx);
mKeysByFingerprint.insert(pos, *it);
endInsertRows();
}
}
return indexes(keys);
}
void FlatKeyListModel::doRemoveKey(const Key &key)
{
const std::vector<Key>::iterator it
= qBinaryFind(mKeysByFingerprint.begin(), mKeysByFingerprint.end(),
key, _detail::ByFingerprint<std::less>());
if (it == mKeysByFingerprint.end()) {
return;
}
const unsigned int row = std::distance(mKeysByFingerprint.begin(), it);
beginRemoveRows(QModelIndex(), row, row);
mKeysByFingerprint.erase(it);
endRemoveRows();
}
KeyGroup FlatKeyListModel::doMapToGroup(const QModelIndex &idx) const
{
Q_ASSERT(idx.isValid());
if (static_cast<unsigned>(idx.row()) >= mKeysByFingerprint.size()
&& static_cast<unsigned>(idx.row()) < mKeysByFingerprint.size() + mGroups.size()
&& idx.column() < NumColumns) {
return mGroups[ idx.row() - mKeysByFingerprint.size() ];
} else {
return KeyGroup();
}
}
QModelIndex FlatKeyListModel::doMapFromGroup(const KeyGroup &group, int column) const
{
Q_ASSERT(!group.isNull());
const auto it = std::find_if(mGroups.cbegin(), mGroups.cend(),
[group](const KeyGroup &g) {
return g.source() == group.source() && g.id() == group.id();
});
if (it == mGroups.cend()) {
return QModelIndex();
} else {
return createIndex(it - mGroups.cbegin() + mKeysByFingerprint.size(), column);
}
}
void FlatKeyListModel::doSetGroups(const std::vector<KeyGroup> &groups)
{
Q_ASSERT(mGroups.empty()); // ensure that groups have been cleared
const int first = mKeysByFingerprint.size();
const int last = first + groups.size() - 1;
beginInsertRows(QModelIndex(), first, last);
mGroups = groups;
endInsertRows();
}
QModelIndex FlatKeyListModel::doAddGroup(const KeyGroup &group)
{
const int newRow = lastGroupRow() + 1;
beginInsertRows(QModelIndex(), newRow, newRow);
mGroups.push_back(group);
endInsertRows();
return createIndex(newRow, 0);
}
bool FlatKeyListModel::doSetGroupData(const QModelIndex &index, const KeyGroup &group)
{
if (group.isNull()) {
return false;
}
const int groupIndex = this->groupIndex(index);
if (groupIndex == -1) {
return false;
}
mGroups[groupIndex] = group;
Q_EMIT dataChanged(createIndex(index.row(), 0), createIndex(index.row(), NumColumns - 1));
return true;
}
+bool FlatKeyListModel::doRemoveGroup(const KeyGroup &group)
+{
+ const QModelIndex modelIndex = doMapFromGroup(group, 0);
+ if (!modelIndex.isValid()) {
+ return false;
+ }
+ const int groupIndex = this->groupIndex(modelIndex);
+ Q_ASSERT(groupIndex != -1);
+ if (groupIndex == -1) {
+ return false;
+ }
+ beginRemoveRows(QModelIndex(), modelIndex.row(), modelIndex.row());
+ mGroups.erase(mGroups.begin() + groupIndex);
+ endRemoveRows();
+ return true;
+}
+
HierarchicalKeyListModel::HierarchicalKeyListModel(QObject *p)
: AbstractKeyListModel(p),
mKeysByFingerprint(),
mKeysByExistingParent(),
mKeysByNonExistingParent(),
mTopLevels()
{
}
HierarchicalKeyListModel::~HierarchicalKeyListModel() {}
int HierarchicalKeyListModel::rowCount(const QModelIndex &pidx) const
{
// toplevel item:
if (!pidx.isValid()) {
return mTopLevels.size() + mGroups.size();
}
if (pidx.column() != 0) {
return 0;
}
// non-toplevel item - find the number of subjects for this issuer:
const Key issuer = this->key(pidx);
const char *const fpr = issuer.primaryFingerprint();
if (!fpr || !*fpr) {
return 0;
}
const Map::const_iterator it = mKeysByExistingParent.find(fpr);
if (it == mKeysByExistingParent.end()) {
return 0;
}
return it->second.size();
}
QModelIndex HierarchicalKeyListModel::index(int row, int col, const QModelIndex &pidx) const
{
if (row < 0 || col < 0 || col >= NumColumns) {
return {};
}
// toplevel item:
if (!pidx.isValid()) {
if (static_cast<unsigned>(row) < mTopLevels.size()) {
return index(mTopLevels[row], col);
} else if (static_cast<unsigned>(row) < mTopLevels.size() + mGroups.size()) {
return index(mGroups[row - mTopLevels.size()], col);
} else {
return QModelIndex();
}
}
// non-toplevel item - find the row'th subject of this key:
const Key issuer = this->key(pidx);
const char *const fpr = issuer.primaryFingerprint();
if (!fpr || !*fpr) {
return QModelIndex();
}
const Map::const_iterator it = mKeysByExistingParent.find(fpr);
if (it == mKeysByExistingParent.end() || static_cast<unsigned>(row) >= it->second.size()) {
return QModelIndex();
}
return index(it->second[row], col);
}
QModelIndex HierarchicalKeyListModel::parent(const QModelIndex &idx) const
{
const Key key = this->key(idx);
if (key.isNull() || key.isRoot()) {
return {};
}
const std::vector<Key>::const_iterator it
= qBinaryFind(mKeysByFingerprint.begin(), mKeysByFingerprint.end(),
cleanChainID(key), _detail::ByFingerprint<std::less>());
return it != mKeysByFingerprint.end() ? index(*it) : QModelIndex();
}
Key HierarchicalKeyListModel::doMapToKey(const QModelIndex &idx) const
{
if (!idx.isValid()) {
return Key::null;
}
const char *const issuer_fpr = static_cast<const char *>(idx.internalPointer());
if (!issuer_fpr || !*issuer_fpr) {
// top-level:
if (static_cast<unsigned>(idx.row()) >= mTopLevels.size()) {
return Key::null;
} else {
return mTopLevels[idx.row()];
}
}
// non-toplevel:
const Map::const_iterator it
= mKeysByExistingParent.find(issuer_fpr);
if (it == mKeysByExistingParent.end() || static_cast<unsigned>(idx.row()) >= it->second.size()) {
return Key::null;
}
return it->second[idx.row()];
}
QModelIndex HierarchicalKeyListModel::doMapFromKey(const Key &key, int col) const
{
if (key.isNull()) {
return {};
}
const char *issuer_fpr = cleanChainID(key);
// we need to look in the toplevels list,...
const std::vector<Key> *v = &mTopLevels;
if (issuer_fpr && *issuer_fpr) {
const std::map< std::string, std::vector<Key> >::const_iterator it
= mKeysByExistingParent.find(issuer_fpr);
// ...unless we find an existing parent:
if (it != mKeysByExistingParent.end()) {
v = &it->second;
} else {
issuer_fpr = nullptr; // force internalPointer to zero for toplevels
}
}
const std::vector<Key>::const_iterator it
= std::lower_bound(v->begin(), v->end(), key, _detail::ByFingerprint<std::less>());
if (it == v->end() || !_detail::ByFingerprint<std::equal_to>()(*it, key)) {
return QModelIndex();
}
const unsigned int row = std::distance(v->begin(), it);
return createIndex(row, col, const_cast<char * /* thanks, Trolls :/ */ >(issuer_fpr));
}
void HierarchicalKeyListModel::addKeyWithParent(const char *issuer_fpr, const Key &key)
{
Q_ASSERT(issuer_fpr); Q_ASSERT(*issuer_fpr); Q_ASSERT(!key.isNull());
std::vector<Key> &subjects = mKeysByExistingParent[issuer_fpr];
// find insertion point:
const std::vector<Key>::iterator it = std::lower_bound(subjects.begin(), subjects.end(), key, _detail::ByFingerprint<std::less>());
const int row = std::distance(subjects.begin(), it);
if (it != subjects.end() && qstricmp(it->primaryFingerprint(), key.primaryFingerprint()) == 0) {
// exists -> replace
*it = key;
Q_EMIT dataChanged(createIndex(row, 0, const_cast<char *>(issuer_fpr)), createIndex(row, NumColumns - 1, const_cast<char *>(issuer_fpr)));
} else {
// doesn't exist -> insert
const std::vector<Key>::const_iterator pos = qBinaryFind(mKeysByFingerprint.begin(), mKeysByFingerprint.end(), issuer_fpr, _detail::ByFingerprint<std::less>());
Q_ASSERT(pos != mKeysByFingerprint.end());
beginInsertRows(index(*pos), row, row);
subjects.insert(it, key);
endInsertRows();
}
}
void HierarchicalKeyListModel::addKeyWithoutParent(const char *issuer_fpr, const Key &key)
{
Q_ASSERT(issuer_fpr); Q_ASSERT(*issuer_fpr); Q_ASSERT(!key.isNull());
std::vector<Key> &subjects = mKeysByNonExistingParent[issuer_fpr];
// find insertion point:
const std::vector<Key>::iterator it = std::lower_bound(subjects.begin(), subjects.end(), key, _detail::ByFingerprint<std::less>());
if (it != subjects.end() && qstricmp(it->primaryFingerprint(), key.primaryFingerprint()) == 0)
// exists -> replace
{
*it = key;
} else
// doesn't exist -> insert
{
subjects.insert(it, key);
}
addTopLevelKey(key);
}
void HierarchicalKeyListModel::addTopLevelKey(const Key &key)
{
// find insertion point:
const std::vector<Key>::iterator it = std::lower_bound(mTopLevels.begin(), mTopLevels.end(), key, _detail::ByFingerprint<std::less>());
const int row = std::distance(mTopLevels.begin(), it);
if (it != mTopLevels.end() && qstricmp(it->primaryFingerprint(), key.primaryFingerprint()) == 0) {
// exists -> replace
*it = key;
Q_EMIT dataChanged(createIndex(row, 0), createIndex(row, NumColumns - 1));
} else {
// doesn't exist -> insert
beginInsertRows(QModelIndex(), row, row);
mTopLevels.insert(it, key);
endInsertRows();
}
}
// sorts 'keys' such that parent always come before their children:
static std::vector<Key> topological_sort(const std::vector<Key> &keys)
{
boost::adjacency_list<> graph(keys.size());
// add edges from children to parents:
for (unsigned int i = 0, end = keys.size(); i != end; ++i) {
const char *const issuer_fpr = cleanChainID(keys[i]);
if (!issuer_fpr || !*issuer_fpr) {
continue;
}
const std::vector<Key>::const_iterator it
= qBinaryFind(keys.begin(), keys.end(), issuer_fpr, _detail::ByFingerprint<std::less>());
if (it == keys.end()) {
continue;
}
add_edge(i, std::distance(keys.begin(), it), graph);
}
std::vector<int> order;
order.reserve(keys.size());
topological_sort(graph, std::back_inserter(order));
Q_ASSERT(order.size() == keys.size());
std::vector<Key> result;
result.reserve(keys.size());
for (int i : qAsConst(order)) {
result.push_back(keys[i]);
}
return result;
}
QList<QModelIndex> HierarchicalKeyListModel::doAddKeys(const std::vector<Key> &keys)
{
Q_ASSERT(std::is_sorted(keys.begin(), keys.end(), _detail::ByFingerprint<std::less>()));
if (keys.empty()) {
return QList<QModelIndex>();
}
const std::vector<Key> oldKeys = mKeysByFingerprint;
std::vector<Key> merged;
merged.reserve(keys.size() + mKeysByFingerprint.size());
std::set_union(keys.begin(), keys.end(),
mKeysByFingerprint.begin(), mKeysByFingerprint.end(),
std::back_inserter(merged), _detail::ByFingerprint<std::less>());
mKeysByFingerprint = merged;
std::set<Key, _detail::ByFingerprint<std::less> > changedParents;
const auto topologicalSortedList = topological_sort(keys);
for (const Key &key : topologicalSortedList) {
// check to see whether this key is a parent for a previously parent-less group:
const char *const fpr = key.primaryFingerprint();
if (!fpr || !*fpr) {
continue;
}
const bool keyAlreadyExisted = qBinaryFind(oldKeys.begin(), oldKeys.end(), key, _detail::ByFingerprint<std::less>()) != oldKeys.end();
const Map::iterator it = mKeysByNonExistingParent.find(fpr);
const std::vector<Key> children = it != mKeysByNonExistingParent.end() ? it->second : std::vector<Key>();
if (it != mKeysByNonExistingParent.end()) {
mKeysByNonExistingParent.erase(it);
}
// Step 1: For new keys, remove children from toplevel:
if (!keyAlreadyExisted) {
auto last = mTopLevels.begin();
auto lastFP = mKeysByFingerprint.begin();
for (const Key &k : qAsConst(children)) {
last = qBinaryFind(last, mTopLevels.end(), k, _detail::ByFingerprint<std::less>());
Q_ASSERT(last != mTopLevels.end());
const int row = std::distance(mTopLevels.begin(), last);
lastFP = qBinaryFind(lastFP, mKeysByFingerprint.end(), k, _detail::ByFingerprint<std::less>());
Q_ASSERT(lastFP != mKeysByFingerprint.end());
Q_EMIT rowAboutToBeMoved(QModelIndex(), row);
beginRemoveRows(QModelIndex(), row, row);
last = mTopLevels.erase(last);
lastFP = mKeysByFingerprint.erase(lastFP);
endRemoveRows();
}
}
// Step 2: add/update key
const char *const issuer_fpr = cleanChainID(key);
if (!issuer_fpr || !*issuer_fpr)
// root or something...
{
addTopLevelKey(key);
} else if (std::binary_search(mKeysByFingerprint.begin(), mKeysByFingerprint.end(), issuer_fpr, _detail::ByFingerprint<std::less>()))
// parent exists...
{
addKeyWithParent(issuer_fpr, key);
} else
// parent doesn't exist yet...
{
addKeyWithoutParent(issuer_fpr, key);
}
const QModelIndex key_idx = index(key);
QModelIndex key_parent = key_idx.parent();
while (key_parent.isValid()) {
changedParents.insert(doMapToKey(key_parent));
key_parent = key_parent.parent();
}
// Step 3: Add children to new parent ( == key )
if (!keyAlreadyExisted && !children.empty()) {
addKeys(children);
const QModelIndex new_parent = index(key);
// Q_EMIT the rowMoved() signals in reversed direction, so the
// implementation can use a stack for mapping.
for (int i = children.size() - 1; i >= 0; --i) {
Q_EMIT rowMoved(new_parent, i);
}
}
}
//Q_EMIT dataChanged for all parents with new children. This triggers KeyListSortFilterProxyModel to
//show a parent node if it just got children matching the proxy's filter
for (const Key &i : qAsConst(changedParents)) {
const QModelIndex idx = index(i);
if (idx.isValid()) {
Q_EMIT dataChanged(idx.sibling(idx.row(), 0), idx.sibling(idx.row(), NumColumns - 1));
}
}
return indexes(keys);
}
void HierarchicalKeyListModel::doRemoveKey(const Key &key)
{
const QModelIndex idx = index(key);
if (!idx.isValid()) {
return;
}
const char *const fpr = key.primaryFingerprint();
if (mKeysByExistingParent.find(fpr) != mKeysByExistingParent.end()) {
//handle non-leave nodes:
std::vector<Key> keys = mKeysByFingerprint;
const std::vector<Key>::iterator it = qBinaryFind(keys.begin(), keys.end(),
key, _detail::ByFingerprint<std::less>());
if (it == keys.end()) {
return;
}
keys.erase(it);
// FIXME for simplicity, we just clear the model and re-add all keys minus the removed one. This is suboptimal,
// but acceptable given that deletion of non-leave nodes is rather rare.
clear(Keys);
addKeys(keys);
return;
}
//handle leave nodes:
const std::vector<Key>::iterator it = qBinaryFind(mKeysByFingerprint.begin(), mKeysByFingerprint.end(),
key, _detail::ByFingerprint<std::less>());
Q_ASSERT(it != mKeysByFingerprint.end());
Q_ASSERT(mKeysByNonExistingParent.find(fpr) == mKeysByNonExistingParent.end());
Q_ASSERT(mKeysByExistingParent.find(fpr) == mKeysByExistingParent.end());
beginRemoveRows(parent(idx), idx.row(), idx.row());
mKeysByFingerprint.erase(it);
const char *const issuer_fpr = cleanChainID(key);
const std::vector<Key>::iterator tlIt = qBinaryFind(mTopLevels.begin(), mTopLevels.end(), key, _detail::ByFingerprint<std::less>());
if (tlIt != mTopLevels.end()) {
mTopLevels.erase(tlIt);
}
if (issuer_fpr && *issuer_fpr) {
const Map::iterator nexIt = mKeysByNonExistingParent.find(issuer_fpr);
if (nexIt != mKeysByNonExistingParent.end()) {
const std::vector<Key>::iterator eit = qBinaryFind(nexIt->second.begin(), nexIt->second.end(), key, _detail::ByFingerprint<std::less>());
if (eit != nexIt->second.end()) {
nexIt->second.erase(eit);
}
if (nexIt->second.empty()) {
mKeysByNonExistingParent.erase(nexIt);
}
}
const Map::iterator exIt = mKeysByExistingParent.find(issuer_fpr);
if (exIt != mKeysByExistingParent.end()) {
const std::vector<Key>::iterator eit = qBinaryFind(exIt->second.begin(), exIt->second.end(), key, _detail::ByFingerprint<std::less>());
if (eit != exIt->second.end()) {
exIt->second.erase(eit);
}
if (exIt->second.empty()) {
mKeysByExistingParent.erase(exIt);
}
}
}
endRemoveRows();
}
KeyGroup HierarchicalKeyListModel::doMapToGroup(const QModelIndex &idx) const
{
Q_ASSERT(idx.isValid());
if (idx.parent().isValid()) {
// groups are always top-level
return KeyGroup();
}
if (static_cast<unsigned>(idx.row()) >= mTopLevels.size()
&& static_cast<unsigned>(idx.row()) < mTopLevels.size() + mGroups.size()
&& idx.column() < NumColumns) {
return mGroups[ idx.row() - mTopLevels.size() ];
} else {
return KeyGroup();
}
}
QModelIndex HierarchicalKeyListModel::doMapFromGroup(const KeyGroup &group, int column) const
{
Q_ASSERT(!group.isNull());
const auto it = std::find_if(mGroups.cbegin(), mGroups.cend(),
[group](const KeyGroup &g) {
return g.source() == group.source() && g.id() == group.id();
});
if (it == mGroups.cend()) {
return QModelIndex();
} else {
return createIndex(it - mGroups.cbegin() + mTopLevels.size(), column);
}
}
void HierarchicalKeyListModel::doSetGroups(const std::vector<KeyGroup> &groups)
{
Q_ASSERT(mGroups.empty()); // ensure that groups have been cleared
const int first = mTopLevels.size();
const int last = first + groups.size() - 1;
beginInsertRows(QModelIndex(), first, last);
mGroups = groups;
endInsertRows();
}
QModelIndex HierarchicalKeyListModel::doAddGroup(const KeyGroup &group)
{
const int newRow = lastGroupRow() + 1;
beginInsertRows(QModelIndex(), newRow, newRow);
mGroups.push_back(group);
endInsertRows();
return createIndex(newRow, 0);
}
bool HierarchicalKeyListModel::doSetGroupData(const QModelIndex &index, const KeyGroup &group)
{
if (group.isNull()) {
return false;
}
const int groupIndex = this->groupIndex(index);
if (groupIndex == -1) {
return false;
}
mGroups[groupIndex] = group;
Q_EMIT dataChanged(createIndex(index.row(), 0), createIndex(index.row(), NumColumns - 1));
return true;
}
+bool HierarchicalKeyListModel::doRemoveGroup(const KeyGroup &group)
+{
+ const QModelIndex modelIndex = doMapFromGroup(group, 0);
+ if (!modelIndex.isValid()) {
+ return false;
+ }
+ const int groupIndex = this->groupIndex(modelIndex);
+ Q_ASSERT(groupIndex != -1);
+ if (groupIndex == -1) {
+ return false;
+ }
+ beginRemoveRows(QModelIndex(), modelIndex.row(), modelIndex.row());
+ mGroups.erase(mGroups.begin() + groupIndex);
+ endRemoveRows();
+ return true;
+}
+
void AbstractKeyListModel::useKeyCache(bool value, KeyList::Options options)
{
d->m_keyListOptions = options;
d->m_useKeyCache = value;
if (!d->m_useKeyCache) {
clear(All);
} else {
d->updateFromKeyCache();
}
connect(KeyCache::instance().get(), &KeyCache::keysMayHaveChanged,
this, [this] { d->updateFromKeyCache(); });
}
// static
AbstractKeyListModel *AbstractKeyListModel::createFlatKeyListModel(QObject *p)
{
AbstractKeyListModel *const m = new FlatKeyListModel(p);
#ifdef KLEO_MODEL_TEST
new QAbstractItemModelTester(m, p);
#endif
return m;
}
// static
AbstractKeyListModel *AbstractKeyListModel::createHierarchicalKeyListModel(QObject *p)
{
AbstractKeyListModel *const m = new HierarchicalKeyListModel(p);
#ifdef KLEO_MODEL_TEST
new QAbstractItemModelTester(m, p);
#endif
return m;
}
#include "keylistmodel.moc"
/*!
\fn AbstractKeyListModel::rowAboutToBeMoved( const QModelIndex & old_parent, int old_row )
Emitted before the removal of a row from that model. It will later
be added to the model again, in response to which rowMoved() will be
emitted. If multiple rows are moved in one go, multiple
rowAboutToBeMoved() signals are emitted before the corresponding
number of rowMoved() signals is emitted - in reverse order.
This works around the absence of move semantics in
QAbstractItemModel. Clients can maintain a stack to perform the
QModelIndex-mapping themselves, or, e.g., to preserve the selection
status of the row:
\code
std::vector<bool> mMovingRowWasSelected; // transient, used when rows are moved
// ...
void slotRowAboutToBeMoved( const QModelIndex & p, int row ) {
mMovingRowWasSelected.push_back( selectionModel()->isSelected( model()->index( row, 0, p ) ) );
}
void slotRowMoved( const QModelIndex & p, int row ) {
const bool wasSelected = mMovingRowWasSelected.back();
mMovingRowWasSelected.pop_back();
if ( wasSelected )
selectionModel()->select( model()->index( row, 0, p ), Select|Rows );
}
\endcode
A similar mechanism could be used to preserve the current item during moves.
*/
/*!
\fn AbstractKeyListModel::rowMoved( const QModelIndex & new_parent, int new_parent )
See rowAboutToBeMoved()
*/
diff --git a/src/models/keylistmodel.h b/src/models/keylistmodel.h
index 0f6062f5..d585a37f 100644
--- a/src/models/keylistmodel.h
+++ b/src/models/keylistmodel.h
@@ -1,128 +1,130 @@
/* -*- mode: c++; c-basic-offset:4 -*-
models/keylistmodel.h
This file is part of libkleopatra, the KDE keymanagement library
SPDX-FileCopyrightText: 2007 Klarälvdalens Datakonsult AB
SPDX-FileCopyrightText: 2021 g10 Code GmbH
SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __KLEOPATRA_MODELS_KEYLISTMODEL_H__
#define __KLEOPATRA_MODELS_KEYLISTMODEL_H__
#include <QAbstractItemModel>
#include <kleo_export.h>
#include "keylist.h"
#include "keylistmodelinterface.h"
#include <vector>
namespace GpgME
{
class Key;
}
namespace Kleo
{
class KLEO_EXPORT AbstractKeyListModel : public QAbstractItemModel
, public KeyListModelInterface
{
Q_OBJECT
public:
enum ItemType {
Keys = 0x01,
Groups = 0x02,
All = Keys | Groups
};
Q_DECLARE_FLAGS(ItemTypes, ItemType)
explicit AbstractKeyListModel(QObject *parent = nullptr);
~AbstractKeyListModel() override;
static AbstractKeyListModel *createFlatKeyListModel(QObject *parent = nullptr);
static AbstractKeyListModel *createHierarchicalKeyListModel(QObject *parent = nullptr);
GpgME::Key key(const QModelIndex &idx) const override;
std::vector<GpgME::Key> keys(const QList<QModelIndex> &indexes) const override;
KeyGroup group(const QModelIndex &idx) const override;
using QAbstractItemModel::index;
QModelIndex index(const GpgME::Key &key) const override;
QModelIndex index(const GpgME::Key &key, int col) const;
QList<QModelIndex> indexes(const std::vector<GpgME::Key> &keys) const override;
QModelIndex index(const KeyGroup &group) const override;
QModelIndex index(const KeyGroup &group, int col) const;
Q_SIGNALS:
void rowAboutToBeMoved(const QModelIndex &old_parent, int old_row);
void rowMoved(const QModelIndex &new_parent, int new_row);
public Q_SLOTS:
void setKeys(const std::vector<GpgME::Key> &keys);
/* Set this to set all or only secret keys from the keycache. */
void useKeyCache(bool value, Kleo::KeyList::Options options);
QModelIndex addKey(const GpgME::Key &key);
QList<QModelIndex> addKeys(const std::vector<GpgME::Key> &keys);
void removeKey(const GpgME::Key &key);
void setGroups(const std::vector<KeyGroup> &groups);
QModelIndex addGroup(const KeyGroup &group);
+ bool removeGroup(const KeyGroup &group);
void clear(ItemTypes types = All);
public:
int columnCount(const QModelIndex &pidx) const override;
QVariant headerData(int section, Qt::Orientation o, int role = Qt::DisplayRole) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
/**
* defines which information is displayed in tooltips
* see Kleo::Formatting::ToolTipOption
*/
int toolTipOptions() const;
void setToolTipOptions(int opts);
/**
* Set the keys to use for KeyListModelInterface::Remark column
* to obtain remarks from this keys signature notations.
* Needs at least GpgME 1.14 to work properly. Remarks are
* joined by a semicolon and a space. */
void setRemarkKeys(const std::vector<GpgME::Key> &remarkKeys);
std::vector<GpgME::Key> remarkKeys() const;
private:
QVariant data(const GpgME::Key &key, int column, int role) const;
QVariant data(const KeyGroup &group, int column, int role) const;
virtual GpgME::Key doMapToKey(const QModelIndex &index) const = 0;
virtual QModelIndex doMapFromKey(const GpgME::Key &key, int column) const = 0;
virtual QList<QModelIndex> doAddKeys(const std::vector<GpgME::Key> &keys) = 0;
virtual void doRemoveKey(const GpgME::Key &key) = 0;
virtual KeyGroup doMapToGroup(const QModelIndex &index) const = 0;
virtual QModelIndex doMapFromGroup(const KeyGroup &group, int column) const = 0;
virtual void doSetGroups(const std::vector<KeyGroup> &groups) = 0;
virtual QModelIndex doAddGroup(const KeyGroup &group) = 0;
virtual bool doSetGroupData(const QModelIndex &index, const KeyGroup &group) = 0;
+ virtual bool doRemoveGroup(const KeyGroup &group) = 0;
virtual void doClear(ItemTypes types) = 0;
private:
class Private;
QScopedPointer<Private> const d;
};
}
Q_DECLARE_OPERATORS_FOR_FLAGS(Kleo::AbstractKeyListModel::ItemTypes)
#endif /* __KLEOPATRA_MODELS_KEYLISTMODEL_H__ */
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Feb 26, 7:04 PM (16 h, 25 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
6a/14/c9189f990055a4035fa2e8a49b0c
Attached To
rLIBKLEO Libkleo
Event Timeline
Log In to Comment