blob: f0fb45461e78ce2d1fa16d7485aaec1af1c3ed72 (
plain)
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "jobs/basejob.h"
#include <unordered_map>
#include <QtCore/QHash>
#include "events/event.h"
#include <QtCore/QJsonObject>
#include <QtCore/QStringList>
#include "converters.h"
#include <QtCore/QVector>
namespace QMatrixClient
{
// Operations
class SearchJob : public BaseJob
{
public:
// Inner data structures
struct IncludeEventContext
{
int beforeLimit;
int afterLimit;
bool includeProfile;
bool omitted;
};
struct Group
{
QString key;
bool omitted;
};
struct Groupings
{
QVector<Group> groupBy;
bool omitted;
};
struct RoomEventsCriteria
{
QString searchTerm;
QStringList keys;
QJsonObject filter;
QString orderBy;
IncludeEventContext eventContext;
bool includeState;
Groupings groupings;
bool omitted;
};
struct Categories
{
RoomEventsCriteria roomEvents;
bool omitted;
};
struct UserProfile
{
QString displayname;
QString avatarUrl;
};
struct EventContext
{
QString begin;
QString end;
QHash<QString, UserProfile> profileInfo;
RoomEvents eventsBefore;
RoomEvents eventsAfter;
};
struct Result
{
double rank;
RoomEventPtr result;
EventContext context;
};
struct GroupValue
{
QString nextBatch;
int order;
QStringList results;
};
struct ResultRoomEvents
{
qint64 count;
std::vector<Result> results;
std::unordered_map<QString, StateEvents> state;
QHash<QString, QHash<QString, GroupValue>> groups;
QString nextBatch;
};
struct ResultCategories
{
ResultRoomEvents roomEvents;
};
// Construction/destruction
explicit SearchJob(const Categories& searchCategories, const QString& nextBatch = {});
~SearchJob() override;
// Result properties
const ResultCategories& searchCategories() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace QMatrixClient
|