-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattributetableindex.hpp
64 lines (52 loc) · 2.04 KB
/
attributetableindex.hpp
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
// SPDX-FileCopyrightText: 2017 Christian Sailer
//
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include "attributetable.hpp"
#include <algorithm>
class ConstAttributeIndexItem {
public:
ConstAttributeIndexItem(const AttributeKey &k, double v, const AttributeRow &r)
: key(k), _padding0(0), value(v), row(&r) {}
ConstAttributeIndexItem(const ConstAttributeIndexItem &other)
: key(other.key), _padding0(0), value(other.value), row(other.row) {}
ConstAttributeIndexItem &operator=(const ConstAttributeIndexItem &other) {
if (this == &other) {
return *this;
}
key = other.key;
value = other.value;
row = other.row;
return *this;
}
AttributeKey key;
private:
[[maybe_unused]] unsigned _padding0 : 4 * 8; // padding
public:
double value;
const AttributeRow *row;
};
class AttributeIndexItem : public ConstAttributeIndexItem {
public:
AttributeIndexItem(const AttributeKey &k, double v, AttributeRow &r)
: ConstAttributeIndexItem(k, v, r), mutableRow(&r) {}
AttributeIndexItem(const AttributeIndexItem &other)
: ConstAttributeIndexItem(other), mutableRow(other.mutableRow) {}
AttributeIndexItem &operator=(const AttributeIndexItem &other) {
if (this == &other) {
return *this;
}
ConstAttributeIndexItem::operator=(other);
mutableRow = other.mutableRow;
return *this;
}
AttributeRow *mutableRow;
};
inline bool operator<(const ConstAttributeIndexItem &lhs, const ConstAttributeIndexItem &rhs) {
return lhs.value < rhs.value;
}
std::vector<ConstAttributeIndexItem> makeAttributeIndex(const AttributeTable &table, int colIndex);
std::vector<AttributeIndexItem> makeAttributeIndex(AttributeTable &table, int colIndex);
std::pair<std::vector<AttributeIndexItem>::iterator, std::vector<AttributeIndexItem>::iterator>
getIndexItemsInValueRange(std::vector<AttributeIndexItem> &index, AttributeTable &table,
float fromValue, float toValue);