@@ -0,0 +1,33 | |||||
|
1 | #ifndef SCIQLOP_VARIABLECACHECONTROLLER_H | |||
|
2 | #define SCIQLOP_VARIABLECACHECONTROLLER_H | |||
|
3 | ||||
|
4 | #include <QObject> | |||
|
5 | ||||
|
6 | #include <Data/SqpDateTime.h> | |||
|
7 | ||||
|
8 | #include <Common/spimpl.h> | |||
|
9 | ||||
|
10 | class Variable; | |||
|
11 | ||||
|
12 | /// This class aims to store in the cash all of the dateTime already requested to the variable. | |||
|
13 | class VariableCacheController : public QObject { | |||
|
14 | Q_OBJECT | |||
|
15 | public: | |||
|
16 | explicit VariableCacheController(QObject *parent = 0); | |||
|
17 | ||||
|
18 | ||||
|
19 | void addDateTime(std::shared_ptr<Variable> variable, const SqpDateTime &dateTime); | |||
|
20 | ||||
|
21 | /// Return all of the SqpDataTime part of the dateTime whose are not in the cache | |||
|
22 | QVector<SqpDateTime> provideNotInCacheDateTimeList(std::shared_ptr<Variable> variable, | |||
|
23 | const SqpDateTime &dateTime); | |||
|
24 | ||||
|
25 | ||||
|
26 | QVector<SqpDateTime> dateCacheList(std::shared_ptr<Variable> variable) const noexcept; | |||
|
27 | ||||
|
28 | private: | |||
|
29 | class VariableCacheControllerPrivate; | |||
|
30 | spimpl::unique_impl_ptr<VariableCacheControllerPrivate> impl; | |||
|
31 | }; | |||
|
32 | ||||
|
33 | #endif // SCIQLOP_VARIABLECACHECONTROLLER_H |
@@ -0,0 +1,173 | |||||
|
1 | #include "Variable/VariableCacheController.h" | |||
|
2 | ||||
|
3 | #include "Variable/Variable.h" | |||
|
4 | #include <unordered_map> | |||
|
5 | ||||
|
6 | struct VariableCacheController::VariableCacheControllerPrivate { | |||
|
7 | ||||
|
8 | std::unordered_map<std::shared_ptr<Variable>, QVector<SqpDateTime> > | |||
|
9 | m_VariableToSqpDateTimeListMap; | |||
|
10 | ||||
|
11 | void addInCacheDataByEnd(const SqpDateTime &dateTime, QVector<SqpDateTime> &dateTimeList, | |||
|
12 | QVector<SqpDateTime> ¬InCache, int cacheIndex, | |||
|
13 | double currentTStart); | |||
|
14 | ||||
|
15 | void addInCacheDataByStart(const SqpDateTime &dateTime, QVector<SqpDateTime> &dateTimeList, | |||
|
16 | QVector<SqpDateTime> ¬InCache, int cacheIndex, | |||
|
17 | double currentTStart); | |||
|
18 | ||||
|
19 | ||||
|
20 | void addDateTimeRecurse(const SqpDateTime &dateTime, QVector<SqpDateTime> &dateTimeList, | |||
|
21 | int cacheIndex); | |||
|
22 | }; | |||
|
23 | ||||
|
24 | ||||
|
25 | VariableCacheController::VariableCacheController(QObject *parent) | |||
|
26 | : QObject(parent), impl{spimpl::make_unique_impl<VariableCacheControllerPrivate>()} | |||
|
27 | { | |||
|
28 | } | |||
|
29 | ||||
|
30 | void VariableCacheController::addDateTime(std::shared_ptr<Variable> variable, | |||
|
31 | const SqpDateTime &dateTime) | |||
|
32 | { | |||
|
33 | if (variable) { | |||
|
34 | auto findVariableIte = impl->m_VariableToSqpDateTimeListMap.find(variable); | |||
|
35 | if (findVariableIte == impl->m_VariableToSqpDateTimeListMap.end()) { | |||
|
36 | impl->m_VariableToSqpDateTimeListMap[variable].push_back(dateTime); | |||
|
37 | } | |||
|
38 | else { | |||
|
39 | ||||
|
40 | // addDateTime modify the list<SqpDateTime> of the variable in a way to ensure | |||
|
41 | // that the list is ordered : l(0) < l(1). We assume also a < b | |||
|
42 | // (with a & b of type SqpDateTime) means ts(b) > te(a) | |||
|
43 | ||||
|
44 | // The algorithm will try the merge of two interval: | |||
|
45 | // - dateTime will be compare with the first interval of the list: | |||
|
46 | // A: if it is inferior, it will be inserted and it's finished. | |||
|
47 | // B: if it is in intersection, it will be merge then the merged one | |||
|
48 | // will be compared to the next interval. The old one is remove from the list | |||
|
49 | // C: if it is superior, we do the same with the next interval of the list | |||
|
50 | ||||
|
51 | int cacheIndex = 0; | |||
|
52 | impl->addDateTimeRecurse(dateTime, impl->m_VariableToSqpDateTimeListMap.at(variable), | |||
|
53 | cacheIndex); | |||
|
54 | } | |||
|
55 | } | |||
|
56 | } | |||
|
57 | ||||
|
58 | QVector<SqpDateTime> | |||
|
59 | VariableCacheController::provideNotInCacheDateTimeList(std::shared_ptr<Variable> variable, | |||
|
60 | const SqpDateTime &dateTime) | |||
|
61 | { | |||
|
62 | auto notInCache = QVector<SqpDateTime>{}; | |||
|
63 | ||||
|
64 | // This algorithm is recursif. The idea is to localise the start time then the end time in the | |||
|
65 | // list of date time request associated to the variable | |||
|
66 | // We assume that the list is ordered in a way that l(0) < l(1). We assume also a < b | |||
|
67 | // (with a & b of type SqpDateTime) means ts(b) > te(a) | |||
|
68 | ||||
|
69 | impl->addInCacheDataByStart(dateTime, impl->m_VariableToSqpDateTimeListMap.at(variable), | |||
|
70 | notInCache, 0, dateTime.m_TStart); | |||
|
71 | ||||
|
72 | return notInCache; | |||
|
73 | } | |||
|
74 | ||||
|
75 | QVector<SqpDateTime> | |||
|
76 | VariableCacheController::dateCacheList(std::shared_ptr<Variable> variable) const noexcept | |||
|
77 | { | |||
|
78 | return impl->m_VariableToSqpDateTimeListMap.at(variable); | |||
|
79 | } | |||
|
80 | ||||
|
81 | void VariableCacheController::VariableCacheControllerPrivate::addDateTimeRecurse( | |||
|
82 | const SqpDateTime &dateTime, QVector<SqpDateTime> &dateTimeList, int cacheIndex) | |||
|
83 | { | |||
|
84 | const auto dateTimeListSize = dateTimeList.count(); | |||
|
85 | if (cacheIndex >= dateTimeListSize) { | |||
|
86 | dateTimeList.push_back(dateTime); | |||
|
87 | // there is no anymore interval to compore, we can just push_back it | |||
|
88 | return; | |||
|
89 | } | |||
|
90 | ||||
|
91 | auto currentDateTime = dateTimeList[cacheIndex]; | |||
|
92 | ||||
|
93 | if (dateTime.m_TEnd < currentDateTime.m_TStart) { | |||
|
94 | // The compared one is < to current one compared, we can insert it | |||
|
95 | dateTimeList.insert(cacheIndex, dateTime); | |||
|
96 | } | |||
|
97 | ||||
|
98 | else if (dateTime.m_TStart > currentDateTime.m_TEnd) { | |||
|
99 | // The compared one is > to current one compared we can comparet if to the next one | |||
|
100 | addDateTimeRecurse(dateTime, dateTimeList, ++cacheIndex); | |||
|
101 | } | |||
|
102 | else { | |||
|
103 | // Merge cases: we need to merge the two interval, remove the old one from the list then | |||
|
104 | // rerun the algo from this index with the merged interval | |||
|
105 | auto mTStart = std::min(dateTime.m_TStart, currentDateTime.m_TStart); | |||
|
106 | auto mTEnd = std::max(dateTime.m_TEnd, currentDateTime.m_TEnd); | |||
|
107 | auto mergeDateTime = SqpDateTime{mTStart, mTEnd}; | |||
|
108 | ||||
|
109 | dateTimeList.remove(cacheIndex); | |||
|
110 | addDateTimeRecurse(mergeDateTime, dateTimeList, cacheIndex); | |||
|
111 | } | |||
|
112 | } | |||
|
113 | ||||
|
114 | ||||
|
115 | void VariableCacheController::VariableCacheControllerPrivate::addInCacheDataByEnd( | |||
|
116 | const SqpDateTime &dateTime, QVector<SqpDateTime> &dateTimeList, | |||
|
117 | QVector<SqpDateTime> ¬InCache, int cacheIndex, double currentTStart) | |||
|
118 | { | |||
|
119 | const auto dateTimeListSize = dateTimeList.count(); | |||
|
120 | if (cacheIndex >= dateTimeListSize) { | |||
|
121 | if (currentTStart < dateTime.m_TEnd) { | |||
|
122 | ||||
|
123 | // te localised after all other interval: The last interval is [currentTsart, te] | |||
|
124 | notInCache.push_back(SqpDateTime{currentTStart, dateTime.m_TEnd}); | |||
|
125 | } | |||
|
126 | return; | |||
|
127 | } | |||
|
128 | ||||
|
129 | auto currentDateTimeJ = dateTimeList[cacheIndex]; | |||
|
130 | if (dateTime.m_TEnd <= currentDateTimeJ.m_TStart) { | |||
|
131 | // te localised between to interval: The last interval is [currentTsart, te] | |||
|
132 | notInCache.push_back(SqpDateTime{currentTStart, dateTime.m_TEnd}); | |||
|
133 | } | |||
|
134 | else { | |||
|
135 | notInCache.push_back(SqpDateTime{currentTStart, currentDateTimeJ.m_TStart}); | |||
|
136 | if (dateTime.m_TEnd > currentDateTimeJ.m_TEnd) { | |||
|
137 | // te not localised before the current interval: we need to look at the next interval | |||
|
138 | addInCacheDataByEnd(dateTime, dateTimeList, notInCache, ++cacheIndex, | |||
|
139 | currentDateTimeJ.m_TEnd); | |||
|
140 | } | |||
|
141 | } | |||
|
142 | } | |||
|
143 | ||||
|
144 | void VariableCacheController::VariableCacheControllerPrivate::addInCacheDataByStart( | |||
|
145 | const SqpDateTime &dateTime, QVector<SqpDateTime> &dateTimeList, | |||
|
146 | QVector<SqpDateTime> ¬InCache, int cacheIndex, double currentTStart) | |||
|
147 | { | |||
|
148 | const auto dateTimeListSize = dateTimeList.count(); | |||
|
149 | if (cacheIndex >= dateTimeListSize) { | |||
|
150 | // ts localised after all other interval: The last interval is [ts, te] | |||
|
151 | notInCache.push_back(SqpDateTime{currentTStart, dateTime.m_TEnd}); | |||
|
152 | return; | |||
|
153 | } | |||
|
154 | ||||
|
155 | auto currentDateTimeI = dateTimeList[cacheIndex]; | |||
|
156 | auto cacheIndexJ = cacheIndex; | |||
|
157 | if (currentTStart < currentDateTimeI.m_TStart) { | |||
|
158 | ||||
|
159 | // ts localised between to interval: let's localized te | |||
|
160 | addInCacheDataByEnd(dateTime, dateTimeList, notInCache, cacheIndexJ, currentTStart); | |||
|
161 | } | |||
|
162 | else if (dateTime.m_TStart < currentDateTimeI.m_TEnd) { | |||
|
163 | // ts not localised before the current interval: we need to look at the next interval | |||
|
164 | // We can assume now current tstart is the last interval tend, because data between them are | |||
|
165 | // in the cache | |||
|
166 | addInCacheDataByStart(dateTime, dateTimeList, notInCache, ++cacheIndex, | |||
|
167 | currentDateTimeI.m_TEnd); | |||
|
168 | } | |||
|
169 | else { | |||
|
170 | // ts not localised before the current interval: we need to look at the next interval | |||
|
171 | addInCacheDataByStart(dateTime, dateTimeList, notInCache, ++cacheIndex, currentTStart); | |||
|
172 | } | |||
|
173 | } |
@@ -0,0 +1,343 | |||||
|
1 | #include <Variable/Variable.h> | |||
|
2 | #include <Variable/VariableCacheController.h> | |||
|
3 | ||||
|
4 | #include <QObject> | |||
|
5 | #include <QtTest> | |||
|
6 | ||||
|
7 | #include <memory> | |||
|
8 | ||||
|
9 | class TestVariableCacheController : public QObject { | |||
|
10 | Q_OBJECT | |||
|
11 | ||||
|
12 | private slots: | |||
|
13 | void testProvideNotInCacheDateTimeList(); | |||
|
14 | ||||
|
15 | void testAddDateTime(); | |||
|
16 | }; | |||
|
17 | ||||
|
18 | ||||
|
19 | void TestVariableCacheController::testProvideNotInCacheDateTimeList() | |||
|
20 | { | |||
|
21 | VariableCacheController variableCacheController{}; | |||
|
22 | ||||
|
23 | auto ts0 = QDateTime{QDate{2017, 01, 01}, QTime{2, 3, 0, 0}}; | |||
|
24 | auto te0 = QDateTime{QDate{2017, 01, 01}, QTime{2, 4, 0, 0}}; | |||
|
25 | auto sqp0 = SqpDateTime{static_cast<double>(ts0.toMSecsSinceEpoch()), | |||
|
26 | static_cast<double>(te0.toMSecsSinceEpoch())}; | |||
|
27 | ||||
|
28 | auto ts1 = QDateTime{QDate{2017, 01, 01}, QTime{2, 6, 0, 0}}; | |||
|
29 | auto te1 = QDateTime{QDate{2017, 01, 01}, QTime{2, 8, 0, 0}}; | |||
|
30 | auto sqp1 = SqpDateTime{static_cast<double>(ts1.toMSecsSinceEpoch()), | |||
|
31 | static_cast<double>(te1.toMSecsSinceEpoch())}; | |||
|
32 | ||||
|
33 | auto ts2 = QDateTime{QDate{2017, 01, 01}, QTime{2, 18, 0, 0}}; | |||
|
34 | auto te2 = QDateTime{QDate{2017, 01, 01}, QTime{2, 20, 0, 0}}; | |||
|
35 | auto sqp2 = SqpDateTime{static_cast<double>(ts2.toMSecsSinceEpoch()), | |||
|
36 | static_cast<double>(te2.toMSecsSinceEpoch())}; | |||
|
37 | ||||
|
38 | auto var0 = std::make_shared<Variable>("", "", "", sqp0); | |||
|
39 | ||||
|
40 | variableCacheController.addDateTime(var0, sqp0); | |||
|
41 | variableCacheController.addDateTime(var0, sqp1); | |||
|
42 | variableCacheController.addDateTime(var0, sqp2); | |||
|
43 | ||||
|
44 | // first case [ts,te] < ts0 | |||
|
45 | auto ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 0, 0, 0}}; | |||
|
46 | auto te = QDateTime{QDate{2017, 01, 01}, QTime{2, 1, 0, 0}}; | |||
|
47 | auto sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
48 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
49 | ||||
|
50 | ||||
|
51 | auto notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
52 | ||||
|
53 | QCOMPARE(notInCach.size(), 1); | |||
|
54 | auto notInCashSqp = notInCach.first(); | |||
|
55 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
56 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
57 | ||||
|
58 | ||||
|
59 | // second case ts < ts0 && ts0 < te <= te0 | |||
|
60 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 0, 0, 0}}; | |||
|
61 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 3, 30, 0}}; | |||
|
62 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
63 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
64 | ||||
|
65 | ||||
|
66 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
67 | ||||
|
68 | QCOMPARE(notInCach.size(), 1); | |||
|
69 | notInCashSqp = notInCach.first(); | |||
|
70 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
71 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
72 | ||||
|
73 | // 3th case ts < ts0 && te0 < te <= ts1 | |||
|
74 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 0, 0, 0}}; | |||
|
75 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 5, 0, 0}}; | |||
|
76 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
77 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
78 | ||||
|
79 | ||||
|
80 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
81 | ||||
|
82 | QCOMPARE(notInCach.size(), 2); | |||
|
83 | notInCashSqp = notInCach.first(); | |||
|
84 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
85 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
86 | ||||
|
87 | notInCashSqp = notInCach.at(1); | |||
|
88 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
89 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
90 | ||||
|
91 | // 4th case ts < ts0 && ts1 < te <= te1 | |||
|
92 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 0, 0, 0}}; | |||
|
93 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 7, 0, 0}}; | |||
|
94 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
95 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
96 | ||||
|
97 | ||||
|
98 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
99 | ||||
|
100 | QCOMPARE(notInCach.size(), 2); | |||
|
101 | notInCashSqp = notInCach.first(); | |||
|
102 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
103 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
104 | ||||
|
105 | notInCashSqp = notInCach.at(1); | |||
|
106 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
107 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts1.toMSecsSinceEpoch())); | |||
|
108 | ||||
|
109 | // 5th case ts < ts0 && te3 < te | |||
|
110 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 0, 0, 0}}; | |||
|
111 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 22, 0, 0}}; | |||
|
112 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
113 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
114 | ||||
|
115 | ||||
|
116 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
117 | ||||
|
118 | QCOMPARE(notInCach.size(), 4); | |||
|
119 | notInCashSqp = notInCach.first(); | |||
|
120 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
121 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
122 | ||||
|
123 | notInCashSqp = notInCach.at(1); | |||
|
124 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
125 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts1.toMSecsSinceEpoch())); | |||
|
126 | ||||
|
127 | notInCashSqp = notInCach.at(2); | |||
|
128 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te1.toMSecsSinceEpoch())); | |||
|
129 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts2.toMSecsSinceEpoch())); | |||
|
130 | ||||
|
131 | notInCashSqp = notInCach.at(3); | |||
|
132 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te2.toMSecsSinceEpoch())); | |||
|
133 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
134 | ||||
|
135 | ||||
|
136 | // 6th case ts2 < ts | |||
|
137 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 45, 0, 0}}; | |||
|
138 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 47, 0, 0}}; | |||
|
139 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
140 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
141 | ||||
|
142 | ||||
|
143 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
144 | ||||
|
145 | QCOMPARE(notInCach.size(), 1); | |||
|
146 | notInCashSqp = notInCach.first(); | |||
|
147 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
148 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
149 | ||||
|
150 | // 7th case ts = te0 && te < ts1 | |||
|
151 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 4, 0, 0}}; | |||
|
152 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 5, 0, 0}}; | |||
|
153 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
154 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
155 | ||||
|
156 | ||||
|
157 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
158 | ||||
|
159 | QCOMPARE(notInCach.size(), 1); | |||
|
160 | notInCashSqp = notInCach.first(); | |||
|
161 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
162 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
163 | ||||
|
164 | // 8th case ts0 < ts < te0 && te < ts1 | |||
|
165 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 3, 30, 0}}; | |||
|
166 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 5, 0, 0}}; | |||
|
167 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
168 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
169 | ||||
|
170 | ||||
|
171 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
172 | ||||
|
173 | QCOMPARE(notInCach.size(), 1); | |||
|
174 | notInCashSqp = notInCach.first(); | |||
|
175 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
176 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
177 | ||||
|
178 | // 9th case ts0 < ts < te0 && ts1 < te < te1 | |||
|
179 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 3, 30, 0}}; | |||
|
180 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 7, 0, 0}}; | |||
|
181 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
182 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
183 | ||||
|
184 | ||||
|
185 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
186 | ||||
|
187 | QCOMPARE(notInCach.size(), 1); | |||
|
188 | notInCashSqp = notInCach.first(); | |||
|
189 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
190 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts1.toMSecsSinceEpoch())); | |||
|
191 | ||||
|
192 | // 10th case te1 < ts < te < ts2 | |||
|
193 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 9, 0, 0}}; | |||
|
194 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 10, 0, 0}}; | |||
|
195 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
196 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
197 | ||||
|
198 | ||||
|
199 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
200 | ||||
|
201 | QCOMPARE(notInCach.size(), 1); | |||
|
202 | notInCashSqp = notInCach.first(); | |||
|
203 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
204 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
205 | ||||
|
206 | // 11th case te0 < ts < ts1 && te3 < te | |||
|
207 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 5, 0, 0}}; | |||
|
208 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 47, 0, 0}}; | |||
|
209 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
210 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
211 | ||||
|
212 | ||||
|
213 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
214 | ||||
|
215 | QCOMPARE(notInCach.size(), 3); | |||
|
216 | notInCashSqp = notInCach.first(); | |||
|
217 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
218 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts1.toMSecsSinceEpoch())); | |||
|
219 | ||||
|
220 | notInCashSqp = notInCach.at(1); | |||
|
221 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te1.toMSecsSinceEpoch())); | |||
|
222 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts2.toMSecsSinceEpoch())); | |||
|
223 | ||||
|
224 | notInCashSqp = notInCach.at(2); | |||
|
225 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te2.toMSecsSinceEpoch())); | |||
|
226 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
227 | ||||
|
228 | // 12th case te0 < ts < ts1 && te3 < te | |||
|
229 | ts = QDateTime{QDate{2017, 01, 01}, QTime{2, 5, 0, 0}}; | |||
|
230 | te = QDateTime{QDate{2017, 01, 01}, QTime{2, 10, 0, 0}}; | |||
|
231 | sqp = SqpDateTime{static_cast<double>(ts.toMSecsSinceEpoch()), | |||
|
232 | static_cast<double>(te.toMSecsSinceEpoch())}; | |||
|
233 | ||||
|
234 | notInCach = variableCacheController.provideNotInCacheDateTimeList(var0, sqp); | |||
|
235 | ||||
|
236 | QCOMPARE(notInCach.size(), 2); | |||
|
237 | notInCashSqp = notInCach.first(); | |||
|
238 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(ts.toMSecsSinceEpoch())); | |||
|
239 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(ts1.toMSecsSinceEpoch())); | |||
|
240 | ||||
|
241 | notInCashSqp = notInCach.at(1); | |||
|
242 | QCOMPARE(notInCashSqp.m_TStart, static_cast<double>(te1.toMSecsSinceEpoch())); | |||
|
243 | QCOMPARE(notInCashSqp.m_TEnd, static_cast<double>(te.toMSecsSinceEpoch())); | |||
|
244 | } | |||
|
245 | ||||
|
246 | ||||
|
247 | void TestVariableCacheController::testAddDateTime() | |||
|
248 | { | |||
|
249 | VariableCacheController variableCacheController{}; | |||
|
250 | ||||
|
251 | auto ts0 = QDateTime{QDate{2017, 01, 01}, QTime{2, 3, 0, 0}}; | |||
|
252 | auto te0 = QDateTime{QDate{2017, 01, 01}, QTime{2, 4, 0, 0}}; | |||
|
253 | auto sqp0 = SqpDateTime{static_cast<double>(ts0.toMSecsSinceEpoch()), | |||
|
254 | static_cast<double>(te0.toMSecsSinceEpoch())}; | |||
|
255 | ||||
|
256 | auto ts1 = QDateTime{QDate{2017, 01, 01}, QTime{2, 6, 0, 0}}; | |||
|
257 | auto te1 = QDateTime{QDate{2017, 01, 01}, QTime{2, 8, 0, 0}}; | |||
|
258 | auto sqp1 = SqpDateTime{static_cast<double>(ts1.toMSecsSinceEpoch()), | |||
|
259 | static_cast<double>(te1.toMSecsSinceEpoch())}; | |||
|
260 | ||||
|
261 | auto ts2 = QDateTime{QDate{2017, 01, 01}, QTime{2, 18, 0, 0}}; | |||
|
262 | auto te2 = QDateTime{QDate{2017, 01, 01}, QTime{2, 20, 0, 0}}; | |||
|
263 | auto sqp2 = SqpDateTime{static_cast<double>(ts2.toMSecsSinceEpoch()), | |||
|
264 | static_cast<double>(te2.toMSecsSinceEpoch())}; | |||
|
265 | ||||
|
266 | auto ts01 = QDateTime{QDate{2017, 01, 01}, QTime{2, 4, 0, 0}}; | |||
|
267 | auto te01 = QDateTime{QDate{2017, 01, 01}, QTime{2, 6, 0, 0}}; | |||
|
268 | auto sqp01 = SqpDateTime{static_cast<double>(ts01.toMSecsSinceEpoch()), | |||
|
269 | static_cast<double>(te01.toMSecsSinceEpoch())}; | |||
|
270 | ||||
|
271 | auto ts3 = QDateTime{QDate{2017, 01, 01}, QTime{2, 14, 0, 0}}; | |||
|
272 | auto te3 = QDateTime{QDate{2017, 01, 01}, QTime{2, 16, 0, 0}}; | |||
|
273 | auto sqp3 = SqpDateTime{static_cast<double>(ts3.toMSecsSinceEpoch()), | |||
|
274 | static_cast<double>(te3.toMSecsSinceEpoch())}; | |||
|
275 | ||||
|
276 | auto ts03 = QDateTime{QDate{2017, 01, 01}, QTime{2, 4, 0, 0}}; | |||
|
277 | auto te03 = QDateTime{QDate{2017, 01, 01}, QTime{2, 22, 0, 0}}; | |||
|
278 | auto sqp03 = SqpDateTime{static_cast<double>(ts03.toMSecsSinceEpoch()), | |||
|
279 | static_cast<double>(te03.toMSecsSinceEpoch())}; | |||
|
280 | ||||
|
281 | ||||
|
282 | auto var0 = std::make_shared<Variable>("", "", "", sqp0); | |||
|
283 | ||||
|
284 | ||||
|
285 | // First case: add the first interval to the variable :sqp0 | |||
|
286 | variableCacheController.addDateTime(var0, sqp0); | |||
|
287 | auto dateCacheList = variableCacheController.dateCacheList(var0); | |||
|
288 | QCOMPARE(dateCacheList.count(), 1); | |||
|
289 | auto dateCache = dateCacheList.at(0); | |||
|
290 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
291 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
292 | ||||
|
293 | // 2nd case: add a second interval : sqp1 > sqp0 | |||
|
294 | variableCacheController.addDateTime(var0, sqp1); | |||
|
295 | dateCacheList = variableCacheController.dateCacheList(var0); | |||
|
296 | QCOMPARE(dateCacheList.count(), 2); | |||
|
297 | dateCache = dateCacheList.at(0); | |||
|
298 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
299 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te0.toMSecsSinceEpoch())); | |||
|
300 | ||||
|
301 | dateCache = dateCacheList.at(1); | |||
|
302 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts1.toMSecsSinceEpoch())); | |||
|
303 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te1.toMSecsSinceEpoch())); | |||
|
304 | ||||
|
305 | // 3th case: merge sqp0 & sqp1 with sqp01 | |||
|
306 | variableCacheController.addDateTime(var0, sqp01); | |||
|
307 | dateCacheList = variableCacheController.dateCacheList(var0); | |||
|
308 | QCOMPARE(dateCacheList.count(), 1); | |||
|
309 | dateCache = dateCacheList.at(0); | |||
|
310 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
311 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te1.toMSecsSinceEpoch())); | |||
|
312 | ||||
|
313 | ||||
|
314 | // 4th case: add a second interval : sqp1 > sqp0 | |||
|
315 | variableCacheController.addDateTime(var0, sqp2); | |||
|
316 | variableCacheController.addDateTime(var0, sqp3); | |||
|
317 | dateCacheList = variableCacheController.dateCacheList(var0); | |||
|
318 | QCOMPARE(dateCacheList.count(), 3); | |||
|
319 | dateCache = dateCacheList.at(0); | |||
|
320 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
321 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te1.toMSecsSinceEpoch())); | |||
|
322 | ||||
|
323 | dateCache = dateCacheList.at(1); | |||
|
324 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts3.toMSecsSinceEpoch())); | |||
|
325 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te3.toMSecsSinceEpoch())); | |||
|
326 | ||||
|
327 | dateCache = dateCacheList.at(2); | |||
|
328 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts2.toMSecsSinceEpoch())); | |||
|
329 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te2.toMSecsSinceEpoch())); | |||
|
330 | ||||
|
331 | ||||
|
332 | // 5th case: merge all interval | |||
|
333 | variableCacheController.addDateTime(var0, sqp03); | |||
|
334 | dateCacheList = variableCacheController.dateCacheList(var0); | |||
|
335 | QCOMPARE(dateCacheList.count(), 1); | |||
|
336 | dateCache = dateCacheList.at(0); | |||
|
337 | QCOMPARE(dateCache.m_TStart, static_cast<double>(ts0.toMSecsSinceEpoch())); | |||
|
338 | QCOMPARE(dateCache.m_TEnd, static_cast<double>(te03.toMSecsSinceEpoch())); | |||
|
339 | } | |||
|
340 | ||||
|
341 | ||||
|
342 | QTEST_MAIN(TestVariableCacheController) | |||
|
343 | #include "TestVariableCacheController.moc" |
@@ -1,56 +1,82 | |||||
1 | #ifndef SCIQLOP_ARRAYDATA_H |
|
1 | #ifndef SCIQLOP_ARRAYDATA_H | |
2 | #define SCIQLOP_ARRAYDATA_H |
|
2 | #define SCIQLOP_ARRAYDATA_H | |
3 |
|
3 | |||
4 | #include <QVector> |
|
4 | #include <QVector> | |
5 |
|
5 | |||
6 | /** |
|
6 | /** | |
7 | * @brief The ArrayData class represents a dataset for a data series. |
|
7 | * @brief The ArrayData class represents a dataset for a data series. | |
8 | * |
|
8 | * | |
9 | * A dataset can be unidimensional or two-dimensional. This property is determined by the Dim |
|
9 | * A dataset can be unidimensional or two-dimensional. This property is determined by the Dim | |
10 | * template-parameter. |
|
10 | * template-parameter. | |
11 | * |
|
11 | * | |
12 | * @tparam Dim the dimension of the ArrayData (one or two) |
|
12 | * @tparam Dim the dimension of the ArrayData (one or two) | |
13 | * @sa IDataSeries |
|
13 | * @sa IDataSeries | |
14 | */ |
|
14 | */ | |
15 | template <int Dim> |
|
15 | template <int Dim> | |
16 | class ArrayData { |
|
16 | class ArrayData { | |
17 | public: |
|
17 | public: | |
18 | /** |
|
18 | /** | |
19 | * Ctor for a unidimensional ArrayData |
|
19 | * Ctor for a unidimensional ArrayData | |
20 | * @param nbColumns the number of values the ArrayData will hold |
|
20 | * @param nbColumns the number of values the ArrayData will hold | |
21 | */ |
|
21 | */ | |
22 | template <int D = Dim, typename = std::enable_if_t<D == 1> > |
|
22 | template <int D = Dim, typename = std::enable_if_t<D == 1> > | |
23 | explicit ArrayData(int nbColumns) : m_Data{1, QVector<double>{}} |
|
23 | explicit ArrayData(int nbColumns) : m_Data{1, QVector<double>{}} | |
24 | { |
|
24 | { | |
25 | m_Data[0].resize(nbColumns); |
|
25 | m_Data[0].resize(nbColumns); | |
26 | } |
|
26 | } | |
27 |
|
27 | |||
28 | /** |
|
28 | /** | |
29 | * Sets a data at a specified index. The index has to be valid to be effective |
|
29 | * Sets a data at a specified index. The index has to be valid to be effective | |
30 | * @param index the index to which the data will be set |
|
30 | * @param index the index to which the data will be set | |
31 | * @param data the data to set |
|
31 | * @param data the data to set | |
32 | * @remarks this method is only available for a unidimensional ArrayData |
|
32 | * @remarks this method is only available for a unidimensional ArrayData | |
33 | */ |
|
33 | */ | |
34 | template <int D = Dim, typename = std::enable_if_t<D == 1> > |
|
34 | template <int D = Dim, typename = std::enable_if_t<D == 1> > | |
35 | void setData(int index, double data) noexcept |
|
35 | void setData(int index, double data) noexcept | |
36 | { |
|
36 | { | |
37 | if (index >= 0 && index < m_Data.at(0).size()) { |
|
37 | if (index >= 0 && index < m_Data.at(0).size()) { | |
38 | m_Data[0].replace(index, data); |
|
38 | m_Data[0].replace(index, data); | |
39 | } |
|
39 | } | |
40 | } |
|
40 | } | |
41 |
|
41 | |||
42 | /** |
|
42 | /** | |
43 | * @return the data as a vector |
|
43 | * @return the data as a vector | |
44 | * @remarks this method is only available for a unidimensional ArrayData |
|
44 | * @remarks this method is only available for a unidimensional ArrayData | |
45 | */ |
|
45 | */ | |
46 | template <int D = Dim, typename = std::enable_if_t<D == 1> > |
|
46 | template <int D = Dim, typename = std::enable_if_t<D == 1> > | |
47 | QVector<double> data() const noexcept |
|
47 | QVector<double> data() const noexcept | |
48 | { |
|
48 | { | |
49 | return m_Data.at(0); |
|
49 | return m_Data.at(0); | |
50 | } |
|
50 | } | |
51 |
|
51 | |||
|
52 | /** | |||
|
53 | * @return the data as a vector | |||
|
54 | * @remarks this method is only available for a unidimensional ArrayData | |||
|
55 | */ | |||
|
56 | template <int D = Dim, typename = std::enable_if_t<D == 1> > | |||
|
57 | const QVector<double> &data(double tStart, double tEnd) const noexcept | |||
|
58 | { | |||
|
59 | return m_Data.at(tStart); | |||
|
60 | } | |||
|
61 | ||||
|
62 | // TODO Comment | |||
|
63 | template <int D = Dim, typename = std::enable_if_t<D == 1> > | |||
|
64 | void merge(ArrayData<1> *arrayData) | |||
|
65 | { | |||
|
66 | if (!m_Data.empty()) { | |||
|
67 | m_Data[0] += arrayData->data(); | |||
|
68 | } | |||
|
69 | } | |||
|
70 | ||||
|
71 | template <int D = Dim, typename = std::enable_if_t<D == 1> > | |||
|
72 | int size() | |||
|
73 | { | |||
|
74 | return m_Data[0].size(); | |||
|
75 | } | |||
|
76 | ||||
|
77 | ||||
52 | private: |
|
78 | private: | |
53 | QVector<QVector<double> > m_Data; |
|
79 | QVector<QVector<double> > m_Data; | |
54 | }; |
|
80 | }; | |
55 |
|
81 | |||
56 | #endif // SCIQLOP_ARRAYDATA_H |
|
82 | #endif // SCIQLOP_ARRAYDATA_H |
@@ -1,50 +1,59 | |||||
1 | #ifndef SCIQLOP_DATASERIES_H |
|
1 | #ifndef SCIQLOP_DATASERIES_H | |
2 | #define SCIQLOP_DATASERIES_H |
|
2 | #define SCIQLOP_DATASERIES_H | |
3 |
|
3 | |||
4 | #include <Data/ArrayData.h> |
|
4 | #include <Data/ArrayData.h> | |
5 | #include <Data/IDataSeries.h> |
|
5 | #include <Data/IDataSeries.h> | |
6 |
|
6 | |||
7 | #include <memory> |
|
7 | #include <memory> | |
8 |
|
8 | |||
9 | /** |
|
9 | /** | |
10 | * @brief The DataSeries class is the base (abstract) implementation of IDataSeries. |
|
10 | * @brief The DataSeries class is the base (abstract) implementation of IDataSeries. | |
11 | * |
|
11 | * | |
12 | * It proposes to set a dimension for the values ββdata |
|
12 | * It proposes to set a dimension for the values ββdata | |
13 | * |
|
13 | * | |
14 | * @tparam Dim The dimension of the values data |
|
14 | * @tparam Dim The dimension of the values data | |
15 | * |
|
15 | * | |
16 | */ |
|
16 | */ | |
17 | template <int Dim> |
|
17 | template <int Dim> | |
18 | class DataSeries : public IDataSeries { |
|
18 | class DataSeries : public IDataSeries { | |
19 | public: |
|
19 | public: | |
20 | /// @sa IDataSeries::xAxisData() |
|
20 | /// @sa IDataSeries::xAxisData() | |
21 | std::shared_ptr<ArrayData<1> > xAxisData() override { return m_XAxisData; } |
|
21 | std::shared_ptr<ArrayData<1> > xAxisData() override { return m_XAxisData; } | |
22 |
|
22 | |||
23 | /// @sa IDataSeries::xAxisUnit() |
|
23 | /// @sa IDataSeries::xAxisUnit() | |
24 | Unit xAxisUnit() const override { return m_XAxisUnit; } |
|
24 | Unit xAxisUnit() const override { return m_XAxisUnit; } | |
25 |
|
25 | |||
26 | /// @return the values dataset |
|
26 | /// @return the values dataset | |
27 | std::shared_ptr<ArrayData<Dim> > valuesData() const { return m_ValuesData; } |
|
27 | std::shared_ptr<ArrayData<Dim> > valuesData() const { return m_ValuesData; } | |
28 |
|
28 | |||
29 | /// @sa IDataSeries::valuesUnit() |
|
29 | /// @sa IDataSeries::valuesUnit() | |
30 | Unit valuesUnit() const override { return m_ValuesUnit; } |
|
30 | Unit valuesUnit() const override { return m_ValuesUnit; } | |
31 |
|
31 | |||
|
32 | /// @sa IDataSeries::merge() | |||
|
33 | void merge(IDataSeries *dataSeries) override | |||
|
34 | { | |||
|
35 | if (auto dimDataSeries = dynamic_cast<DataSeries<Dim> *>(dataSeries)) { | |||
|
36 | m_XAxisData->merge(dimDataSeries->xAxisData().get()); | |||
|
37 | m_ValuesData->merge(dimDataSeries->valuesData().get()); | |||
|
38 | } | |||
|
39 | } | |||
|
40 | ||||
32 | protected: |
|
41 | protected: | |
33 | /// Protected ctor (DataSeries is abstract) |
|
42 | /// Protected ctor (DataSeries is abstract) | |
34 | explicit DataSeries(std::shared_ptr<ArrayData<1> > xAxisData, const Unit &xAxisUnit, |
|
43 | explicit DataSeries(std::shared_ptr<ArrayData<1> > xAxisData, const Unit &xAxisUnit, | |
35 | std::shared_ptr<ArrayData<Dim> > valuesData, const Unit &valuesUnit) |
|
44 | std::shared_ptr<ArrayData<Dim> > valuesData, const Unit &valuesUnit) | |
36 | : m_XAxisData{xAxisData}, |
|
45 | : m_XAxisData{xAxisData}, | |
37 | m_XAxisUnit{xAxisUnit}, |
|
46 | m_XAxisUnit{xAxisUnit}, | |
38 | m_ValuesData{valuesData}, |
|
47 | m_ValuesData{valuesData}, | |
39 | m_ValuesUnit{valuesUnit} |
|
48 | m_ValuesUnit{valuesUnit} | |
40 | { |
|
49 | { | |
41 | } |
|
50 | } | |
42 |
|
51 | |||
43 | private: |
|
52 | private: | |
44 | std::shared_ptr<ArrayData<1> > m_XAxisData; |
|
53 | std::shared_ptr<ArrayData<1> > m_XAxisData; | |
45 | Unit m_XAxisUnit; |
|
54 | Unit m_XAxisUnit; | |
46 | std::shared_ptr<ArrayData<Dim> > m_ValuesData; |
|
55 | std::shared_ptr<ArrayData<Dim> > m_ValuesData; | |
47 | Unit m_ValuesUnit; |
|
56 | Unit m_ValuesUnit; | |
48 | }; |
|
57 | }; | |
49 |
|
58 | |||
50 | #endif // SCIQLOP_DATASERIES_H |
|
59 | #endif // SCIQLOP_DATASERIES_H |
@@ -1,30 +1,39 | |||||
1 | #ifndef SCIQLOP_IDATAPROVIDER_H |
|
1 | #ifndef SCIQLOP_IDATAPROVIDER_H | |
2 | #define SCIQLOP_IDATAPROVIDER_H |
|
2 | #define SCIQLOP_IDATAPROVIDER_H | |
3 |
|
3 | |||
4 | #include <memory> |
|
4 | #include <memory> | |
5 |
|
5 | |||
6 | #include <QObject> |
|
6 | #include <QObject> | |
7 |
|
7 | |||
|
8 | #include <Data/SqpDateTime.h> | |||
|
9 | ||||
8 | class DataProviderParameters; |
|
10 | class DataProviderParameters; | |
9 | class IDataSeries; |
|
11 | class IDataSeries; | |
10 |
|
12 | |||
11 | /** |
|
13 | /** | |
12 | * @brief The IDataProvider interface aims to declare a data provider. |
|
14 | * @brief The IDataProvider interface aims to declare a data provider. | |
13 | * |
|
15 | * | |
14 | * A data provider is an entity that generates data and returns it according to various parameters |
|
16 | * A data provider is an entity that generates data and returns it according to various parameters | |
15 | * (time interval, product to retrieve the data, etc.) |
|
17 | * (time interval, product to retrieve the data, etc.) | |
16 | * |
|
18 | * | |
17 | * @sa IDataSeries |
|
19 | * @sa IDataSeries | |
18 | */ |
|
20 | */ | |
19 | class IDataProvider { |
|
21 | class IDataProvider : public QObject { | |
|
22 | ||||
|
23 | Q_OBJECT | |||
20 | public: |
|
24 | public: | |
21 | virtual ~IDataProvider() noexcept = default; |
|
25 | virtual ~IDataProvider() noexcept = default; | |
22 |
|
26 | |||
23 | virtual std::unique_ptr<IDataSeries> |
|
27 | virtual std::unique_ptr<IDataSeries> | |
24 | retrieveData(const DataProviderParameters ¶meters) const = 0; |
|
28 | retrieveData(const DataProviderParameters ¶meters) const = 0; | |
25 | }; |
|
|||
26 |
|
29 | |||
|
30 | ||||
|
31 | virtual void requestDataLoading(const QVector<SqpDateTime> &dateTimeList) = 0; | |||
|
32 | ||||
|
33 | signals: | |||
|
34 | void dataProvided(std::shared_ptr<IDataSeries> dateSerie, SqpDateTime dateTime); | |||
|
35 | }; | |||
27 | // Required for using shared_ptr in signals/slots |
|
36 | // Required for using shared_ptr in signals/slots | |
28 | Q_DECLARE_METATYPE(std::shared_ptr<IDataProvider>) |
|
37 | Q_DECLARE_METATYPE(std::shared_ptr<IDataProvider>) | |
29 |
|
38 | |||
30 | #endif // SCIQLOP_IDATAPROVIDER_H |
|
39 | #endif // SCIQLOP_IDATAPROVIDER_H |
@@ -1,47 +1,54 | |||||
1 | #ifndef SCIQLOP_IDATASERIES_H |
|
1 | #ifndef SCIQLOP_IDATASERIES_H | |
2 | #define SCIQLOP_IDATASERIES_H |
|
2 | #define SCIQLOP_IDATASERIES_H | |
3 |
|
3 | |||
4 | #include <QString> |
|
|||
5 |
|
4 | |||
6 | #include <memory> |
|
5 | #include <memory> | |
7 |
|
6 | |||
|
7 | #include <QObject> | |||
|
8 | #include <QString> | |||
|
9 | ||||
8 | template <int Dim> |
|
10 | template <int Dim> | |
9 | class ArrayData; |
|
11 | class ArrayData; | |
10 |
|
12 | |||
11 | struct Unit { |
|
13 | struct Unit { | |
12 | explicit Unit(const QString &name = {}, bool timeUnit = false) |
|
14 | explicit Unit(const QString &name = {}, bool timeUnit = false) | |
13 | : m_Name{name}, m_TimeUnit{timeUnit} |
|
15 | : m_Name{name}, m_TimeUnit{timeUnit} | |
14 | { |
|
16 | { | |
15 | } |
|
17 | } | |
16 |
|
18 | |||
17 | QString m_Name; ///< Unit name |
|
19 | QString m_Name; ///< Unit name | |
18 | bool m_TimeUnit; ///< The unit is a unit of time |
|
20 | bool m_TimeUnit; ///< The unit is a unit of time | |
19 | }; |
|
21 | }; | |
20 |
|
22 | |||
21 | /** |
|
23 | /** | |
22 | * @brief The IDataSeries aims to declare a data series. |
|
24 | * @brief The IDataSeries aims to declare a data series. | |
23 | * |
|
25 | * | |
24 | * A data series is an entity that contains at least : |
|
26 | * A data series is an entity that contains at least : | |
25 | * - one dataset representing the x-axis |
|
27 | * - one dataset representing the x-axis | |
26 | * - one dataset representing the values |
|
28 | * - one dataset representing the values | |
27 | * |
|
29 | * | |
28 | * Each dataset is represented by an ArrayData, and is associated with a unit. |
|
30 | * Each dataset is represented by an ArrayData, and is associated with a unit. | |
29 | * |
|
31 | * | |
30 | * An ArrayData can be unidimensional or two-dimensional, depending on the implementation of the |
|
32 | * An ArrayData can be unidimensional or two-dimensional, depending on the implementation of the | |
31 | * IDataSeries. The x-axis dataset is always unidimensional. |
|
33 | * IDataSeries. The x-axis dataset is always unidimensional. | |
32 | * |
|
34 | * | |
33 | * @sa ArrayData |
|
35 | * @sa ArrayData | |
34 | */ |
|
36 | */ | |
35 | class IDataSeries { |
|
37 | class IDataSeries { | |
36 | public: |
|
38 | public: | |
37 | virtual ~IDataSeries() noexcept = default; |
|
39 | virtual ~IDataSeries() noexcept = default; | |
38 |
|
40 | |||
39 | /// Returns the x-axis dataset |
|
41 | /// Returns the x-axis dataset | |
40 | virtual std::shared_ptr<ArrayData<1> > xAxisData() = 0; |
|
42 | virtual std::shared_ptr<ArrayData<1> > xAxisData() = 0; | |
41 |
|
43 | |||
42 | virtual Unit xAxisUnit() const = 0; |
|
44 | virtual Unit xAxisUnit() const = 0; | |
43 |
|
45 | |||
44 | virtual Unit valuesUnit() const = 0; |
|
46 | virtual Unit valuesUnit() const = 0; | |
|
47 | ||||
|
48 | virtual void merge(IDataSeries *dataSeries) = 0; | |||
45 | }; |
|
49 | }; | |
46 |
|
50 | |||
|
51 | // Required for using shared_ptr in signals/slots | |||
|
52 | Q_DECLARE_METATYPE(std::shared_ptr<IDataSeries>) | |||
|
53 | ||||
47 | #endif // SCIQLOP_IDATASERIES_H |
|
54 | #endif // SCIQLOP_IDATASERIES_H |
@@ -1,14 +1,23 | |||||
1 | #ifndef SCIQLOP_SQPDATETIME_H |
|
1 | #ifndef SCIQLOP_SQPDATETIME_H | |
2 | #define SCIQLOP_SQPDATETIME_H |
|
2 | #define SCIQLOP_SQPDATETIME_H | |
3 |
|
3 | |||
|
4 | #include <QObject> | |||
4 | /** |
|
5 | /** | |
5 | * @brief The SqpDateTime struct holds the information of time parameters |
|
6 | * @brief The SqpDateTime struct holds the information of time parameters | |
6 | */ |
|
7 | */ | |
7 | struct SqpDateTime { |
|
8 | struct SqpDateTime { | |
8 | /// Start time |
|
9 | /// Start time | |
9 | double m_TStart; |
|
10 | double m_TStart; | |
10 | /// End time |
|
11 | /// End time | |
11 | double m_TEnd; |
|
12 | double m_TEnd; | |
|
13 | ||||
|
14 | bool contains(const SqpDateTime &dateTime) | |||
|
15 | { | |||
|
16 | return (m_TStart <= dateTime.m_TStart && m_TEnd >= dateTime.m_TEnd); | |||
|
17 | } | |||
12 | }; |
|
18 | }; | |
13 |
|
19 | |||
|
20 | // Required for using shared_ptr in signals/slots | |||
|
21 | Q_DECLARE_METATYPE(SqpDateTime) | |||
|
22 | ||||
14 | #endif // SCIQLOP_SQPDATETIME_H |
|
23 | #endif // SCIQLOP_SQPDATETIME_H |
@@ -1,35 +1,54 | |||||
1 | #ifndef SCIQLOP_VARIABLE_H |
|
1 | #ifndef SCIQLOP_VARIABLE_H | |
2 | #define SCIQLOP_VARIABLE_H |
|
2 | #define SCIQLOP_VARIABLE_H | |
3 |
|
3 | |||
4 |
#include < |
|
4 | #include <Data/SqpDateTime.h> | |
|
5 | ||||
5 |
|
6 | |||
|
7 | #include <QLoggingCategory> | |||
6 | #include <QObject> |
|
8 | #include <QObject> | |
7 |
|
9 | |||
|
10 | #include <Common/spimpl.h> | |||
|
11 | ||||
|
12 | Q_DECLARE_LOGGING_CATEGORY(LOG_Variable) | |||
|
13 | ||||
8 | class IDataSeries; |
|
14 | class IDataSeries; | |
9 | class QString; |
|
15 | class QString; | |
10 |
|
16 | |||
11 | /** |
|
17 | /** | |
12 | * @brief The Variable class represents a variable in SciQlop. |
|
18 | * @brief The Variable class represents a variable in SciQlop. | |
13 | */ |
|
19 | */ | |
14 | class Variable { |
|
20 | class Variable : public QObject { | |
|
21 | ||||
|
22 | Q_OBJECT | |||
|
23 | ||||
15 | public: |
|
24 | public: | |
16 |
explicit Variable(const QString &name, const QString &unit, const QString &mission |
|
25 | explicit Variable(const QString &name, const QString &unit, const QString &mission, | |
|
26 | const SqpDateTime &dateTime); | |||
17 |
|
27 | |||
18 | QString name() const noexcept; |
|
28 | QString name() const noexcept; | |
19 | QString mission() const noexcept; |
|
29 | QString mission() const noexcept; | |
20 | QString unit() const noexcept; |
|
30 | QString unit() const noexcept; | |
21 |
|
31 | SqpDateTime dateTime() const noexcept; | ||
22 | void addDataSeries(std::unique_ptr<IDataSeries> dataSeries) noexcept; |
|
|||
23 |
|
32 | |||
24 | /// @return the data of the variable, nullptr if there is no data |
|
33 | /// @return the data of the variable, nullptr if there is no data | |
25 | IDataSeries *dataSeries() const noexcept; |
|
34 | IDataSeries *dataSeries() const noexcept; | |
26 |
|
35 | |||
|
36 | bool contains(SqpDateTime dateTime); | |||
|
37 | void setDataSeries(std::unique_ptr<IDataSeries> dataSeries) noexcept; | |||
|
38 | ||||
|
39 | public slots: | |||
|
40 | void onAddDataSeries(std::shared_ptr<IDataSeries> dataSeries) noexcept; | |||
|
41 | ||||
|
42 | signals: | |||
|
43 | void dataCacheUpdated(); | |||
|
44 | ||||
|
45 | ||||
27 | private: |
|
46 | private: | |
28 | class VariablePrivate; |
|
47 | class VariablePrivate; | |
29 | spimpl::unique_impl_ptr<VariablePrivate> impl; |
|
48 | spimpl::unique_impl_ptr<VariablePrivate> impl; | |
30 | }; |
|
49 | }; | |
31 |
|
50 | |||
32 | // Required for using shared_ptr in signals/slots |
|
51 | // Required for using shared_ptr in signals/slots | |
33 | Q_DECLARE_METATYPE(std::shared_ptr<Variable>) |
|
52 | Q_DECLARE_METATYPE(std::shared_ptr<Variable>) | |
34 |
|
53 | |||
35 | #endif // SCIQLOP_VARIABLE_H |
|
54 | #endif // SCIQLOP_VARIABLE_H |
@@ -1,51 +1,58 | |||||
1 | #ifndef SCIQLOP_VARIABLECONTROLLER_H |
|
1 | #ifndef SCIQLOP_VARIABLECONTROLLER_H | |
2 | #define SCIQLOP_VARIABLECONTROLLER_H |
|
2 | #define SCIQLOP_VARIABLECONTROLLER_H | |
3 |
|
3 | |||
|
4 | #include <Data/SqpDateTime.h> | |||
|
5 | ||||
4 | #include <QLoggingCategory> |
|
6 | #include <QLoggingCategory> | |
5 | #include <QObject> |
|
7 | #include <QObject> | |
6 |
|
8 | |||
7 | #include <Common/spimpl.h> |
|
9 | #include <Common/spimpl.h> | |
8 |
|
10 | |||
|
11 | ||||
9 | class IDataProvider; |
|
12 | class IDataProvider; | |
10 | class TimeController; |
|
13 | class TimeController; | |
11 | class Variable; |
|
14 | class Variable; | |
12 | class VariableModel; |
|
15 | class VariableModel; | |
13 |
|
16 | |||
14 | Q_DECLARE_LOGGING_CATEGORY(LOG_VariableController) |
|
17 | Q_DECLARE_LOGGING_CATEGORY(LOG_VariableController) | |
15 |
|
18 | |||
16 | /** |
|
19 | /** | |
17 | * @brief The VariableController class aims to handle the variables in SciQlop. |
|
20 | * @brief The VariableController class aims to handle the variables in SciQlop. | |
18 | */ |
|
21 | */ | |
19 | class VariableController : public QObject { |
|
22 | class VariableController : public QObject { | |
20 | Q_OBJECT |
|
23 | Q_OBJECT | |
21 | public: |
|
24 | public: | |
22 | explicit VariableController(QObject *parent = 0); |
|
25 | explicit VariableController(QObject *parent = 0); | |
23 | virtual ~VariableController(); |
|
26 | virtual ~VariableController(); | |
24 |
|
27 | |||
25 | VariableModel *variableModel() noexcept; |
|
28 | VariableModel *variableModel() noexcept; | |
26 |
|
29 | |||
27 | void setTimeController(TimeController *timeController) noexcept; |
|
30 | void setTimeController(TimeController *timeController) noexcept; | |
28 |
|
31 | |||
|
32 | ||||
|
33 | /// Request the data loading of the variable whithin dateTime | |||
|
34 | void requestDataLoading(std::shared_ptr<Variable> variable, const SqpDateTime &dateTime); | |||
|
35 | ||||
29 | signals: |
|
36 | signals: | |
30 | /// Signal emitted when a variable has been created |
|
37 | /// Signal emitted when a variable has been created | |
31 | void variableCreated(std::shared_ptr<Variable> variable); |
|
38 | void variableCreated(std::shared_ptr<Variable> variable); | |
32 |
|
39 | |||
33 | public slots: |
|
40 | public slots: | |
34 | /** |
|
41 | /** | |
35 | * Creates a new variable and adds it to the model |
|
42 | * Creates a new variable and adds it to the model | |
36 | * @param name the name of the new variable |
|
43 | * @param name the name of the new variable | |
37 | * @param provider the data provider for the new variable |
|
44 | * @param provider the data provider for the new variable | |
38 | */ |
|
45 | */ | |
39 | void createVariable(const QString &name, std::shared_ptr<IDataProvider> provider) noexcept; |
|
46 | void createVariable(const QString &name, std::shared_ptr<IDataProvider> provider) noexcept; | |
40 |
|
47 | |||
41 | void initialize(); |
|
48 | void initialize(); | |
42 | void finalize(); |
|
49 | void finalize(); | |
43 |
|
50 | |||
44 | private: |
|
51 | private: | |
45 | void waitForFinish(); |
|
52 | void waitForFinish(); | |
46 |
|
53 | |||
47 | class VariableControllerPrivate; |
|
54 | class VariableControllerPrivate; | |
48 | spimpl::unique_impl_ptr<VariableControllerPrivate> impl; |
|
55 | spimpl::unique_impl_ptr<VariableControllerPrivate> impl; | |
49 | }; |
|
56 | }; | |
50 |
|
57 | |||
51 | #endif // SCIQLOP_VARIABLECONTROLLER_H |
|
58 | #endif // SCIQLOP_VARIABLECONTROLLER_H |
@@ -1,44 +1,49 | |||||
1 | #ifndef SCIQLOP_VARIABLEMODEL_H |
|
1 | #ifndef SCIQLOP_VARIABLEMODEL_H | |
2 | #define SCIQLOP_VARIABLEMODEL_H |
|
2 | #define SCIQLOP_VARIABLEMODEL_H | |
3 |
|
3 | |||
4 | #include <Common/spimpl.h> |
|
4 | ||
|
5 | #include <Data/SqpDateTime.h> | |||
5 |
|
6 | |||
6 | #include <QAbstractTableModel> |
|
7 | #include <QAbstractTableModel> | |
7 | #include <QLoggingCategory> |
|
8 | #include <QLoggingCategory> | |
8 |
|
9 | |||
|
10 | #include <Common/spimpl.h> | |||
|
11 | ||||
9 | Q_DECLARE_LOGGING_CATEGORY(LOG_VariableModel) |
|
12 | Q_DECLARE_LOGGING_CATEGORY(LOG_VariableModel) | |
10 |
|
13 | |||
11 | class IDataSeries; |
|
14 | class IDataSeries; | |
12 | class Variable; |
|
15 | class Variable; | |
13 |
|
16 | |||
14 | /** |
|
17 | /** | |
15 | * @brief The VariableModel class aims to hold the variables that have been created in SciQlop |
|
18 | * @brief The VariableModel class aims to hold the variables that have been created in SciQlop | |
16 | */ |
|
19 | */ | |
17 | class VariableModel : public QAbstractTableModel { |
|
20 | class VariableModel : public QAbstractTableModel { | |
18 | public: |
|
21 | public: | |
19 | explicit VariableModel(QObject *parent = nullptr); |
|
22 | explicit VariableModel(QObject *parent = nullptr); | |
20 |
|
23 | |||
21 | /** |
|
24 | /** | |
22 | * Creates a new variable in the model |
|
25 | * Creates a new variable in the model | |
23 | * @param name the name of the new variable |
|
26 | * @param name the name of the new variable | |
|
27 | * @param dateTime the dateTime of the new variable | |||
24 | * @param defaultDataSeries the default data of the new variable |
|
28 | * @param defaultDataSeries the default data of the new variable | |
25 | * @return the pointer to the new variable |
|
29 | * @return the pointer to the new variable | |
26 | */ |
|
30 | */ | |
27 | std::shared_ptr<Variable> |
|
31 | std::shared_ptr<Variable> | |
28 |
createVariable(const QString &name, st |
|
32 | createVariable(const QString &name, const SqpDateTime &dateTime, | |
|
33 | std::unique_ptr<IDataSeries> defaultDataSeries) noexcept; | |||
29 |
|
34 | |||
30 | // /////////////////////////// // |
|
35 | // /////////////////////////// // | |
31 | // QAbstractTableModel methods // |
|
36 | // QAbstractTableModel methods // | |
32 | // /////////////////////////// // |
|
37 | // /////////////////////////// // | |
33 | virtual int columnCount(const QModelIndex &parent = QModelIndex{}) const override; |
|
38 | virtual int columnCount(const QModelIndex &parent = QModelIndex{}) const override; | |
34 | virtual int rowCount(const QModelIndex &parent = QModelIndex{}) const override; |
|
39 | virtual int rowCount(const QModelIndex &parent = QModelIndex{}) const override; | |
35 | virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; |
|
40 | virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; | |
36 | virtual QVariant headerData(int section, Qt::Orientation orientation, |
|
41 | virtual QVariant headerData(int section, Qt::Orientation orientation, | |
37 | int role = Qt::DisplayRole) const override; |
|
42 | int role = Qt::DisplayRole) const override; | |
38 |
|
43 | |||
39 | private: |
|
44 | private: | |
40 | class VariableModelPrivate; |
|
45 | class VariableModelPrivate; | |
41 | spimpl::unique_impl_ptr<VariableModelPrivate> impl; |
|
46 | spimpl::unique_impl_ptr<VariableModelPrivate> impl; | |
42 | }; |
|
47 | }; | |
43 |
|
48 | |||
44 | #endif // SCIQLOP_VARIABLEMODEL_H |
|
49 | #endif // SCIQLOP_VARIABLEMODEL_H |
@@ -1,48 +1,89 | |||||
1 | #include "Variable/Variable.h" |
|
1 | #include "Variable/Variable.h" | |
2 |
|
2 | |||
3 | #include <Data/IDataSeries.h> |
|
3 | #include <Data/IDataSeries.h> | |
|
4 | #include <Data/SqpDateTime.h> | |||
|
5 | ||||
|
6 | Q_LOGGING_CATEGORY(LOG_Variable, "Variable") | |||
4 |
|
7 | |||
5 | struct Variable::VariablePrivate { |
|
8 | struct Variable::VariablePrivate { | |
6 |
explicit VariablePrivate(const QString &name, const QString &unit, const QString &mission |
|
9 | explicit VariablePrivate(const QString &name, const QString &unit, const QString &mission, | |
7 | : m_Name{name}, m_Unit{unit}, m_Mission{mission}, m_DataSeries{nullptr} |
|
10 | const SqpDateTime &dateTime) | |
|
11 | : m_Name{name}, | |||
|
12 | m_Unit{unit}, | |||
|
13 | m_Mission{mission}, | |||
|
14 | m_DateTime{dateTime}, | |||
|
15 | m_DataSeries{nullptr} | |||
8 | { |
|
16 | { | |
9 | } |
|
17 | } | |
10 |
|
18 | |||
11 | QString m_Name; |
|
19 | QString m_Name; | |
12 | QString m_Unit; |
|
20 | QString m_Unit; | |
13 | QString m_Mission; |
|
21 | QString m_Mission; | |
|
22 | ||||
|
23 | SqpDateTime m_DateTime; // The dateTime available in the view and loaded. not the cache. | |||
14 | std::unique_ptr<IDataSeries> m_DataSeries; |
|
24 | std::unique_ptr<IDataSeries> m_DataSeries; | |
15 | }; |
|
25 | }; | |
16 |
|
26 | |||
17 |
Variable::Variable(const QString &name, const QString &unit, const QString &mission |
|
27 | Variable::Variable(const QString &name, const QString &unit, const QString &mission, | |
18 | : impl{spimpl::make_unique_impl<VariablePrivate>(name, unit, mission)} |
|
28 | const SqpDateTime &dateTime) | |
|
29 | : impl{spimpl::make_unique_impl<VariablePrivate>(name, unit, mission, dateTime)} | |||
19 | { |
|
30 | { | |
20 | } |
|
31 | } | |
21 |
|
32 | |||
22 | QString Variable::name() const noexcept |
|
33 | QString Variable::name() const noexcept | |
23 | { |
|
34 | { | |
24 | return impl->m_Name; |
|
35 | return impl->m_Name; | |
25 | } |
|
36 | } | |
26 |
|
37 | |||
27 | QString Variable::mission() const noexcept |
|
38 | QString Variable::mission() const noexcept | |
28 | { |
|
39 | { | |
29 | return impl->m_Mission; |
|
40 | return impl->m_Mission; | |
30 | } |
|
41 | } | |
31 |
|
42 | |||
32 | QString Variable::unit() const noexcept |
|
43 | QString Variable::unit() const noexcept | |
33 | { |
|
44 | { | |
34 | return impl->m_Unit; |
|
45 | return impl->m_Unit; | |
35 | } |
|
46 | } | |
36 |
|
47 | |||
37 | void Variable::addDataSeries(std::unique_ptr<IDataSeries> dataSeries) noexcept |
|
48 | SqpDateTime Variable::dateTime() const noexcept | |
|
49 | { | |||
|
50 | return impl->m_DateTime; | |||
|
51 | } | |||
|
52 | ||||
|
53 | void Variable::setDataSeries(std::unique_ptr<IDataSeries> dataSeries) noexcept | |||
38 | { |
|
54 | { | |
39 | if (!impl->m_DataSeries) { |
|
55 | if (!impl->m_DataSeries) { | |
40 | impl->m_DataSeries = std::move(dataSeries); |
|
56 | impl->m_DataSeries = std::move(dataSeries); | |
41 | } |
|
57 | } | |
42 | /// @todo : else, merge the two data series (if possible) |
|
58 | } | |
|
59 | ||||
|
60 | void Variable::onAddDataSeries(std::shared_ptr<IDataSeries> dataSeries) noexcept | |||
|
61 | { | |||
|
62 | if (impl->m_DataSeries) { | |||
|
63 | impl->m_DataSeries->merge(dataSeries.get()); | |||
|
64 | ||||
|
65 | emit dataCacheUpdated(); | |||
|
66 | } | |||
43 | } |
|
67 | } | |
44 |
|
68 | |||
45 | IDataSeries *Variable::dataSeries() const noexcept |
|
69 | IDataSeries *Variable::dataSeries() const noexcept | |
46 | { |
|
70 | { | |
47 | return impl->m_DataSeries.get(); |
|
71 | return impl->m_DataSeries.get(); | |
48 | } |
|
72 | } | |
|
73 | ||||
|
74 | bool Variable::contains(SqpDateTime dateTime) | |||
|
75 | { | |||
|
76 | if (!impl->m_DateTime.contains(dateTime)) { | |||
|
77 | // The current variable dateTime isn't enough to display the dateTime requested. | |||
|
78 | // We have to update it to the new dateTime requested. | |||
|
79 | // the correspondant new data to display will be given by the cache if possible and the | |||
|
80 | // provider if necessary. | |||
|
81 | qCInfo(LOG_Variable()) << "NEW DATE NEEDED"; | |||
|
82 | ||||
|
83 | impl->m_DateTime = dateTime; | |||
|
84 | ||||
|
85 | return false; | |||
|
86 | } | |||
|
87 | ||||
|
88 | return true; | |||
|
89 | } |
@@ -1,110 +1,164 | |||||
|
1 | #include <Variable/Variable.h> | |||
|
2 | #include <Variable/VariableCacheController.h> | |||
1 | #include <Variable/VariableController.h> |
|
3 | #include <Variable/VariableController.h> | |
2 | #include <Variable/VariableModel.h> |
|
4 | #include <Variable/VariableModel.h> | |
3 |
|
5 | |||
4 | #include <Data/DataProviderParameters.h> |
|
6 | #include <Data/DataProviderParameters.h> | |
5 | #include <Data/IDataProvider.h> |
|
7 | #include <Data/IDataProvider.h> | |
6 | #include <Data/IDataSeries.h> |
|
8 | #include <Data/IDataSeries.h> | |
7 | #include <Time/TimeController.h> |
|
9 | #include <Time/TimeController.h> | |
8 |
|
10 | |||
9 | #include <QDateTime> |
|
11 | #include <QDateTime> | |
|
12 | #include <QElapsedTimer> | |||
10 | #include <QMutex> |
|
13 | #include <QMutex> | |
11 | #include <QThread> |
|
14 | #include <QThread> | |
12 |
|
15 | |||
|
16 | #include <unordered_map> | |||
|
17 | ||||
13 | Q_LOGGING_CATEGORY(LOG_VariableController, "VariableController") |
|
18 | Q_LOGGING_CATEGORY(LOG_VariableController, "VariableController") | |
14 |
|
19 | |||
15 | namespace { |
|
20 | namespace { | |
16 |
|
21 | |||
17 | /// @todo Generates default dataseries, according to the provider passed in parameter. This method |
|
22 | /// @todo Generates default dataseries, according to the provider passed in parameter. This method | |
18 | /// will be deleted when the timerange is recovered from SciQlop |
|
23 | /// will be deleted when the timerange is recovered from SciQlop | |
19 | std::unique_ptr<IDataSeries> generateDefaultDataSeries(const IDataProvider &provider, |
|
24 | std::unique_ptr<IDataSeries> generateDefaultDataSeries(const IDataProvider &provider, | |
20 | const SqpDateTime &dateTime) noexcept |
|
25 | const SqpDateTime &dateTime) noexcept | |
21 | { |
|
26 | { | |
22 | auto parameters = DataProviderParameters{dateTime}; |
|
27 | auto parameters = DataProviderParameters{dateTime}; | |
23 |
|
28 | |||
24 | return provider.retrieveData(parameters); |
|
29 | return provider.retrieveData(parameters); | |
25 | } |
|
30 | } | |
26 |
|
31 | |||
27 | } // namespace |
|
32 | } // namespace | |
28 |
|
33 | |||
29 | struct VariableController::VariableControllerPrivate { |
|
34 | struct VariableController::VariableControllerPrivate { | |
30 | explicit VariableControllerPrivate(VariableController *parent) |
|
35 | explicit VariableControllerPrivate(VariableController *parent) | |
31 | : m_WorkingMutex{}, m_VariableModel{new VariableModel{parent}} |
|
36 | : m_WorkingMutex{}, | |
|
37 | m_VariableModel{new VariableModel{parent}}, | |||
|
38 | m_VariableCacheController{std::make_unique<VariableCacheController>()} | |||
32 | { |
|
39 | { | |
33 | } |
|
40 | } | |
34 |
|
41 | |||
35 | QMutex m_WorkingMutex; |
|
42 | QMutex m_WorkingMutex; | |
36 | /// Variable model. The VariableController has the ownership |
|
43 | /// Variable model. The VariableController has the ownership | |
37 | VariableModel *m_VariableModel; |
|
44 | VariableModel *m_VariableModel; | |
38 |
|
45 | |||
|
46 | ||||
39 | TimeController *m_TimeController{nullptr}; |
|
47 | TimeController *m_TimeController{nullptr}; | |
|
48 | std::unique_ptr<VariableCacheController> m_VariableCacheController; | |||
|
49 | ||||
|
50 | std::unordered_map<std::shared_ptr<Variable>, std::shared_ptr<IDataProvider> > | |||
|
51 | m_VariableToProviderMap; | |||
40 | }; |
|
52 | }; | |
41 |
|
53 | |||
42 | VariableController::VariableController(QObject *parent) |
|
54 | VariableController::VariableController(QObject *parent) | |
43 | : QObject{parent}, impl{spimpl::make_unique_impl<VariableControllerPrivate>(this)} |
|
55 | : QObject{parent}, impl{spimpl::make_unique_impl<VariableControllerPrivate>(this)} | |
44 | { |
|
56 | { | |
45 | qCDebug(LOG_VariableController()) << tr("VariableController construction") |
|
57 | qCDebug(LOG_VariableController()) << tr("VariableController construction") | |
46 | << QThread::currentThread(); |
|
58 | << QThread::currentThread(); | |
47 | } |
|
59 | } | |
48 |
|
60 | |||
49 | VariableController::~VariableController() |
|
61 | VariableController::~VariableController() | |
50 | { |
|
62 | { | |
51 | qCDebug(LOG_VariableController()) << tr("VariableController destruction") |
|
63 | qCDebug(LOG_VariableController()) << tr("VariableController destruction") | |
52 | << QThread::currentThread(); |
|
64 | << QThread::currentThread(); | |
53 | this->waitForFinish(); |
|
65 | this->waitForFinish(); | |
54 | } |
|
66 | } | |
55 |
|
67 | |||
56 | VariableModel *VariableController::variableModel() noexcept |
|
68 | VariableModel *VariableController::variableModel() noexcept | |
57 | { |
|
69 | { | |
58 | return impl->m_VariableModel; |
|
70 | return impl->m_VariableModel; | |
59 | } |
|
71 | } | |
60 |
|
72 | |||
61 | void VariableController::setTimeController(TimeController *timeController) noexcept |
|
73 | void VariableController::setTimeController(TimeController *timeController) noexcept | |
62 | { |
|
74 | { | |
63 | impl->m_TimeController = timeController; |
|
75 | impl->m_TimeController = timeController; | |
64 | } |
|
76 | } | |
65 |
|
77 | |||
66 | void VariableController::createVariable(const QString &name, |
|
78 | void VariableController::createVariable(const QString &name, | |
67 | std::shared_ptr<IDataProvider> provider) noexcept |
|
79 | std::shared_ptr<IDataProvider> provider) noexcept | |
68 | { |
|
80 | { | |
69 | // TORM |
|
|||
70 | // auto dateTime = SqpDateTime{ |
|
|||
71 | // // Remarks : we don't use toSecsSinceEpoch() here (method is for Qt 5.8 or above) |
|
|||
72 | // static_cast<double>(QDateTime{QDate{2017, 01, 01}, QTime{12, 00}}.toMSecsSinceEpoch() |
|
|||
73 | // / 1000.), |
|
|||
74 | // static_cast<double>(QDateTime{QDate{2017, 01, 01}, QTime{12, 01}}.toMSecsSinceEpoch()) |
|
|||
75 | // / 1000.}; |
|
|||
76 |
|
81 | |||
77 | if (!impl->m_TimeController) { |
|
82 | if (!impl->m_TimeController) { | |
78 | qCCritical(LOG_VariableController()) |
|
83 | qCCritical(LOG_VariableController()) | |
79 | << tr("Impossible to create variable: The time controller is null"); |
|
84 | << tr("Impossible to create variable: The time controller is null"); | |
80 | return; |
|
85 | return; | |
81 | } |
|
86 | } | |
82 |
|
87 | |||
83 |
|
88 | |||
84 | /// @todo : for the moment : |
|
89 | /// @todo : for the moment : | |
85 | /// - the provider is only used to retrieve data from the variable for its initialization, but |
|
90 | /// - the provider is only used to retrieve data from the variable for its initialization, but | |
86 | /// it will be retained later |
|
91 | /// it will be retained later | |
87 | /// - default data are generated for the variable, without taking into account the timerange set |
|
92 | /// - default data are generated for the variable, without taking into account the timerange set | |
88 | /// in sciqlop |
|
93 | /// in sciqlop | |
|
94 | auto dateTime = impl->m_TimeController->dateTime(); | |||
89 | if (auto newVariable = impl->m_VariableModel->createVariable( |
|
95 | if (auto newVariable = impl->m_VariableModel->createVariable( | |
90 |
name, generateDefaultDataSeries(*provider, |
|
96 | name, dateTime, generateDefaultDataSeries(*provider, dateTime))) { | |
|
97 | ||||
|
98 | // store the provider | |||
|
99 | impl->m_VariableToProviderMap[newVariable] = provider; | |||
|
100 | qRegisterMetaType<std::shared_ptr<IDataSeries> >(); | |||
|
101 | qRegisterMetaType<SqpDateTime>(); | |||
|
102 | connect(provider.get(), &IDataProvider::dataProvided, newVariable.get(), | |||
|
103 | &Variable::onAddDataSeries); | |||
|
104 | ||||
|
105 | ||||
|
106 | // store in cache | |||
|
107 | impl->m_VariableCacheController->addDateTime(newVariable, dateTime); | |||
|
108 | ||||
|
109 | // notify the creation | |||
91 | emit variableCreated(newVariable); |
|
110 | emit variableCreated(newVariable); | |
92 | } |
|
111 | } | |
93 | } |
|
112 | } | |
94 |
|
113 | |||
|
114 | ||||
|
115 | void VariableController::requestDataLoading(std::shared_ptr<Variable> variable, | |||
|
116 | const SqpDateTime &dateTime) | |||
|
117 | { | |||
|
118 | // we want to load data of the variable for the dateTime. | |||
|
119 | // First we check if the cache contains some of them. | |||
|
120 | // For the other, we ask the provider to give them. | |||
|
121 | if (variable) { | |||
|
122 | ||||
|
123 | QElapsedTimer timer; | |||
|
124 | timer.start(); | |||
|
125 | qCInfo(LOG_VariableController()) << "The slow s0 operation took" << timer.elapsed() | |||
|
126 | << "milliseconds"; | |||
|
127 | auto dateTimeListNotInCache | |||
|
128 | = impl->m_VariableCacheController->provideNotInCacheDateTimeList(variable, dateTime); | |||
|
129 | qCInfo(LOG_VariableController()) << "The slow s1 operation took" << timer.elapsed() | |||
|
130 | << "milliseconds"; | |||
|
131 | ||||
|
132 | // Ask the provider for each data on the dateTimeListNotInCache | |||
|
133 | impl->m_VariableToProviderMap.at(variable)->requestDataLoading(dateTimeListNotInCache); | |||
|
134 | ||||
|
135 | qCInfo(LOG_VariableController()) << "The slow s2 operation took" << timer.elapsed() | |||
|
136 | << "milliseconds"; | |||
|
137 | ||||
|
138 | // store in cache | |||
|
139 | impl->m_VariableCacheController->addDateTime(variable, dateTime); | |||
|
140 | qCInfo(LOG_VariableController()) << "The slow s3 operation took" << timer.elapsed() | |||
|
141 | << "milliseconds"; | |||
|
142 | } | |||
|
143 | else { | |||
|
144 | qCCritical(LOG_VariableController()) << tr("Impossible to load data of a variable null"); | |||
|
145 | } | |||
|
146 | } | |||
|
147 | ||||
|
148 | ||||
95 | void VariableController::initialize() |
|
149 | void VariableController::initialize() | |
96 | { |
|
150 | { | |
97 | qCDebug(LOG_VariableController()) << tr("VariableController init") << QThread::currentThread(); |
|
151 | qCDebug(LOG_VariableController()) << tr("VariableController init") << QThread::currentThread(); | |
98 | impl->m_WorkingMutex.lock(); |
|
152 | impl->m_WorkingMutex.lock(); | |
99 | qCDebug(LOG_VariableController()) << tr("VariableController init END"); |
|
153 | qCDebug(LOG_VariableController()) << tr("VariableController init END"); | |
100 | } |
|
154 | } | |
101 |
|
155 | |||
102 | void VariableController::finalize() |
|
156 | void VariableController::finalize() | |
103 | { |
|
157 | { | |
104 | impl->m_WorkingMutex.unlock(); |
|
158 | impl->m_WorkingMutex.unlock(); | |
105 | } |
|
159 | } | |
106 |
|
160 | |||
107 | void VariableController::waitForFinish() |
|
161 | void VariableController::waitForFinish() | |
108 | { |
|
162 | { | |
109 | QMutexLocker locker{&impl->m_WorkingMutex}; |
|
163 | QMutexLocker locker{&impl->m_WorkingMutex}; | |
110 | } |
|
164 | } |
@@ -1,120 +1,120 | |||||
1 | #include <Variable/Variable.h> |
|
1 | #include <Variable/Variable.h> | |
2 | #include <Variable/VariableModel.h> |
|
2 | #include <Variable/VariableModel.h> | |
3 |
|
3 | |||
4 | #include <Data/IDataSeries.h> |
|
4 | #include <Data/IDataSeries.h> | |
5 |
|
5 | |||
6 | Q_LOGGING_CATEGORY(LOG_VariableModel, "VariableModel") |
|
6 | Q_LOGGING_CATEGORY(LOG_VariableModel, "VariableModel") | |
7 |
|
7 | |||
8 | namespace { |
|
8 | namespace { | |
9 |
|
9 | |||
10 | // Column indexes |
|
10 | // Column indexes | |
11 | const auto NAME_COLUMN = 0; |
|
11 | const auto NAME_COLUMN = 0; | |
12 | const auto UNIT_COLUMN = 1; |
|
12 | const auto UNIT_COLUMN = 1; | |
13 | const auto MISSION_COLUMN = 2; |
|
13 | const auto MISSION_COLUMN = 2; | |
14 | const auto NB_COLUMNS = 3; |
|
14 | const auto NB_COLUMNS = 3; | |
15 |
|
15 | |||
16 | } // namespace |
|
16 | } // namespace | |
17 |
|
17 | |||
18 | struct VariableModel::VariableModelPrivate { |
|
18 | struct VariableModel::VariableModelPrivate { | |
19 | /// Variables created in SciQlop |
|
19 | /// Variables created in SciQlop | |
20 | std::vector<std::shared_ptr<Variable> > m_Variables; |
|
20 | std::vector<std::shared_ptr<Variable> > m_Variables; | |
21 | }; |
|
21 | }; | |
22 |
|
22 | |||
23 | VariableModel::VariableModel(QObject *parent) |
|
23 | VariableModel::VariableModel(QObject *parent) | |
24 | : QAbstractTableModel{parent}, impl{spimpl::make_unique_impl<VariableModelPrivate>()} |
|
24 | : QAbstractTableModel{parent}, impl{spimpl::make_unique_impl<VariableModelPrivate>()} | |
25 | { |
|
25 | { | |
26 | } |
|
26 | } | |
27 |
|
27 | |||
28 | std::shared_ptr<Variable> |
|
28 | std::shared_ptr<Variable> | |
29 | VariableModel::createVariable(const QString &name, |
|
29 | VariableModel::createVariable(const QString &name, const SqpDateTime &dateTime, | |
30 | std::unique_ptr<IDataSeries> defaultDataSeries) noexcept |
|
30 | std::unique_ptr<IDataSeries> defaultDataSeries) noexcept | |
31 | { |
|
31 | { | |
32 | auto insertIndex = rowCount(); |
|
32 | auto insertIndex = rowCount(); | |
33 | beginInsertRows({}, insertIndex, insertIndex); |
|
33 | beginInsertRows({}, insertIndex, insertIndex); | |
34 |
|
34 | |||
35 | /// @todo For the moment, the other data of the variable is initialized with default values |
|
35 | /// @todo For the moment, the other data of the variable is initialized with default values | |
36 | auto variable |
|
36 | auto variable = std::make_shared<Variable>(name, QStringLiteral("unit"), | |
37 | = std::make_shared<Variable>(name, QStringLiteral("unit"), QStringLiteral("mission")); |
|
37 | QStringLiteral("mission"), dateTime); | |
38 |
variable-> |
|
38 | variable->setDataSeries(std::move(defaultDataSeries)); | |
39 |
|
39 | |||
40 | impl->m_Variables.push_back(variable); |
|
40 | impl->m_Variables.push_back(variable); | |
41 |
|
41 | |||
42 | endInsertRows(); |
|
42 | endInsertRows(); | |
43 |
|
43 | |||
44 | return variable; |
|
44 | return variable; | |
45 | } |
|
45 | } | |
46 |
|
46 | |||
47 | int VariableModel::columnCount(const QModelIndex &parent) const |
|
47 | int VariableModel::columnCount(const QModelIndex &parent) const | |
48 | { |
|
48 | { | |
49 | Q_UNUSED(parent); |
|
49 | Q_UNUSED(parent); | |
50 |
|
50 | |||
51 | return NB_COLUMNS; |
|
51 | return NB_COLUMNS; | |
52 | } |
|
52 | } | |
53 |
|
53 | |||
54 | int VariableModel::rowCount(const QModelIndex &parent) const |
|
54 | int VariableModel::rowCount(const QModelIndex &parent) const | |
55 | { |
|
55 | { | |
56 | Q_UNUSED(parent); |
|
56 | Q_UNUSED(parent); | |
57 |
|
57 | |||
58 | return impl->m_Variables.size(); |
|
58 | return impl->m_Variables.size(); | |
59 | } |
|
59 | } | |
60 |
|
60 | |||
61 | QVariant VariableModel::data(const QModelIndex &index, int role) const |
|
61 | QVariant VariableModel::data(const QModelIndex &index, int role) const | |
62 | { |
|
62 | { | |
63 | if (!index.isValid()) { |
|
63 | if (!index.isValid()) { | |
64 | return QVariant{}; |
|
64 | return QVariant{}; | |
65 | } |
|
65 | } | |
66 |
|
66 | |||
67 | if (index.row() < 0 || index.row() >= rowCount()) { |
|
67 | if (index.row() < 0 || index.row() >= rowCount()) { | |
68 | return QVariant{}; |
|
68 | return QVariant{}; | |
69 | } |
|
69 | } | |
70 |
|
70 | |||
71 | if (role == Qt::DisplayRole) { |
|
71 | if (role == Qt::DisplayRole) { | |
72 | if (auto variable = impl->m_Variables.at(index.row()).get()) { |
|
72 | if (auto variable = impl->m_Variables.at(index.row()).get()) { | |
73 | switch (index.column()) { |
|
73 | switch (index.column()) { | |
74 | case NAME_COLUMN: |
|
74 | case NAME_COLUMN: | |
75 | return variable->name(); |
|
75 | return variable->name(); | |
76 | case UNIT_COLUMN: |
|
76 | case UNIT_COLUMN: | |
77 | return variable->unit(); |
|
77 | return variable->unit(); | |
78 | case MISSION_COLUMN: |
|
78 | case MISSION_COLUMN: | |
79 | return variable->mission(); |
|
79 | return variable->mission(); | |
80 | default: |
|
80 | default: | |
81 | // No action |
|
81 | // No action | |
82 | break; |
|
82 | break; | |
83 | } |
|
83 | } | |
84 |
|
84 | |||
85 | qWarning(LOG_VariableModel()) |
|
85 | qWarning(LOG_VariableModel()) | |
86 | << tr("Can't get data (unknown column %1)").arg(index.column()); |
|
86 | << tr("Can't get data (unknown column %1)").arg(index.column()); | |
87 | } |
|
87 | } | |
88 | else { |
|
88 | else { | |
89 | qWarning(LOG_VariableModel()) << tr("Can't get data (no variable)"); |
|
89 | qWarning(LOG_VariableModel()) << tr("Can't get data (no variable)"); | |
90 | } |
|
90 | } | |
91 | } |
|
91 | } | |
92 |
|
92 | |||
93 | return QVariant{}; |
|
93 | return QVariant{}; | |
94 | } |
|
94 | } | |
95 |
|
95 | |||
96 | QVariant VariableModel::headerData(int section, Qt::Orientation orientation, int role) const |
|
96 | QVariant VariableModel::headerData(int section, Qt::Orientation orientation, int role) const | |
97 | { |
|
97 | { | |
98 | if (role != Qt::DisplayRole) { |
|
98 | if (role != Qt::DisplayRole) { | |
99 | return QVariant{}; |
|
99 | return QVariant{}; | |
100 | } |
|
100 | } | |
101 |
|
101 | |||
102 | if (orientation == Qt::Horizontal) { |
|
102 | if (orientation == Qt::Horizontal) { | |
103 | switch (section) { |
|
103 | switch (section) { | |
104 | case NAME_COLUMN: |
|
104 | case NAME_COLUMN: | |
105 | return tr("Name"); |
|
105 | return tr("Name"); | |
106 | case UNIT_COLUMN: |
|
106 | case UNIT_COLUMN: | |
107 | return tr("Unit"); |
|
107 | return tr("Unit"); | |
108 | case MISSION_COLUMN: |
|
108 | case MISSION_COLUMN: | |
109 | return tr("Mission"); |
|
109 | return tr("Mission"); | |
110 | default: |
|
110 | default: | |
111 | // No action |
|
111 | // No action | |
112 | break; |
|
112 | break; | |
113 | } |
|
113 | } | |
114 |
|
114 | |||
115 | qWarning(LOG_VariableModel()) |
|
115 | qWarning(LOG_VariableModel()) | |
116 | << tr("Can't get header data (unknown column %1)").arg(section); |
|
116 | << tr("Can't get header data (unknown column %1)").arg(section); | |
117 | } |
|
117 | } | |
118 |
|
118 | |||
119 | return QVariant{}; |
|
119 | return QVariant{}; | |
120 | } |
|
120 | } |
@@ -1,128 +1,139 | |||||
1 | # |
|
1 | # | |
2 | # use_clangformat.cmake |
|
2 | # use_clangformat.cmake | |
3 | # |
|
3 | # | |
4 | # The following functions are defined in this document: |
|
4 | # The following functions are defined in this document: | |
5 | # |
|
5 | # | |
6 |
|
6 | |||
7 | # ADD_CLANGFORMAT_TARGETS(<globExpression> ... |
|
7 | # ADD_CLANGFORMAT_TARGETS(<globExpression> ... | |
8 | # [ADD_TO_ALL] |
|
8 | # [ADD_TO_ALL] | |
9 | # [NAME <name>] |
|
9 | # [NAME <name>] | |
10 | # [NAME_ALL <nameall>] |
|
10 | # [NAME_ALL <nameall>] | |
11 | # [STYLE style] |
|
11 | # [STYLE style] | |
12 | # [RECURSE]) |
|
12 | # [RECURSE]) | |
13 | # |
|
13 | # | |
14 | # Two custom targets will be created: |
|
14 | # Two custom targets will be created: | |
15 | # * format_reports is run as part of the build, and is not rerun unless one of |
|
15 | # * format_reports is run as part of the build, and is not rerun unless one of | |
16 | # the file formatted is modified (only created if ADD_TO_ALL is provided); |
|
16 | # the file formatted is modified (only created if ADD_TO_ALL is provided); | |
17 | # * format must be explicitely called (make format) and is rerun even if the |
|
17 | # * format must be explicitely called (make format) and is rerun even if the | |
18 | # files to format have not been modified. To achieve this behavior, the commands |
|
18 | # files to format have not been modified. To achieve this behavior, the commands | |
19 | # used in this target pretend to produce a file without actually producing it. |
|
19 | # used in this target pretend to produce a file without actually producing it. | |
20 | # Because the output file is not there after the run, the command will be rerun |
|
20 | # Because the output file is not there after the run, the command will be rerun | |
21 | # again at the next target build. |
|
21 | # again at the next target build. | |
22 | # |
|
22 | # | |
23 | # If ADD_TO_ALL is provided then a target will be added to the default build |
|
23 | # If ADD_TO_ALL is provided then a target will be added to the default build | |
24 | # targets so that each time a source file is compiled, it is formatted with |
|
24 | # targets so that each time a source file is compiled, it is formatted with | |
25 | # clang-format. |
|
25 | # clang-format. | |
26 | # |
|
26 | # | |
27 | # NAME and NAME_ALL customize the name of the targets (format and format_reports |
|
27 | # NAME and NAME_ALL customize the name of the targets (format and format_reports | |
28 | # by default respectively). |
|
28 | # by default respectively). | |
29 | # |
|
29 | # | |
30 | # STYLE sets the style used by clang-format (default to "file"). |
|
30 | # STYLE sets the style used by clang-format (default to "file"). | |
31 | # |
|
31 | # | |
32 | # RECURSE selects if the glob expressions should be applied recursively or not. |
|
32 | # RECURSE selects if the glob expressions should be applied recursively or not. | |
33 | FUNCTION(ADD_CLANGFORMAT_TARGETS) |
|
33 | FUNCTION(ADD_CLANGFORMAT_TARGETS) | |
34 | # Default values |
|
34 | # Default values | |
35 | SET(target "format") |
|
35 | SET(target "format") | |
36 | SET(target_all "format_all") |
|
36 | SET(target_all "format_all") | |
37 | SET(style "file") |
|
37 | SET(style "file") | |
38 | SET(recurse OFF) |
|
38 | SET(recurse OFF) | |
39 | SET(addToAll OFF) |
|
39 | SET(addToAll OFF) | |
40 | SET(globs) |
|
40 | SET(globs) | |
41 |
|
41 | |||
42 | # Parse the options |
|
42 | # Parse the options | |
43 | MATH(EXPR lastIdx "${ARGC} - 1") |
|
43 | MATH(EXPR lastIdx "${ARGC} - 1") | |
44 | SET(i 0) |
|
44 | SET(i 0) | |
45 | WHILE(i LESS ${ARGC}) |
|
45 | WHILE(i LESS ${ARGC}) | |
46 | SET(arg "${ARGV${i}}") |
|
46 | SET(arg "${ARGV${i}}") | |
47 | IF("${arg}" STREQUAL "ADD_TO_ALL") |
|
47 | IF("${arg}" STREQUAL "ADD_TO_ALL") | |
48 | SET(addToAll ON) |
|
48 | SET(addToAll ON) | |
49 | ELSEIF("${arg}" STREQUAL "NAME") |
|
49 | ELSEIF("${arg}" STREQUAL "NAME") | |
50 | clangformat_incr(i) |
|
50 | clangformat_incr(i) | |
51 | SET(target "${ARGV${i}}") |
|
51 | SET(target "${ARGV${i}}") | |
52 | ELSEIF("${arg}" STREQUAL "NAME_ALL") |
|
52 | ELSEIF("${arg}" STREQUAL "NAME_ALL") | |
53 | clangformat_incr(i) |
|
53 | clangformat_incr(i) | |
54 | SET(target_all "${ARGV${i}}") |
|
54 | SET(target_all "${ARGV${i}}") | |
55 | ELSEIF("${arg}" STREQUAL "STYLE") |
|
55 | ELSEIF("${arg}" STREQUAL "STYLE") | |
56 | clangformat_incr(i) |
|
56 | clangformat_incr(i) | |
57 | SET(style "${ARGV${i}}") |
|
57 | SET(style "${ARGV${i}}") | |
58 | ELSEIF("${arg}" STREQUAL "RECURSE") |
|
58 | ELSEIF("${arg}" STREQUAL "RECURSE") | |
59 | SET(recurse ON) |
|
59 | SET(recurse ON) | |
60 | ELSE() |
|
60 | ELSE() | |
61 | LIST(APPEND globs ${arg}) |
|
61 | LIST(APPEND globs ${arg}) | |
62 | ENDIF() |
|
62 | ENDIF() | |
63 | clangformat_incr(i) |
|
63 | clangformat_incr(i) | |
64 | ENDWHILE() |
|
64 | ENDWHILE() | |
65 |
|
65 | |||
|
66 | ||||
66 | # Retrieve source files to format |
|
67 | # Retrieve source files to format | |
67 | IF(recurse) |
|
68 | IF(recurse) | |
68 | FILE(GLOB_RECURSE srcs ${globs}) |
|
69 | FILE(GLOB_RECURSE srcs ${globs}) | |
69 | ELSE() |
|
70 | ELSE() | |
70 | FILE(GLOB srcs ${globs}) |
|
71 | FILE(GLOB srcs ${globs}) | |
71 | ENDIF() |
|
72 | ENDIF() | |
72 |
|
73 | |||
73 | IF(NOT CLANGFORMAT_EXECUTABLE) |
|
74 | IF(NOT CLANGFORMAT_EXECUTABLE) | |
74 | MESSAGE(FATAL_ERROR "Unable to find clang-format executable") |
|
75 | MESSAGE(FATAL_ERROR "Unable to find clang-format executable") | |
75 | ENDIF() |
|
76 | ENDIF() | |
76 |
|
77 | |||
77 | # Format each source file with clang-format |
|
78 | # Format each source file with clang-format | |
78 | SET(touchedFiles) |
|
79 | SET(touchedFiles) | |
79 | SET(fakedTouchedFiles) |
|
80 | SET(fakedTouchedFiles) | |
80 | SET(reportNb 0) |
|
81 | SET(reportNb 0) | |
81 | # Create the directory where the touched files will be saved |
|
82 | # Create the directory where the touched files will be saved | |
82 | SET(formatDirectory "${CMAKE_CURRENT_BINARY_DIR}/format") |
|
83 | SET(formatDirectory "${CMAKE_CURRENT_BINARY_DIR}/format") | |
83 | FILE(MAKE_DIRECTORY ${formatDirectory}) |
|
84 | FILE(MAKE_DIRECTORY ${formatDirectory}) | |
|
85 | # STRING(REPLACE "*.ui" "" srcs ${srcs}) | |||
|
86 | FOREACH(item ${globs}) | |||
|
87 | STRING(REGEX MATCH ".*\.ui$" item ${item}) | |||
|
88 | IF(item) | |||
|
89 | LIST(APPEND UIS ${item}) | |||
|
90 | ENDIF(item) | |||
|
91 | ENDFOREACH(item ${globs}) | |||
|
92 | ||||
|
93 | LIST(REMOVE_ITEM srcs ${UIS}) | |||
|
94 | message("format lang: ${srcs}" ) | |||
84 | FOREACH (s ${srcs}) |
|
95 | FOREACH (s ${srcs}) | |
85 | SET(touchedFile ${formatDirectory}/format_touchedfile_${reportNb}) |
|
96 | SET(touchedFile ${formatDirectory}/format_touchedfile_${reportNb}) | |
86 | IF(addToAll) |
|
97 | IF(addToAll) | |
87 | ADD_CUSTOM_COMMAND( |
|
98 | ADD_CUSTOM_COMMAND( | |
88 | OUTPUT ${touchedFile} |
|
99 | OUTPUT ${touchedFile} | |
89 | COMMAND ${CLANGFORMAT_EXECUTABLE} |
|
100 | COMMAND ${CLANGFORMAT_EXECUTABLE} | |
90 | -style="${style}" |
|
101 | -style="${style}" | |
91 | -i |
|
102 | -i | |
92 | ${s} |
|
103 | ${s} | |
93 | # Create a file so that this command is executed only if the source |
|
104 | # Create a file so that this command is executed only if the source | |
94 | # file is modified |
|
105 | # file is modified | |
95 | COMMAND ${CMAKE_COMMAND} -E touch ${touchedFile} |
|
106 | COMMAND ${CMAKE_COMMAND} -E touch ${touchedFile} | |
96 | DEPENDS ${s} |
|
107 | DEPENDS ${s} | |
97 | COMMENT "Formatting code with clang-format of ${s}" |
|
108 | COMMENT "Formatting code with clang-format of ${s}" | |
98 | ) |
|
109 | ) | |
99 | ENDIF() |
|
110 | ENDIF() | |
100 |
|
111 | |||
101 | SET(fakedTouchedFile ${formatDirectory}/format_fakedtouchedfile_${reportNb}) |
|
112 | SET(fakedTouchedFile ${formatDirectory}/format_fakedtouchedfile_${reportNb}) | |
102 | ADD_CUSTOM_COMMAND( |
|
113 | ADD_CUSTOM_COMMAND( | |
103 | OUTPUT ${fakedTouchedFile} |
|
114 | OUTPUT ${fakedTouchedFile} | |
104 | COMMAND ${CLANGFORMAT_EXECUTABLE} |
|
115 | COMMAND ${CLANGFORMAT_EXECUTABLE} | |
105 | -style="${style}" |
|
116 | -style="${style}" | |
106 | -i |
|
117 | -i | |
107 | ${s} |
|
118 | ${s} | |
108 | DEPENDS ${s} |
|
119 | DEPENDS ${s} | |
109 | COMMENT "Formatting code with clang-format of ${s}" |
|
120 | COMMENT "Formatting code with clang-format of ${s}" | |
110 | ) |
|
121 | ) | |
111 |
|
122 | |||
112 | LIST(APPEND touchedFiles ${touchedFile}) |
|
123 | LIST(APPEND touchedFiles ${touchedFile}) | |
113 | LIST(APPEND fakedTouchedFiles ${fakedTouchedFile}) |
|
124 | LIST(APPEND fakedTouchedFiles ${fakedTouchedFile}) | |
114 | clangformat_incr(reportNb) |
|
125 | clangformat_incr(reportNb) | |
115 | ENDFOREACH() |
|
126 | ENDFOREACH() | |
116 |
|
127 | |||
117 | # Create the custom targets that will trigger the custom command created |
|
128 | # Create the custom targets that will trigger the custom command created | |
118 | # previously |
|
129 | # previously | |
119 | IF(addToAll) |
|
130 | IF(addToAll) | |
120 | ADD_CUSTOM_TARGET(${target_all} ALL DEPENDS ${touchedFiles}) |
|
131 | ADD_CUSTOM_TARGET(${target_all} ALL DEPENDS ${touchedFiles}) | |
121 | ENDIF() |
|
132 | ENDIF() | |
122 | ADD_CUSTOM_TARGET(${target} DEPENDS ${fakedTouchedFiles}) |
|
133 | ADD_CUSTOM_TARGET(${target} DEPENDS ${fakedTouchedFiles}) | |
123 |
|
134 | |||
124 | ENDFUNCTION(ADD_CLANGFORMAT_TARGETS) |
|
135 | ENDFUNCTION(ADD_CLANGFORMAT_TARGETS) | |
125 |
|
136 | |||
126 | macro(clangformat_incr var_name) |
|
137 | macro(clangformat_incr var_name) | |
127 | math(EXPR ${var_name} "${${var_name}} + 1") |
|
138 | math(EXPR ${var_name} "${${var_name}} + 1") | |
128 | endmacro() |
|
139 | endmacro() |
@@ -1,38 +1,39 | |||||
1 | #ifndef SCIQLOP_DATASOURCEWIDGET_H |
|
1 | #ifndef SCIQLOP_DATASOURCEWIDGET_H | |
2 | #define SCIQLOP_DATASOURCEWIDGET_H |
|
2 | #define SCIQLOP_DATASOURCEWIDGET_H | |
3 |
|
3 | |||
4 | #include <QWidget> |
|
4 | #include <QWidget> | |
5 |
|
5 | |||
6 | namespace Ui { |
|
6 | namespace Ui { | |
7 | class DataSourceWidget; |
|
7 | class DataSourceWidget; | |
8 | } // Ui |
|
8 | } // Ui | |
9 |
|
9 | |||
10 | class DataSourceItem; |
|
10 | class DataSourceItem; | |
11 |
|
11 | |||
12 | /** |
|
12 | /** | |
13 | * @brief The DataSourceWidget handles the graphical representation (as a tree) of the data sources |
|
13 | * @brief The DataSourceWidget handles the graphical representation (as a tree) of the data sources | |
14 | * attached to SciQlop. |
|
14 | * attached to SciQlop. | |
15 | */ |
|
15 | */ | |
16 | class DataSourceWidget : public QWidget { |
|
16 | class DataSourceWidget : public QWidget { | |
17 | Q_OBJECT |
|
17 | Q_OBJECT | |
18 |
|
18 | |||
19 | public: |
|
19 | public: | |
20 | explicit DataSourceWidget(QWidget *parent = 0); |
|
20 | explicit DataSourceWidget(QWidget *parent = 0); | |
|
21 | virtual ~DataSourceWidget() noexcept; | |||
21 |
|
22 | |||
22 | public slots: |
|
23 | public slots: | |
23 | /** |
|
24 | /** | |
24 | * Adds a data source. An item associated to the data source is created and then added to the |
|
25 | * Adds a data source. An item associated to the data source is created and then added to the | |
25 | * representation tree |
|
26 | * representation tree | |
26 | * @param dataSource the data source to add. The pointer has to be not null |
|
27 | * @param dataSource the data source to add. The pointer has to be not null | |
27 | */ |
|
28 | */ | |
28 | void addDataSource(DataSourceItem *dataSource) noexcept; |
|
29 | void addDataSource(DataSourceItem *dataSource) noexcept; | |
29 |
|
30 | |||
30 | private: |
|
31 | private: | |
31 | Ui::DataSourceWidget *ui; |
|
32 | Ui::DataSourceWidget *ui; | |
32 |
|
33 | |||
33 | private slots: |
|
34 | private slots: | |
34 | /// Slot called when right clicking on an item in the tree (displays a menu) |
|
35 | /// Slot called when right clicking on an item in the tree (displays a menu) | |
35 | void onTreeMenuRequested(const QPoint &pos) noexcept; |
|
36 | void onTreeMenuRequested(const QPoint &pos) noexcept; | |
36 | }; |
|
37 | }; | |
37 |
|
38 | |||
38 | #endif // SCIQLOP_DATASOURCEWIDGET_H |
|
39 | #endif // SCIQLOP_DATASOURCEWIDGET_H |
@@ -1,32 +1,38 | |||||
1 | #ifndef SCIQLOP_GRAPHPLOTTABLESFACTORY_H |
|
1 | #ifndef SCIQLOP_GRAPHPLOTTABLESFACTORY_H | |
2 | #define SCIQLOP_GRAPHPLOTTABLESFACTORY_H |
|
2 | #define SCIQLOP_GRAPHPLOTTABLESFACTORY_H | |
3 |
|
3 | |||
|
4 | #include <Data/SqpDateTime.h> | |||
|
5 | ||||
4 | #include <QLoggingCategory> |
|
6 | #include <QLoggingCategory> | |
5 | #include <QVector> |
|
7 | #include <QVector> | |
6 |
|
8 | |||
7 | #include <memory> |
|
9 | #include <memory> | |
8 |
|
10 | |||
9 | Q_DECLARE_LOGGING_CATEGORY(LOG_GraphPlottablesFactory) |
|
11 | Q_DECLARE_LOGGING_CATEGORY(LOG_GraphPlottablesFactory) | |
10 |
|
12 | |||
|
13 | class IDataSeries; | |||
11 | class QCPAbstractPlottable; |
|
14 | class QCPAbstractPlottable; | |
12 | class QCustomPlot; |
|
15 | class QCustomPlot; | |
13 | class Variable; |
|
16 | class Variable; | |
14 |
|
17 | |||
15 | /** |
|
18 | /** | |
16 | * @brief The GraphPlottablesFactory class aims to create the QCustomPlot components relative to a |
|
19 | * @brief The GraphPlottablesFactory class aims to create the QCustomPlot components relative to a | |
17 | * variable, depending on the data series of this variable |
|
20 | * variable, depending on the data series of this variable | |
18 | */ |
|
21 | */ | |
19 | struct GraphPlottablesFactory { |
|
22 | struct GraphPlottablesFactory { | |
20 | /** |
|
23 | /** | |
21 | * Creates (if possible) the QCustomPlot components relative to the variable passed in |
|
24 | * Creates (if possible) the QCustomPlot components relative to the variable passed in | |
22 | * parameter, and adds these to the plot passed in parameter. |
|
25 | * parameter, and adds these to the plot passed in parameter. | |
23 | * @param variable the variable for which to create the components |
|
26 | * @param variable the variable for which to create the components | |
24 | * @param plot the plot in which to add the created components. It takes ownership of these |
|
27 | * @param plot the plot in which to add the created components. It takes ownership of these | |
25 | * components. |
|
28 | * components. | |
26 | * @return the list of the components created |
|
29 | * @return the list of the components created | |
27 | */ |
|
30 | */ | |
28 | static QVector<QCPAbstractPlottable *> create(std::shared_ptr<Variable> variable, |
|
31 | static QVector<QCPAbstractPlottable *> create(std::shared_ptr<Variable> variable, | |
29 | QCustomPlot &plot) noexcept; |
|
32 | QCustomPlot &plot) noexcept; | |
|
33 | ||||
|
34 | static void updateData(QVector<QCPAbstractPlottable *> plotableVect, IDataSeries *dataSeries, | |||
|
35 | const SqpDateTime &dateTime); | |||
30 | }; |
|
36 | }; | |
31 |
|
37 | |||
32 | #endif // SCIQLOP_GRAPHPLOTTABLESFACTORY_H |
|
38 | #endif // SCIQLOP_GRAPHPLOTTABLESFACTORY_H |
@@ -1,47 +1,56 | |||||
1 | #ifndef SCIQLOP_VISUALIZATIONGRAPHWIDGET_H |
|
1 | #ifndef SCIQLOP_VISUALIZATIONGRAPHWIDGET_H | |
2 | #define SCIQLOP_VISUALIZATIONGRAPHWIDGET_H |
|
2 | #define SCIQLOP_VISUALIZATIONGRAPHWIDGET_H | |
3 |
|
3 | |||
4 | #include "Visualization/IVisualizationWidget.h" |
|
4 | #include "Visualization/IVisualizationWidget.h" | |
5 |
|
5 | |||
6 | #include <QLoggingCategory> |
|
6 | #include <QLoggingCategory> | |
7 | #include <QWidget> |
|
7 | #include <QWidget> | |
8 |
|
8 | |||
9 | #include <memory> |
|
9 | #include <memory> | |
10 |
|
10 | |||
11 | #include <Common/spimpl.h> |
|
11 | #include <Common/spimpl.h> | |
12 |
|
12 | |||
13 | Q_DECLARE_LOGGING_CATEGORY(LOG_VisualizationGraphWidget) |
|
13 | Q_DECLARE_LOGGING_CATEGORY(LOG_VisualizationGraphWidget) | |
14 |
|
14 | |||
|
15 | class QCPRange; | |||
15 | class Variable; |
|
16 | class Variable; | |
16 |
|
17 | |||
17 | namespace Ui { |
|
18 | namespace Ui { | |
18 | class VisualizationGraphWidget; |
|
19 | class VisualizationGraphWidget; | |
19 | } // namespace Ui |
|
20 | } // namespace Ui | |
20 |
|
21 | |||
21 | class VisualizationGraphWidget : public QWidget, public IVisualizationWidget { |
|
22 | class VisualizationGraphWidget : public QWidget, public IVisualizationWidget { | |
22 | Q_OBJECT |
|
23 | Q_OBJECT | |
23 |
|
24 | |||
24 | public: |
|
25 | public: | |
25 | explicit VisualizationGraphWidget(const QString &name = {}, QWidget *parent = 0); |
|
26 | explicit VisualizationGraphWidget(const QString &name = {}, QWidget *parent = 0); | |
26 | virtual ~VisualizationGraphWidget(); |
|
27 | virtual ~VisualizationGraphWidget(); | |
27 |
|
28 | |||
28 | void addVariable(std::shared_ptr<Variable> variable); |
|
29 | void addVariable(std::shared_ptr<Variable> variable); | |
29 |
|
30 | |||
30 | // IVisualizationWidget interface |
|
31 | // IVisualizationWidget interface | |
31 | void accept(IVisualizationWidgetVisitor *visitor) override; |
|
32 | void accept(IVisualizationWidgetVisitor *visitor) override; | |
32 | bool canDrop(const Variable &variable) const override; |
|
33 | bool canDrop(const Variable &variable) const override; | |
33 | void close() override; |
|
34 | void close() override; | |
34 | QString name() const override; |
|
35 | QString name() const override; | |
35 |
|
36 | |||
|
37 | void updateDisplay(std::shared_ptr<Variable> variable); | |||
|
38 | ||||
|
39 | ||||
36 | private: |
|
40 | private: | |
37 | Ui::VisualizationGraphWidget *ui; |
|
41 | Ui::VisualizationGraphWidget *ui; | |
38 |
|
42 | |||
39 | class VisualizationGraphWidgetPrivate; |
|
43 | class VisualizationGraphWidgetPrivate; | |
40 | spimpl::unique_impl_ptr<VisualizationGraphWidgetPrivate> impl; |
|
44 | spimpl::unique_impl_ptr<VisualizationGraphWidgetPrivate> impl; | |
41 |
|
45 | |||
42 | private slots: |
|
46 | private slots: | |
|
47 | ||||
|
48 | void onRangeChanged(const QCPRange &t1, const QCPRange &t2); | |||
|
49 | ||||
43 | /// Slot called when a mouse wheel was made, to perform some processing before the zoom is done |
|
50 | /// Slot called when a mouse wheel was made, to perform some processing before the zoom is done | |
44 | void onMouseWheel(QWheelEvent *event) noexcept; |
|
51 | void onMouseWheel(QWheelEvent *event) noexcept; | |
|
52 | ||||
|
53 | void onDataCacheVariableUpdated(); | |||
45 | }; |
|
54 | }; | |
46 |
|
55 | |||
47 | #endif // SCIQLOP_VISUALIZATIONGRAPHWIDGET_H |
|
56 | #endif // SCIQLOP_VISUALIZATIONGRAPHWIDGET_H |
@@ -1,72 +1,77 | |||||
1 | #include <DataSource/DataSourceWidget.h> |
|
1 | #include <DataSource/DataSourceWidget.h> | |
2 |
|
2 | |||
3 | #include <ui_DataSourceWidget.h> |
|
3 | #include <ui_DataSourceWidget.h> | |
4 |
|
4 | |||
5 | #include <DataSource/DataSourceItem.h> |
|
5 | #include <DataSource/DataSourceItem.h> | |
6 | #include <DataSource/DataSourceTreeWidgetItem.h> |
|
6 | #include <DataSource/DataSourceTreeWidgetItem.h> | |
7 |
|
7 | |||
8 | #include <QMenu> |
|
8 | #include <QMenu> | |
9 |
|
9 | |||
10 | namespace { |
|
10 | namespace { | |
11 |
|
11 | |||
12 | /// Number of columns displayed in the tree |
|
12 | /// Number of columns displayed in the tree | |
13 | const auto TREE_NB_COLUMNS = 1; |
|
13 | const auto TREE_NB_COLUMNS = 1; | |
14 |
|
14 | |||
15 | /// Header labels for the tree |
|
15 | /// Header labels for the tree | |
16 | const auto TREE_HEADER_LABELS = QStringList{QObject::tr("Name")}; |
|
16 | const auto TREE_HEADER_LABELS = QStringList{QObject::tr("Name")}; | |
17 |
|
17 | |||
18 | /** |
|
18 | /** | |
19 | * Creates the item associated to a data source |
|
19 | * Creates the item associated to a data source | |
20 | * @param dataSource the data source for which to create the item |
|
20 | * @param dataSource the data source for which to create the item | |
21 | * @return the new item |
|
21 | * @return the new item | |
22 | */ |
|
22 | */ | |
23 | DataSourceTreeWidgetItem *createTreeWidgetItem(DataSourceItem *dataSource) |
|
23 | DataSourceTreeWidgetItem *createTreeWidgetItem(DataSourceItem *dataSource) | |
24 | { |
|
24 | { | |
25 | // Creates item for the data source |
|
25 | // Creates item for the data source | |
26 | auto item = new DataSourceTreeWidgetItem{dataSource}; |
|
26 | auto item = new DataSourceTreeWidgetItem{dataSource}; | |
27 |
|
27 | |||
28 | // Generates items for the children of the data source |
|
28 | // Generates items for the children of the data source | |
29 | for (auto i = 0; i < dataSource->childCount(); ++i) { |
|
29 | for (auto i = 0; i < dataSource->childCount(); ++i) { | |
30 | item->addChild(createTreeWidgetItem(dataSource->child(i))); |
|
30 | item->addChild(createTreeWidgetItem(dataSource->child(i))); | |
31 | } |
|
31 | } | |
32 |
|
32 | |||
33 | return item; |
|
33 | return item; | |
34 | } |
|
34 | } | |
35 |
|
35 | |||
36 | } // namespace |
|
36 | } // namespace | |
37 |
|
37 | |||
38 | DataSourceWidget::DataSourceWidget(QWidget *parent) : QWidget{parent}, ui{new Ui::DataSourceWidget} |
|
38 | DataSourceWidget::DataSourceWidget(QWidget *parent) : QWidget{parent}, ui{new Ui::DataSourceWidget} | |
39 | { |
|
39 | { | |
40 | ui->setupUi(this); |
|
40 | ui->setupUi(this); | |
41 |
|
41 | |||
42 | // Set tree properties |
|
42 | // Set tree properties | |
43 | ui->treeWidget->setColumnCount(TREE_NB_COLUMNS); |
|
43 | ui->treeWidget->setColumnCount(TREE_NB_COLUMNS); | |
44 | ui->treeWidget->setHeaderLabels(TREE_HEADER_LABELS); |
|
44 | ui->treeWidget->setHeaderLabels(TREE_HEADER_LABELS); | |
45 | ui->treeWidget->setContextMenuPolicy(Qt::CustomContextMenu); |
|
45 | ui->treeWidget->setContextMenuPolicy(Qt::CustomContextMenu); | |
46 |
|
46 | |||
47 | // Connection to show a menu when right clicking on the tree |
|
47 | // Connection to show a menu when right clicking on the tree | |
48 | connect(ui->treeWidget, &QTreeWidget::customContextMenuRequested, this, |
|
48 | connect(ui->treeWidget, &QTreeWidget::customContextMenuRequested, this, | |
49 | &DataSourceWidget::onTreeMenuRequested); |
|
49 | &DataSourceWidget::onTreeMenuRequested); | |
50 | } |
|
50 | } | |
51 |
|
51 | |||
|
52 | DataSourceWidget::~DataSourceWidget() noexcept | |||
|
53 | { | |||
|
54 | delete ui; | |||
|
55 | } | |||
|
56 | ||||
52 | void DataSourceWidget::addDataSource(DataSourceItem *dataSource) noexcept |
|
57 | void DataSourceWidget::addDataSource(DataSourceItem *dataSource) noexcept | |
53 | { |
|
58 | { | |
54 | // Creates the item associated to the source and adds it to the tree widget. The tree widget |
|
59 | // Creates the item associated to the source and adds it to the tree widget. The tree widget | |
55 | // takes the ownership of the item |
|
60 | // takes the ownership of the item | |
56 | if (dataSource) { |
|
61 | if (dataSource) { | |
57 | ui->treeWidget->addTopLevelItem(createTreeWidgetItem(dataSource)); |
|
62 | ui->treeWidget->addTopLevelItem(createTreeWidgetItem(dataSource)); | |
58 | } |
|
63 | } | |
59 | } |
|
64 | } | |
60 |
|
65 | |||
61 | void DataSourceWidget::onTreeMenuRequested(const QPoint &pos) noexcept |
|
66 | void DataSourceWidget::onTreeMenuRequested(const QPoint &pos) noexcept | |
62 | { |
|
67 | { | |
63 | // Retrieves the selected item in the tree, and build the menu from its actions |
|
68 | // Retrieves the selected item in the tree, and build the menu from its actions | |
64 | if (auto selectedItem = dynamic_cast<DataSourceTreeWidgetItem *>(ui->treeWidget->itemAt(pos))) { |
|
69 | if (auto selectedItem = dynamic_cast<DataSourceTreeWidgetItem *>(ui->treeWidget->itemAt(pos))) { | |
65 | QMenu treeMenu{}; |
|
70 | QMenu treeMenu{}; | |
66 | treeMenu.addActions(selectedItem->actions()); |
|
71 | treeMenu.addActions(selectedItem->actions()); | |
67 |
|
72 | |||
68 | if (!treeMenu.isEmpty()) { |
|
73 | if (!treeMenu.isEmpty()) { | |
69 | treeMenu.exec(mapToGlobal(pos)); |
|
74 | treeMenu.exec(mapToGlobal(pos)); | |
70 | } |
|
75 | } | |
71 | } |
|
76 | } | |
72 | } |
|
77 | } |
@@ -1,91 +1,151 | |||||
1 | #include "Visualization/GraphPlottablesFactory.h" |
|
1 | #include "Visualization/GraphPlottablesFactory.h" | |
2 | #include "Visualization/qcustomplot.h" |
|
2 | #include "Visualization/qcustomplot.h" | |
3 |
|
3 | |||
4 | #include <Data/ScalarSeries.h> |
|
4 | #include <Data/ScalarSeries.h> | |
5 |
|
5 | |||
6 | #include <Variable/Variable.h> |
|
6 | #include <Variable/Variable.h> | |
7 |
|
7 | |||
|
8 | #include <QElapsedTimer> | |||
|
9 | ||||
8 | Q_LOGGING_CATEGORY(LOG_GraphPlottablesFactory, "GraphPlottablesFactory") |
|
10 | Q_LOGGING_CATEGORY(LOG_GraphPlottablesFactory, "GraphPlottablesFactory") | |
9 |
|
11 | |||
10 | namespace { |
|
12 | namespace { | |
11 |
|
13 | |||
12 | /// Format for datetimes on a axis |
|
14 | /// Format for datetimes on a axis | |
13 | const auto DATETIME_TICKER_FORMAT = QStringLiteral("yyyy/MM/dd \nhh:mm:ss"); |
|
15 | const auto DATETIME_TICKER_FORMAT = QStringLiteral("yyyy/MM/dd \nhh:mm:ss"); | |
14 |
|
16 | |||
15 | /// Generates the appropriate ticker for an axis, depending on whether the axis displays time or |
|
17 | /// Generates the appropriate ticker for an axis, depending on whether the axis displays time or | |
16 | /// non-time data |
|
18 | /// non-time data | |
17 | QSharedPointer<QCPAxisTicker> axisTicker(bool isTimeAxis) |
|
19 | QSharedPointer<QCPAxisTicker> axisTicker(bool isTimeAxis) | |
18 | { |
|
20 | { | |
19 | if (isTimeAxis) { |
|
21 | if (isTimeAxis) { | |
20 | auto dateTicker = QSharedPointer<QCPAxisTickerDateTime>::create(); |
|
22 | auto dateTicker = QSharedPointer<QCPAxisTickerDateTime>::create(); | |
21 | dateTicker->setDateTimeFormat(DATETIME_TICKER_FORMAT); |
|
23 | dateTicker->setDateTimeFormat(DATETIME_TICKER_FORMAT); | |
22 |
|
24 | |||
23 | return dateTicker; |
|
25 | return dateTicker; | |
24 | } |
|
26 | } | |
25 | else { |
|
27 | else { | |
26 | // default ticker |
|
28 | // default ticker | |
27 | return QSharedPointer<QCPAxisTicker>::create(); |
|
29 | return QSharedPointer<QCPAxisTicker>::create(); | |
28 | } |
|
30 | } | |
29 | } |
|
31 | } | |
30 |
|
32 | |||
31 |
QCPAbstractPlottable *c |
|
33 | void updateScalarData(QCPAbstractPlottable *component, ScalarSeries &scalarSeries, | |
|
34 | const SqpDateTime &dateTime) | |||
|
35 | { | |||
|
36 | QElapsedTimer timer; | |||
|
37 | timer.start(); | |||
|
38 | if (auto qcpGraph = dynamic_cast<QCPGraph *>(component)) { | |||
|
39 | // Clean the graph | |||
|
40 | qCDebug(LOG_GraphPlottablesFactory()) << "The slow s1 operation took" << timer.elapsed() | |||
|
41 | << "milliseconds"; | |||
|
42 | // NAIVE approch | |||
|
43 | const auto &xData = scalarSeries.xAxisData()->data(); | |||
|
44 | const auto &valuesData = scalarSeries.valuesData()->data(); | |||
|
45 | ||||
|
46 | auto xValue = QVector<double>(); | |||
|
47 | auto vValue = QVector<double>(); | |||
|
48 | ||||
|
49 | const auto count = xData.count(); | |||
|
50 | auto ite = 0; | |||
|
51 | for (auto i = 0; i < count; ++i) { | |||
|
52 | const auto x = xData.at(i); | |||
|
53 | if (x >= dateTime.m_TStart && x <= dateTime.m_TEnd) { | |||
|
54 | xValue.push_back(x); | |||
|
55 | vValue.push_back(valuesData.at(i)); | |||
|
56 | ++ite; | |||
|
57 | } | |||
|
58 | } | |||
|
59 | ||||
|
60 | qcpGraph->setData(xValue, vValue); | |||
|
61 | ||||
|
62 | qCDebug(LOG_GraphPlottablesFactory()) << "The slow s2 operation took" << timer.elapsed() | |||
|
63 | << "milliseconds"; | |||
|
64 | } | |||
|
65 | else { | |||
|
66 | /// @todo DEBUG | |||
|
67 | } | |||
|
68 | } | |||
|
69 | ||||
|
70 | QCPAbstractPlottable *createScalarSeriesComponent(ScalarSeries &scalarSeries, QCustomPlot &plot, | |||
|
71 | const SqpDateTime &dateTime) | |||
32 | { |
|
72 | { | |
33 | auto component = plot.addGraph(); |
|
73 | auto component = plot.addGraph(); | |
34 |
|
74 | |||
35 | if (component) { |
|
75 | if (component) { | |
36 | // Graph data |
|
76 | // // Graph data | |
37 | component->setData(scalarSeries.xAxisData()->data(), scalarSeries.valuesData()->data(), |
|
77 | component->setData(scalarSeries.xAxisData()->data(), scalarSeries.valuesData()->data(), | |
38 | true); |
|
78 | true); | |
39 |
|
79 | |||
|
80 | updateScalarData(component, scalarSeries, dateTime); | |||
|
81 | ||||
40 | // Axes properties |
|
82 | // Axes properties | |
41 | /// @todo : for the moment, no control is performed on the axes: the units and the tickers |
|
83 | /// @todo : for the moment, no control is performed on the axes: the units and the tickers | |
42 | /// are fixed for the default x-axis and y-axis of the plot, and according to the new graph |
|
84 | /// are fixed for the default x-axis and y-axis of the plot, and according to the new graph | |
43 |
|
85 | |||
44 | auto setAxisProperties = [](auto axis, const auto &unit) { |
|
86 | auto setAxisProperties = [](auto axis, const auto &unit) { | |
45 | // label (unit name) |
|
87 | // label (unit name) | |
46 | axis->setLabel(unit.m_Name); |
|
88 | axis->setLabel(unit.m_Name); | |
47 |
|
89 | |||
48 | // ticker (depending on the type of unit) |
|
90 | // ticker (depending on the type of unit) | |
49 | axis->setTicker(axisTicker(unit.m_TimeUnit)); |
|
91 | axis->setTicker(axisTicker(unit.m_TimeUnit)); | |
50 | }; |
|
92 | }; | |
51 | setAxisProperties(plot.xAxis, scalarSeries.xAxisUnit()); |
|
93 | setAxisProperties(plot.xAxis, scalarSeries.xAxisUnit()); | |
52 | setAxisProperties(plot.yAxis, scalarSeries.valuesUnit()); |
|
94 | setAxisProperties(plot.yAxis, scalarSeries.valuesUnit()); | |
53 |
|
95 | |||
54 | // Display all data |
|
96 | // Display all data | |
55 | component->rescaleAxes(); |
|
97 | component->rescaleAxes(); | |
56 |
|
98 | |||
57 | plot.replot(); |
|
99 | plot.replot(); | |
58 | } |
|
100 | } | |
59 | else { |
|
101 | else { | |
60 | qCDebug(LOG_GraphPlottablesFactory()) |
|
102 | qCDebug(LOG_GraphPlottablesFactory()) | |
61 | << QObject::tr("Can't create graph for the scalar series"); |
|
103 | << QObject::tr("Can't create graph for the scalar series"); | |
62 | } |
|
104 | } | |
63 |
|
105 | |||
64 | return component; |
|
106 | return component; | |
65 | } |
|
107 | } | |
66 |
|
108 | |||
67 | } // namespace |
|
109 | } // namespace | |
68 |
|
110 | |||
69 | QVector<QCPAbstractPlottable *> GraphPlottablesFactory::create(std::shared_ptr<Variable> variable, |
|
111 | QVector<QCPAbstractPlottable *> GraphPlottablesFactory::create(std::shared_ptr<Variable> variable, | |
70 | QCustomPlot &plot) noexcept |
|
112 | QCustomPlot &plot) noexcept | |
71 | { |
|
113 | { | |
72 | auto result = QVector<QCPAbstractPlottable *>{}; |
|
114 | auto result = QVector<QCPAbstractPlottable *>{}; | |
73 |
|
115 | |||
74 | if (variable) { |
|
116 | if (variable) { | |
75 | // Gets the data series of the variable to call the creation of the right components |
|
117 | // Gets the data series of the variable to call the creation of the right components | |
76 | // according to its type |
|
118 | // according to its type | |
77 | if (auto scalarSeries = dynamic_cast<ScalarSeries *>(variable->dataSeries())) { |
|
119 | if (auto scalarSeries = dynamic_cast<ScalarSeries *>(variable->dataSeries())) { | |
78 | result.append(createScalarSeriesComponent(*scalarSeries, plot)); |
|
120 | result.append(createScalarSeriesComponent(*scalarSeries, plot, variable->dateTime())); | |
79 | } |
|
121 | } | |
80 | else { |
|
122 | else { | |
81 | qCDebug(LOG_GraphPlottablesFactory()) |
|
123 | qCDebug(LOG_GraphPlottablesFactory()) | |
82 | << QObject::tr("Can't create graph plottables : unmanaged data series type"); |
|
124 | << QObject::tr("Can't create graph plottables : unmanaged data series type"); | |
83 | } |
|
125 | } | |
84 | } |
|
126 | } | |
85 | else { |
|
127 | else { | |
86 | qCDebug(LOG_GraphPlottablesFactory()) |
|
128 | qCDebug(LOG_GraphPlottablesFactory()) | |
87 | << QObject::tr("Can't create graph plottables : the variable is null"); |
|
129 | << QObject::tr("Can't create graph plottables : the variable is null"); | |
88 | } |
|
130 | } | |
89 |
|
131 | |||
90 | return result; |
|
132 | return result; | |
91 | } |
|
133 | } | |
|
134 | ||||
|
135 | void GraphPlottablesFactory::updateData(QVector<QCPAbstractPlottable *> plotableVect, | |||
|
136 | IDataSeries *dataSeries, const SqpDateTime &dateTime) | |||
|
137 | { | |||
|
138 | if (auto scalarSeries = dynamic_cast<ScalarSeries *>(dataSeries)) { | |||
|
139 | if (plotableVect.size() == 1) { | |||
|
140 | updateScalarData(plotableVect.at(0), *scalarSeries, dateTime); | |||
|
141 | } | |||
|
142 | else { | |||
|
143 | qCCritical(LOG_GraphPlottablesFactory()) << QObject::tr( | |||
|
144 | "Can't update Data of a scalarSeries because there is not only one component " | |||
|
145 | "associated"); | |||
|
146 | } | |||
|
147 | } | |||
|
148 | else { | |||
|
149 | /// @todo DEBUG | |||
|
150 | } | |||
|
151 | } |
@@ -1,111 +1,165 | |||||
1 | #include "Visualization/VisualizationGraphWidget.h" |
|
1 | #include "Visualization/VisualizationGraphWidget.h" | |
2 | #include "Visualization/GraphPlottablesFactory.h" |
|
2 | #include "Visualization/GraphPlottablesFactory.h" | |
3 | #include "Visualization/IVisualizationWidgetVisitor.h" |
|
3 | #include "Visualization/IVisualizationWidgetVisitor.h" | |
4 | #include "ui_VisualizationGraphWidget.h" |
|
4 | #include "ui_VisualizationGraphWidget.h" | |
5 |
|
5 | |||
|
6 | #include <Data/ArrayData.h> | |||
|
7 | #include <Data/IDataSeries.h> | |||
|
8 | #include <SqpApplication.h> | |||
6 | #include <Variable/Variable.h> |
|
9 | #include <Variable/Variable.h> | |
|
10 | #include <Variable/VariableController.h> | |||
7 |
|
11 | |||
8 | #include <unordered_map> |
|
12 | #include <unordered_map> | |
9 |
|
13 | |||
10 | Q_LOGGING_CATEGORY(LOG_VisualizationGraphWidget, "VisualizationGraphWidget") |
|
14 | Q_LOGGING_CATEGORY(LOG_VisualizationGraphWidget, "VisualizationGraphWidget") | |
11 |
|
15 | |||
12 | namespace { |
|
16 | namespace { | |
13 |
|
17 | |||
14 | /// Key pressed to enable zoom on horizontal axis |
|
18 | /// Key pressed to enable zoom on horizontal axis | |
15 | const auto HORIZONTAL_ZOOM_MODIFIER = Qt::NoModifier; |
|
19 | const auto HORIZONTAL_ZOOM_MODIFIER = Qt::NoModifier; | |
16 |
|
20 | |||
17 | /// Key pressed to enable zoom on vertical axis |
|
21 | /// Key pressed to enable zoom on vertical axis | |
18 | const auto VERTICAL_ZOOM_MODIFIER = Qt::ControlModifier; |
|
22 | const auto VERTICAL_ZOOM_MODIFIER = Qt::ControlModifier; | |
19 |
|
23 | |||
20 | } // namespace |
|
24 | } // namespace | |
21 |
|
25 | |||
22 | struct VisualizationGraphWidget::VisualizationGraphWidgetPrivate { |
|
26 | struct VisualizationGraphWidget::VisualizationGraphWidgetPrivate { | |
23 |
|
27 | |||
24 | // 1 variable -> n qcpplot |
|
28 | // 1 variable -> n qcpplot | |
25 |
std::unordered_map<std::shared_ptr<Variable>, QCPAbstractPlottable *> |
|
29 | std::unordered_multimap<std::shared_ptr<Variable>, QCPAbstractPlottable *> | |
|
30 | m_VariableToPlotMultiMap; | |||
26 | }; |
|
31 | }; | |
27 |
|
32 | |||
28 | VisualizationGraphWidget::VisualizationGraphWidget(const QString &name, QWidget *parent) |
|
33 | VisualizationGraphWidget::VisualizationGraphWidget(const QString &name, QWidget *parent) | |
29 | : QWidget{parent}, |
|
34 | : QWidget{parent}, | |
30 | ui{new Ui::VisualizationGraphWidget}, |
|
35 | ui{new Ui::VisualizationGraphWidget}, | |
31 | impl{spimpl::make_unique_impl<VisualizationGraphWidgetPrivate>()} |
|
36 | impl{spimpl::make_unique_impl<VisualizationGraphWidgetPrivate>()} | |
32 | { |
|
37 | { | |
33 | ui->setupUi(this); |
|
38 | ui->setupUi(this); | |
34 |
|
39 | |||
35 | // qcpplot title |
|
40 | // qcpplot title | |
36 | ui->widget->plotLayout()->insertRow(0); |
|
41 | ui->widget->plotLayout()->insertRow(0); | |
37 | ui->widget->plotLayout()->addElement(0, 0, new QCPTextElement{ui->widget, name}); |
|
42 | ui->widget->plotLayout()->addElement(0, 0, new QCPTextElement{ui->widget, name}); | |
38 |
|
43 | |||
39 | // Set qcpplot properties : |
|
44 | // Set qcpplot properties : | |
40 | // - Drag (on x-axis) and zoom are enabled |
|
45 | // - Drag (on x-axis) and zoom are enabled | |
41 | // - Mouse wheel on qcpplot is intercepted to determine the zoom orientation |
|
46 | // - Mouse wheel on qcpplot is intercepted to determine the zoom orientation | |
42 | ui->widget->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom); |
|
47 | ui->widget->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom); | |
43 | ui->widget->axisRect()->setRangeDrag(Qt::Horizontal); |
|
48 | ui->widget->axisRect()->setRangeDrag(Qt::Horizontal); | |
44 | connect(ui->widget, &QCustomPlot::mouseWheel, this, &VisualizationGraphWidget::onMouseWheel); |
|
49 | connect(ui->widget, &QCustomPlot::mouseWheel, this, &VisualizationGraphWidget::onMouseWheel); | |
|
50 | connect(ui->widget->xAxis, static_cast<void (QCPAxis::*)(const QCPRange &, const QCPRange &)>( | |||
|
51 | &QCPAxis::rangeChanged), | |||
|
52 | this, &VisualizationGraphWidget::onRangeChanged); | |||
45 | } |
|
53 | } | |
46 |
|
54 | |||
|
55 | ||||
47 | VisualizationGraphWidget::~VisualizationGraphWidget() |
|
56 | VisualizationGraphWidget::~VisualizationGraphWidget() | |
48 | { |
|
57 | { | |
49 | delete ui; |
|
58 | delete ui; | |
50 | } |
|
59 | } | |
51 |
|
60 | |||
52 | void VisualizationGraphWidget::addVariable(std::shared_ptr<Variable> variable) |
|
61 | void VisualizationGraphWidget::addVariable(std::shared_ptr<Variable> variable) | |
53 | { |
|
62 | { | |
54 | // Uses delegate to create the qcpplot components according to the variable |
|
63 | // Uses delegate to create the qcpplot components according to the variable | |
55 | auto createdPlottables = GraphPlottablesFactory::create(variable, *ui->widget); |
|
64 | auto createdPlottables = GraphPlottablesFactory::create(variable, *ui->widget); | |
56 |
|
65 | |||
57 | for (auto createdPlottable : qAsConst(createdPlottables)) { |
|
66 | for (auto createdPlottable : qAsConst(createdPlottables)) { | |
58 | impl->m_VariableToPlotMap.insert({variable, createdPlottable}); |
|
67 | impl->m_VariableToPlotMultiMap.insert({variable, createdPlottable}); | |
59 | } |
|
68 | } | |
|
69 | ||||
|
70 | connect(variable.get(), SIGNAL(dataCacheUpdated()), this, SLOT(onDataCacheVariableUpdated())); | |||
60 | } |
|
71 | } | |
61 |
|
72 | |||
62 | void VisualizationGraphWidget::accept(IVisualizationWidgetVisitor *visitor) |
|
73 | void VisualizationGraphWidget::accept(IVisualizationWidgetVisitor *visitor) | |
63 | { |
|
74 | { | |
64 | if (visitor) { |
|
75 | if (visitor) { | |
65 | visitor->visit(this); |
|
76 | visitor->visit(this); | |
66 | } |
|
77 | } | |
67 | else { |
|
78 | else { | |
68 | qCCritical(LOG_VisualizationGraphWidget()) |
|
79 | qCCritical(LOG_VisualizationGraphWidget()) | |
69 | << tr("Can't visit widget : the visitor is null"); |
|
80 | << tr("Can't visit widget : the visitor is null"); | |
70 | } |
|
81 | } | |
71 | } |
|
82 | } | |
72 |
|
83 | |||
73 | bool VisualizationGraphWidget::canDrop(const Variable &variable) const |
|
84 | bool VisualizationGraphWidget::canDrop(const Variable &variable) const | |
74 | { |
|
85 | { | |
75 | /// @todo : for the moment, a graph can always accomodate a variable |
|
86 | /// @todo : for the moment, a graph can always accomodate a variable | |
76 | Q_UNUSED(variable); |
|
87 | Q_UNUSED(variable); | |
77 | return true; |
|
88 | return true; | |
78 | } |
|
89 | } | |
79 |
|
90 | |||
80 | void VisualizationGraphWidget::close() |
|
91 | void VisualizationGraphWidget::close() | |
81 | { |
|
92 | { | |
82 | // The main view cannot be directly closed. |
|
93 | // The main view cannot be directly closed. | |
83 | return; |
|
94 | return; | |
84 | } |
|
95 | } | |
85 |
|
96 | |||
86 | QString VisualizationGraphWidget::name() const |
|
97 | QString VisualizationGraphWidget::name() const | |
87 | { |
|
98 | { | |
88 | if (auto title = dynamic_cast<QCPTextElement *>(ui->widget->plotLayout()->elementAt(0))) { |
|
99 | if (auto title = dynamic_cast<QCPTextElement *>(ui->widget->plotLayout()->elementAt(0))) { | |
89 | return title->text(); |
|
100 | return title->text(); | |
90 | } |
|
101 | } | |
91 | else { |
|
102 | else { | |
92 | return QString{}; |
|
103 | return QString{}; | |
93 | } |
|
104 | } | |
94 | } |
|
105 | } | |
95 |
|
106 | |||
|
107 | void VisualizationGraphWidget::onRangeChanged(const QCPRange &t1, const QCPRange &t2) | |||
|
108 | { | |||
|
109 | ||||
|
110 | qCDebug(LOG_VisualizationGraphWidget()) << tr("VisualizationGraphWidget::onRangeChanged"); | |||
|
111 | ||||
|
112 | for (auto it = impl->m_VariableToPlotMultiMap.cbegin(); | |||
|
113 | it != impl->m_VariableToPlotMultiMap.cend(); ++it) { | |||
|
114 | auto variable = it->first; | |||
|
115 | auto tolerance = 0.1 * (t2.upper - t2.lower); | |||
|
116 | auto dateTime = SqpDateTime{t2.lower - tolerance, t2.upper + tolerance}; | |||
|
117 | ||||
|
118 | qCInfo(LOG_VisualizationGraphWidget()) << tr("VisualizationGraphWidget::onRangeChanged") | |||
|
119 | << variable->dataSeries()->xAxisData()->size(); | |||
|
120 | if (!variable->contains(dateTime)) { | |||
|
121 | sqpApp->variableController().requestDataLoading(variable, dateTime); | |||
|
122 | } | |||
|
123 | } | |||
|
124 | } | |||
|
125 | ||||
96 | void VisualizationGraphWidget::onMouseWheel(QWheelEvent *event) noexcept |
|
126 | void VisualizationGraphWidget::onMouseWheel(QWheelEvent *event) noexcept | |
97 | { |
|
127 | { | |
98 | auto zoomOrientations = QFlags<Qt::Orientation>{}; |
|
128 | auto zoomOrientations = QFlags<Qt::Orientation>{}; | |
99 |
|
129 | |||
100 | // Lambda that enables a zoom orientation if the key modifier related to this orientation has |
|
130 | // Lambda that enables a zoom orientation if the key modifier related to this orientation has | |
101 | // been pressed |
|
131 | // been pressed | |
102 | auto enableOrientation |
|
132 | auto enableOrientation | |
103 | = [&zoomOrientations, event](const auto &orientation, const auto &modifier) { |
|
133 | = [&zoomOrientations, event](const auto &orientation, const auto &modifier) { | |
104 | auto orientationEnabled = event->modifiers().testFlag(modifier); |
|
134 | auto orientationEnabled = event->modifiers().testFlag(modifier); | |
105 | zoomOrientations.setFlag(orientation, orientationEnabled); |
|
135 | zoomOrientations.setFlag(orientation, orientationEnabled); | |
106 | }; |
|
136 | }; | |
107 | enableOrientation(Qt::Vertical, VERTICAL_ZOOM_MODIFIER); |
|
137 | enableOrientation(Qt::Vertical, VERTICAL_ZOOM_MODIFIER); | |
108 | enableOrientation(Qt::Horizontal, HORIZONTAL_ZOOM_MODIFIER); |
|
138 | enableOrientation(Qt::Horizontal, HORIZONTAL_ZOOM_MODIFIER); | |
109 |
|
139 | |||
110 | ui->widget->axisRect()->setRangeZoom(zoomOrientations); |
|
140 | ui->widget->axisRect()->setRangeZoom(zoomOrientations); | |
111 | } |
|
141 | } | |
|
142 | ||||
|
143 | void VisualizationGraphWidget::onDataCacheVariableUpdated() | |||
|
144 | { | |||
|
145 | for (auto it = impl->m_VariableToPlotMultiMap.cbegin(); | |||
|
146 | it != impl->m_VariableToPlotMultiMap.cend(); ++it) { | |||
|
147 | auto variable = it->first; | |||
|
148 | GraphPlottablesFactory::updateData(QVector<QCPAbstractPlottable *>{} << it->second, | |||
|
149 | variable->dataSeries(), variable->dateTime()); | |||
|
150 | } | |||
|
151 | } | |||
|
152 | ||||
|
153 | void VisualizationGraphWidget::updateDisplay(std::shared_ptr<Variable> variable) | |||
|
154 | { | |||
|
155 | auto abstractPlotableItPair = impl->m_VariableToPlotMultiMap.equal_range(variable); | |||
|
156 | ||||
|
157 | auto abstractPlotableVect = QVector<QCPAbstractPlottable *>{}; | |||
|
158 | ||||
|
159 | for (auto it = abstractPlotableItPair.first; it != abstractPlotableItPair.second; ++it) { | |||
|
160 | abstractPlotableVect.push_back(it->second); | |||
|
161 | } | |||
|
162 | ||||
|
163 | GraphPlottablesFactory::updateData(abstractPlotableVect, variable->dataSeries(), | |||
|
164 | variable->dateTime()); | |||
|
165 | } |
@@ -1,16 +1,26 | |||||
1 | #ifndef SCIQLOP_COSINUSPROVIDER_H |
|
1 | #ifndef SCIQLOP_COSINUSPROVIDER_H | |
2 | #define SCIQLOP_COSINUSPROVIDER_H |
|
2 | #define SCIQLOP_COSINUSPROVIDER_H | |
3 |
|
3 | |||
4 | #include <Data/IDataProvider.h> |
|
4 | #include <Data/IDataProvider.h> | |
5 |
|
5 | |||
|
6 | #include <QLoggingCategory> | |||
|
7 | ||||
|
8 | Q_DECLARE_LOGGING_CATEGORY(LOG_CosinusProvider) | |||
|
9 | ||||
6 | /** |
|
10 | /** | |
7 | * @brief The CosinusProvider class is an example of how a data provider can generate data |
|
11 | * @brief The CosinusProvider class is an example of how a data provider can generate data | |
8 | */ |
|
12 | */ | |
9 | class CosinusProvider : public IDataProvider { |
|
13 | class CosinusProvider : public IDataProvider { | |
10 | public: |
|
14 | public: | |
11 | /// @sa IDataProvider::retrieveData() |
|
15 | /// @sa IDataProvider::retrieveData() | |
12 | std::unique_ptr<IDataSeries> |
|
16 | std::unique_ptr<IDataSeries> | |
13 | retrieveData(const DataProviderParameters ¶meters) const override; |
|
17 | retrieveData(const DataProviderParameters ¶meters) const override; | |
|
18 | ||||
|
19 | void requestDataLoading(const QVector<SqpDateTime> &dateTimeList) override; | |||
|
20 | ||||
|
21 | ||||
|
22 | private: | |||
|
23 | std::shared_ptr<IDataSeries> retrieveDataSeries(const SqpDateTime &dateTime); | |||
14 | }; |
|
24 | }; | |
15 |
|
25 | |||
16 | #endif // SCIQLOP_COSINUSPROVIDER_H |
|
26 | #endif // SCIQLOP_COSINUSPROVIDER_H |
@@ -1,32 +1,71 | |||||
1 | #include "CosinusProvider.h" |
|
1 | #include "CosinusProvider.h" | |
2 |
|
2 | |||
3 | #include <Data/DataProviderParameters.h> |
|
3 | #include <Data/DataProviderParameters.h> | |
4 | #include <Data/ScalarSeries.h> |
|
4 | #include <Data/ScalarSeries.h> | |
5 |
|
5 | |||
6 | #include <cmath> |
|
6 | #include <cmath> | |
7 |
|
7 | |||
|
8 | Q_LOGGING_CATEGORY(LOG_CosinusProvider, "CosinusProvider") | |||
|
9 | ||||
8 | std::unique_ptr<IDataSeries> |
|
10 | std::unique_ptr<IDataSeries> | |
9 | CosinusProvider::retrieveData(const DataProviderParameters ¶meters) const |
|
11 | CosinusProvider::retrieveData(const DataProviderParameters ¶meters) const | |
10 | { |
|
12 | { | |
11 | auto dateTime = parameters.m_Time; |
|
13 | auto dateTime = parameters.m_Time; | |
12 |
|
14 | |||
13 | // Gets the timerange from the parameters |
|
15 | // Gets the timerange from the parameters | |
14 | auto start = dateTime.m_TStart; |
|
16 | auto start = dateTime.m_TStart; | |
15 | auto end = dateTime.m_TEnd; |
|
17 | auto end = dateTime.m_TEnd; | |
16 |
|
18 | |||
17 | // We assure that timerange is valid |
|
19 | // We assure that timerange is valid | |
18 | if (end < start) { |
|
20 | if (end < start) { | |
19 | std::swap(start, end); |
|
21 | std::swap(start, end); | |
20 | } |
|
22 | } | |
21 |
|
23 | |||
22 | // Generates scalar series containing cosinus values (one value per second) |
|
24 | // Generates scalar series containing cosinus values (one value per second) | |
23 | auto scalarSeries |
|
25 | auto scalarSeries | |
24 | = std::make_unique<ScalarSeries>(end - start, Unit{QStringLiteral("t"), true}, Unit{}); |
|
26 | = std::make_unique<ScalarSeries>(end - start, Unit{QStringLiteral("t"), true}, Unit{}); | |
25 |
|
27 | |||
26 | auto dataIndex = 0; |
|
28 | auto dataIndex = 0; | |
27 | for (auto time = start; time < end; ++time, ++dataIndex) { |
|
29 | for (auto time = start; time < end; ++time, ++dataIndex) { | |
28 | scalarSeries->setData(dataIndex, time, std::cos(time)); |
|
30 | scalarSeries->setData(dataIndex, time, std::cos(time)); | |
29 | } |
|
31 | } | |
30 |
|
32 | |||
31 | return scalarSeries; |
|
33 | return scalarSeries; | |
32 | } |
|
34 | } | |
|
35 | ||||
|
36 | void CosinusProvider::requestDataLoading(const QVector<SqpDateTime> &dateTimeList) | |||
|
37 | { | |||
|
38 | // NOTE: Try to use multithread if possible | |||
|
39 | foreach (const auto &dateTime, dateTimeList) { | |||
|
40 | ||||
|
41 | auto scalarSeries = this->retrieveDataSeries(dateTime); | |||
|
42 | ||||
|
43 | emit dataProvided(scalarSeries, dateTime); | |||
|
44 | } | |||
|
45 | } | |||
|
46 | ||||
|
47 | ||||
|
48 | std::shared_ptr<IDataSeries> CosinusProvider::retrieveDataSeries(const SqpDateTime &dateTime) | |||
|
49 | { | |||
|
50 | ||||
|
51 | // Gets the timerange from the parameters | |||
|
52 | auto start = dateTime.m_TStart; | |||
|
53 | auto end = dateTime.m_TEnd; | |||
|
54 | ||||
|
55 | // We assure that timerange is valid | |||
|
56 | if (end < start) { | |||
|
57 | std::swap(start, end); | |||
|
58 | } | |||
|
59 | ||||
|
60 | // Generates scalar series containing cosinus values (one value per second) | |||
|
61 | auto scalarSeries | |||
|
62 | = std::make_shared<ScalarSeries>(end - start, Unit{QStringLiteral("t"), true}, Unit{}); | |||
|
63 | ||||
|
64 | auto dataIndex = 0; | |||
|
65 | for (auto time = start; time < end; ++time, ++dataIndex) { | |||
|
66 | scalarSeries->setData(dataIndex, time, std::cos(time)); | |||
|
67 | } | |||
|
68 | ||||
|
69 | ||||
|
70 | return scalarSeries; | |||
|
71 | } |
General Comments 0
You need to be logged in to leave comments.
Login now