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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
|
/*
Copyright (c) 2015 Christian Mollekopf <mollekopf@kolabsys.com>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include "typeindex.h"
#include "log.h"
#include "index.h"
#include "fulltextindex.h"
#include "sample_generated.h"
#include <QDateTime>
#include <QDataStream>
#include <cmath>
using namespace Sink;
static QByteArray getByteArray(const QVariant &value)
{
if (value.type() == QVariant::DateTime) {
QByteArray result;
QDataStream ds(&result, QIODevice::WriteOnly);
ds << value.toDateTime();
return result;
}
if (value.type() == QVariant::Bool) {
return value.toBool() ? "t" : "f";
}
if (value.canConvert<Sink::ApplicationDomain::Reference>()) {
const auto ba = value.value<Sink::ApplicationDomain::Reference>().value;
if (!ba.isEmpty()) {
return ba;
}
}
if (value.isValid() && !value.toByteArray().isEmpty()) {
return value.toByteArray();
}
// LMDB can't handle empty keys, so use something different
return "toplevel";
}
template <typename T>
static QByteArray padNumber(T number)
{
static T uint_num_digits = (T)std::log10(std::numeric_limits<T>::max()) + 1;
return QByteArray::number(number).rightJustified(uint_num_digits, '0');
}
static QByteArray toSortableByteArrayImpl(const QDateTime &date)
{
// Sort invalid last
if (!date.isValid()) {
return QByteArray::number(std::numeric_limits<unsigned int>::max());
}
return padNumber(std::numeric_limits<unsigned int>::max() - date.toTime_t());
}
static QByteArray toSortableByteArray(const QVariant &value)
{
if (!value.isValid()) {
// FIXME: we don't know the type, so we don't know what to return
// This mean we're fixing every sorted index keys to use unsigned int
return QByteArray::number(std::numeric_limits<unsigned int>::max());
}
switch (value.type()) {
case QMetaType::QDateTime:
return toSortableByteArrayImpl(value.toDateTime());
default:
SinkWarning() << "Not knowing how to convert a" << value.typeName()
<< "to a sortable key, falling back to default conversion";
return getByteArray(value);
}
}
TypeIndex::TypeIndex(const QByteArray &type, const Sink::Log::Context &ctx) : mLogCtx(ctx), mType(type)
{
}
QByteArray TypeIndex::indexName(const QByteArray &property, const QByteArray &sortProperty) const
{
if (sortProperty.isEmpty()) {
return mType + ".index." + property;
}
return mType + ".index." + property + ".sort." + sortProperty;
}
QByteArray TypeIndex::sortedIndexName(const QByteArray &property) const
{
return mType + ".index." + property + ".sorted";
}
QByteArray TypeIndex::sampledPeriodIndexName(const QByteArray &rangeBeginProperty, const QByteArray &rangeEndProperty) const
{
return mType + ".index." + rangeBeginProperty + ".range." + rangeEndProperty;
}
static unsigned int bucketOf(const QVariant &value)
{
switch (value.type()) {
case QMetaType::QDateTime:
return value.value<QDateTime>().date().toJulianDay() / 7;
default:
SinkError() << "Not knowing how to get the bucket of a" << value.typeName();
return {};
}
}
template <>
void TypeIndex::addProperty<QByteArray>(const QByteArray &property)
{
auto indexer = [this, property](bool add, const QByteArray &identifier, const QVariant &value, Sink::Storage::DataStore::Transaction &transaction) {
// SinkTraceCtx(mLogCtx) << "Indexing " << mType + ".index." + property << value.toByteArray();
if (add) {
Index(indexName(property), transaction).add(getByteArray(value), identifier);
} else {
Index(indexName(property), transaction).remove(getByteArray(value), identifier);
}
};
mIndexer.insert(property, indexer);
mProperties << property;
}
template <>
void TypeIndex::addProperty<bool>(const QByteArray &property)
{
auto indexer = [this, property](bool add, const QByteArray &identifier, const QVariant &value, Sink::Storage::DataStore::Transaction &transaction) {
if (add) {
Index(indexName(property), transaction).add(getByteArray(value), identifier);
} else {
Index(indexName(property), transaction).remove(getByteArray(value), identifier);
}
};
mIndexer.insert(property, indexer);
mProperties << property;
}
template <>
void TypeIndex::addProperty<QString>(const QByteArray &property)
{
auto indexer = [this, property](bool add, const QByteArray &identifier, const QVariant &value, Sink::Storage::DataStore::Transaction &transaction) {
// SinkTraceCtx(mLogCtx) << "Indexing " << mType + ".index." + property << value.toByteArray();
if (add) {
Index(indexName(property), transaction).add(getByteArray(value), identifier);
} else {
Index(indexName(property), transaction).remove(getByteArray(value), identifier);
}
};
mIndexer.insert(property, indexer);
mProperties << property;
}
template <>
void TypeIndex::addProperty<QDateTime>(const QByteArray &property)
{
auto indexer = [this, property](bool add, const QByteArray &identifier, const QVariant &value, Sink::Storage::DataStore::Transaction &transaction) {
//SinkTraceCtx(mLogCtx) << "Indexing " << mType + ".index." + property << getByteArray(value);
if (add) {
Index(indexName(property), transaction).add(getByteArray(value), identifier);
} else {
Index(indexName(property), transaction).remove(getByteArray(value), identifier);
}
};
mIndexer.insert(property, indexer);
mProperties << property;
}
template <>
void TypeIndex::addProperty<ApplicationDomain::Reference>(const QByteArray &property)
{
addProperty<QByteArray>(property);
}
template <>
void TypeIndex::addSortedProperty<QDateTime>(const QByteArray &property)
{
auto indexer = [this, property](bool add, const QByteArray &identifier, const QVariant &value,
Sink::Storage::DataStore::Transaction &transaction) {
const auto sortableDate = toSortableByteArray(value);
if (add) {
Index(sortedIndexName(property), transaction).add(sortableDate, identifier);
} else {
Index(sortedIndexName(property), transaction).remove(sortableDate, identifier);
}
};
mSortIndexer.insert(property, indexer);
mSortedProperties << property;
}
template <>
void TypeIndex::addPropertyWithSorting<QByteArray, QDateTime>(const QByteArray &property, const QByteArray &sortProperty)
{
auto indexer = [=](bool add, const QByteArray &identifier, const QVariant &value, const QVariant &sortValue, Sink::Storage::DataStore::Transaction &transaction) {
const auto date = sortValue.toDateTime();
const auto propertyValue = getByteArray(value);
if (add) {
Index(indexName(property, sortProperty), transaction).add(propertyValue + toSortableByteArray(date), identifier);
} else {
Index(indexName(property, sortProperty), transaction).remove(propertyValue + toSortableByteArray(date), identifier);
}
};
mGroupedSortIndexer.insert(property + sortProperty, indexer);
mGroupedSortedProperties.insert(property, sortProperty);
}
template <>
void TypeIndex::addPropertyWithSorting<ApplicationDomain::Reference, QDateTime>(const QByteArray &property, const QByteArray &sortProperty)
{
addPropertyWithSorting<QByteArray, QDateTime>(property, sortProperty);
}
template <>
void TypeIndex::addSampledPeriodIndex<QDateTime, QDateTime>(
const QByteArray &beginProperty, const QByteArray &endProperty)
{
auto indexer = [=](bool add, const QByteArray &identifier, const QVariant &begin,
const QVariant &end, Sink::Storage::DataStore::Transaction &transaction) {
SinkTraceCtx(mLogCtx) << "Adding entity to sampled period index";
const auto beginDate = begin.toDateTime();
const auto endDate = end.toDateTime();
auto beginBucket = bucketOf(beginDate);
auto endBucket = bucketOf(endDate);
if (beginBucket > endBucket) {
SinkError() << "End bucket greater than begin bucket";
return;
}
auto beginBA = toSortableByteArray(beginDate);
auto endBA = toSortableByteArray(endDate);
flatbuffers::FlatBufferBuilder fbb;
auto sample = CreateSampleDirect(fbb, beginBA.constData(), endBA.constData(), identifier.constData());
fbb.Finish(sample);
const auto buffer = QByteArray::fromRawData(
reinterpret_cast<const char *>(fbb.GetBufferPointer()), fbb.GetSize());
Index index(sampledPeriodIndexName(beginProperty, endProperty), transaction);
for (auto bucket = beginBucket; bucket <= endBucket; ++bucket) {
QByteArray bucketKey = padNumber(bucket);
if (add) {
SinkTraceCtx(mLogCtx) << "Adding entity to bucket:" << bucketKey;
index.add(bucketKey, buffer);
} else {
SinkTraceCtx(mLogCtx) << "Removing entity from bucket:" << bucketKey;
index.remove(bucketKey, buffer);
}
}
};
mSampledPeriodProperties.insert({ beginProperty, endProperty });
mSampledPeriodIndexer.insert({ beginProperty, endProperty }, indexer);
}
void TypeIndex::updateIndex(bool add, const QByteArray &identifier, const Sink::ApplicationDomain::ApplicationDomainType &entity, Sink::Storage::DataStore::Transaction &transaction, const QByteArray &resourceInstanceId)
{
for (const auto &property : mProperties) {
const auto value = entity.getProperty(property);
auto indexer = mIndexer.value(property);
indexer(add, identifier, value, transaction);
}
for (const auto &properties : mSampledPeriodProperties) {
const auto beginValue = entity.getProperty(properties.first);
const auto endValue = entity.getProperty(properties.second);
auto indexer = mSampledPeriodIndexer.value(properties);
indexer(add, identifier, beginValue, endValue, transaction);
}
for (const auto &property : mSortedProperties) {
const auto value = entity.getProperty(property);
auto indexer = mSortIndexer.value(property);
indexer(add, identifier, value, transaction);
}
for (auto it = mGroupedSortedProperties.constBegin(); it != mGroupedSortedProperties.constEnd(); it++) {
const auto value = entity.getProperty(it.key());
const auto sortValue = entity.getProperty(it.value());
auto indexer = mGroupedSortIndexer.value(it.key() + it.value());
indexer(add, identifier, value, sortValue, transaction);
}
for (const auto &indexer : mCustomIndexer) {
indexer->setup(this, &transaction, resourceInstanceId);
if (add) {
indexer->add(entity);
} else {
indexer->remove(entity);
}
}
}
void TypeIndex::commitTransaction()
{
for (const auto &indexer : mCustomIndexer) {
indexer->commitTransaction();
}
}
void TypeIndex::abortTransaction()
{
for (const auto &indexer : mCustomIndexer) {
indexer->abortTransaction();
}
}
void TypeIndex::add(const QByteArray &identifier, const Sink::ApplicationDomain::ApplicationDomainType &entity, Sink::Storage::DataStore::Transaction &transaction, const QByteArray &resourceInstanceId)
{
updateIndex(true, identifier, entity, transaction, resourceInstanceId);
}
void TypeIndex::remove(const QByteArray &identifier, const Sink::ApplicationDomain::ApplicationDomainType &entity, Sink::Storage::DataStore::Transaction &transaction, const QByteArray &resourceInstanceId)
{
updateIndex(false, identifier, entity, transaction, resourceInstanceId);
}
static QVector<QByteArray> indexLookup(Index &index, QueryBase::Comparator filter,
std::function<QByteArray(const QVariant &)> valueToKey = getByteArray)
{
QVector<QByteArray> keys;
QByteArrayList lookupKeys;
if (filter.comparator == Query::Comparator::Equals) {
lookupKeys << valueToKey(filter.value);
} else if (filter.comparator == Query::Comparator::In) {
for(const QVariant &value : filter.value.value<QVariantList>()) {
lookupKeys << valueToKey(value);
}
} else {
Q_ASSERT(false);
}
for (const auto &lookupKey : lookupKeys) {
index.lookup(lookupKey, [&](const QByteArray &value) { keys << value; },
[lookupKey](const Index::Error &error) {
SinkWarning() << "Lookup error in index: " << error.message << lookupKey;
},
true);
}
return keys;
}
static QVector<QByteArray> sortedIndexLookup(Index &index, QueryBase::Comparator filter)
{
if (filter.comparator == Query::Comparator::In || filter.comparator == Query::Comparator::Contains) {
SinkWarning() << "In and Contains comparison not supported on sorted indexes";
}
if (filter.comparator != Query::Comparator::Within) {
return indexLookup(index, filter, toSortableByteArray);
}
QVector<QByteArray> keys;
QByteArray lowerBound, upperBound;
auto bounds = filter.value.value<QVariantList>();
if (bounds[0].canConvert<QDateTime>()) {
// Inverse the bounds because dates are stored newest first
upperBound = toSortableByteArray(bounds[0].toDateTime());
lowerBound = toSortableByteArray(bounds[1].toDateTime());
} else {
lowerBound = bounds[0].toByteArray();
upperBound = bounds[1].toByteArray();
}
index.rangeLookup(lowerBound, upperBound, [&](const QByteArray &value) { keys << value; },
[bounds](const Index::Error &error) {
SinkWarning() << "Lookup error in index:" << error.message
<< "with bounds:" << bounds[0] << bounds[1];
});
return keys;
}
static QVector<QByteArray> sampledIndexLookup(Index &index, QueryBase::Comparator filter)
{
if (filter.comparator != Query::Comparator::Overlap) {
SinkWarning() << "Comparisons other than Overlap not supported on sampled period indexes";
return {};
}
QVector<QByteArray> keys;
auto bounds = filter.value.value<QVariantList>();
QByteArray lowerBound = toSortableByteArray(bounds[0]);
QByteArray upperBound = toSortableByteArray(bounds[1]);
QByteArray lowerBucket = padNumber(bucketOf(bounds[0]));
QByteArray upperBucket = padNumber(bucketOf(bounds[1]));
SinkTrace() << "Looking up from bucket:" << lowerBucket << "to:" << upperBucket;
index.rangeLookup(lowerBucket, upperBucket,
[&](const QByteArray &value) {
auto sample = GetSample(value.data());
QByteArray periodStart = QString::fromStdString(sample->periodStart()->str()).toUtf8();
QByteArray periodEnd = QString::fromStdString(sample->periodEnd()->str()).toUtf8();
// Inverse comparison since descending order
if (periodStart >= upperBound && lowerBound >= periodEnd) {
QByteArray key = QString::fromStdString(sample->reference()->str()).toUtf8();
SinkTrace() << "Keeping:" << key;
keys << key;
}
},
[bounds](const Index::Error &error) {
SinkWarning() << "Lookup error in index:" << error.message
<< "with bounds:" << bounds[0] << bounds[1];
});
return keys;
}
QVector<QByteArray> TypeIndex::query(const Sink::QueryBase &query, QSet<QByteArrayList> &appliedFilters, QByteArray &appliedSorting, Sink::Storage::DataStore::Transaction &transaction, const QByteArray &resourceInstanceId)
{
const auto baseFilters = query.getBaseFilters();
for (auto it = baseFilters.constBegin(); it != baseFilters.constEnd(); it++) {
if (it.value().comparator == QueryBase::Comparator::Fulltext) {
FulltextIndex fulltextIndex{resourceInstanceId};
const auto keys = fulltextIndex.lookup(it.value().value.toString());
appliedFilters << it.key();
SinkTraceCtx(mLogCtx) << "Fulltext index lookup found " << keys.size() << " keys.";
return keys;
}
}
for (auto it = baseFilters.constBegin(); it != baseFilters.constEnd(); it++) {
if (it.value().comparator == QueryBase::Comparator::Overlap) {
if (mSampledPeriodProperties.contains({it.key()[0], it.key()[1]})) {
Index index(sampledPeriodIndexName(it.key()[0], it.key()[1]), transaction);
const auto keys = sampledIndexLookup(index, query.getFilter(it.key()));
appliedFilters << it.key();
SinkTraceCtx(mLogCtx) << "Sampled period index lookup on" << it.key() << "found" << keys.size() << "keys.";
return keys;
} else {
SinkWarning() << "Overlap search without sampled period index";
}
}
}
for (auto it = mGroupedSortedProperties.constBegin(); it != mGroupedSortedProperties.constEnd(); it++) {
if (query.hasFilter(it.key()) && query.sortProperty() == it.value()) {
Index index(indexName(it.key(), it.value()), transaction);
const auto keys = indexLookup(index, query.getFilter(it.key()));
appliedFilters.insert({it.key()});
appliedSorting = it.value();
SinkTraceCtx(mLogCtx) << "Grouped sorted index lookup on " << it.key() << it.value() << " found " << keys.size() << " keys.";
return keys;
}
}
for (const auto &property : mSortedProperties) {
if (query.hasFilter(property)) {
Index index(sortedIndexName(property), transaction);
const auto keys = sortedIndexLookup(index, query.getFilter(property));
appliedFilters.insert({property});
SinkTraceCtx(mLogCtx) << "Sorted index lookup on " << property << " found " << keys.size() << " keys.";
return keys;
}
}
for (const auto &property : mProperties) {
if (query.hasFilter(property)) {
Index index(indexName(property), transaction);
const auto keys = indexLookup(index, query.getFilter(property));
appliedFilters.insert({property});
SinkTraceCtx(mLogCtx) << "Index lookup on " << property << " found " << keys.size() << " keys.";
return keys;
}
}
SinkTraceCtx(mLogCtx) << "No matching index";
return {};
}
QVector<QByteArray> TypeIndex::lookup(const QByteArray &property, const QVariant &value, Sink::Storage::DataStore::Transaction &transaction)
{
SinkTraceCtx(mLogCtx) << "Index lookup on property: " << property << mSecondaryProperties.keys() << mProperties;
if (mProperties.contains(property)) {
QVector<QByteArray> keys;
Index index(indexName(property), transaction);
const auto lookupKey = getByteArray(value);
index.lookup(
lookupKey, [&](const QByteArray &value) { keys << value; }, [property](const Index::Error &error) { SinkWarning() << "Error in index: " << error.message << property; });
SinkTraceCtx(mLogCtx) << "Index lookup on " << property << " found " << keys.size() << " keys.";
return keys;
} else if (mSecondaryProperties.contains(property)) {
//Lookups on secondary indexes first lookup the key, and then lookup the results again to resolve to entity id's
QVector<QByteArray> keys;
auto resultProperty = mSecondaryProperties.value(property);
QVector<QByteArray> secondaryKeys;
Index index(indexName(property + resultProperty), transaction);
const auto lookupKey = getByteArray(value);
index.lookup(
lookupKey, [&](const QByteArray &value) { secondaryKeys << value; }, [property](const Index::Error &error) { SinkWarning() << "Error in index: " << error.message << property; });
SinkTraceCtx(mLogCtx) << "Looked up secondary keys: " << secondaryKeys;
for (const auto &secondary : secondaryKeys) {
keys += lookup(resultProperty, secondary, transaction);
}
return keys;
} else {
SinkWarning() << "Tried to lookup " << property << " but couldn't find value";
}
return QVector<QByteArray>();
}
template <>
void TypeIndex::index<QByteArray, QByteArray>(const QByteArray &leftName, const QByteArray &rightName, const QVariant &leftValue, const QVariant &rightValue, Sink::Storage::DataStore::Transaction &transaction)
{
Index(indexName(leftName + rightName), transaction).add(getByteArray(leftValue), getByteArray(rightValue));
}
template <>
void TypeIndex::index<QString, QByteArray>(const QByteArray &leftName, const QByteArray &rightName, const QVariant &leftValue, const QVariant &rightValue, Sink::Storage::DataStore::Transaction &transaction)
{
Index(indexName(leftName + rightName), transaction).add(getByteArray(leftValue), getByteArray(rightValue));
}
template <>
void TypeIndex::unindex<QByteArray, QByteArray>(const QByteArray &leftName, const QByteArray &rightName, const QVariant &leftValue, const QVariant &rightValue, Sink::Storage::DataStore::Transaction &transaction)
{
Index(indexName(leftName + rightName), transaction).remove(getByteArray(leftValue), getByteArray(rightValue));
}
template <>
void TypeIndex::unindex<QString, QByteArray>(const QByteArray &leftName, const QByteArray &rightName, const QVariant &leftValue, const QVariant &rightValue, Sink::Storage::DataStore::Transaction &transaction)
{
Index(indexName(leftName + rightName), transaction).remove(getByteArray(leftValue), getByteArray(rightValue));
}
template <>
QVector<QByteArray> TypeIndex::secondaryLookup<QByteArray>(const QByteArray &leftName, const QByteArray &rightName, const QVariant &value)
{
QVector<QByteArray> keys;
Index index(indexName(leftName + rightName), *mTransaction);
const auto lookupKey = getByteArray(value);
index.lookup(
lookupKey, [&](const QByteArray &value) { keys << QByteArray{value.constData(), value.size()}; }, [=](const Index::Error &error) { SinkWarning() << "Lookup error in secondary index: " << error.message << value << lookupKey; });
return keys;
}
template <>
QVector<QByteArray> TypeIndex::secondaryLookup<QString>(const QByteArray &leftName, const QByteArray &rightName, const QVariant &value)
{
QVector<QByteArray> keys;
Index index(indexName(leftName + rightName), *mTransaction);
const auto lookupKey = getByteArray(value);
index.lookup(
lookupKey, [&](const QByteArray &value) { keys << QByteArray{value.constData(), value.size()}; }, [=](const Index::Error &error) { SinkWarning() << "Lookup error in secondary index: " << error.message << value << lookupKey; });
return keys;
}
|