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
|
2020-07-26 13:33:30 +03:00
|
|
|
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
|
2020-07-26 13:33:30 +03:00
|
|
|
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();
|
2020-07-18 21:39:31 +03:00
|
|
|
void messageSent(std::string txn_id, std::string event_id);
|
2020-07-18 18:43:49 +03:00
|
|
|
void messageFailed(std::string txn_id);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void addPending(mtx::events::collections::TimelineEvents event);
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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
|
|
|
};
|