matrixion/src/timeline/EventStore.h

127 lines
4.5 KiB
C
Raw Normal View History

2020-07-10 00:15:22 +03:00
#pragma once
#include <limits>
#include <string>
#include <QCache>
#include <QObject>
2020-07-19 13:22:54 +03:00
#include <QVariant>
2020-07-10 00:15:22 +03:00
#include <qhashfunctions.h>
#include <mtx/events/collections.hpp>
2020-07-13 01:08:58 +03:00
#include <mtx/responses/messages.hpp>
2020-07-10 00:15:22 +03:00
#include <mtx/responses/sync.hpp>
2020-07-19 13:22:54 +03:00
#include "Reaction.h"
2020-07-10 00:15:22 +03:00
class EventStore : public QObject
{
Q_OBJECT
public:
EventStore(std::string room_id, QObject *parent);
struct Index
{
std::string room;
2020-07-13 01:08:58 +03:00
uint64_t idx;
2020-07-10 00:15:22 +03:00
friend uint qHash(const Index &i, uint seed = 0) noexcept
{
QtPrivate::QHashCombine hash;
seed = hash(seed, QByteArray::fromRawData(i.room.data(), i.room.size()));
seed = hash(seed, i.idx);
return seed;
}
friend bool operator==(const Index &a, const Index &b) noexcept
{
return a.idx == b.idx && a.room == b.room;
}
};
struct IdIndex
{
std::string room, id;
friend uint qHash(const IdIndex &i, uint seed = 0) noexcept
{
QtPrivate::QHashCombine hash;
seed = hash(seed, QByteArray::fromRawData(i.room.data(), i.room.size()));
seed = hash(seed, QByteArray::fromRawData(i.id.data(), i.id.size()));
return seed;
}
friend bool operator==(const IdIndex &a, const IdIndex &b) noexcept
{
return a.id == b.id && a.room == b.room;
}
};
void fetchMore();
void handleSync(const mtx::responses::Timeline &events);
// optionally returns the event or nullptr and fetches it, after which it emits a
// relatedFetched event
mtx::events::collections::TimelineEvents *get(std::string_view id,
std::string_view related_to,
bool decrypt = true);
2020-07-10 00:15:22 +03:00
// always returns a proper event as long as the idx is valid
mtx::events::collections::TimelineEvents *get(int idx, bool decrypt = true);
2020-07-10 00:15:22 +03:00
2020-07-19 13:22:54 +03:00
QVariantList reactions(const std::string &event_id);
2020-07-10 00:15:22 +03:00
int size() const
{
2020-07-13 01:08:58 +03:00
return last != std::numeric_limits<uint64_t>::max()
2020-07-10 00:15:22 +03:00
? static_cast<int>(last - first) + 1
: 0;
}
2020-07-13 01:08:58 +03:00
int toExternalIdx(uint64_t idx) const { return static_cast<int>(idx - first); }
uint64_t toInternalIdx(int idx) const { return first + idx; }
2020-07-10 00:15:22 +03:00
std::optional<int> idToIndex(std::string_view id) const;
std::optional<std::string> indexToId(int idx) const;
signals:
void beginInsertRows(int from, int to);
void endInsertRows();
2020-07-13 01:08:58 +03:00
void beginResetModel();
void endResetModel();
2020-07-10 00:15:22 +03:00
void dataChanged(int from, int to);
void newEncryptedImage(mtx::crypto::EncryptedFile encryptionInfo);
2020-07-10 02:37:55 +03:00
void eventFetched(std::string id,
std::string relatedTo,
mtx::events::collections::TimelineEvents timeline);
2020-07-13 01:08:58 +03:00
void oldMessagesRetrieved(const mtx::responses::Messages &);
void fetchedMore();
2020-07-10 00:15:22 +03:00
2020-07-18 18:43:49 +03:00
void processPending();
void messageSent(std::string txn_id, std::string event_id);
2020-07-18 18:43:49 +03:00
void messageFailed(std::string txn_id);
2020-08-09 06:05:15 +03:00
void startDMVerification(
2020-10-06 18:02:41 +03:00
const mtx::events::RoomEvent<mtx::events::msg::KeyVerificationRequest> &msg);
2020-08-18 08:59:02 +03:00
void updateFlowEventId(std::string event_id);
2020-07-18 18:43:49 +03:00
public slots:
void addPending(mtx::events::collections::TimelineEvents event);
2020-08-10 00:36:47 +03:00
void clearTimeline();
2020-07-18 18:43:49 +03:00
2020-07-10 00:15:22 +03:00
private:
mtx::events::collections::TimelineEvents *decryptEvent(
const IdIndex &idx,
const mtx::events::EncryptedEvent<mtx::events::msg::Encrypted> &e);
void handle_room_verification(mtx::events::collections::TimelineEvents event);
2020-07-10 00:15:22 +03:00
std::string room_id_;
2020-07-13 01:08:58 +03:00
uint64_t first = std::numeric_limits<uint64_t>::max(),
last = std::numeric_limits<uint64_t>::max();
2020-07-10 00:15:22 +03:00
static QCache<IdIndex, mtx::events::collections::TimelineEvents> decryptedEvents_;
static QCache<Index, mtx::events::collections::TimelineEvents> events_;
static QCache<IdIndex, mtx::events::collections::TimelineEvents> events_by_id_;
2020-07-18 18:43:49 +03:00
std::string current_txn;
int current_txn_error_count = 0;
2020-07-10 00:15:22 +03:00
};