|
@@
-1,839
+1,842
|
|
1
|
#include <Variable/Variable.h>
|
|
1
|
#include <Variable/Variable.h>
|
|
2
|
#include <Variable/VariableAcquisitionWorker.h>
|
|
2
|
#include <Variable/VariableAcquisitionWorker.h>
|
|
3
|
#include <Variable/VariableCacheStrategy.h>
|
|
3
|
#include <Variable/VariableCacheStrategy.h>
|
|
|
|
|
4
|
#include <Variable/VariableCacheStrategyFactory.h>
|
|
4
|
#include <Variable/VariableController.h>
|
|
5
|
#include <Variable/VariableController.h>
|
|
5
|
#include <Variable/VariableModel.h>
|
|
6
|
#include <Variable/VariableModel.h>
|
|
6
|
#include <Variable/VariableSynchronizationGroup.h>
|
|
7
|
#include <Variable/VariableSynchronizationGroup.h>
|
|
7
|
|
|
8
|
|
|
8
|
#include <Data/DataProviderParameters.h>
|
|
9
|
#include <Data/DataProviderParameters.h>
|
|
9
|
#include <Data/IDataProvider.h>
|
|
10
|
#include <Data/IDataProvider.h>
|
|
10
|
#include <Data/IDataSeries.h>
|
|
11
|
#include <Data/IDataSeries.h>
|
|
11
|
#include <Data/VariableRequest.h>
|
|
12
|
#include <Data/VariableRequest.h>
|
|
12
|
#include <Time/TimeController.h>
|
|
13
|
#include <Time/TimeController.h>
|
|
13
|
|
|
14
|
|
|
14
|
#include <QMutex>
|
|
15
|
#include <QMutex>
|
|
15
|
#include <QThread>
|
|
16
|
#include <QThread>
|
|
16
|
#include <QUuid>
|
|
17
|
#include <QUuid>
|
|
17
|
#include <QtCore/QItemSelectionModel>
|
|
18
|
#include <QtCore/QItemSelectionModel>
|
|
18
|
|
|
19
|
|
|
19
|
#include <deque>
|
|
20
|
#include <deque>
|
|
20
|
#include <set>
|
|
21
|
#include <set>
|
|
21
|
#include <unordered_map>
|
|
22
|
#include <unordered_map>
|
|
22
|
|
|
23
|
|
|
23
|
Q_LOGGING_CATEGORY(LOG_VariableController, "VariableController")
|
|
24
|
Q_LOGGING_CATEGORY(LOG_VariableController, "VariableController")
|
|
24
|
|
|
25
|
|
|
25
|
namespace {
|
|
26
|
namespace {
|
|
26
|
|
|
27
|
|
|
27
|
SqpRange computeSynchroRangeRequested(const SqpRange &varRange, const SqpRange &graphRange,
|
|
28
|
SqpRange computeSynchroRangeRequested(const SqpRange &varRange, const SqpRange &graphRange,
|
|
28
|
const SqpRange &oldGraphRange)
|
|
29
|
const SqpRange &oldGraphRange)
|
|
29
|
{
|
|
30
|
{
|
|
30
|
auto zoomType = VariableController::getZoomType(graphRange, oldGraphRange);
|
|
31
|
auto zoomType = VariableController::getZoomType(graphRange, oldGraphRange);
|
|
31
|
|
|
32
|
|
|
32
|
auto varRangeRequested = varRange;
|
|
33
|
auto varRangeRequested = varRange;
|
|
33
|
switch (zoomType) {
|
|
34
|
switch (zoomType) {
|
|
34
|
case AcquisitionZoomType::ZoomIn: {
|
|
35
|
case AcquisitionZoomType::ZoomIn: {
|
|
35
|
auto deltaLeft = graphRange.m_TStart - oldGraphRange.m_TStart;
|
|
36
|
auto deltaLeft = graphRange.m_TStart - oldGraphRange.m_TStart;
|
|
36
|
auto deltaRight = oldGraphRange.m_TEnd - graphRange.m_TEnd;
|
|
37
|
auto deltaRight = oldGraphRange.m_TEnd - graphRange.m_TEnd;
|
|
37
|
varRangeRequested.m_TStart += deltaLeft;
|
|
38
|
varRangeRequested.m_TStart += deltaLeft;
|
|
38
|
varRangeRequested.m_TEnd -= deltaRight;
|
|
39
|
varRangeRequested.m_TEnd -= deltaRight;
|
|
39
|
break;
|
|
40
|
break;
|
|
40
|
}
|
|
41
|
}
|
|
41
|
|
|
42
|
|
|
42
|
case AcquisitionZoomType::ZoomOut: {
|
|
43
|
case AcquisitionZoomType::ZoomOut: {
|
|
43
|
auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
|
|
44
|
auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
|
|
44
|
auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
|
|
45
|
auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
|
|
45
|
varRangeRequested.m_TStart -= deltaLeft;
|
|
46
|
varRangeRequested.m_TStart -= deltaLeft;
|
|
46
|
varRangeRequested.m_TEnd += deltaRight;
|
|
47
|
varRangeRequested.m_TEnd += deltaRight;
|
|
47
|
break;
|
|
48
|
break;
|
|
48
|
}
|
|
49
|
}
|
|
49
|
case AcquisitionZoomType::PanRight: {
|
|
50
|
case AcquisitionZoomType::PanRight: {
|
|
50
|
auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
|
|
51
|
auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
|
|
51
|
varRangeRequested.m_TStart += deltaRight;
|
|
52
|
varRangeRequested.m_TStart += deltaRight;
|
|
52
|
varRangeRequested.m_TEnd += deltaRight;
|
|
53
|
varRangeRequested.m_TEnd += deltaRight;
|
|
53
|
break;
|
|
54
|
break;
|
|
54
|
}
|
|
55
|
}
|
|
55
|
case AcquisitionZoomType::PanLeft: {
|
|
56
|
case AcquisitionZoomType::PanLeft: {
|
|
56
|
auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
|
|
57
|
auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
|
|
57
|
varRangeRequested.m_TStart -= deltaLeft;
|
|
58
|
varRangeRequested.m_TStart -= deltaLeft;
|
|
58
|
varRangeRequested.m_TEnd -= deltaLeft;
|
|
59
|
varRangeRequested.m_TEnd -= deltaLeft;
|
|
59
|
break;
|
|
60
|
break;
|
|
60
|
}
|
|
61
|
}
|
|
61
|
case AcquisitionZoomType::Unknown: {
|
|
62
|
case AcquisitionZoomType::Unknown: {
|
|
62
|
qCCritical(LOG_VariableController())
|
|
63
|
qCCritical(LOG_VariableController())
|
|
63
|
<< VariableController::tr("Impossible to synchronize: zoom type unknown");
|
|
64
|
<< VariableController::tr("Impossible to synchronize: zoom type unknown");
|
|
64
|
break;
|
|
65
|
break;
|
|
65
|
}
|
|
66
|
}
|
|
66
|
default:
|
|
67
|
default:
|
|
67
|
qCCritical(LOG_VariableController()) << VariableController::tr(
|
|
68
|
qCCritical(LOG_VariableController()) << VariableController::tr(
|
|
68
|
"Impossible to synchronize: zoom type not take into account");
|
|
69
|
"Impossible to synchronize: zoom type not take into account");
|
|
69
|
// No action
|
|
70
|
// No action
|
|
70
|
break;
|
|
71
|
break;
|
|
71
|
}
|
|
72
|
}
|
|
72
|
|
|
73
|
|
|
73
|
return varRangeRequested;
|
|
74
|
return varRangeRequested;
|
|
74
|
}
|
|
75
|
}
|
|
75
|
}
|
|
76
|
}
|
|
76
|
|
|
77
|
|
|
77
|
struct VariableController::VariableControllerPrivate {
|
|
78
|
struct VariableController::VariableControllerPrivate {
|
|
78
|
explicit VariableControllerPrivate(VariableController *parent)
|
|
79
|
explicit VariableControllerPrivate(VariableController *parent)
|
|
79
|
: m_WorkingMutex{},
|
|
80
|
: m_WorkingMutex{},
|
|
80
|
m_VariableModel{new VariableModel{parent}},
|
|
81
|
m_VariableModel{new VariableModel{parent}},
|
|
81
|
m_VariableSelectionModel{new QItemSelectionModel{m_VariableModel, parent}},
|
|
82
|
m_VariableSelectionModel{new QItemSelectionModel{m_VariableModel, parent}},
|
|
82
|
m_VariableCacheStrategy{std::make_unique<VariableCacheStrategy>()},
|
|
83
|
// m_VariableCacheStrategy{std::make_unique<VariableCacheStrategy>()},
|
|
|
|
|
84
|
m_VariableCacheStrategy{VariableCacheStrategyFactory::createCacheStrategy(
|
|
|
|
|
85
|
CacheStrategy::SingleThreshold)},
|
|
83
|
m_VariableAcquisitionWorker{std::make_unique<VariableAcquisitionWorker>()},
|
|
86
|
m_VariableAcquisitionWorker{std::make_unique<VariableAcquisitionWorker>()},
|
|
84
|
q{parent}
|
|
87
|
q{parent}
|
|
85
|
{
|
|
88
|
{
|
|
86
|
|
|
89
|
|
|
87
|
m_VariableAcquisitionWorker->moveToThread(&m_VariableAcquisitionWorkerThread);
|
|
90
|
m_VariableAcquisitionWorker->moveToThread(&m_VariableAcquisitionWorkerThread);
|
|
88
|
m_VariableAcquisitionWorkerThread.setObjectName("VariableAcquisitionWorkerThread");
|
|
91
|
m_VariableAcquisitionWorkerThread.setObjectName("VariableAcquisitionWorkerThread");
|
|
89
|
}
|
|
92
|
}
|
|
90
|
|
|
93
|
|
|
91
|
|
|
94
|
|
|
92
|
virtual ~VariableControllerPrivate()
|
|
95
|
virtual ~VariableControllerPrivate()
|
|
93
|
{
|
|
96
|
{
|
|
94
|
qCDebug(LOG_VariableController()) << tr("VariableControllerPrivate destruction");
|
|
97
|
qCDebug(LOG_VariableController()) << tr("VariableControllerPrivate destruction");
|
|
95
|
m_VariableAcquisitionWorkerThread.quit();
|
|
98
|
m_VariableAcquisitionWorkerThread.quit();
|
|
96
|
m_VariableAcquisitionWorkerThread.wait();
|
|
99
|
m_VariableAcquisitionWorkerThread.wait();
|
|
97
|
}
|
|
100
|
}
|
|
98
|
|
|
101
|
|
|
99
|
|
|
102
|
|
|
100
|
void processRequest(std::shared_ptr<Variable> var, const SqpRange &rangeRequested,
|
|
103
|
void processRequest(std::shared_ptr<Variable> var, const SqpRange &rangeRequested,
|
|
101
|
QUuid varRequestId);
|
|
104
|
QUuid varRequestId);
|
|
102
|
|
|
105
|
|
|
103
|
QVector<SqpRange> provideNotInCacheDateTimeList(std::shared_ptr<Variable> variable,
|
|
106
|
QVector<SqpRange> provideNotInCacheDateTimeList(std::shared_ptr<Variable> variable,
|
|
104
|
const SqpRange &dateTime);
|
|
107
|
const SqpRange &dateTime);
|
|
105
|
|
|
108
|
|
|
106
|
std::shared_ptr<Variable> findVariable(QUuid vIdentifier);
|
|
109
|
std::shared_ptr<Variable> findVariable(QUuid vIdentifier);
|
|
107
|
std::shared_ptr<IDataSeries>
|
|
110
|
std::shared_ptr<IDataSeries>
|
|
108
|
retrieveDataSeries(const QVector<AcquisitionDataPacket> acqDataPacketVector);
|
|
111
|
retrieveDataSeries(const QVector<AcquisitionDataPacket> acqDataPacketVector);
|
|
109
|
|
|
112
|
|
|
110
|
void registerProvider(std::shared_ptr<IDataProvider> provider);
|
|
113
|
void registerProvider(std::shared_ptr<IDataProvider> provider);
|
|
111
|
|
|
114
|
|
|
112
|
void storeVariableRequest(QUuid varId, QUuid varRequestId, const VariableRequest &varRequest);
|
|
115
|
void storeVariableRequest(QUuid varId, QUuid varRequestId, const VariableRequest &varRequest);
|
|
113
|
QUuid acceptVariableRequest(QUuid varId, std::shared_ptr<IDataSeries> dataSeries);
|
|
116
|
QUuid acceptVariableRequest(QUuid varId, std::shared_ptr<IDataSeries> dataSeries);
|
|
114
|
void updateVariableRequest(QUuid varRequestId);
|
|
117
|
void updateVariableRequest(QUuid varRequestId);
|
|
115
|
void cancelVariableRequest(QUuid varRequestId);
|
|
118
|
void cancelVariableRequest(QUuid varRequestId);
|
|
116
|
|
|
119
|
|
|
117
|
QMutex m_WorkingMutex;
|
|
120
|
QMutex m_WorkingMutex;
|
|
118
|
/// Variable model. The VariableController has the ownership
|
|
121
|
/// Variable model. The VariableController has the ownership
|
|
119
|
VariableModel *m_VariableModel;
|
|
122
|
VariableModel *m_VariableModel;
|
|
120
|
QItemSelectionModel *m_VariableSelectionModel;
|
|
123
|
QItemSelectionModel *m_VariableSelectionModel;
|
|
121
|
|
|
124
|
|
|
122
|
|
|
125
|
|
|
123
|
TimeController *m_TimeController{nullptr};
|
|
126
|
TimeController *m_TimeController{nullptr};
|
|
124
|
std::unique_ptr<VariableCacheStrategy> m_VariableCacheStrategy;
|
|
127
|
std::unique_ptr<VariableCacheStrategy> m_VariableCacheStrategy;
|
|
125
|
std::unique_ptr<VariableAcquisitionWorker> m_VariableAcquisitionWorker;
|
|
128
|
std::unique_ptr<VariableAcquisitionWorker> m_VariableAcquisitionWorker;
|
|
126
|
QThread m_VariableAcquisitionWorkerThread;
|
|
129
|
QThread m_VariableAcquisitionWorkerThread;
|
|
127
|
|
|
130
|
|
|
128
|
std::unordered_map<std::shared_ptr<Variable>, std::shared_ptr<IDataProvider> >
|
|
131
|
std::unordered_map<std::shared_ptr<Variable>, std::shared_ptr<IDataProvider> >
|
|
129
|
m_VariableToProviderMap;
|
|
132
|
m_VariableToProviderMap;
|
|
130
|
std::unordered_map<std::shared_ptr<Variable>, QUuid> m_VariableToIdentifierMap;
|
|
133
|
std::unordered_map<std::shared_ptr<Variable>, QUuid> m_VariableToIdentifierMap;
|
|
131
|
std::map<QUuid, std::shared_ptr<VariableSynchronizationGroup> >
|
|
134
|
std::map<QUuid, std::shared_ptr<VariableSynchronizationGroup> >
|
|
132
|
m_GroupIdToVariableSynchronizationGroupMap;
|
|
135
|
m_GroupIdToVariableSynchronizationGroupMap;
|
|
133
|
std::map<QUuid, QUuid> m_VariableIdGroupIdMap;
|
|
136
|
std::map<QUuid, QUuid> m_VariableIdGroupIdMap;
|
|
134
|
std::set<std::shared_ptr<IDataProvider> > m_ProviderSet;
|
|
137
|
std::set<std::shared_ptr<IDataProvider> > m_ProviderSet;
|
|
135
|
|
|
138
|
|
|
136
|
std::map<QUuid, std::map<QUuid, VariableRequest> > m_VarRequestIdToVarIdVarRequestMap;
|
|
139
|
std::map<QUuid, std::map<QUuid, VariableRequest> > m_VarRequestIdToVarIdVarRequestMap;
|
|
137
|
|
|
140
|
|
|
138
|
std::map<QUuid, std::deque<QUuid> > m_VarIdToVarRequestIdQueueMap;
|
|
141
|
std::map<QUuid, std::deque<QUuid> > m_VarIdToVarRequestIdQueueMap;
|
|
139
|
|
|
142
|
|
|
140
|
|
|
143
|
|
|
141
|
VariableController *q;
|
|
144
|
VariableController *q;
|
|
142
|
};
|
|
145
|
};
|
|
143
|
|
|
146
|
|
|
144
|
|
|
147
|
|
|
145
|
VariableController::VariableController(QObject *parent)
|
|
148
|
VariableController::VariableController(QObject *parent)
|
|
146
|
: QObject{parent}, impl{spimpl::make_unique_impl<VariableControllerPrivate>(this)}
|
|
149
|
: QObject{parent}, impl{spimpl::make_unique_impl<VariableControllerPrivate>(this)}
|
|
147
|
{
|
|
150
|
{
|
|
148
|
qCDebug(LOG_VariableController()) << tr("VariableController construction")
|
|
151
|
qCDebug(LOG_VariableController()) << tr("VariableController construction")
|
|
149
|
<< QThread::currentThread();
|
|
152
|
<< QThread::currentThread();
|
|
150
|
|
|
153
|
|
|
151
|
connect(impl->m_VariableModel, &VariableModel::abortProgessRequested, this,
|
|
154
|
connect(impl->m_VariableModel, &VariableModel::abortProgessRequested, this,
|
|
152
|
&VariableController::onAbortProgressRequested);
|
|
155
|
&VariableController::onAbortProgressRequested);
|
|
153
|
|
|
156
|
|
|
154
|
connect(impl->m_VariableAcquisitionWorker.get(),
|
|
157
|
connect(impl->m_VariableAcquisitionWorker.get(),
|
|
155
|
&VariableAcquisitionWorker::variableCanceledRequested, this,
|
|
158
|
&VariableAcquisitionWorker::variableCanceledRequested, this,
|
|
156
|
&VariableController::onAbortAcquisitionRequested);
|
|
159
|
&VariableController::onAbortAcquisitionRequested);
|
|
157
|
|
|
160
|
|
|
158
|
connect(impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::dataProvided, this,
|
|
161
|
connect(impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::dataProvided, this,
|
|
159
|
&VariableController::onDataProvided);
|
|
162
|
&VariableController::onDataProvided);
|
|
160
|
connect(impl->m_VariableAcquisitionWorker.get(),
|
|
163
|
connect(impl->m_VariableAcquisitionWorker.get(),
|
|
161
|
&VariableAcquisitionWorker::variableRequestInProgress, this,
|
|
164
|
&VariableAcquisitionWorker::variableRequestInProgress, this,
|
|
162
|
&VariableController::onVariableRetrieveDataInProgress);
|
|
165
|
&VariableController::onVariableRetrieveDataInProgress);
|
|
163
|
|
|
166
|
|
|
164
|
|
|
167
|
|
|
165
|
connect(&impl->m_VariableAcquisitionWorkerThread, &QThread::started,
|
|
168
|
connect(&impl->m_VariableAcquisitionWorkerThread, &QThread::started,
|
|
166
|
impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::initialize);
|
|
169
|
impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::initialize);
|
|
167
|
connect(&impl->m_VariableAcquisitionWorkerThread, &QThread::finished,
|
|
170
|
connect(&impl->m_VariableAcquisitionWorkerThread, &QThread::finished,
|
|
168
|
impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::finalize);
|
|
171
|
impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::finalize);
|
|
169
|
|
|
172
|
|
|
170
|
|
|
173
|
|
|
171
|
impl->m_VariableAcquisitionWorkerThread.start();
|
|
174
|
impl->m_VariableAcquisitionWorkerThread.start();
|
|
172
|
}
|
|
175
|
}
|
|
173
|
|
|
176
|
|
|
174
|
VariableController::~VariableController()
|
|
177
|
VariableController::~VariableController()
|
|
175
|
{
|
|
178
|
{
|
|
176
|
qCDebug(LOG_VariableController()) << tr("VariableController destruction")
|
|
179
|
qCDebug(LOG_VariableController()) << tr("VariableController destruction")
|
|
177
|
<< QThread::currentThread();
|
|
180
|
<< QThread::currentThread();
|
|
178
|
this->waitForFinish();
|
|
181
|
this->waitForFinish();
|
|
179
|
}
|
|
182
|
}
|
|
180
|
|
|
183
|
|
|
181
|
VariableModel *VariableController::variableModel() noexcept
|
|
184
|
VariableModel *VariableController::variableModel() noexcept
|
|
182
|
{
|
|
185
|
{
|
|
183
|
return impl->m_VariableModel;
|
|
186
|
return impl->m_VariableModel;
|
|
184
|
}
|
|
187
|
}
|
|
185
|
|
|
188
|
|
|
186
|
QItemSelectionModel *VariableController::variableSelectionModel() noexcept
|
|
189
|
QItemSelectionModel *VariableController::variableSelectionModel() noexcept
|
|
187
|
{
|
|
190
|
{
|
|
188
|
return impl->m_VariableSelectionModel;
|
|
191
|
return impl->m_VariableSelectionModel;
|
|
189
|
}
|
|
192
|
}
|
|
190
|
|
|
193
|
|
|
191
|
void VariableController::setTimeController(TimeController *timeController) noexcept
|
|
194
|
void VariableController::setTimeController(TimeController *timeController) noexcept
|
|
192
|
{
|
|
195
|
{
|
|
193
|
impl->m_TimeController = timeController;
|
|
196
|
impl->m_TimeController = timeController;
|
|
194
|
}
|
|
197
|
}
|
|
195
|
|
|
198
|
|
|
196
|
std::shared_ptr<Variable>
|
|
199
|
std::shared_ptr<Variable>
|
|
197
|
VariableController::cloneVariable(std::shared_ptr<Variable> variable) noexcept
|
|
200
|
VariableController::cloneVariable(std::shared_ptr<Variable> variable) noexcept
|
|
198
|
{
|
|
201
|
{
|
|
199
|
if (impl->m_VariableModel->containsVariable(variable)) {
|
|
202
|
if (impl->m_VariableModel->containsVariable(variable)) {
|
|
200
|
// Clones variable
|
|
203
|
// Clones variable
|
|
201
|
auto duplicate = variable->clone();
|
|
204
|
auto duplicate = variable->clone();
|
|
202
|
|
|
205
|
|
|
203
|
// Adds clone to model
|
|
206
|
// Adds clone to model
|
|
204
|
impl->m_VariableModel->addVariable(duplicate);
|
|
207
|
impl->m_VariableModel->addVariable(duplicate);
|
|
205
|
|
|
208
|
|
|
206
|
// Generates clone identifier
|
|
209
|
// Generates clone identifier
|
|
207
|
impl->m_VariableToIdentifierMap[duplicate] = QUuid::createUuid();
|
|
210
|
impl->m_VariableToIdentifierMap[duplicate] = QUuid::createUuid();
|
|
208
|
|
|
211
|
|
|
209
|
// Registers provider
|
|
212
|
// Registers provider
|
|
210
|
auto variableProvider = impl->m_VariableToProviderMap.at(variable);
|
|
213
|
auto variableProvider = impl->m_VariableToProviderMap.at(variable);
|
|
211
|
auto duplicateProvider = variableProvider != nullptr ? variableProvider->clone() : nullptr;
|
|
214
|
auto duplicateProvider = variableProvider != nullptr ? variableProvider->clone() : nullptr;
|
|
212
|
|
|
215
|
|
|
213
|
impl->m_VariableToProviderMap[duplicate] = duplicateProvider;
|
|
216
|
impl->m_VariableToProviderMap[duplicate] = duplicateProvider;
|
|
214
|
if (duplicateProvider) {
|
|
217
|
if (duplicateProvider) {
|
|
215
|
impl->registerProvider(duplicateProvider);
|
|
218
|
impl->registerProvider(duplicateProvider);
|
|
216
|
}
|
|
219
|
}
|
|
217
|
|
|
220
|
|
|
218
|
return duplicate;
|
|
221
|
return duplicate;
|
|
219
|
}
|
|
222
|
}
|
|
220
|
else {
|
|
223
|
else {
|
|
221
|
qCCritical(LOG_VariableController())
|
|
224
|
qCCritical(LOG_VariableController())
|
|
222
|
<< tr("Can't create duplicate of variable %1: variable not registered in the model")
|
|
225
|
<< tr("Can't create duplicate of variable %1: variable not registered in the model")
|
|
223
|
.arg(variable->name());
|
|
226
|
.arg(variable->name());
|
|
224
|
return nullptr;
|
|
227
|
return nullptr;
|
|
225
|
}
|
|
228
|
}
|
|
226
|
}
|
|
229
|
}
|
|
227
|
|
|
230
|
|
|
228
|
void VariableController::deleteVariable(std::shared_ptr<Variable> variable) noexcept
|
|
231
|
void VariableController::deleteVariable(std::shared_ptr<Variable> variable) noexcept
|
|
229
|
{
|
|
232
|
{
|
|
230
|
if (!variable) {
|
|
233
|
if (!variable) {
|
|
231
|
qCCritical(LOG_VariableController()) << "Can't delete variable: variable is null";
|
|
234
|
qCCritical(LOG_VariableController()) << "Can't delete variable: variable is null";
|
|
232
|
return;
|
|
235
|
return;
|
|
233
|
}
|
|
236
|
}
|
|
234
|
|
|
237
|
|
|
235
|
// Spreads in SciQlop that the variable will be deleted, so that potential receivers can
|
|
238
|
// Spreads in SciQlop that the variable will be deleted, so that potential receivers can
|
|
236
|
// make some treatments before the deletion
|
|
239
|
// make some treatments before the deletion
|
|
237
|
emit variableAboutToBeDeleted(variable);
|
|
240
|
emit variableAboutToBeDeleted(variable);
|
|
238
|
|
|
241
|
|
|
239
|
// Deletes identifier
|
|
242
|
// Deletes identifier
|
|
240
|
impl->m_VariableToIdentifierMap.erase(variable);
|
|
243
|
impl->m_VariableToIdentifierMap.erase(variable);
|
|
241
|
|
|
244
|
|
|
242
|
// Deletes provider
|
|
245
|
// Deletes provider
|
|
243
|
auto nbProvidersDeleted = impl->m_VariableToProviderMap.erase(variable);
|
|
246
|
auto nbProvidersDeleted = impl->m_VariableToProviderMap.erase(variable);
|
|
244
|
qCDebug(LOG_VariableController())
|
|
247
|
qCDebug(LOG_VariableController())
|
|
245
|
<< tr("Number of providers deleted for variable %1: %2")
|
|
248
|
<< tr("Number of providers deleted for variable %1: %2")
|
|
246
|
.arg(variable->name(), QString::number(nbProvidersDeleted));
|
|
249
|
.arg(variable->name(), QString::number(nbProvidersDeleted));
|
|
247
|
|
|
250
|
|
|
248
|
|
|
251
|
|
|
249
|
// Deletes from model
|
|
252
|
// Deletes from model
|
|
250
|
impl->m_VariableModel->deleteVariable(variable);
|
|
253
|
impl->m_VariableModel->deleteVariable(variable);
|
|
251
|
}
|
|
254
|
}
|
|
252
|
|
|
255
|
|
|
253
|
void VariableController::deleteVariables(
|
|
256
|
void VariableController::deleteVariables(
|
|
254
|
const QVector<std::shared_ptr<Variable> > &variables) noexcept
|
|
257
|
const QVector<std::shared_ptr<Variable> > &variables) noexcept
|
|
255
|
{
|
|
258
|
{
|
|
256
|
for (auto variable : qAsConst(variables)) {
|
|
259
|
for (auto variable : qAsConst(variables)) {
|
|
257
|
deleteVariable(variable);
|
|
260
|
deleteVariable(variable);
|
|
258
|
}
|
|
261
|
}
|
|
259
|
}
|
|
262
|
}
|
|
260
|
|
|
263
|
|
|
261
|
std::shared_ptr<Variable>
|
|
264
|
std::shared_ptr<Variable>
|
|
262
|
VariableController::createVariable(const QString &name, const QVariantHash &metadata,
|
|
265
|
VariableController::createVariable(const QString &name, const QVariantHash &metadata,
|
|
263
|
std::shared_ptr<IDataProvider> provider) noexcept
|
|
266
|
std::shared_ptr<IDataProvider> provider) noexcept
|
|
264
|
{
|
|
267
|
{
|
|
265
|
if (!impl->m_TimeController) {
|
|
268
|
if (!impl->m_TimeController) {
|
|
266
|
qCCritical(LOG_VariableController())
|
|
269
|
qCCritical(LOG_VariableController())
|
|
267
|
<< tr("Impossible to create variable: The time controller is null");
|
|
270
|
<< tr("Impossible to create variable: The time controller is null");
|
|
268
|
return nullptr;
|
|
271
|
return nullptr;
|
|
269
|
}
|
|
272
|
}
|
|
270
|
|
|
273
|
|
|
271
|
auto range = impl->m_TimeController->dateTime();
|
|
274
|
auto range = impl->m_TimeController->dateTime();
|
|
272
|
|
|
275
|
|
|
273
|
if (auto newVariable = impl->m_VariableModel->createVariable(name, metadata)) {
|
|
276
|
if (auto newVariable = impl->m_VariableModel->createVariable(name, metadata)) {
|
|
274
|
auto identifier = QUuid::createUuid();
|
|
277
|
auto identifier = QUuid::createUuid();
|
|
275
|
|
|
278
|
|
|
276
|
// store the provider
|
|
279
|
// store the provider
|
|
277
|
impl->registerProvider(provider);
|
|
280
|
impl->registerProvider(provider);
|
|
278
|
|
|
281
|
|
|
279
|
// Associate the provider
|
|
282
|
// Associate the provider
|
|
280
|
impl->m_VariableToProviderMap[newVariable] = provider;
|
|
283
|
impl->m_VariableToProviderMap[newVariable] = provider;
|
|
281
|
qCInfo(LOG_VariableController()) << "createVariable: " << identifier;
|
|
284
|
qCInfo(LOG_VariableController()) << "createVariable: " << identifier;
|
|
282
|
impl->m_VariableToIdentifierMap[newVariable] = identifier;
|
|
285
|
impl->m_VariableToIdentifierMap[newVariable] = identifier;
|
|
283
|
|
|
286
|
|
|
284
|
|
|
287
|
|
|
285
|
auto varRequestId = QUuid::createUuid();
|
|
288
|
auto varRequestId = QUuid::createUuid();
|
|
286
|
impl->processRequest(newVariable, range, varRequestId);
|
|
289
|
impl->processRequest(newVariable, range, varRequestId);
|
|
287
|
impl->updateVariableRequest(varRequestId);
|
|
290
|
impl->updateVariableRequest(varRequestId);
|
|
288
|
|
|
291
|
|
|
289
|
return newVariable;
|
|
292
|
return newVariable;
|
|
290
|
}
|
|
293
|
}
|
|
291
|
}
|
|
294
|
}
|
|
292
|
|
|
295
|
|
|
293
|
void VariableController::onDateTimeOnSelection(const SqpRange &dateTime)
|
|
296
|
void VariableController::onDateTimeOnSelection(const SqpRange &dateTime)
|
|
294
|
{
|
|
297
|
{
|
|
295
|
// TODO check synchronisation and Rescale
|
|
298
|
// TODO check synchronisation and Rescale
|
|
296
|
qCDebug(LOG_VariableController()) << "VariableController::onDateTimeOnSelection"
|
|
299
|
qCDebug(LOG_VariableController()) << "VariableController::onDateTimeOnSelection"
|
|
297
|
<< QThread::currentThread()->objectName();
|
|
300
|
<< QThread::currentThread()->objectName();
|
|
298
|
auto selectedRows = impl->m_VariableSelectionModel->selectedRows();
|
|
301
|
auto selectedRows = impl->m_VariableSelectionModel->selectedRows();
|
|
299
|
auto varRequestId = QUuid::createUuid();
|
|
302
|
auto varRequestId = QUuid::createUuid();
|
|
300
|
|
|
303
|
|
|
301
|
for (const auto &selectedRow : qAsConst(selectedRows)) {
|
|
304
|
for (const auto &selectedRow : qAsConst(selectedRows)) {
|
|
302
|
if (auto selectedVariable = impl->m_VariableModel->variable(selectedRow.row())) {
|
|
305
|
if (auto selectedVariable = impl->m_VariableModel->variable(selectedRow.row())) {
|
|
303
|
selectedVariable->setRange(dateTime);
|
|
306
|
selectedVariable->setRange(dateTime);
|
|
304
|
impl->processRequest(selectedVariable, dateTime, varRequestId);
|
|
307
|
impl->processRequest(selectedVariable, dateTime, varRequestId);
|
|
305
|
|
|
308
|
|
|
306
|
// notify that rescale operation has to be done
|
|
309
|
// notify that rescale operation has to be done
|
|
307
|
emit rangeChanged(selectedVariable, dateTime);
|
|
310
|
emit rangeChanged(selectedVariable, dateTime);
|
|
308
|
}
|
|
311
|
}
|
|
309
|
}
|
|
312
|
}
|
|
310
|
impl->updateVariableRequest(varRequestId);
|
|
313
|
impl->updateVariableRequest(varRequestId);
|
|
311
|
}
|
|
314
|
}
|
|
312
|
|
|
315
|
|
|
313
|
void VariableController::onDataProvided(QUuid vIdentifier, const SqpRange &rangeRequested,
|
|
316
|
void VariableController::onDataProvided(QUuid vIdentifier, const SqpRange &rangeRequested,
|
|
314
|
const SqpRange &cacheRangeRequested,
|
|
317
|
const SqpRange &cacheRangeRequested,
|
|
315
|
QVector<AcquisitionDataPacket> dataAcquired)
|
|
318
|
QVector<AcquisitionDataPacket> dataAcquired)
|
|
316
|
{
|
|
319
|
{
|
|
317
|
auto retrievedDataSeries = impl->retrieveDataSeries(dataAcquired);
|
|
320
|
auto retrievedDataSeries = impl->retrieveDataSeries(dataAcquired);
|
|
318
|
auto varRequestId = impl->acceptVariableRequest(vIdentifier, retrievedDataSeries);
|
|
321
|
auto varRequestId = impl->acceptVariableRequest(vIdentifier, retrievedDataSeries);
|
|
319
|
if (!varRequestId.isNull()) {
|
|
322
|
if (!varRequestId.isNull()) {
|
|
320
|
impl->updateVariableRequest(varRequestId);
|
|
323
|
impl->updateVariableRequest(varRequestId);
|
|
321
|
}
|
|
324
|
}
|
|
322
|
}
|
|
325
|
}
|
|
323
|
|
|
326
|
|
|
324
|
void VariableController::onVariableRetrieveDataInProgress(QUuid identifier, double progress)
|
|
327
|
void VariableController::onVariableRetrieveDataInProgress(QUuid identifier, double progress)
|
|
325
|
{
|
|
328
|
{
|
|
326
|
qCDebug(LOG_VariableController())
|
|
329
|
qCDebug(LOG_VariableController())
|
|
327
|
<< "TORM: variableController::onVariableRetrieveDataInProgress"
|
|
330
|
<< "TORM: variableController::onVariableRetrieveDataInProgress"
|
|
328
|
<< QThread::currentThread()->objectName() << progress;
|
|
331
|
<< QThread::currentThread()->objectName() << progress;
|
|
329
|
if (auto var = impl->findVariable(identifier)) {
|
|
332
|
if (auto var = impl->findVariable(identifier)) {
|
|
330
|
impl->m_VariableModel->setDataProgress(var, progress);
|
|
333
|
impl->m_VariableModel->setDataProgress(var, progress);
|
|
331
|
}
|
|
334
|
}
|
|
332
|
else {
|
|
335
|
else {
|
|
333
|
qCCritical(LOG_VariableController())
|
|
336
|
qCCritical(LOG_VariableController())
|
|
334
|
<< tr("Impossible to notify progression of a null variable");
|
|
337
|
<< tr("Impossible to notify progression of a null variable");
|
|
335
|
}
|
|
338
|
}
|
|
336
|
}
|
|
339
|
}
|
|
337
|
|
|
340
|
|
|
338
|
void VariableController::onAbortProgressRequested(std::shared_ptr<Variable> variable)
|
|
341
|
void VariableController::onAbortProgressRequested(std::shared_ptr<Variable> variable)
|
|
339
|
{
|
|
342
|
{
|
|
340
|
auto it = impl->m_VariableToIdentifierMap.find(variable);
|
|
343
|
auto it = impl->m_VariableToIdentifierMap.find(variable);
|
|
341
|
if (it != impl->m_VariableToIdentifierMap.cend()) {
|
|
344
|
if (it != impl->m_VariableToIdentifierMap.cend()) {
|
|
342
|
impl->m_VariableAcquisitionWorker->abortProgressRequested(it->second);
|
|
345
|
impl->m_VariableAcquisitionWorker->abortProgressRequested(it->second);
|
|
343
|
|
|
346
|
|
|
344
|
QUuid varRequestId;
|
|
347
|
QUuid varRequestId;
|
|
345
|
auto varIdToVarRequestIdQueueMapIt = impl->m_VarIdToVarRequestIdQueueMap.find(it->second);
|
|
348
|
auto varIdToVarRequestIdQueueMapIt = impl->m_VarIdToVarRequestIdQueueMap.find(it->second);
|
|
346
|
if (varIdToVarRequestIdQueueMapIt != impl->m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
349
|
if (varIdToVarRequestIdQueueMapIt != impl->m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
347
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
350
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
348
|
varRequestId = varRequestIdQueue.front();
|
|
351
|
varRequestId = varRequestIdQueue.front();
|
|
349
|
impl->cancelVariableRequest(varRequestId);
|
|
352
|
impl->cancelVariableRequest(varRequestId);
|
|
350
|
|
|
353
|
|
|
351
|
// Finish the progression for the request
|
|
354
|
// Finish the progression for the request
|
|
352
|
impl->m_VariableModel->setDataProgress(variable, 0.0);
|
|
355
|
impl->m_VariableModel->setDataProgress(variable, 0.0);
|
|
353
|
}
|
|
356
|
}
|
|
354
|
else {
|
|
357
|
else {
|
|
355
|
qCWarning(LOG_VariableController())
|
|
358
|
qCWarning(LOG_VariableController())
|
|
356
|
<< tr("Aborting progression of inexistant variable request detected !!!")
|
|
359
|
<< tr("Aborting progression of inexistant variable request detected !!!")
|
|
357
|
<< QThread::currentThread()->objectName();
|
|
360
|
<< QThread::currentThread()->objectName();
|
|
358
|
}
|
|
361
|
}
|
|
359
|
}
|
|
362
|
}
|
|
360
|
else {
|
|
363
|
else {
|
|
361
|
qCWarning(LOG_VariableController())
|
|
364
|
qCWarning(LOG_VariableController())
|
|
362
|
<< tr("Aborting progression of inexistant variable detected !!!")
|
|
365
|
<< tr("Aborting progression of inexistant variable detected !!!")
|
|
363
|
<< QThread::currentThread()->objectName();
|
|
366
|
<< QThread::currentThread()->objectName();
|
|
364
|
}
|
|
367
|
}
|
|
365
|
}
|
|
368
|
}
|
|
366
|
|
|
369
|
|
|
367
|
void VariableController::onAbortAcquisitionRequested(QUuid vIdentifier)
|
|
370
|
void VariableController::onAbortAcquisitionRequested(QUuid vIdentifier)
|
|
368
|
{
|
|
371
|
{
|
|
369
|
qCDebug(LOG_VariableController()) << "TORM: variableController::onAbortAcquisitionRequested"
|
|
372
|
qCDebug(LOG_VariableController()) << "TORM: variableController::onAbortAcquisitionRequested"
|
|
370
|
<< QThread::currentThread()->objectName() << vIdentifier;
|
|
373
|
<< QThread::currentThread()->objectName() << vIdentifier;
|
|
371
|
|
|
374
|
|
|
372
|
if (auto var = impl->findVariable(vIdentifier)) {
|
|
375
|
if (auto var = impl->findVariable(vIdentifier)) {
|
|
373
|
this->onAbortProgressRequested(var);
|
|
376
|
this->onAbortProgressRequested(var);
|
|
374
|
}
|
|
377
|
}
|
|
375
|
else {
|
|
378
|
else {
|
|
376
|
qCCritical(LOG_VariableController())
|
|
379
|
qCCritical(LOG_VariableController())
|
|
377
|
<< tr("Impossible to abort Acquisition Requestof a null variable");
|
|
380
|
<< tr("Impossible to abort Acquisition Requestof a null variable");
|
|
378
|
}
|
|
381
|
}
|
|
379
|
}
|
|
382
|
}
|
|
380
|
|
|
383
|
|
|
381
|
void VariableController::onAddSynchronizationGroupId(QUuid synchronizationGroupId)
|
|
384
|
void VariableController::onAddSynchronizationGroupId(QUuid synchronizationGroupId)
|
|
382
|
{
|
|
385
|
{
|
|
383
|
qCDebug(LOG_VariableController()) << "TORM: VariableController::onAddSynchronizationGroupId"
|
|
386
|
qCDebug(LOG_VariableController()) << "TORM: VariableController::onAddSynchronizationGroupId"
|
|
384
|
<< QThread::currentThread()->objectName()
|
|
387
|
<< QThread::currentThread()->objectName()
|
|
385
|
<< synchronizationGroupId;
|
|
388
|
<< synchronizationGroupId;
|
|
386
|
auto vSynchroGroup = std::make_shared<VariableSynchronizationGroup>();
|
|
389
|
auto vSynchroGroup = std::make_shared<VariableSynchronizationGroup>();
|
|
387
|
impl->m_GroupIdToVariableSynchronizationGroupMap.insert(
|
|
390
|
impl->m_GroupIdToVariableSynchronizationGroupMap.insert(
|
|
388
|
std::make_pair(synchronizationGroupId, vSynchroGroup));
|
|
391
|
std::make_pair(synchronizationGroupId, vSynchroGroup));
|
|
389
|
}
|
|
392
|
}
|
|
390
|
|
|
393
|
|
|
391
|
void VariableController::onRemoveSynchronizationGroupId(QUuid synchronizationGroupId)
|
|
394
|
void VariableController::onRemoveSynchronizationGroupId(QUuid synchronizationGroupId)
|
|
392
|
{
|
|
395
|
{
|
|
393
|
impl->m_GroupIdToVariableSynchronizationGroupMap.erase(synchronizationGroupId);
|
|
396
|
impl->m_GroupIdToVariableSynchronizationGroupMap.erase(synchronizationGroupId);
|
|
394
|
}
|
|
397
|
}
|
|
395
|
|
|
398
|
|
|
396
|
void VariableController::onAddSynchronized(std::shared_ptr<Variable> variable,
|
|
399
|
void VariableController::onAddSynchronized(std::shared_ptr<Variable> variable,
|
|
397
|
QUuid synchronizationGroupId)
|
|
400
|
QUuid synchronizationGroupId)
|
|
398
|
|
|
401
|
|
|
399
|
{
|
|
402
|
{
|
|
400
|
qCDebug(LOG_VariableController()) << "TORM: VariableController::onAddSynchronized"
|
|
403
|
qCDebug(LOG_VariableController()) << "TORM: VariableController::onAddSynchronized"
|
|
401
|
<< synchronizationGroupId;
|
|
404
|
<< synchronizationGroupId;
|
|
402
|
auto varToVarIdIt = impl->m_VariableToIdentifierMap.find(variable);
|
|
405
|
auto varToVarIdIt = impl->m_VariableToIdentifierMap.find(variable);
|
|
403
|
if (varToVarIdIt != impl->m_VariableToIdentifierMap.cend()) {
|
|
406
|
if (varToVarIdIt != impl->m_VariableToIdentifierMap.cend()) {
|
|
404
|
auto groupIdToVSGIt
|
|
407
|
auto groupIdToVSGIt
|
|
405
|
= impl->m_GroupIdToVariableSynchronizationGroupMap.find(synchronizationGroupId);
|
|
408
|
= impl->m_GroupIdToVariableSynchronizationGroupMap.find(synchronizationGroupId);
|
|
406
|
if (groupIdToVSGIt != impl->m_GroupIdToVariableSynchronizationGroupMap.cend()) {
|
|
409
|
if (groupIdToVSGIt != impl->m_GroupIdToVariableSynchronizationGroupMap.cend()) {
|
|
407
|
impl->m_VariableIdGroupIdMap.insert(
|
|
410
|
impl->m_VariableIdGroupIdMap.insert(
|
|
408
|
std::make_pair(varToVarIdIt->second, synchronizationGroupId));
|
|
411
|
std::make_pair(varToVarIdIt->second, synchronizationGroupId));
|
|
409
|
groupIdToVSGIt->second->addVariableId(varToVarIdIt->second);
|
|
412
|
groupIdToVSGIt->second->addVariableId(varToVarIdIt->second);
|
|
410
|
}
|
|
413
|
}
|
|
411
|
else {
|
|
414
|
else {
|
|
412
|
qCCritical(LOG_VariableController())
|
|
415
|
qCCritical(LOG_VariableController())
|
|
413
|
<< tr("Impossible to synchronize a variable with an unknown sycnhronization group")
|
|
416
|
<< tr("Impossible to synchronize a variable with an unknown sycnhronization group")
|
|
414
|
<< variable->name();
|
|
417
|
<< variable->name();
|
|
415
|
}
|
|
418
|
}
|
|
416
|
}
|
|
419
|
}
|
|
417
|
else {
|
|
420
|
else {
|
|
418
|
qCCritical(LOG_VariableController())
|
|
421
|
qCCritical(LOG_VariableController())
|
|
419
|
<< tr("Impossible to synchronize a variable with no identifier") << variable->name();
|
|
422
|
<< tr("Impossible to synchronize a variable with no identifier") << variable->name();
|
|
420
|
}
|
|
423
|
}
|
|
421
|
}
|
|
424
|
}
|
|
422
|
|
|
425
|
|
|
423
|
void VariableController::desynchronize(std::shared_ptr<Variable> variable,
|
|
426
|
void VariableController::desynchronize(std::shared_ptr<Variable> variable,
|
|
424
|
QUuid synchronizationGroupId)
|
|
427
|
QUuid synchronizationGroupId)
|
|
425
|
{
|
|
428
|
{
|
|
426
|
// Gets variable id
|
|
429
|
// Gets variable id
|
|
427
|
auto variableIt = impl->m_VariableToIdentifierMap.find(variable);
|
|
430
|
auto variableIt = impl->m_VariableToIdentifierMap.find(variable);
|
|
428
|
if (variableIt == impl->m_VariableToIdentifierMap.cend()) {
|
|
431
|
if (variableIt == impl->m_VariableToIdentifierMap.cend()) {
|
|
429
|
qCCritical(LOG_VariableController())
|
|
432
|
qCCritical(LOG_VariableController())
|
|
430
|
<< tr("Can't desynchronize variable %1: variable identifier not found")
|
|
433
|
<< tr("Can't desynchronize variable %1: variable identifier not found")
|
|
431
|
.arg(variable->name());
|
|
434
|
.arg(variable->name());
|
|
432
|
return;
|
|
435
|
return;
|
|
433
|
}
|
|
436
|
}
|
|
434
|
|
|
437
|
|
|
435
|
// Gets synchronization group
|
|
438
|
// Gets synchronization group
|
|
436
|
auto groupIt = impl->m_GroupIdToVariableSynchronizationGroupMap.find(synchronizationGroupId);
|
|
439
|
auto groupIt = impl->m_GroupIdToVariableSynchronizationGroupMap.find(synchronizationGroupId);
|
|
437
|
if (groupIt == impl->m_GroupIdToVariableSynchronizationGroupMap.cend()) {
|
|
440
|
if (groupIt == impl->m_GroupIdToVariableSynchronizationGroupMap.cend()) {
|
|
438
|
qCCritical(LOG_VariableController())
|
|
441
|
qCCritical(LOG_VariableController())
|
|
439
|
<< tr("Can't desynchronize variable %1: unknown synchronization group")
|
|
442
|
<< tr("Can't desynchronize variable %1: unknown synchronization group")
|
|
440
|
.arg(variable->name());
|
|
443
|
.arg(variable->name());
|
|
441
|
return;
|
|
444
|
return;
|
|
442
|
}
|
|
445
|
}
|
|
443
|
|
|
446
|
|
|
444
|
auto variableId = variableIt->second;
|
|
447
|
auto variableId = variableIt->second;
|
|
445
|
|
|
448
|
|
|
446
|
// Removes variable from synchronization group
|
|
449
|
// Removes variable from synchronization group
|
|
447
|
auto synchronizationGroup = groupIt->second;
|
|
450
|
auto synchronizationGroup = groupIt->second;
|
|
448
|
synchronizationGroup->removeVariableId(variableId);
|
|
451
|
synchronizationGroup->removeVariableId(variableId);
|
|
449
|
|
|
452
|
|
|
450
|
// Removes link between variable and synchronization group
|
|
453
|
// Removes link between variable and synchronization group
|
|
451
|
impl->m_VariableIdGroupIdMap.erase(variableId);
|
|
454
|
impl->m_VariableIdGroupIdMap.erase(variableId);
|
|
452
|
}
|
|
455
|
}
|
|
453
|
|
|
456
|
|
|
454
|
void VariableController::onRequestDataLoading(QVector<std::shared_ptr<Variable> > variables,
|
|
457
|
void VariableController::onRequestDataLoading(QVector<std::shared_ptr<Variable> > variables,
|
|
455
|
const SqpRange &range, const SqpRange &oldRange,
|
|
458
|
const SqpRange &range, const SqpRange &oldRange,
|
|
456
|
bool synchronise)
|
|
459
|
bool synchronise)
|
|
457
|
{
|
|
460
|
{
|
|
458
|
// NOTE: oldRange isn't really necessary since oldRange == variable->range().
|
|
461
|
// NOTE: oldRange isn't really necessary since oldRange == variable->range().
|
|
459
|
|
|
462
|
|
|
460
|
// we want to load data of the variable for the dateTime.
|
|
463
|
// we want to load data of the variable for the dateTime.
|
|
461
|
// First we check if the cache contains some of them.
|
|
464
|
// First we check if the cache contains some of them.
|
|
462
|
// For the other, we ask the provider to give them.
|
|
465
|
// For the other, we ask the provider to give them.
|
|
463
|
|
|
466
|
|
|
464
|
auto varRequestId = QUuid::createUuid();
|
|
467
|
auto varRequestId = QUuid::createUuid();
|
|
465
|
qCDebug(LOG_VariableController()) << "VariableController::onRequestDataLoading"
|
|
468
|
qCDebug(LOG_VariableController()) << "VariableController::onRequestDataLoading"
|
|
466
|
<< QThread::currentThread()->objectName() << varRequestId;
|
|
469
|
<< QThread::currentThread()->objectName() << varRequestId;
|
|
467
|
|
|
470
|
|
|
468
|
for (const auto &var : variables) {
|
|
471
|
for (const auto &var : variables) {
|
|
469
|
qCDebug(LOG_VariableController()) << "processRequest for" << var->name() << varRequestId;
|
|
472
|
qCDebug(LOG_VariableController()) << "processRequest for" << var->name() << varRequestId;
|
|
470
|
impl->processRequest(var, range, varRequestId);
|
|
473
|
impl->processRequest(var, range, varRequestId);
|
|
471
|
}
|
|
474
|
}
|
|
472
|
|
|
475
|
|
|
473
|
if (synchronise) {
|
|
476
|
if (synchronise) {
|
|
474
|
// Get the group ids
|
|
477
|
// Get the group ids
|
|
475
|
qCDebug(LOG_VariableController())
|
|
478
|
qCDebug(LOG_VariableController())
|
|
476
|
<< "TORM VariableController::onRequestDataLoading for synchro var ENABLE";
|
|
479
|
<< "TORM VariableController::onRequestDataLoading for synchro var ENABLE";
|
|
477
|
auto groupIds = std::set<QUuid>{};
|
|
480
|
auto groupIds = std::set<QUuid>{};
|
|
478
|
auto groupIdToOldRangeMap = std::map<QUuid, SqpRange>{};
|
|
481
|
auto groupIdToOldRangeMap = std::map<QUuid, SqpRange>{};
|
|
479
|
for (const auto &var : variables) {
|
|
482
|
for (const auto &var : variables) {
|
|
480
|
auto varToVarIdIt = impl->m_VariableToIdentifierMap.find(var);
|
|
483
|
auto varToVarIdIt = impl->m_VariableToIdentifierMap.find(var);
|
|
481
|
if (varToVarIdIt != impl->m_VariableToIdentifierMap.cend()) {
|
|
484
|
if (varToVarIdIt != impl->m_VariableToIdentifierMap.cend()) {
|
|
482
|
auto vId = varToVarIdIt->second;
|
|
485
|
auto vId = varToVarIdIt->second;
|
|
483
|
auto varIdToGroupIdIt = impl->m_VariableIdGroupIdMap.find(vId);
|
|
486
|
auto varIdToGroupIdIt = impl->m_VariableIdGroupIdMap.find(vId);
|
|
484
|
if (varIdToGroupIdIt != impl->m_VariableIdGroupIdMap.cend()) {
|
|
487
|
if (varIdToGroupIdIt != impl->m_VariableIdGroupIdMap.cend()) {
|
|
485
|
auto gId = varIdToGroupIdIt->second;
|
|
488
|
auto gId = varIdToGroupIdIt->second;
|
|
486
|
groupIdToOldRangeMap.insert(std::make_pair(gId, var->range()));
|
|
489
|
groupIdToOldRangeMap.insert(std::make_pair(gId, var->range()));
|
|
487
|
if (groupIds.find(gId) == groupIds.cend()) {
|
|
490
|
if (groupIds.find(gId) == groupIds.cend()) {
|
|
488
|
qCDebug(LOG_VariableController()) << "Synchro detect group " << gId;
|
|
491
|
qCDebug(LOG_VariableController()) << "Synchro detect group " << gId;
|
|
489
|
groupIds.insert(gId);
|
|
492
|
groupIds.insert(gId);
|
|
490
|
}
|
|
493
|
}
|
|
491
|
}
|
|
494
|
}
|
|
492
|
}
|
|
495
|
}
|
|
493
|
}
|
|
496
|
}
|
|
494
|
|
|
497
|
|
|
495
|
// We assume here all group ids exist
|
|
498
|
// We assume here all group ids exist
|
|
496
|
for (const auto &gId : groupIds) {
|
|
499
|
for (const auto &gId : groupIds) {
|
|
497
|
auto vSynchronizationGroup = impl->m_GroupIdToVariableSynchronizationGroupMap.at(gId);
|
|
500
|
auto vSynchronizationGroup = impl->m_GroupIdToVariableSynchronizationGroupMap.at(gId);
|
|
498
|
auto vSyncIds = vSynchronizationGroup->getIds();
|
|
501
|
auto vSyncIds = vSynchronizationGroup->getIds();
|
|
499
|
qCDebug(LOG_VariableController()) << "Var in synchro group ";
|
|
502
|
qCDebug(LOG_VariableController()) << "Var in synchro group ";
|
|
500
|
for (auto vId : vSyncIds) {
|
|
503
|
for (auto vId : vSyncIds) {
|
|
501
|
auto var = impl->findVariable(vId);
|
|
504
|
auto var = impl->findVariable(vId);
|
|
502
|
|
|
505
|
|
|
503
|
// Don't process already processed var
|
|
506
|
// Don't process already processed var
|
|
504
|
if (!variables.contains(var)) {
|
|
507
|
if (!variables.contains(var)) {
|
|
505
|
if (var != nullptr) {
|
|
508
|
if (var != nullptr) {
|
|
506
|
qCDebug(LOG_VariableController()) << "processRequest synchro for"
|
|
509
|
qCDebug(LOG_VariableController()) << "processRequest synchro for"
|
|
507
|
<< var->name();
|
|
510
|
<< var->name();
|
|
508
|
auto vSyncRangeRequested = computeSynchroRangeRequested(
|
|
511
|
auto vSyncRangeRequested = computeSynchroRangeRequested(
|
|
509
|
var->range(), range, groupIdToOldRangeMap.at(gId));
|
|
512
|
var->range(), range, groupIdToOldRangeMap.at(gId));
|
|
510
|
qCDebug(LOG_VariableController()) << "synchro RR" << vSyncRangeRequested;
|
|
513
|
qCDebug(LOG_VariableController()) << "synchro RR" << vSyncRangeRequested;
|
|
511
|
impl->processRequest(var, vSyncRangeRequested, varRequestId);
|
|
514
|
impl->processRequest(var, vSyncRangeRequested, varRequestId);
|
|
512
|
}
|
|
515
|
}
|
|
513
|
else {
|
|
516
|
else {
|
|
514
|
qCCritical(LOG_VariableController())
|
|
517
|
qCCritical(LOG_VariableController())
|
|
515
|
|
|
518
|
|
|
516
|
<< tr("Impossible to synchronize a null variable");
|
|
519
|
<< tr("Impossible to synchronize a null variable");
|
|
517
|
}
|
|
520
|
}
|
|
518
|
}
|
|
521
|
}
|
|
519
|
}
|
|
522
|
}
|
|
520
|
}
|
|
523
|
}
|
|
521
|
}
|
|
524
|
}
|
|
522
|
|
|
525
|
|
|
523
|
impl->updateVariableRequest(varRequestId);
|
|
526
|
impl->updateVariableRequest(varRequestId);
|
|
524
|
}
|
|
527
|
}
|
|
525
|
|
|
528
|
|
|
526
|
|
|
529
|
|
|
527
|
void VariableController::initialize()
|
|
530
|
void VariableController::initialize()
|
|
528
|
{
|
|
531
|
{
|
|
529
|
qCDebug(LOG_VariableController()) << tr("VariableController init") << QThread::currentThread();
|
|
532
|
qCDebug(LOG_VariableController()) << tr("VariableController init") << QThread::currentThread();
|
|
530
|
impl->m_WorkingMutex.lock();
|
|
533
|
impl->m_WorkingMutex.lock();
|
|
531
|
qCDebug(LOG_VariableController()) << tr("VariableController init END");
|
|
534
|
qCDebug(LOG_VariableController()) << tr("VariableController init END");
|
|
532
|
}
|
|
535
|
}
|
|
533
|
|
|
536
|
|
|
534
|
void VariableController::finalize()
|
|
537
|
void VariableController::finalize()
|
|
535
|
{
|
|
538
|
{
|
|
536
|
impl->m_WorkingMutex.unlock();
|
|
539
|
impl->m_WorkingMutex.unlock();
|
|
537
|
}
|
|
540
|
}
|
|
538
|
|
|
541
|
|
|
539
|
void VariableController::waitForFinish()
|
|
542
|
void VariableController::waitForFinish()
|
|
540
|
{
|
|
543
|
{
|
|
541
|
QMutexLocker locker{&impl->m_WorkingMutex};
|
|
544
|
QMutexLocker locker{&impl->m_WorkingMutex};
|
|
542
|
}
|
|
545
|
}
|
|
543
|
|
|
546
|
|
|
544
|
AcquisitionZoomType VariableController::getZoomType(const SqpRange &range, const SqpRange &oldRange)
|
|
547
|
AcquisitionZoomType VariableController::getZoomType(const SqpRange &range, const SqpRange &oldRange)
|
|
545
|
{
|
|
548
|
{
|
|
546
|
// t1.m_TStart <= t2.m_TStart && t2.m_TEnd <= t1.m_TEnd
|
|
549
|
// t1.m_TStart <= t2.m_TStart && t2.m_TEnd <= t1.m_TEnd
|
|
547
|
auto zoomType = AcquisitionZoomType::Unknown;
|
|
550
|
auto zoomType = AcquisitionZoomType::Unknown;
|
|
548
|
if (range.m_TStart <= oldRange.m_TStart && oldRange.m_TEnd <= range.m_TEnd) {
|
|
551
|
if (range.m_TStart <= oldRange.m_TStart && oldRange.m_TEnd <= range.m_TEnd) {
|
|
549
|
zoomType = AcquisitionZoomType::ZoomOut;
|
|
552
|
zoomType = AcquisitionZoomType::ZoomOut;
|
|
550
|
}
|
|
553
|
}
|
|
551
|
else if (range.m_TStart > oldRange.m_TStart && range.m_TEnd > oldRange.m_TEnd) {
|
|
554
|
else if (range.m_TStart > oldRange.m_TStart && range.m_TEnd > oldRange.m_TEnd) {
|
|
552
|
zoomType = AcquisitionZoomType::PanRight;
|
|
555
|
zoomType = AcquisitionZoomType::PanRight;
|
|
553
|
}
|
|
556
|
}
|
|
554
|
else if (range.m_TStart < oldRange.m_TStart && range.m_TEnd < oldRange.m_TEnd) {
|
|
557
|
else if (range.m_TStart < oldRange.m_TStart && range.m_TEnd < oldRange.m_TEnd) {
|
|
555
|
zoomType = AcquisitionZoomType::PanLeft;
|
|
558
|
zoomType = AcquisitionZoomType::PanLeft;
|
|
556
|
}
|
|
559
|
}
|
|
557
|
else if (range.m_TStart > oldRange.m_TStart && oldRange.m_TEnd > range.m_TEnd) {
|
|
560
|
else if (range.m_TStart > oldRange.m_TStart && oldRange.m_TEnd > range.m_TEnd) {
|
|
558
|
zoomType = AcquisitionZoomType::ZoomIn;
|
|
561
|
zoomType = AcquisitionZoomType::ZoomIn;
|
|
559
|
}
|
|
562
|
}
|
|
560
|
else {
|
|
563
|
else {
|
|
561
|
qCCritical(LOG_VariableController()) << "getZoomType: Unknown type detected";
|
|
564
|
qCCritical(LOG_VariableController()) << "getZoomType: Unknown type detected";
|
|
562
|
}
|
|
565
|
}
|
|
563
|
return zoomType;
|
|
566
|
return zoomType;
|
|
564
|
}
|
|
567
|
}
|
|
565
|
|
|
568
|
|
|
566
|
void VariableController::VariableControllerPrivate::processRequest(std::shared_ptr<Variable> var,
|
|
569
|
void VariableController::VariableControllerPrivate::processRequest(std::shared_ptr<Variable> var,
|
|
567
|
const SqpRange &rangeRequested,
|
|
570
|
const SqpRange &rangeRequested,
|
|
568
|
QUuid varRequestId)
|
|
571
|
QUuid varRequestId)
|
|
569
|
{
|
|
572
|
{
|
|
570
|
|
|
573
|
|
|
571
|
// TODO: protect at
|
|
574
|
// TODO: protect at
|
|
572
|
auto varRequest = VariableRequest{};
|
|
575
|
auto varRequest = VariableRequest{};
|
|
573
|
auto varId = m_VariableToIdentifierMap.at(var);
|
|
576
|
auto varId = m_VariableToIdentifierMap.at(var);
|
|
574
|
|
|
577
|
|
|
575
|
auto varStrategyRangesRequested
|
|
578
|
auto varStrategyRangesRequested
|
|
576
|
= m_VariableCacheStrategy->computeStrategyRanges(var->range(), rangeRequested);
|
|
579
|
= m_VariableCacheStrategy->computeRange(var->range(), rangeRequested);
|
|
577
|
|
|
580
|
|
|
578
|
auto notInCacheRangeList = QVector<SqpRange>{varStrategyRangesRequested.second};
|
|
581
|
auto notInCacheRangeList = QVector<SqpRange>{varStrategyRangesRequested.second};
|
|
579
|
auto inCacheRangeList = QVector<SqpRange>{};
|
|
582
|
auto inCacheRangeList = QVector<SqpRange>{};
|
|
580
|
if (m_VarIdToVarRequestIdQueueMap.find(varId) == m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
583
|
if (m_VarIdToVarRequestIdQueueMap.find(varId) == m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
581
|
notInCacheRangeList = var->provideNotInCacheRangeList(varStrategyRangesRequested.second);
|
|
584
|
notInCacheRangeList = var->provideNotInCacheRangeList(varStrategyRangesRequested.second);
|
|
582
|
inCacheRangeList = var->provideInCacheRangeList(varStrategyRangesRequested.second);
|
|
585
|
inCacheRangeList = var->provideInCacheRangeList(varStrategyRangesRequested.second);
|
|
583
|
}
|
|
586
|
}
|
|
584
|
|
|
587
|
|
|
585
|
if (!notInCacheRangeList.empty()) {
|
|
588
|
if (!notInCacheRangeList.empty()) {
|
|
586
|
varRequest.m_RangeRequested = varStrategyRangesRequested.first;
|
|
589
|
varRequest.m_RangeRequested = varStrategyRangesRequested.first;
|
|
587
|
varRequest.m_CacheRangeRequested = varStrategyRangesRequested.second;
|
|
590
|
varRequest.m_CacheRangeRequested = varStrategyRangesRequested.second;
|
|
588
|
|
|
591
|
|
|
589
|
// store VarRequest
|
|
592
|
// store VarRequest
|
|
590
|
storeVariableRequest(varId, varRequestId, varRequest);
|
|
593
|
storeVariableRequest(varId, varRequestId, varRequest);
|
|
591
|
|
|
594
|
|
|
592
|
auto varProvider = m_VariableToProviderMap.at(var);
|
|
595
|
auto varProvider = m_VariableToProviderMap.at(var);
|
|
593
|
if (varProvider != nullptr) {
|
|
596
|
if (varProvider != nullptr) {
|
|
594
|
auto varRequestIdCanceled = m_VariableAcquisitionWorker->pushVariableRequest(
|
|
597
|
auto varRequestIdCanceled = m_VariableAcquisitionWorker->pushVariableRequest(
|
|
595
|
varRequestId, varId, varStrategyRangesRequested.first,
|
|
598
|
varRequestId, varId, varStrategyRangesRequested.first,
|
|
596
|
varStrategyRangesRequested.second,
|
|
599
|
varStrategyRangesRequested.second,
|
|
597
|
DataProviderParameters{std::move(notInCacheRangeList), var->metadata()},
|
|
600
|
DataProviderParameters{std::move(notInCacheRangeList), var->metadata()},
|
|
598
|
varProvider);
|
|
601
|
varProvider);
|
|
599
|
|
|
602
|
|
|
600
|
if (!varRequestIdCanceled.isNull()) {
|
|
603
|
if (!varRequestIdCanceled.isNull()) {
|
|
601
|
qCDebug(LOG_VariableAcquisitionWorker()) << tr("vsarRequestIdCanceled: ")
|
|
604
|
qCDebug(LOG_VariableAcquisitionWorker()) << tr("vsarRequestIdCanceled: ")
|
|
602
|
<< varRequestIdCanceled;
|
|
605
|
<< varRequestIdCanceled;
|
|
603
|
cancelVariableRequest(varRequestIdCanceled);
|
|
606
|
cancelVariableRequest(varRequestIdCanceled);
|
|
604
|
}
|
|
607
|
}
|
|
605
|
}
|
|
608
|
}
|
|
606
|
else {
|
|
609
|
else {
|
|
607
|
qCCritical(LOG_VariableController())
|
|
610
|
qCCritical(LOG_VariableController())
|
|
608
|
<< "Impossible to provide data with a null provider";
|
|
611
|
<< "Impossible to provide data with a null provider";
|
|
609
|
}
|
|
612
|
}
|
|
610
|
|
|
613
|
|
|
611
|
if (!inCacheRangeList.empty()) {
|
|
614
|
if (!inCacheRangeList.empty()) {
|
|
612
|
emit q->updateVarDisplaying(var, inCacheRangeList.first());
|
|
615
|
emit q->updateVarDisplaying(var, inCacheRangeList.first());
|
|
613
|
}
|
|
616
|
}
|
|
614
|
}
|
|
617
|
}
|
|
615
|
else {
|
|
618
|
else {
|
|
616
|
varRequest.m_RangeRequested = varStrategyRangesRequested.first;
|
|
619
|
varRequest.m_RangeRequested = varStrategyRangesRequested.first;
|
|
617
|
varRequest.m_CacheRangeRequested = varStrategyRangesRequested.second;
|
|
620
|
varRequest.m_CacheRangeRequested = varStrategyRangesRequested.second;
|
|
618
|
// store VarRequest
|
|
621
|
// store VarRequest
|
|
619
|
storeVariableRequest(varId, varRequestId, varRequest);
|
|
622
|
storeVariableRequest(varId, varRequestId, varRequest);
|
|
620
|
acceptVariableRequest(varId,
|
|
623
|
acceptVariableRequest(varId,
|
|
621
|
var->dataSeries()->subDataSeries(varStrategyRangesRequested.second));
|
|
624
|
var->dataSeries()->subDataSeries(varStrategyRangesRequested.second));
|
|
622
|
}
|
|
625
|
}
|
|
623
|
}
|
|
626
|
}
|
|
624
|
|
|
627
|
|
|
625
|
std::shared_ptr<Variable>
|
|
628
|
std::shared_ptr<Variable>
|
|
626
|
VariableController::VariableControllerPrivate::findVariable(QUuid vIdentifier)
|
|
629
|
VariableController::VariableControllerPrivate::findVariable(QUuid vIdentifier)
|
|
627
|
{
|
|
630
|
{
|
|
628
|
std::shared_ptr<Variable> var;
|
|
631
|
std::shared_ptr<Variable> var;
|
|
629
|
auto findReply = [vIdentifier](const auto &entry) { return vIdentifier == entry.second; };
|
|
632
|
auto findReply = [vIdentifier](const auto &entry) { return vIdentifier == entry.second; };
|
|
630
|
|
|
633
|
|
|
631
|
auto end = m_VariableToIdentifierMap.cend();
|
|
634
|
auto end = m_VariableToIdentifierMap.cend();
|
|
632
|
auto it = std::find_if(m_VariableToIdentifierMap.cbegin(), end, findReply);
|
|
635
|
auto it = std::find_if(m_VariableToIdentifierMap.cbegin(), end, findReply);
|
|
633
|
if (it != end) {
|
|
636
|
if (it != end) {
|
|
634
|
var = it->first;
|
|
637
|
var = it->first;
|
|
635
|
}
|
|
638
|
}
|
|
636
|
else {
|
|
639
|
else {
|
|
637
|
qCCritical(LOG_VariableController())
|
|
640
|
qCCritical(LOG_VariableController())
|
|
638
|
<< tr("Impossible to find the variable with the identifier: ") << vIdentifier;
|
|
641
|
<< tr("Impossible to find the variable with the identifier: ") << vIdentifier;
|
|
639
|
}
|
|
642
|
}
|
|
640
|
|
|
643
|
|
|
641
|
return var;
|
|
644
|
return var;
|
|
642
|
}
|
|
645
|
}
|
|
643
|
|
|
646
|
|
|
644
|
std::shared_ptr<IDataSeries> VariableController::VariableControllerPrivate::retrieveDataSeries(
|
|
647
|
std::shared_ptr<IDataSeries> VariableController::VariableControllerPrivate::retrieveDataSeries(
|
|
645
|
const QVector<AcquisitionDataPacket> acqDataPacketVector)
|
|
648
|
const QVector<AcquisitionDataPacket> acqDataPacketVector)
|
|
646
|
{
|
|
649
|
{
|
|
647
|
qCDebug(LOG_VariableController()) << tr("TORM: retrieveDataSeries acqDataPacketVector size")
|
|
650
|
qCDebug(LOG_VariableController()) << tr("TORM: retrieveDataSeries acqDataPacketVector size")
|
|
648
|
<< acqDataPacketVector.size();
|
|
651
|
<< acqDataPacketVector.size();
|
|
649
|
std::shared_ptr<IDataSeries> dataSeries;
|
|
652
|
std::shared_ptr<IDataSeries> dataSeries;
|
|
650
|
if (!acqDataPacketVector.isEmpty()) {
|
|
653
|
if (!acqDataPacketVector.isEmpty()) {
|
|
651
|
dataSeries = acqDataPacketVector[0].m_DateSeries;
|
|
654
|
dataSeries = acqDataPacketVector[0].m_DateSeries;
|
|
652
|
for (int i = 1; i < acqDataPacketVector.size(); ++i) {
|
|
655
|
for (int i = 1; i < acqDataPacketVector.size(); ++i) {
|
|
653
|
dataSeries->merge(acqDataPacketVector[i].m_DateSeries.get());
|
|
656
|
dataSeries->merge(acqDataPacketVector[i].m_DateSeries.get());
|
|
654
|
}
|
|
657
|
}
|
|
655
|
}
|
|
658
|
}
|
|
656
|
qCDebug(LOG_VariableController()) << tr("TORM: retrieveDataSeries acqDataPacketVector size END")
|
|
659
|
qCDebug(LOG_VariableController()) << tr("TORM: retrieveDataSeries acqDataPacketVector size END")
|
|
657
|
<< acqDataPacketVector.size();
|
|
660
|
<< acqDataPacketVector.size();
|
|
658
|
return dataSeries;
|
|
661
|
return dataSeries;
|
|
659
|
}
|
|
662
|
}
|
|
660
|
|
|
663
|
|
|
661
|
void VariableController::VariableControllerPrivate::registerProvider(
|
|
664
|
void VariableController::VariableControllerPrivate::registerProvider(
|
|
662
|
std::shared_ptr<IDataProvider> provider)
|
|
665
|
std::shared_ptr<IDataProvider> provider)
|
|
663
|
{
|
|
666
|
{
|
|
664
|
if (m_ProviderSet.find(provider) == m_ProviderSet.end()) {
|
|
667
|
if (m_ProviderSet.find(provider) == m_ProviderSet.end()) {
|
|
665
|
qCDebug(LOG_VariableController()) << tr("Registering of a new provider")
|
|
668
|
qCDebug(LOG_VariableController()) << tr("Registering of a new provider")
|
|
666
|
<< provider->objectName();
|
|
669
|
<< provider->objectName();
|
|
667
|
m_ProviderSet.insert(provider);
|
|
670
|
m_ProviderSet.insert(provider);
|
|
668
|
connect(provider.get(), &IDataProvider::dataProvided, m_VariableAcquisitionWorker.get(),
|
|
671
|
connect(provider.get(), &IDataProvider::dataProvided, m_VariableAcquisitionWorker.get(),
|
|
669
|
&VariableAcquisitionWorker::onVariableDataAcquired);
|
|
672
|
&VariableAcquisitionWorker::onVariableDataAcquired);
|
|
670
|
connect(provider.get(), &IDataProvider::dataProvidedProgress,
|
|
673
|
connect(provider.get(), &IDataProvider::dataProvidedProgress,
|
|
671
|
m_VariableAcquisitionWorker.get(),
|
|
674
|
m_VariableAcquisitionWorker.get(),
|
|
672
|
&VariableAcquisitionWorker::onVariableRetrieveDataInProgress);
|
|
675
|
&VariableAcquisitionWorker::onVariableRetrieveDataInProgress);
|
|
673
|
connect(provider.get(), &IDataProvider::dataProvidedFailed,
|
|
676
|
connect(provider.get(), &IDataProvider::dataProvidedFailed,
|
|
674
|
m_VariableAcquisitionWorker.get(),
|
|
677
|
m_VariableAcquisitionWorker.get(),
|
|
675
|
&VariableAcquisitionWorker::onVariableAcquisitionFailed);
|
|
678
|
&VariableAcquisitionWorker::onVariableAcquisitionFailed);
|
|
676
|
}
|
|
679
|
}
|
|
677
|
else {
|
|
680
|
else {
|
|
678
|
qCDebug(LOG_VariableController()) << tr("Cannot register provider, it already exists ");
|
|
681
|
qCDebug(LOG_VariableController()) << tr("Cannot register provider, it already exists ");
|
|
679
|
}
|
|
682
|
}
|
|
680
|
}
|
|
683
|
}
|
|
681
|
|
|
684
|
|
|
682
|
void VariableController::VariableControllerPrivate::storeVariableRequest(
|
|
685
|
void VariableController::VariableControllerPrivate::storeVariableRequest(
|
|
683
|
QUuid varId, QUuid varRequestId, const VariableRequest &varRequest)
|
|
686
|
QUuid varId, QUuid varRequestId, const VariableRequest &varRequest)
|
|
684
|
{
|
|
687
|
{
|
|
685
|
// First request for the variable. we can create an entry for it
|
|
688
|
// First request for the variable. we can create an entry for it
|
|
686
|
auto varIdToVarRequestIdQueueMapIt = m_VarIdToVarRequestIdQueueMap.find(varId);
|
|
689
|
auto varIdToVarRequestIdQueueMapIt = m_VarIdToVarRequestIdQueueMap.find(varId);
|
|
687
|
if (varIdToVarRequestIdQueueMapIt == m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
690
|
if (varIdToVarRequestIdQueueMapIt == m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
688
|
auto varRequestIdQueue = std::deque<QUuid>{};
|
|
691
|
auto varRequestIdQueue = std::deque<QUuid>{};
|
|
689
|
qCDebug(LOG_VariableController()) << tr("Store REQUEST in QUEUE");
|
|
692
|
qCDebug(LOG_VariableController()) << tr("Store REQUEST in QUEUE");
|
|
690
|
varRequestIdQueue.push_back(varRequestId);
|
|
693
|
varRequestIdQueue.push_back(varRequestId);
|
|
691
|
m_VarIdToVarRequestIdQueueMap.insert(std::make_pair(varId, std::move(varRequestIdQueue)));
|
|
694
|
m_VarIdToVarRequestIdQueueMap.insert(std::make_pair(varId, std::move(varRequestIdQueue)));
|
|
692
|
}
|
|
695
|
}
|
|
693
|
else {
|
|
696
|
else {
|
|
694
|
qCDebug(LOG_VariableController()) << tr("Store REQUEST in EXISTING QUEUE");
|
|
697
|
qCDebug(LOG_VariableController()) << tr("Store REQUEST in EXISTING QUEUE");
|
|
695
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
698
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
696
|
varRequestIdQueue.push_back(varRequestId);
|
|
699
|
varRequestIdQueue.push_back(varRequestId);
|
|
697
|
}
|
|
700
|
}
|
|
698
|
|
|
701
|
|
|
699
|
auto varRequestIdToVarIdVarRequestMapIt = m_VarRequestIdToVarIdVarRequestMap.find(varRequestId);
|
|
702
|
auto varRequestIdToVarIdVarRequestMapIt = m_VarRequestIdToVarIdVarRequestMap.find(varRequestId);
|
|
700
|
if (varRequestIdToVarIdVarRequestMapIt == m_VarRequestIdToVarIdVarRequestMap.cend()) {
|
|
703
|
if (varRequestIdToVarIdVarRequestMapIt == m_VarRequestIdToVarIdVarRequestMap.cend()) {
|
|
701
|
auto varIdToVarRequestMap = std::map<QUuid, VariableRequest>{};
|
|
704
|
auto varIdToVarRequestMap = std::map<QUuid, VariableRequest>{};
|
|
702
|
varIdToVarRequestMap.insert(std::make_pair(varId, varRequest));
|
|
705
|
varIdToVarRequestMap.insert(std::make_pair(varId, varRequest));
|
|
703
|
qCDebug(LOG_VariableController()) << tr("Store REQUESTID in MAP");
|
|
706
|
qCDebug(LOG_VariableController()) << tr("Store REQUESTID in MAP");
|
|
704
|
m_VarRequestIdToVarIdVarRequestMap.insert(
|
|
707
|
m_VarRequestIdToVarIdVarRequestMap.insert(
|
|
705
|
std::make_pair(varRequestId, std::move(varIdToVarRequestMap)));
|
|
708
|
std::make_pair(varRequestId, std::move(varIdToVarRequestMap)));
|
|
706
|
}
|
|
709
|
}
|
|
707
|
else {
|
|
710
|
else {
|
|
708
|
auto &varIdToVarRequestMap = varRequestIdToVarIdVarRequestMapIt->second;
|
|
711
|
auto &varIdToVarRequestMap = varRequestIdToVarIdVarRequestMapIt->second;
|
|
709
|
qCDebug(LOG_VariableController()) << tr("Store REQUESTID in EXISTING MAP");
|
|
712
|
qCDebug(LOG_VariableController()) << tr("Store REQUESTID in EXISTING MAP");
|
|
710
|
varIdToVarRequestMap.insert(std::make_pair(varId, varRequest));
|
|
713
|
varIdToVarRequestMap.insert(std::make_pair(varId, varRequest));
|
|
711
|
}
|
|
714
|
}
|
|
712
|
}
|
|
715
|
}
|
|
713
|
|
|
716
|
|
|
714
|
QUuid VariableController::VariableControllerPrivate::acceptVariableRequest(
|
|
717
|
QUuid VariableController::VariableControllerPrivate::acceptVariableRequest(
|
|
715
|
QUuid varId, std::shared_ptr<IDataSeries> dataSeries)
|
|
718
|
QUuid varId, std::shared_ptr<IDataSeries> dataSeries)
|
|
716
|
{
|
|
719
|
{
|
|
717
|
QUuid varRequestId;
|
|
720
|
QUuid varRequestId;
|
|
718
|
auto varIdToVarRequestIdQueueMapIt = m_VarIdToVarRequestIdQueueMap.find(varId);
|
|
721
|
auto varIdToVarRequestIdQueueMapIt = m_VarIdToVarRequestIdQueueMap.find(varId);
|
|
719
|
if (varIdToVarRequestIdQueueMapIt != m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
722
|
if (varIdToVarRequestIdQueueMapIt != m_VarIdToVarRequestIdQueueMap.cend()) {
|
|
720
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
723
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
721
|
varRequestId = varRequestIdQueue.front();
|
|
724
|
varRequestId = varRequestIdQueue.front();
|
|
722
|
auto varRequestIdToVarIdVarRequestMapIt
|
|
725
|
auto varRequestIdToVarIdVarRequestMapIt
|
|
723
|
= m_VarRequestIdToVarIdVarRequestMap.find(varRequestId);
|
|
726
|
= m_VarRequestIdToVarIdVarRequestMap.find(varRequestId);
|
|
724
|
if (varRequestIdToVarIdVarRequestMapIt != m_VarRequestIdToVarIdVarRequestMap.cend()) {
|
|
727
|
if (varRequestIdToVarIdVarRequestMapIt != m_VarRequestIdToVarIdVarRequestMap.cend()) {
|
|
725
|
auto &varIdToVarRequestMap = varRequestIdToVarIdVarRequestMapIt->second;
|
|
728
|
auto &varIdToVarRequestMap = varRequestIdToVarIdVarRequestMapIt->second;
|
|
726
|
auto varIdToVarRequestMapIt = varIdToVarRequestMap.find(varId);
|
|
729
|
auto varIdToVarRequestMapIt = varIdToVarRequestMap.find(varId);
|
|
727
|
if (varIdToVarRequestMapIt != varIdToVarRequestMap.cend()) {
|
|
730
|
if (varIdToVarRequestMapIt != varIdToVarRequestMap.cend()) {
|
|
728
|
qCDebug(LOG_VariableController()) << tr("acceptVariableRequest");
|
|
731
|
qCDebug(LOG_VariableController()) << tr("acceptVariableRequest");
|
|
729
|
auto &varRequest = varIdToVarRequestMapIt->second;
|
|
732
|
auto &varRequest = varIdToVarRequestMapIt->second;
|
|
730
|
varRequest.m_DataSeries = dataSeries;
|
|
733
|
varRequest.m_DataSeries = dataSeries;
|
|
731
|
varRequest.m_CanUpdate = true;
|
|
734
|
varRequest.m_CanUpdate = true;
|
|
732
|
}
|
|
735
|
}
|
|
733
|
else {
|
|
736
|
else {
|
|
734
|
qCDebug(LOG_VariableController())
|
|
737
|
qCDebug(LOG_VariableController())
|
|
735
|
<< tr("Impossible to acceptVariableRequest of a unknown variable id attached "
|
|
738
|
<< tr("Impossible to acceptVariableRequest of a unknown variable id attached "
|
|
736
|
"to a variableRequestId")
|
|
739
|
"to a variableRequestId")
|
|
737
|
<< varRequestId << varId;
|
|
740
|
<< varRequestId << varId;
|
|
738
|
}
|
|
741
|
}
|
|
739
|
}
|
|
742
|
}
|
|
740
|
else {
|
|
743
|
else {
|
|
741
|
qCCritical(LOG_VariableController())
|
|
744
|
qCCritical(LOG_VariableController())
|
|
742
|
<< tr("Impossible to acceptVariableRequest of a unknown variableRequestId")
|
|
745
|
<< tr("Impossible to acceptVariableRequest of a unknown variableRequestId")
|
|
743
|
<< varRequestId;
|
|
746
|
<< varRequestId;
|
|
744
|
}
|
|
747
|
}
|
|
745
|
|
|
748
|
|
|
746
|
varRequestIdQueue.pop_front();
|
|
749
|
varRequestIdQueue.pop_front();
|
|
747
|
if (varRequestIdQueue.empty()) {
|
|
750
|
if (varRequestIdQueue.empty()) {
|
|
748
|
qCDebug(LOG_VariableController())
|
|
751
|
qCDebug(LOG_VariableController())
|
|
749
|
<< tr("TORM Erase REQUEST because it has been accepted") << varId;
|
|
752
|
<< tr("TORM Erase REQUEST because it has been accepted") << varId;
|
|
750
|
m_VarIdToVarRequestIdQueueMap.erase(varId);
|
|
753
|
m_VarIdToVarRequestIdQueueMap.erase(varId);
|
|
751
|
}
|
|
754
|
}
|
|
752
|
}
|
|
755
|
}
|
|
753
|
else {
|
|
756
|
else {
|
|
754
|
qCCritical(LOG_VariableController())
|
|
757
|
qCCritical(LOG_VariableController())
|
|
755
|
<< tr("Impossible to acceptVariableRequest of a unknown variable id") << varId;
|
|
758
|
<< tr("Impossible to acceptVariableRequest of a unknown variable id") << varId;
|
|
756
|
}
|
|
759
|
}
|
|
757
|
|
|
760
|
|
|
758
|
return varRequestId;
|
|
761
|
return varRequestId;
|
|
759
|
}
|
|
762
|
}
|
|
760
|
|
|
763
|
|
|
761
|
void VariableController::VariableControllerPrivate::updateVariableRequest(QUuid varRequestId)
|
|
764
|
void VariableController::VariableControllerPrivate::updateVariableRequest(QUuid varRequestId)
|
|
762
|
{
|
|
765
|
{
|
|
763
|
|
|
766
|
|
|
764
|
auto varRequestIdToVarIdVarRequestMapIt = m_VarRequestIdToVarIdVarRequestMap.find(varRequestId);
|
|
767
|
auto varRequestIdToVarIdVarRequestMapIt = m_VarRequestIdToVarIdVarRequestMap.find(varRequestId);
|
|
765
|
if (varRequestIdToVarIdVarRequestMapIt != m_VarRequestIdToVarIdVarRequestMap.cend()) {
|
|
768
|
if (varRequestIdToVarIdVarRequestMapIt != m_VarRequestIdToVarIdVarRequestMap.cend()) {
|
|
766
|
bool processVariableUpdate = true;
|
|
769
|
bool processVariableUpdate = true;
|
|
767
|
auto &varIdToVarRequestMap = varRequestIdToVarIdVarRequestMapIt->second;
|
|
770
|
auto &varIdToVarRequestMap = varRequestIdToVarIdVarRequestMapIt->second;
|
|
768
|
for (auto varIdToVarRequestMapIt = varIdToVarRequestMap.cbegin();
|
|
771
|
for (auto varIdToVarRequestMapIt = varIdToVarRequestMap.cbegin();
|
|
769
|
(varIdToVarRequestMapIt != varIdToVarRequestMap.cend()) && processVariableUpdate;
|
|
772
|
(varIdToVarRequestMapIt != varIdToVarRequestMap.cend()) && processVariableUpdate;
|
|
770
|
++varIdToVarRequestMapIt) {
|
|
773
|
++varIdToVarRequestMapIt) {
|
|
771
|
processVariableUpdate &= varIdToVarRequestMapIt->second.m_CanUpdate;
|
|
774
|
processVariableUpdate &= varIdToVarRequestMapIt->second.m_CanUpdate;
|
|
772
|
qCDebug(LOG_VariableController()) << tr("updateVariableRequest")
|
|
775
|
qCDebug(LOG_VariableController()) << tr("updateVariableRequest")
|
|
773
|
<< processVariableUpdate;
|
|
776
|
<< processVariableUpdate;
|
|
774
|
}
|
|
777
|
}
|
|
775
|
|
|
778
|
|
|
776
|
if (processVariableUpdate) {
|
|
779
|
if (processVariableUpdate) {
|
|
777
|
for (auto varIdToVarRequestMapIt = varIdToVarRequestMap.cbegin();
|
|
780
|
for (auto varIdToVarRequestMapIt = varIdToVarRequestMap.cbegin();
|
|
778
|
varIdToVarRequestMapIt != varIdToVarRequestMap.cend(); ++varIdToVarRequestMapIt) {
|
|
781
|
varIdToVarRequestMapIt != varIdToVarRequestMap.cend(); ++varIdToVarRequestMapIt) {
|
|
779
|
if (auto var = findVariable(varIdToVarRequestMapIt->first)) {
|
|
782
|
if (auto var = findVariable(varIdToVarRequestMapIt->first)) {
|
|
780
|
auto &varRequest = varIdToVarRequestMapIt->second;
|
|
783
|
auto &varRequest = varIdToVarRequestMapIt->second;
|
|
781
|
var->setRange(varRequest.m_RangeRequested);
|
|
784
|
var->setRange(varRequest.m_RangeRequested);
|
|
782
|
var->setCacheRange(varRequest.m_CacheRangeRequested);
|
|
785
|
var->setCacheRange(varRequest.m_CacheRangeRequested);
|
|
783
|
qCDebug(LOG_VariableController()) << tr("1: onDataProvided")
|
|
786
|
qCDebug(LOG_VariableController()) << tr("1: onDataProvided")
|
|
784
|
<< varRequest.m_RangeRequested;
|
|
787
|
<< varRequest.m_RangeRequested;
|
|
785
|
qCDebug(LOG_VariableController()) << tr("2: onDataProvided")
|
|
788
|
qCDebug(LOG_VariableController()) << tr("2: onDataProvided")
|
|
786
|
<< varRequest.m_CacheRangeRequested;
|
|
789
|
<< varRequest.m_CacheRangeRequested;
|
|
787
|
var->mergeDataSeries(varRequest.m_DataSeries);
|
|
790
|
var->mergeDataSeries(varRequest.m_DataSeries);
|
|
788
|
qCDebug(LOG_VariableController()) << tr("3: onDataProvided")
|
|
791
|
qCDebug(LOG_VariableController()) << tr("3: onDataProvided")
|
|
789
|
<< varRequest.m_DataSeries->range();
|
|
792
|
<< varRequest.m_DataSeries->range();
|
|
790
|
qCDebug(LOG_VariableController()) << tr("4: onDataProvided");
|
|
793
|
qCDebug(LOG_VariableController()) << tr("4: onDataProvided");
|
|
791
|
|
|
794
|
|
|
792
|
/// @todo MPL: confirm
|
|
795
|
/// @todo MPL: confirm
|
|
793
|
// Variable update is notified only if there is no pending request for it
|
|
796
|
// Variable update is notified only if there is no pending request for it
|
|
794
|
// if
|
|
797
|
// if
|
|
795
|
// (m_VarIdToVarRequestIdQueueMap.count(varIdToVarRequestMapIt->first)
|
|
798
|
// (m_VarIdToVarRequestIdQueueMap.count(varIdToVarRequestMapIt->first)
|
|
796
|
// == 0) {
|
|
799
|
// == 0) {
|
|
797
|
emit var->updated();
|
|
800
|
emit var->updated();
|
|
798
|
// }
|
|
801
|
// }
|
|
799
|
}
|
|
802
|
}
|
|
800
|
else {
|
|
803
|
else {
|
|
801
|
qCCritical(LOG_VariableController())
|
|
804
|
qCCritical(LOG_VariableController())
|
|
802
|
<< tr("Impossible to update data to a null variable");
|
|
805
|
<< tr("Impossible to update data to a null variable");
|
|
803
|
}
|
|
806
|
}
|
|
804
|
}
|
|
807
|
}
|
|
805
|
|
|
808
|
|
|
806
|
// cleaning varRequestId
|
|
809
|
// cleaning varRequestId
|
|
807
|
qCDebug(LOG_VariableController()) << tr("0: erase REQUEST in MAP ?")
|
|
810
|
qCDebug(LOG_VariableController()) << tr("0: erase REQUEST in MAP ?")
|
|
808
|
<< m_VarRequestIdToVarIdVarRequestMap.size();
|
|
811
|
<< m_VarRequestIdToVarIdVarRequestMap.size();
|
|
809
|
m_VarRequestIdToVarIdVarRequestMap.erase(varRequestId);
|
|
812
|
m_VarRequestIdToVarIdVarRequestMap.erase(varRequestId);
|
|
810
|
qCDebug(LOG_VariableController()) << tr("1: erase REQUEST in MAP ?")
|
|
813
|
qCDebug(LOG_VariableController()) << tr("1: erase REQUEST in MAP ?")
|
|
811
|
<< m_VarRequestIdToVarIdVarRequestMap.size();
|
|
814
|
<< m_VarRequestIdToVarIdVarRequestMap.size();
|
|
812
|
}
|
|
815
|
}
|
|
813
|
}
|
|
816
|
}
|
|
814
|
else {
|
|
817
|
else {
|
|
815
|
qCCritical(LOG_VariableController())
|
|
818
|
qCCritical(LOG_VariableController())
|
|
816
|
<< tr("Cannot updateVariableRequest for a unknow varRequestId") << varRequestId;
|
|
819
|
<< tr("Cannot updateVariableRequest for a unknow varRequestId") << varRequestId;
|
|
817
|
}
|
|
820
|
}
|
|
818
|
}
|
|
821
|
}
|
|
819
|
|
|
822
|
|
|
820
|
void VariableController::VariableControllerPrivate::cancelVariableRequest(QUuid varRequestId)
|
|
823
|
void VariableController::VariableControllerPrivate::cancelVariableRequest(QUuid varRequestId)
|
|
821
|
{
|
|
824
|
{
|
|
822
|
// cleaning varRequestId
|
|
825
|
// cleaning varRequestId
|
|
823
|
m_VarRequestIdToVarIdVarRequestMap.erase(varRequestId);
|
|
826
|
m_VarRequestIdToVarIdVarRequestMap.erase(varRequestId);
|
|
824
|
|
|
827
|
|
|
825
|
for (auto varIdToVarRequestIdQueueMapIt = m_VarIdToVarRequestIdQueueMap.begin();
|
|
828
|
for (auto varIdToVarRequestIdQueueMapIt = m_VarIdToVarRequestIdQueueMap.begin();
|
|
826
|
varIdToVarRequestIdQueueMapIt != m_VarIdToVarRequestIdQueueMap.end();) {
|
|
829
|
varIdToVarRequestIdQueueMapIt != m_VarIdToVarRequestIdQueueMap.end();) {
|
|
827
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
830
|
auto &varRequestIdQueue = varIdToVarRequestIdQueueMapIt->second;
|
|
828
|
varRequestIdQueue.erase(
|
|
831
|
varRequestIdQueue.erase(
|
|
829
|
std::remove(varRequestIdQueue.begin(), varRequestIdQueue.end(), varRequestId),
|
|
832
|
std::remove(varRequestIdQueue.begin(), varRequestIdQueue.end(), varRequestId),
|
|
830
|
varRequestIdQueue.end());
|
|
833
|
varRequestIdQueue.end());
|
|
831
|
if (varRequestIdQueue.empty()) {
|
|
834
|
if (varRequestIdQueue.empty()) {
|
|
832
|
varIdToVarRequestIdQueueMapIt
|
|
835
|
varIdToVarRequestIdQueueMapIt
|
|
833
|
= m_VarIdToVarRequestIdQueueMap.erase(varIdToVarRequestIdQueueMapIt);
|
|
836
|
= m_VarIdToVarRequestIdQueueMap.erase(varIdToVarRequestIdQueueMapIt);
|
|
834
|
}
|
|
837
|
}
|
|
835
|
else {
|
|
838
|
else {
|
|
836
|
++varIdToVarRequestIdQueueMapIt;
|
|
839
|
++varIdToVarRequestIdQueueMapIt;
|
|
837
|
}
|
|
840
|
}
|
|
838
|
}
|
|
841
|
}
|
|
839
|
}
|
|
842
|
}
|