##// END OF EJS Templates
Merge branch 'feature/AcqFixes' into develop
Alexandre Leroux -
r1275:73d2a50d0c6d merge
parent child
Show More
@@ -1,1069 +1,1102
1 1 #include <Variable/Variable.h>
2 2 #include <Variable/VariableAcquisitionWorker.h>
3 3 #include <Variable/VariableCacheStrategy.h>
4 4 #include <Variable/VariableCacheStrategyFactory.h>
5 5 #include <Variable/VariableController.h>
6 6 #include <Variable/VariableModel.h>
7 7 #include <Variable/VariableSynchronizationGroup.h>
8 8
9 9 #include <Data/DataProviderParameters.h>
10 10 #include <Data/IDataProvider.h>
11 11 #include <Data/IDataSeries.h>
12 12 #include <Data/VariableRequest.h>
13 13 #include <Time/TimeController.h>
14 14
15 15 #include <QDataStream>
16 16 #include <QMutex>
17 17 #include <QThread>
18 18 #include <QUuid>
19 19 #include <QtCore/QItemSelectionModel>
20 20
21 21 #include <deque>
22 22 #include <set>
23 23 #include <unordered_map>
24 24
25 25 Q_LOGGING_CATEGORY(LOG_VariableController, "VariableController")
26 26
27 27 namespace {
28 28
29 29 SqpRange computeSynchroRangeRequested(const SqpRange &varRange, const SqpRange &graphRange,
30 30 const SqpRange &oldGraphRange)
31 31 {
32 32 auto zoomType = VariableController::getZoomType(graphRange, oldGraphRange);
33 33
34 34 auto varRangeRequested = varRange;
35 35 switch (zoomType) {
36 36 case AcquisitionZoomType::ZoomIn: {
37 37 auto deltaLeft = graphRange.m_TStart - oldGraphRange.m_TStart;
38 38 auto deltaRight = oldGraphRange.m_TEnd - graphRange.m_TEnd;
39 39 varRangeRequested.m_TStart += deltaLeft;
40 40 varRangeRequested.m_TEnd -= deltaRight;
41 41 break;
42 42 }
43 43
44 44 case AcquisitionZoomType::ZoomOut: {
45 45 auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
46 46 auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
47 47 varRangeRequested.m_TStart -= deltaLeft;
48 48 varRangeRequested.m_TEnd += deltaRight;
49 49 break;
50 50 }
51 51 case AcquisitionZoomType::PanRight: {
52 52 auto deltaLeft = graphRange.m_TStart - oldGraphRange.m_TStart;
53 53 auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
54 54 varRangeRequested.m_TStart += deltaLeft;
55 55 varRangeRequested.m_TEnd += deltaRight;
56 56 break;
57 57 }
58 58 case AcquisitionZoomType::PanLeft: {
59 59 auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
60 60 auto deltaRight = oldGraphRange.m_TEnd - graphRange.m_TEnd;
61 61 varRangeRequested.m_TStart -= deltaLeft;
62 62 varRangeRequested.m_TEnd -= deltaRight;
63 63 break;
64 64 }
65 65 case AcquisitionZoomType::Unknown: {
66 66 qCCritical(LOG_VariableController())
67 67 << VariableController::tr("Impossible to synchronize: zoom type unknown");
68 68 break;
69 69 }
70 70 default:
71 71 qCCritical(LOG_VariableController()) << VariableController::tr(
72 72 "Impossible to synchronize: zoom type not take into account");
73 73 // No action
74 74 break;
75 75 }
76 76
77 77 return varRangeRequested;
78 78 }
79 79 }
80 80
81 81 enum class VariableRequestHandlerState { OFF, RUNNING, PENDING };
82 82
83 83 struct VariableRequestHandler {
84 84
85 85 VariableRequestHandler()
86 86 {
87 87 m_CanUpdate = false;
88 88 m_State = VariableRequestHandlerState::OFF;
89 89 }
90 90
91 91 QUuid m_VarId;
92 92 VariableRequest m_RunningVarRequest;
93 93 VariableRequest m_PendingVarRequest;
94 94 VariableRequestHandlerState m_State;
95 95 bool m_CanUpdate;
96 96 };
97 97
98 98 struct VariableController::VariableControllerPrivate {
99 99 explicit VariableControllerPrivate(VariableController *parent)
100 100 : m_WorkingMutex{},
101 101 m_VariableModel{new VariableModel{parent}},
102 102 m_VariableSelectionModel{new QItemSelectionModel{m_VariableModel, parent}},
103 103 // m_VariableCacheStrategy{std::make_unique<VariableCacheStrategy>()},
104 104 m_VariableCacheStrategy{VariableCacheStrategyFactory::createCacheStrategy(
105 105 CacheStrategy::SingleThreshold)},
106 106 m_VariableAcquisitionWorker{std::make_unique<VariableAcquisitionWorker>()},
107 107 q{parent}
108 108 {
109 109
110 110 m_VariableAcquisitionWorker->moveToThread(&m_VariableAcquisitionWorkerThread);
111 111 m_VariableAcquisitionWorkerThread.setObjectName("VariableAcquisitionWorkerThread");
112 112 }
113 113
114 114
115 115 virtual ~VariableControllerPrivate()
116 116 {
117 117 qCDebug(LOG_VariableController()) << tr("VariableControllerPrivate destruction");
118 118 m_VariableAcquisitionWorkerThread.quit();
119 119 m_VariableAcquisitionWorkerThread.wait();
120 120 }
121 121
122 122
123 123 void processRequest(std::shared_ptr<Variable> var, const SqpRange &rangeRequested,
124 124 QUuid varRequestId);
125 125
126 126 std::shared_ptr<Variable> findVariable(QUuid vIdentifier);
127 127 std::shared_ptr<IDataSeries>
128 128 retrieveDataSeries(const QVector<AcquisitionDataPacket> acqDataPacketVector);
129 129
130 130 void registerProvider(std::shared_ptr<IDataProvider> provider);
131 131
132 132 void storeVariableRequest(QUuid varId, QUuid varRequestId, const VariableRequest &varRequest);
133 133 QUuid acceptVariableRequest(QUuid varId, std::shared_ptr<IDataSeries> dataSeries);
134 134 void updateVariables(QUuid varRequestId);
135 135 void updateVariableRequest(QUuid varRequestId);
136 136 void cancelVariableRequest(QUuid varRequestId);
137 137 void executeVarRequest(std::shared_ptr<Variable> var, VariableRequest &varRequest);
138 138
139 template <typename VariableIterator>
140 void desynchronize(VariableIterator variableIt, const QUuid &syncGroupId);
141
139 142 QMutex m_WorkingMutex;
140 143 /// Variable model. The VariableController has the ownership
141 144 VariableModel *m_VariableModel;
142 145 QItemSelectionModel *m_VariableSelectionModel;
143 146
144 147
145 148 TimeController *m_TimeController{nullptr};
146 149 std::unique_ptr<VariableCacheStrategy> m_VariableCacheStrategy;
147 150 std::unique_ptr<VariableAcquisitionWorker> m_VariableAcquisitionWorker;
148 151 QThread m_VariableAcquisitionWorkerThread;
149 152
150 153 std::unordered_map<std::shared_ptr<Variable>, std::shared_ptr<IDataProvider> >
151 154 m_VariableToProviderMap;
152 155 std::unordered_map<std::shared_ptr<Variable>, QUuid> m_VariableToIdentifierMap;
153 156 std::map<QUuid, std::shared_ptr<VariableSynchronizationGroup> >
154 157 m_GroupIdToVariableSynchronizationGroupMap;
155 158 std::map<QUuid, QUuid> m_VariableIdGroupIdMap;
156 159 std::set<std::shared_ptr<IDataProvider> > m_ProviderSet;
157 160
158 161 std::map<QUuid, std::list<QUuid> > m_VarGroupIdToVarIds;
159 162 std::map<QUuid, std::unique_ptr<VariableRequestHandler> > m_VarIdToVarRequestHandler;
160 163
161 164 VariableController *q;
162 165 };
163 166
164 167
165 168 VariableController::VariableController(QObject *parent)
166 169 : QObject{parent}, impl{spimpl::make_unique_impl<VariableControllerPrivate>(this)}
167 170 {
168 171 qCDebug(LOG_VariableController()) << tr("VariableController construction")
169 172 << QThread::currentThread();
170 173
171 174 connect(impl->m_VariableModel, &VariableModel::abortProgessRequested, this,
172 175 &VariableController::onAbortProgressRequested);
173 176
174 177 connect(impl->m_VariableAcquisitionWorker.get(),
175 178 &VariableAcquisitionWorker::variableCanceledRequested, this,
176 179 &VariableController::onAbortAcquisitionRequested);
177 180
178 181 connect(impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::dataProvided, this,
179 182 &VariableController::onDataProvided);
180 183 connect(impl->m_VariableAcquisitionWorker.get(),
181 184 &VariableAcquisitionWorker::variableRequestInProgress, this,
182 185 &VariableController::onVariableRetrieveDataInProgress);
183 186
184 187
185 188 connect(&impl->m_VariableAcquisitionWorkerThread, &QThread::started,
186 189 impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::initialize);
187 190 connect(&impl->m_VariableAcquisitionWorkerThread, &QThread::finished,
188 191 impl->m_VariableAcquisitionWorker.get(), &VariableAcquisitionWorker::finalize);
189 192
190 193 connect(impl->m_VariableModel, &VariableModel::requestVariableRangeUpdate, this,
191 194 &VariableController::onUpdateDateTime);
192 195
193 196 impl->m_VariableAcquisitionWorkerThread.start();
194 197 }
195 198
196 199 VariableController::~VariableController()
197 200 {
198 201 qCDebug(LOG_VariableController()) << tr("VariableController destruction")
199 202 << QThread::currentThread();
200 203 this->waitForFinish();
201 204 }
202 205
203 206 VariableModel *VariableController::variableModel() noexcept
204 207 {
205 208 return impl->m_VariableModel;
206 209 }
207 210
208 211 QItemSelectionModel *VariableController::variableSelectionModel() noexcept
209 212 {
210 213 return impl->m_VariableSelectionModel;
211 214 }
212 215
213 216 void VariableController::setTimeController(TimeController *timeController) noexcept
214 217 {
215 218 impl->m_TimeController = timeController;
216 219 }
217 220
218 221 std::shared_ptr<Variable>
219 222 VariableController::cloneVariable(std::shared_ptr<Variable> variable) noexcept
220 223 {
221 224 if (impl->m_VariableModel->containsVariable(variable)) {
222 225 // Clones variable
223 226 auto duplicate = variable->clone();
224 227
225 228 // Adds clone to model
226 229 impl->m_VariableModel->addVariable(duplicate);
227 230
228 231 // Generates clone identifier
229 232 impl->m_VariableToIdentifierMap[duplicate] = QUuid::createUuid();
230 233
231 234 // Registers provider
232 235 auto variableProvider = impl->m_VariableToProviderMap.at(variable);
233 236 auto duplicateProvider = variableProvider != nullptr ? variableProvider->clone() : nullptr;
234 237
235 238 impl->m_VariableToProviderMap[duplicate] = duplicateProvider;
236 239 if (duplicateProvider) {
237 240 impl->registerProvider(duplicateProvider);
238 241 }
239 242
240 243 return duplicate;
241 244 }
242 245 else {
243 246 qCCritical(LOG_VariableController())
244 247 << tr("Can't create duplicate of variable %1: variable not registered in the model")
245 248 .arg(variable->name());
246 249 return nullptr;
247 250 }
248 251 }
249 252
250 253 void VariableController::deleteVariable(std::shared_ptr<Variable> variable) noexcept
251 254 {
252 255 if (!variable) {
253 256 qCCritical(LOG_VariableController()) << "Can't delete variable: variable is null";
254 257 return;
255 258 }
256 259
257 260 // Spreads in SciQlop that the variable will be deleted, so that potential receivers can
258 261 // make some treatments before the deletion
259 262 emit variableAboutToBeDeleted(variable);
260 263
264 auto variableIt = impl->m_VariableToIdentifierMap.find(variable);
265 Q_ASSERT(variableIt != impl->m_VariableToIdentifierMap.cend());
266
267 auto variableId = variableIt->second;
268
269 // Removes variable's handler
270 impl->m_VarIdToVarRequestHandler.erase(variableId);
271
272 // Desynchronizes variable (if the variable is in a sync group)
273 auto syncGroupIt = impl->m_VariableIdGroupIdMap.find(variableId);
274 if (syncGroupIt != impl->m_VariableIdGroupIdMap.cend()) {
275 impl->desynchronize(variableIt, syncGroupIt->second);
276 }
277
261 278 // Deletes identifier
262 impl->m_VariableToIdentifierMap.erase(variable);
279 impl->m_VariableToIdentifierMap.erase(variableIt);
263 280
264 281 // Deletes provider
265 282 auto nbProvidersDeleted = impl->m_VariableToProviderMap.erase(variable);
266 283 qCDebug(LOG_VariableController())
267 284 << tr("Number of providers deleted for variable %1: %2")
268 285 .arg(variable->name(), QString::number(nbProvidersDeleted));
269 286
270 287
271 288 // Deletes from model
272 289 impl->m_VariableModel->deleteVariable(variable);
273 290 }
274 291
275 292 void VariableController::deleteVariables(
276 293 const QVector<std::shared_ptr<Variable> > &variables) noexcept
277 294 {
278 295 for (auto variable : qAsConst(variables)) {
279 296 deleteVariable(variable);
280 297 }
281 298 }
282 299
283 300 QByteArray
284 301 VariableController::mimeDataForVariables(const QList<std::shared_ptr<Variable> > &variables) const
285 302 {
286 303 auto encodedData = QByteArray{};
287 304
288 305 QVariantList ids;
289 306 for (auto &var : variables) {
290 307 auto itVar = impl->m_VariableToIdentifierMap.find(var);
291 308 if (itVar == impl->m_VariableToIdentifierMap.cend()) {
292 309 qCCritical(LOG_VariableController())
293 310 << tr("Impossible to find the data for an unknown variable.");
294 311 }
295 312
296 313 ids << itVar->second.toByteArray();
297 314 }
298 315
299 316 QDataStream stream{&encodedData, QIODevice::WriteOnly};
300 317 stream << ids;
301 318
302 319 return encodedData;
303 320 }
304 321
305 322 QList<std::shared_ptr<Variable> >
306 323 VariableController::variablesForMimeData(const QByteArray &mimeData) const
307 324 {
308 325 auto variables = QList<std::shared_ptr<Variable> >{};
309 326 QDataStream stream{mimeData};
310 327
311 328 QVariantList ids;
312 329 stream >> ids;
313 330
314 331 for (auto id : ids) {
315 332 auto uuid = QUuid{id.toByteArray()};
316 333 auto var = impl->findVariable(uuid);
317 334 variables << var;
318 335 }
319 336
320 337 return variables;
321 338 }
322 339
323 340 std::shared_ptr<Variable>
324 341 VariableController::createVariable(const QString &name, const QVariantHash &metadata,
325 342 std::shared_ptr<IDataProvider> provider) noexcept
326 343 {
327 344 if (!impl->m_TimeController) {
328 345 qCCritical(LOG_VariableController())
329 346 << tr("Impossible to create variable: The time controller is null");
330 347 return nullptr;
331 348 }
332 349
333 350 auto range = impl->m_TimeController->dateTime();
334 351
335 352 if (auto newVariable = impl->m_VariableModel->createVariable(name, metadata)) {
336 353 auto varId = QUuid::createUuid();
337 354
338 355 // Create the handler
339 356 auto varRequestHandler = std::make_unique<VariableRequestHandler>();
340 357 varRequestHandler->m_VarId = varId;
341 358
342 359 impl->m_VarIdToVarRequestHandler.insert(
343 360 std::make_pair(varId, std::move(varRequestHandler)));
344 361
345 362 // store the provider
346 363 impl->registerProvider(provider);
347 364
348 365 // Associate the provider
349 366 impl->m_VariableToProviderMap[newVariable] = provider;
350 367 impl->m_VariableToIdentifierMap[newVariable] = varId;
351 368
352 369 this->onRequestDataLoading(QVector<std::shared_ptr<Variable> >{newVariable}, range, false);
353 370
354 371 // auto varRequestId = QUuid::createUuid();
355 372 // qCInfo(LOG_VariableController()) << "createVariable: " << varId << varRequestId;
356 373 // impl->processRequest(newVariable, range, varRequestId);
357 374 // impl->updateVariableRequest(varRequestId);
358 375
359 376 return newVariable;
360 377 }
361 378
362 379 qCCritical(LOG_VariableController()) << tr("Impossible to create variable");
363 380 return nullptr;
364 381 }
365 382
366 383 void VariableController::onDateTimeOnSelection(const SqpRange &dateTime)
367 384 {
368 385 // NOTE: Even if acquisition request is aborting, the graphe range will be changed
369 386 qCDebug(LOG_VariableController()) << "VariableController::onDateTimeOnSelection"
370 387 << QThread::currentThread()->objectName();
371 388 auto selectedRows = impl->m_VariableSelectionModel->selectedRows();
372 389
373 390 // NOTE we only permit the time modification for one variable
374 391 // DEPRECATED
375 392 // auto variables = QVector<std::shared_ptr<Variable> >{};
376 393 // for (const auto &selectedRow : qAsConst(selectedRows)) {
377 394 // if (auto selectedVariable =
378 395 // impl->m_VariableModel->variable(selectedRow.row())) {
379 396 // variables << selectedVariable;
380 397
381 398 // // notify that rescale operation has to be done
382 399 // emit rangeChanged(selectedVariable, dateTime);
383 400 // }
384 401 // }
385 402 // if (!variables.isEmpty()) {
386 403 // this->onRequestDataLoading(variables, dateTime, synchro);
387 404 // }
388 405 if (selectedRows.size() == 1) {
389 406
390 407 if (auto selectedVariable
391 408 = impl->m_VariableModel->variable(qAsConst(selectedRows).first().row())) {
392 409
393 410 onUpdateDateTime(selectedVariable, dateTime);
394 411 }
395 412 }
396 413 else if (selectedRows.size() > 1) {
397 414 qCCritical(LOG_VariableController())
398 415 << tr("Impossible to set time for more than 1 variable in the same time");
399 416 }
400 417 else {
401 418 qCWarning(LOG_VariableController())
402 419 << tr("There is no variable selected to set the time one");
403 420 }
404 421 }
405 422
406 423 void VariableController::onUpdateDateTime(std::shared_ptr<Variable> variable,
407 424 const SqpRange &dateTime)
408 425 {
409 426 auto itVar = impl->m_VariableToIdentifierMap.find(variable);
410 427 if (itVar == impl->m_VariableToIdentifierMap.cend()) {
411 428 qCCritical(LOG_VariableController())
412 429 << tr("Impossible to onDateTimeOnSelection request for unknown variable");
413 430 return;
414 431 }
415 432
416 433 // notify that rescale operation has to be done
417 434 emit rangeChanged(variable, dateTime);
418 435
419 436 auto synchro
420 437 = impl->m_VariableIdGroupIdMap.find(itVar->second) != impl->m_VariableIdGroupIdMap.cend();
421 438
422 439 this->onRequestDataLoading(QVector<std::shared_ptr<Variable> >{variable}, dateTime, synchro);
423 440 }
424 441
425 442 void VariableController::onDataProvided(QUuid vIdentifier, const SqpRange &rangeRequested,
426 443 const SqpRange &cacheRangeRequested,
427 444 QVector<AcquisitionDataPacket> dataAcquired)
428 445 {
429 446 qCDebug(LOG_VariableController()) << tr("onDataProvided") << QThread::currentThread();
430 447 auto retrievedDataSeries = impl->retrieveDataSeries(dataAcquired);
431 448 auto varRequestId = impl->acceptVariableRequest(vIdentifier, retrievedDataSeries);
432 449 if (!varRequestId.isNull()) {
433 450 impl->updateVariables(varRequestId);
434 451 }
435 452 }
436 453
437 454 void VariableController::onVariableRetrieveDataInProgress(QUuid identifier, double progress)
438 455 {
439 456 qCDebug(LOG_VariableController())
440 457 << "TORM: variableController::onVariableRetrieveDataInProgress"
441 458 << QThread::currentThread()->objectName() << progress;
442 459 if (auto var = impl->findVariable(identifier)) {
443 460 impl->m_VariableModel->setDataProgress(var, progress);
444 461 }
445 462 else {
446 463 qCCritical(LOG_VariableController())
447 464 << tr("Impossible to notify progression of a null variable");
448 465 }
449 466 }
450 467
451 468 void VariableController::onAbortProgressRequested(std::shared_ptr<Variable> variable)
452 469 {
453 470 qCDebug(LOG_VariableController()) << "TORM: variableController::onAbortProgressRequested"
454 471 << QThread::currentThread()->objectName() << variable->name();
455 472
456 473 auto itVar = impl->m_VariableToIdentifierMap.find(variable);
457 474 if (itVar == impl->m_VariableToIdentifierMap.cend()) {
458 475 qCCritical(LOG_VariableController())
459 476 << tr("Impossible to onAbortProgressRequested request for unknown variable");
460 477 return;
461 478 }
462 479
463 480 auto varId = itVar->second;
464 481
465 482 auto itVarHandler = impl->m_VarIdToVarRequestHandler.find(varId);
466 483 if (itVarHandler == impl->m_VarIdToVarRequestHandler.cend()) {
467 484 qCCritical(LOG_VariableController())
468 485 << tr("Impossible to onAbortProgressRequested for variable with unknown handler");
469 486 return;
470 487 }
471 488
472 489 auto varHandler = itVarHandler->second.get();
473 490
474 491 // case where a variable has a running request
475 492 if (varHandler->m_State != VariableRequestHandlerState::OFF) {
476 493 impl->cancelVariableRequest(varHandler->m_RunningVarRequest.m_VariableGroupId);
477 494 }
478 495 }
479 496
480 497 void VariableController::onAbortAcquisitionRequested(QUuid vIdentifier)
481 498 {
482 499 qCDebug(LOG_VariableController()) << "TORM: variableController::onAbortAcquisitionRequested"
483 500 << QThread::currentThread()->objectName() << vIdentifier;
484 501
485 502 if (auto var = impl->findVariable(vIdentifier)) {
486 503 this->onAbortProgressRequested(var);
487 504 }
488 505 else {
489 506 qCCritical(LOG_VariableController())
490 507 << tr("Impossible to abort Acquisition Requestof a null variable");
491 508 }
492 509 }
493 510
494 511 void VariableController::onAddSynchronizationGroupId(QUuid synchronizationGroupId)
495 512 {
496 513 qCDebug(LOG_VariableController()) << "TORM: VariableController::onAddSynchronizationGroupId"
497 514 << QThread::currentThread()->objectName()
498 515 << synchronizationGroupId;
499 516 auto vSynchroGroup = std::make_shared<VariableSynchronizationGroup>();
500 517 impl->m_GroupIdToVariableSynchronizationGroupMap.insert(
501 518 std::make_pair(synchronizationGroupId, vSynchroGroup));
502 519 }
503 520
504 521 void VariableController::onRemoveSynchronizationGroupId(QUuid synchronizationGroupId)
505 522 {
506 523 impl->m_GroupIdToVariableSynchronizationGroupMap.erase(synchronizationGroupId);
507 524 }
508 525
509 526 void VariableController::onAddSynchronized(std::shared_ptr<Variable> variable,
510 527 QUuid synchronizationGroupId)
511 528
512 529 {
513 530 qCDebug(LOG_VariableController()) << "TORM: VariableController::onAddSynchronized"
514 531 << synchronizationGroupId;
515 532 auto varToVarIdIt = impl->m_VariableToIdentifierMap.find(variable);
516 533 if (varToVarIdIt != impl->m_VariableToIdentifierMap.cend()) {
517 534 auto groupIdToVSGIt
518 535 = impl->m_GroupIdToVariableSynchronizationGroupMap.find(synchronizationGroupId);
519 536 if (groupIdToVSGIt != impl->m_GroupIdToVariableSynchronizationGroupMap.cend()) {
520 537 impl->m_VariableIdGroupIdMap.insert(
521 538 std::make_pair(varToVarIdIt->second, synchronizationGroupId));
522 539 groupIdToVSGIt->second->addVariableId(varToVarIdIt->second);
523 540 }
524 541 else {
525 542 qCCritical(LOG_VariableController())
526 543 << tr("Impossible to synchronize a variable with an unknown sycnhronization group")
527 544 << variable->name();
528 545 }
529 546 }
530 547 else {
531 548 qCCritical(LOG_VariableController())
532 549 << tr("Impossible to synchronize a variable with no identifier") << variable->name();
533 550 }
534 551 }
535 552
536 553 void VariableController::desynchronize(std::shared_ptr<Variable> variable,
537 554 QUuid synchronizationGroupId)
538 555 {
539 556 // Gets variable id
540 557 auto variableIt = impl->m_VariableToIdentifierMap.find(variable);
541 558 if (variableIt == impl->m_VariableToIdentifierMap.cend()) {
542 559 qCCritical(LOG_VariableController())
543 560 << tr("Can't desynchronize variable %1: variable identifier not found")
544 561 .arg(variable->name());
545 562 return;
546 563 }
547 564
548 // Gets synchronization group
549 auto groupIt = impl->m_GroupIdToVariableSynchronizationGroupMap.find(synchronizationGroupId);
550 if (groupIt == impl->m_GroupIdToVariableSynchronizationGroupMap.cend()) {
551 qCCritical(LOG_VariableController())
552 << tr("Can't desynchronize variable %1: unknown synchronization group")
553 .arg(variable->name());
554 return;
555 }
556
557 auto variableId = variableIt->second;
558
559 // Removes variable from synchronization group
560 auto synchronizationGroup = groupIt->second;
561 synchronizationGroup->removeVariableId(variableId);
562
563 // Removes link between variable and synchronization group
564 impl->m_VariableIdGroupIdMap.erase(variableId);
565 impl->desynchronize(variableIt, synchronizationGroupId);
565 566 }
566 567
567 568 void VariableController::onRequestDataLoading(QVector<std::shared_ptr<Variable> > variables,
568 569 const SqpRange &range, bool synchronise)
569 570 {
570 571 // variables is assumed synchronized
571 572 // TODO: Asser variables synchronization
572 573 // we want to load data of the variable for the dateTime.
573 574 if (variables.isEmpty()) {
574 575 return;
575 576 }
576 577
577 578 auto varRequestId = QUuid::createUuid();
578 579 qCDebug(LOG_VariableController()) << "VariableController::onRequestDataLoading"
579 580 << QThread::currentThread()->objectName() << varRequestId
580 581 << range << synchronise;
581 582
582 583 if (!synchronise) {
583 584 auto varIds = std::list<QUuid>{};
584 585 for (const auto &var : variables) {
585 586 auto vId = impl->m_VariableToIdentifierMap.at(var);
586 587 varIds.push_back(vId);
587 588 }
588 589 impl->m_VarGroupIdToVarIds.insert(std::make_pair(varRequestId, varIds));
589 590 for (const auto &var : variables) {
590 591 qCDebug(LOG_VariableController()) << "processRequest for" << var->name() << varRequestId
591 592 << varIds.size();
592 593 impl->processRequest(var, range, varRequestId);
593 594 }
594 595 }
595 596 else {
596 597 auto vId = impl->m_VariableToIdentifierMap.at(variables.first());
597 598 auto varIdToGroupIdIt = impl->m_VariableIdGroupIdMap.find(vId);
598 599 if (varIdToGroupIdIt != impl->m_VariableIdGroupIdMap.cend()) {
599 600 auto groupId = varIdToGroupIdIt->second;
600 601
601 602 auto vSynchronizationGroup
602 603 = impl->m_GroupIdToVariableSynchronizationGroupMap.at(groupId);
603 604 auto vSyncIds = vSynchronizationGroup->getIds();
604 605
605 606 auto varIds = std::list<QUuid>{};
606 607 for (auto vId : vSyncIds) {
607 608 varIds.push_back(vId);
608 609 }
609 610 impl->m_VarGroupIdToVarIds.insert(std::make_pair(varRequestId, varIds));
610 611
611 612 for (auto vId : vSyncIds) {
612 613 auto var = impl->findVariable(vId);
613 614
614 615 // Don't process already processed var
615 616 if (var != nullptr) {
616 617 qCDebug(LOG_VariableController()) << "processRequest synchro for" << var->name()
617 618 << varRequestId;
618 619 auto vSyncRangeRequested
619 620 = variables.contains(var)
620 621 ? range
621 622 : computeSynchroRangeRequested(var->range(), range,
622 623 variables.first()->range());
623 624 qCDebug(LOG_VariableController()) << "synchro RR" << vSyncRangeRequested;
624 625 impl->processRequest(var, vSyncRangeRequested, varRequestId);
625 626 }
626 627 else {
627 628 qCCritical(LOG_VariableController())
628 629
629 630 << tr("Impossible to synchronize a null variable");
630 631 }
631 632 }
632 633 }
633 634 }
634 635
635 636 impl->updateVariables(varRequestId);
636 637 }
637 638
638 639
639 640 void VariableController::initialize()
640 641 {
641 642 qCDebug(LOG_VariableController()) << tr("VariableController init") << QThread::currentThread();
642 643 impl->m_WorkingMutex.lock();
643 644 qCDebug(LOG_VariableController()) << tr("VariableController init END");
644 645 }
645 646
646 647 void VariableController::finalize()
647 648 {
648 649 impl->m_WorkingMutex.unlock();
649 650 }
650 651
651 652 void VariableController::waitForFinish()
652 653 {
653 654 QMutexLocker locker{&impl->m_WorkingMutex};
654 655 }
655 656
656 657 AcquisitionZoomType VariableController::getZoomType(const SqpRange &range, const SqpRange &oldRange)
657 658 {
658 659 // t1.m_TStart <= t2.m_TStart && t2.m_TEnd <= t1.m_TEnd
659 660 auto zoomType = AcquisitionZoomType::Unknown;
660 661 if (range.m_TStart <= oldRange.m_TStart && oldRange.m_TEnd <= range.m_TEnd) {
661 662 qCDebug(LOG_VariableController()) << "zoomtype: ZoomOut";
662 663 zoomType = AcquisitionZoomType::ZoomOut;
663 664 }
664 665 else if (range.m_TStart > oldRange.m_TStart && range.m_TEnd > oldRange.m_TEnd) {
665 666 qCDebug(LOG_VariableController()) << "zoomtype: PanRight";
666 667 zoomType = AcquisitionZoomType::PanRight;
667 668 }
668 669 else if (range.m_TStart < oldRange.m_TStart && range.m_TEnd < oldRange.m_TEnd) {
669 670 qCDebug(LOG_VariableController()) << "zoomtype: PanLeft";
670 671 zoomType = AcquisitionZoomType::PanLeft;
671 672 }
672 673 else if (range.m_TStart >= oldRange.m_TStart && oldRange.m_TEnd >= range.m_TEnd) {
673 674 qCDebug(LOG_VariableController()) << "zoomtype: ZoomIn";
674 675 zoomType = AcquisitionZoomType::ZoomIn;
675 676 }
676 677 else {
677 678 qCDebug(LOG_VariableController()) << "getZoomType: Unknown type detected";
678 679 }
679 680 return zoomType;
680 681 }
681 682
682 683 void VariableController::VariableControllerPrivate::processRequest(std::shared_ptr<Variable> var,
683 684 const SqpRange &rangeRequested,
684 685 QUuid varRequestId)
685 686 {
686 687 auto itVar = m_VariableToIdentifierMap.find(var);
687 688 if (itVar == m_VariableToIdentifierMap.cend()) {
688 689 qCCritical(LOG_VariableController())
689 690 << tr("Impossible to process request for unknown variable");
690 691 return;
691 692 }
692 693
693 694 auto varId = itVar->second;
694 695
695 696 auto itVarHandler = m_VarIdToVarRequestHandler.find(varId);
696 697 if (itVarHandler == m_VarIdToVarRequestHandler.cend()) {
697 698 qCCritical(LOG_VariableController())
698 699 << tr("Impossible to process request for variable with unknown handler");
699 700 return;
700 701 }
701 702
702 703 auto oldRange = var->range();
703 704
704 705 auto varHandler = itVarHandler->second.get();
705 706
706 707 if (varHandler->m_State != VariableRequestHandlerState::OFF) {
707 708 oldRange = varHandler->m_RunningVarRequest.m_RangeRequested;
708 709 }
709 710
710 711 auto varRequest = VariableRequest{};
711 712 varRequest.m_VariableGroupId = varRequestId;
712 713 auto varStrategyRangesRequested
713 714 = m_VariableCacheStrategy->computeRange(oldRange, rangeRequested);
714 715 varRequest.m_RangeRequested = varStrategyRangesRequested.first;
715 716 varRequest.m_CacheRangeRequested = varStrategyRangesRequested.second;
716 717
717 718 switch (varHandler->m_State) {
718 719 case VariableRequestHandlerState::OFF: {
719 720 qCDebug(LOG_VariableController()) << tr("Process Request OFF")
720 721 << varRequest.m_RangeRequested
721 722 << varRequest.m_CacheRangeRequested;
722 723 varHandler->m_RunningVarRequest = varRequest;
723 724 varHandler->m_State = VariableRequestHandlerState::RUNNING;
724 725 executeVarRequest(var, varRequest);
725 726 break;
726 727 }
727 728 case VariableRequestHandlerState::RUNNING: {
728 729 qCDebug(LOG_VariableController()) << tr("Process Request RUNNING")
729 730 << varRequest.m_RangeRequested
730 731 << varRequest.m_CacheRangeRequested;
731 732 varHandler->m_State = VariableRequestHandlerState::PENDING;
732 733 varHandler->m_PendingVarRequest = varRequest;
733 734 break;
734 735 }
735 736 case VariableRequestHandlerState::PENDING: {
736 737 qCDebug(LOG_VariableController()) << tr("Process Request PENDING")
737 738 << varRequest.m_RangeRequested
738 739 << varRequest.m_CacheRangeRequested;
739 740 auto variableGroupIdToCancel = varHandler->m_PendingVarRequest.m_VariableGroupId;
740 741 cancelVariableRequest(variableGroupIdToCancel);
741 742 // Cancel variable can make state downgrade
742 743 varHandler->m_State = VariableRequestHandlerState::PENDING;
743 744 varHandler->m_PendingVarRequest = varRequest;
744 745
745 746 break;
746 747 }
747 748 default:
748 749 qCCritical(LOG_VariableController())
749 750 << QObject::tr("Unknown VariableRequestHandlerState");
750 751 }
751 752 }
752 753
753 754 std::shared_ptr<Variable>
754 755 VariableController::VariableControllerPrivate::findVariable(QUuid vIdentifier)
755 756 {
756 757 std::shared_ptr<Variable> var;
757 758 auto findReply = [vIdentifier](const auto &entry) { return vIdentifier == entry.second; };
758 759
759 760 auto end = m_VariableToIdentifierMap.cend();
760 761 auto it = std::find_if(m_VariableToIdentifierMap.cbegin(), end, findReply);
761 762 if (it != end) {
762 763 var = it->first;
763 764 }
764 765 else {
765 766 qCCritical(LOG_VariableController())
766 767 << tr("Impossible to find the variable with the identifier: ") << vIdentifier;
767 768 }
768 769
769 770 return var;
770 771 }
771 772
772 773 std::shared_ptr<IDataSeries> VariableController::VariableControllerPrivate::retrieveDataSeries(
773 774 const QVector<AcquisitionDataPacket> acqDataPacketVector)
774 775 {
775 776 qCDebug(LOG_VariableController()) << tr("TORM: retrieveDataSeries acqDataPacketVector size")
776 777 << acqDataPacketVector.size();
777 778 std::shared_ptr<IDataSeries> dataSeries;
778 779 if (!acqDataPacketVector.isEmpty()) {
779 780 dataSeries = acqDataPacketVector[0].m_DateSeries;
780 781 for (int i = 1; i < acqDataPacketVector.size(); ++i) {
781 782 dataSeries->merge(acqDataPacketVector[i].m_DateSeries.get());
782 783 }
783 784 }
784 785 qCDebug(LOG_VariableController()) << tr("TORM: retrieveDataSeries acqDataPacketVector size END")
785 786 << acqDataPacketVector.size();
786 787 return dataSeries;
787 788 }
788 789
789 790 void VariableController::VariableControllerPrivate::registerProvider(
790 791 std::shared_ptr<IDataProvider> provider)
791 792 {
792 793 if (m_ProviderSet.find(provider) == m_ProviderSet.end()) {
793 794 qCDebug(LOG_VariableController()) << tr("Registering of a new provider")
794 795 << provider->objectName();
795 796 m_ProviderSet.insert(provider);
796 797 connect(provider.get(), &IDataProvider::dataProvided, m_VariableAcquisitionWorker.get(),
797 798 &VariableAcquisitionWorker::onVariableDataAcquired);
798 799 connect(provider.get(), &IDataProvider::dataProvidedProgress,
799 800 m_VariableAcquisitionWorker.get(),
800 801 &VariableAcquisitionWorker::onVariableRetrieveDataInProgress);
801 802 connect(provider.get(), &IDataProvider::dataProvidedFailed,
802 803 m_VariableAcquisitionWorker.get(),
803 804 &VariableAcquisitionWorker::onVariableAcquisitionFailed);
804 805 }
805 806 else {
806 807 qCDebug(LOG_VariableController()) << tr("Cannot register provider, it already exists ");
807 808 }
808 809 }
809 810
810 811 QUuid VariableController::VariableControllerPrivate::acceptVariableRequest(
811 812 QUuid varId, std::shared_ptr<IDataSeries> dataSeries)
812 813 {
813 814 auto itVarHandler = m_VarIdToVarRequestHandler.find(varId);
814 815 if (itVarHandler == m_VarIdToVarRequestHandler.cend()) {
815 816 return QUuid();
816 817 }
817 818
818 819 auto varHandler = itVarHandler->second.get();
819 820 if (varHandler->m_State == VariableRequestHandlerState::OFF) {
820 821 qCCritical(LOG_VariableController())
821 822 << tr("acceptVariableRequest impossible on a variable with OFF state");
822 823 }
823 824
824 825 varHandler->m_RunningVarRequest.m_DataSeries = dataSeries;
825 826 varHandler->m_CanUpdate = true;
826 827
827 828 // Element traitΓ©, on a dΓ©jΓ  toutes les donnΓ©es necessaires
828 829 auto varGroupId = varHandler->m_RunningVarRequest.m_VariableGroupId;
829 830 qCDebug(LOG_VariableController()) << "Variable::acceptVariableRequest" << varGroupId
830 831 << m_VarGroupIdToVarIds.size();
831 832
832 833 return varHandler->m_RunningVarRequest.m_VariableGroupId;
833 834 }
834 835
835 836 void VariableController::VariableControllerPrivate::updateVariables(QUuid varRequestId)
836 837 {
837 838 qCDebug(LOG_VariableController()) << "VariableControllerPrivate::updateVariables"
838 839 << QThread::currentThread()->objectName() << varRequestId;
839 840
840 841 auto varGroupIdToVarIdsIt = m_VarGroupIdToVarIds.find(varRequestId);
841 842 if (varGroupIdToVarIdsIt == m_VarGroupIdToVarIds.end()) {
842 843 qCWarning(LOG_VariableController())
843 844 << tr("Impossible to updateVariables of unknown variables") << varRequestId;
844 845 return;
845 846 }
846 847
847 848 auto &varIds = varGroupIdToVarIdsIt->second;
848 849 auto varIdsEnd = varIds.end();
849 850 bool processVariableUpdate = true;
850 851 qCDebug(LOG_VariableController()) << "VariableControllerPrivate::updateVariables"
851 852 << varRequestId << varIds.size();
852 853 for (auto varIdsIt = varIds.begin(); (varIdsIt != varIdsEnd) && processVariableUpdate;
853 854 ++varIdsIt) {
854 855 auto itVarHandler = m_VarIdToVarRequestHandler.find(*varIdsIt);
855 856 if (itVarHandler != m_VarIdToVarRequestHandler.cend()) {
856 857 processVariableUpdate &= itVarHandler->second->m_CanUpdate;
857 858 }
858 859 }
859 860
860 861 if (processVariableUpdate) {
861 862 qCDebug(LOG_VariableController()) << "Final update OK for the var request" << varIds.size();
862 863 for (auto varIdsIt = varIds.begin(); varIdsIt != varIdsEnd; ++varIdsIt) {
863 864 auto itVarHandler = m_VarIdToVarRequestHandler.find(*varIdsIt);
864 865 if (itVarHandler != m_VarIdToVarRequestHandler.cend()) {
865 866 if (auto var = findVariable(*varIdsIt)) {
866 867 auto &varRequest = itVarHandler->second->m_RunningVarRequest;
867 868 var->setRange(varRequest.m_RangeRequested);
868 869 var->setCacheRange(varRequest.m_CacheRangeRequested);
869 870 qCDebug(LOG_VariableController()) << tr("1: onDataProvided")
870 871 << varRequest.m_RangeRequested
871 872 << varRequest.m_CacheRangeRequested;
872 873 qCDebug(LOG_VariableController()) << tr("2: onDataProvided var points before")
873 874 << var->nbPoints()
874 875 << varRequest.m_DataSeries->nbPoints();
875 876 var->mergeDataSeries(varRequest.m_DataSeries);
876 877 qCDebug(LOG_VariableController()) << tr("3: onDataProvided var points after")
877 878 << var->nbPoints();
878 879
879 880 emit var->updated();
880 881 qCDebug(LOG_VariableController()) << tr("Update OK");
881 882 }
882 883 else {
883 884 qCCritical(LOG_VariableController())
884 885 << tr("Impossible to update data to a null variable");
885 886 }
886 887 }
887 888 }
888 889 updateVariableRequest(varRequestId);
889 890
890 891 // cleaning varRequestId
891 892 qCDebug(LOG_VariableController()) << tr("m_VarGroupIdToVarIds erase") << varRequestId;
892 893 m_VarGroupIdToVarIds.erase(varRequestId);
893 894 if (m_VarGroupIdToVarIds.empty()) {
894 895 emit q->acquisitionFinished();
895 896 }
896 897 }
897 898 }
898 899
899 900
900 901 void VariableController::VariableControllerPrivate::updateVariableRequest(QUuid varRequestId)
901 902 {
902 903 auto varGroupIdToVarIdsIt = m_VarGroupIdToVarIds.find(varRequestId);
903 904 if (varGroupIdToVarIdsIt == m_VarGroupIdToVarIds.end()) {
904 905 qCCritical(LOG_VariableController()) << QObject::tr(
905 906 "Impossible to updateVariableRequest since varGroupdId isn't here anymore");
906 907
907 908 return;
908 909 }
909 910
910 911 auto &varIds = varGroupIdToVarIdsIt->second;
911 912 auto varIdsEnd = varIds.end();
912 913 for (auto varIdsIt = varIds.begin(); (varIdsIt != varIdsEnd); ++varIdsIt) {
913 914 auto itVarHandler = m_VarIdToVarRequestHandler.find(*varIdsIt);
914 915 if (itVarHandler != m_VarIdToVarRequestHandler.cend()) {
915 916
916 917 auto varHandler = itVarHandler->second.get();
917 918 varHandler->m_CanUpdate = false;
918 919
919 920
920 921 switch (varHandler->m_State) {
921 922 case VariableRequestHandlerState::OFF: {
922 923 qCCritical(LOG_VariableController())
923 924 << QObject::tr("Impossible to update a variable with handler in OFF state");
924 925 } break;
925 926 case VariableRequestHandlerState::RUNNING: {
926 927 varHandler->m_State = VariableRequestHandlerState::OFF;
927 928 varHandler->m_RunningVarRequest = VariableRequest{};
928 929 break;
929 930 }
930 931 case VariableRequestHandlerState::PENDING: {
931 932 varHandler->m_State = VariableRequestHandlerState::RUNNING;
932 933 varHandler->m_RunningVarRequest = varHandler->m_PendingVarRequest;
933 934 varHandler->m_PendingVarRequest = VariableRequest{};
934 935 auto var = findVariable(itVarHandler->first);
935 936 executeVarRequest(var, varHandler->m_RunningVarRequest);
937 updateVariables(varHandler->m_RunningVarRequest.m_VariableGroupId);
936 938 break;
937 939 }
938 940 default:
939 941 qCCritical(LOG_VariableController())
940 942 << QObject::tr("Unknown VariableRequestHandlerState");
941 943 }
942 944 }
943 945 }
944 946 }
945 947
946 948
947 949 void VariableController::VariableControllerPrivate::cancelVariableRequest(QUuid varRequestId)
948 950 {
949 951 qCDebug(LOG_VariableController()) << tr("cancelVariableRequest") << varRequestId;
950 952
951 953 auto varGroupIdToVarIdsIt = m_VarGroupIdToVarIds.find(varRequestId);
952 954 if (varGroupIdToVarIdsIt == m_VarGroupIdToVarIds.end()) {
953 955 qCCritical(LOG_VariableController())
954 956 << tr("Impossible to cancelVariableRequest for unknown varGroupdId") << varRequestId;
955 957 return;
956 958 }
957 959
958 960 auto &varIds = varGroupIdToVarIdsIt->second;
959 961 auto varIdsEnd = varIds.end();
960 962 for (auto varIdsIt = varIds.begin(); (varIdsIt != varIdsEnd); ++varIdsIt) {
961 963 auto itVarHandler = m_VarIdToVarRequestHandler.find(*varIdsIt);
962 964 if (itVarHandler != m_VarIdToVarRequestHandler.cend()) {
963 965
964 966 auto varHandler = itVarHandler->second.get();
965 967 varHandler->m_VarId = QUuid{};
966 968 switch (varHandler->m_State) {
967 969 case VariableRequestHandlerState::OFF: {
968 970 qCWarning(LOG_VariableController())
969 971 << QObject::tr("Impossible to cancel a variable with no running request");
970 972 break;
971 973 }
972 974 case VariableRequestHandlerState::RUNNING: {
973 975
974 976 if (varHandler->m_RunningVarRequest.m_VariableGroupId == varRequestId) {
975 977 auto var = findVariable(itVarHandler->first);
976 978 auto varProvider = m_VariableToProviderMap.at(var);
977 979 if (varProvider != nullptr) {
978 980 m_VariableAcquisitionWorker->abortProgressRequested(
979 981 itVarHandler->first);
980 982 }
981 983 m_VariableModel->setDataProgress(var, 0.0);
982 984 varHandler->m_CanUpdate = false;
983 985 varHandler->m_State = VariableRequestHandlerState::OFF;
984 986 varHandler->m_RunningVarRequest = VariableRequest{};
985 987 }
986 988 else {
987 989 // TODO: log Impossible to cancel the running variable request beacause its
988 990 // varRequestId isn't not the canceled one
989 991 }
990 992 break;
991 993 }
992 994 case VariableRequestHandlerState::PENDING: {
993 995 if (varHandler->m_RunningVarRequest.m_VariableGroupId == varRequestId) {
994 996 auto var = findVariable(itVarHandler->first);
995 997 auto varProvider = m_VariableToProviderMap.at(var);
996 998 if (varProvider != nullptr) {
997 999 m_VariableAcquisitionWorker->abortProgressRequested(
998 1000 itVarHandler->first);
999 1001 }
1000 1002 m_VariableModel->setDataProgress(var, 0.0);
1001 1003 varHandler->m_CanUpdate = false;
1002 1004 varHandler->m_State = VariableRequestHandlerState::RUNNING;
1003 1005 varHandler->m_RunningVarRequest = varHandler->m_PendingVarRequest;
1004 1006 varHandler->m_PendingVarRequest = VariableRequest{};
1005 1007 executeVarRequest(var, varHandler->m_RunningVarRequest);
1006 1008 }
1007 1009 else if (varHandler->m_PendingVarRequest.m_VariableGroupId == varRequestId) {
1008 1010 varHandler->m_State = VariableRequestHandlerState::RUNNING;
1009 1011 varHandler->m_PendingVarRequest = VariableRequest{};
1010 1012 }
1011 1013 else {
1012 1014 // TODO: log Impossible to cancel the variable request beacause its
1013 1015 // varRequestId isn't not the canceled one
1014 1016 }
1015 1017 break;
1016 1018 }
1017 1019 default:
1018 1020 qCCritical(LOG_VariableController())
1019 1021 << QObject::tr("Unknown VariableRequestHandlerState");
1020 1022 }
1021 1023 }
1022 1024 }
1023 1025 qCDebug(LOG_VariableController()) << tr("cancelVariableRequest: erase") << varRequestId;
1024 1026 m_VarGroupIdToVarIds.erase(varRequestId);
1025 1027 if (m_VarGroupIdToVarIds.empty()) {
1026 1028 emit q->acquisitionFinished();
1027 1029 }
1028 1030 }
1029 1031
1030 1032 void VariableController::VariableControllerPrivate::executeVarRequest(std::shared_ptr<Variable> var,
1031 1033 VariableRequest &varRequest)
1032 1034 {
1033 1035 qCDebug(LOG_VariableController()) << tr("TORM: executeVarRequest");
1034 1036
1035 auto varId = m_VariableToIdentifierMap.at(var);
1037 auto varIdIt = m_VariableToIdentifierMap.find(var);
1038 if (varIdIt == m_VariableToIdentifierMap.cend()) {
1039 qCWarning(LOG_VariableController()) << tr(
1040 "Can't execute request of a variable that is not registered (may has been deleted)");
1041 return;
1042 }
1043
1044 auto varId = varIdIt->second;
1036 1045
1037 1046 auto varCacheRange = var->cacheRange();
1038 1047 auto varCacheRangeRequested = varRequest.m_CacheRangeRequested;
1039 1048 auto notInCacheRangeList
1040 1049 = Variable::provideNotInCacheRangeList(varCacheRange, varCacheRangeRequested);
1041 1050 auto inCacheRangeList
1042 1051 = Variable::provideInCacheRangeList(varCacheRange, varCacheRangeRequested);
1043 1052
1044 1053 if (!notInCacheRangeList.empty()) {
1045 1054
1046 1055 auto varProvider = m_VariableToProviderMap.at(var);
1047 1056 if (varProvider != nullptr) {
1048 1057 qCDebug(LOG_VariableController()) << "executeVarRequest " << varRequest.m_RangeRequested
1049 1058 << varRequest.m_CacheRangeRequested;
1050 1059 m_VariableAcquisitionWorker->pushVariableRequest(
1051 1060 varRequest.m_VariableGroupId, varId, varRequest.m_RangeRequested,
1052 1061 varRequest.m_CacheRangeRequested,
1053 1062 DataProviderParameters{std::move(notInCacheRangeList), var->metadata()},
1054 1063 varProvider);
1055 1064 }
1056 1065 else {
1057 1066 qCCritical(LOG_VariableController())
1058 1067 << "Impossible to provide data with a null provider";
1059 1068 }
1060 1069
1061 1070 if (!inCacheRangeList.empty()) {
1062 1071 emit q->updateVarDisplaying(var, inCacheRangeList.first());
1063 1072 }
1064 1073 }
1065 1074 else {
1066 1075 acceptVariableRequest(varId,
1067 1076 var->dataSeries()->subDataSeries(varRequest.m_CacheRangeRequested));
1068 1077 }
1069 1078 }
1079
1080 template <typename VariableIterator>
1081 void VariableController::VariableControllerPrivate::desynchronize(VariableIterator variableIt,
1082 const QUuid &syncGroupId)
1083 {
1084 const auto &variable = variableIt->first;
1085 const auto &variableId = variableIt->second;
1086
1087 // Gets synchronization group
1088 auto groupIt = m_GroupIdToVariableSynchronizationGroupMap.find(syncGroupId);
1089 if (groupIt == m_GroupIdToVariableSynchronizationGroupMap.cend()) {
1090 qCCritical(LOG_VariableController())
1091 << tr("Can't desynchronize variable %1: unknown synchronization group")
1092 .arg(variable->name());
1093 return;
1094 }
1095
1096 // Removes variable from synchronization group
1097 auto synchronizationGroup = groupIt->second;
1098 synchronizationGroup->removeVariableId(variableId);
1099
1100 // Removes link between variable and synchronization group
1101 m_VariableIdGroupIdMap.erase(variableId);
1102 }
@@ -1,141 +1,155
1 1 #ifndef SCIQLOP_VISUALIZATIONGRAPHWIDGET_H
2 2 #define SCIQLOP_VISUALIZATIONGRAPHWIDGET_H
3 3
4 4 #include "Visualization/IVisualizationWidget.h"
5 5 #include "Visualization/VisualizationDragWidget.h"
6 6
7 7 #include <QLoggingCategory>
8 8 #include <QWidget>
9 9
10 10 #include <memory>
11 11
12 12 #include <Common/spimpl.h>
13 13
14 14 Q_DECLARE_LOGGING_CATEGORY(LOG_VisualizationGraphWidget)
15 15
16 16 class QCPRange;
17 17 class QCustomPlot;
18 18 class SqpRange;
19 19 class Variable;
20 20 class VisualizationWidget;
21 21 class VisualizationZoneWidget;
22 22 class VisualizationSelectionZoneItem;
23 23
24 24 namespace Ui {
25 25 class VisualizationGraphWidget;
26 26 } // namespace Ui
27 27
28 /// Defines options that can be associated with the graph
29 enum GraphFlag {
30 DisableAll = 0x0, ///< Disables acquisition and synchronization
31 EnableAcquisition = 0x1, ///< When this flag is set, the change of the graph's range leads to
32 /// the acquisition of data
33 EnableSynchronization = 0x2, ///< When this flag is set, the change of the graph's range causes
34 /// the call to the synchronization of the graphs contained in the
35 /// same zone of this graph
36 EnableAll = ~DisableAll ///< Enables acquisition and synchronization
37 };
38
39 Q_DECLARE_FLAGS(GraphFlags, GraphFlag)
40 Q_DECLARE_OPERATORS_FOR_FLAGS(GraphFlags)
41
28 42 class VisualizationGraphWidget : public VisualizationDragWidget, public IVisualizationWidget {
29 43 Q_OBJECT
30 44
31 45 friend class QCustomPlotSynchronizer;
32 46 friend class VisualizationGraphRenderingDelegate;
33 47
34 48 public:
35 49 explicit VisualizationGraphWidget(const QString &name = {}, QWidget *parent = 0);
36 50 virtual ~VisualizationGraphWidget();
37 51
38 52 /// Returns the VisualizationZoneWidget which contains the graph or nullptr
39 53 VisualizationZoneWidget *parentZoneWidget() const noexcept;
40 54
41 55 /// Returns the main VisualizationWidget which contains the graph or nullptr
42 56 VisualizationWidget *parentVisualizationWidget() const;
43 57
44 /// If acquisition isn't enable, requestDataLoading signal cannot be emit
45 void enableAcquisition(bool enable);
58 /// Sets graph options
59 void setFlags(GraphFlags flags);
46 60
47 61 void addVariable(std::shared_ptr<Variable> variable, SqpRange range);
48 62
49 63 /// Removes a variable from the graph
50 64 void removeVariable(std::shared_ptr<Variable> variable) noexcept;
51 65
52 66 /// Returns the list of all variables used in the graph
53 67 QList<std::shared_ptr<Variable> > variables() const;
54 68
55 69 /// Sets the y-axis range based on the data of a variable
56 70 void setYRange(std::shared_ptr<Variable> variable);
57 71 SqpRange graphRange() const noexcept;
58 72 void setGraphRange(const SqpRange &range);
59 73
60 74 // Zones
61 75 /// Returns the ranges of all the selection zones on the graph
62 76 QVector<SqpRange> selectionZoneRanges() const;
63 77 /// Adds new selection zones in the graph
64 78 void addSelectionZones(const QVector<SqpRange> &ranges);
65 79 /// Removes the specified selection zone
66 80 void removeSelectionZone(VisualizationSelectionZoneItem *selectionZone);
67 81
68 82 /// Undo the last zoom done with a zoom box
69 83 void undoZoom();
70 84
71 85 // IVisualizationWidget interface
72 86 void accept(IVisualizationWidgetVisitor *visitor) override;
73 87 bool canDrop(const Variable &variable) const override;
74 88 bool contains(const Variable &variable) const override;
75 89 QString name() const override;
76 90
77 91 // VisualisationDragWidget
78 92 QMimeData *mimeData(const QPoint &position) const override;
79 93 QPixmap customDragPixmap(const QPoint &dragPosition) override;
80 94 bool isDragAllowed() const override;
81 95 void highlightForMerge(bool highlighted) override;
82 96
83 97 // Cursors
84 98 /// Adds or moves the vertical cursor at the specified value on the x-axis
85 99 void addVerticalCursor(double time);
86 100 /// Adds or moves the vertical cursor at the specified value on the x-axis
87 101 void addVerticalCursorAtViewportPosition(double position);
88 102 void removeVerticalCursor();
89 103 /// Adds or moves the vertical cursor at the specified value on the y-axis
90 104 void addHorizontalCursor(double value);
91 105 /// Adds or moves the vertical cursor at the specified value on the y-axis
92 106 void addHorizontalCursorAtViewportPosition(double position);
93 107 void removeHorizontalCursor();
94 108
95 109 signals:
96 110 void synchronize(const SqpRange &range, const SqpRange &oldRange);
97 111 void requestDataLoading(QVector<std::shared_ptr<Variable> > variable, const SqpRange &range,
98 112 bool synchronise);
99 113
100 114 /// Signal emitted when the variable is about to be removed from the graph
101 115 void variableAboutToBeRemoved(std::shared_ptr<Variable> var);
102 116 /// Signal emitted when the variable has been added to the graph
103 117 void variableAdded(std::shared_ptr<Variable> var);
104 118
105 119 protected:
106 120 void closeEvent(QCloseEvent *event) override;
107 121 void enterEvent(QEvent *event) override;
108 122 void leaveEvent(QEvent *event) override;
109 123
110 124 QCustomPlot &plot() const noexcept;
111 125
112 126 private:
113 127 Ui::VisualizationGraphWidget *ui;
114 128
115 129 class VisualizationGraphWidgetPrivate;
116 130 spimpl::unique_impl_ptr<VisualizationGraphWidgetPrivate> impl;
117 131
118 132 private slots:
119 133 /// Slot called when right clicking on the graph (displays a menu)
120 134 void onGraphMenuRequested(const QPoint &pos) noexcept;
121 135
122 136 /// Rescale the X axe to range parameter
123 137 void onRangeChanged(const QCPRange &t1, const QCPRange &t2);
124 138
125 139 /// Slot called when a mouse double click was made
126 140 void onMouseDoubleClick(QMouseEvent *event) noexcept;
127 141 /// Slot called when a mouse move was made
128 142 void onMouseMove(QMouseEvent *event) noexcept;
129 143 /// Slot called when a mouse wheel was made, to perform some processing before the zoom is done
130 144 void onMouseWheel(QWheelEvent *event) noexcept;
131 145 /// Slot called when a mouse press was made, to activate the calibration of a graph
132 146 void onMousePress(QMouseEvent *event) noexcept;
133 147 /// Slot called when a mouse release was made, to deactivate the calibration of a graph
134 148 void onMouseRelease(QMouseEvent *event) noexcept;
135 149
136 150 void onDataCacheVariableUpdated();
137 151
138 152 void onUpdateVarDisplaying(std::shared_ptr<Variable> variable, const SqpRange &range);
139 153 };
140 154
141 155 #endif // SCIQLOP_VISUALIZATIONGRAPHWIDGET_H
@@ -1,1003 +1,1004
1 1 #include "Visualization/VisualizationGraphWidget.h"
2 2 #include "Visualization/IVisualizationWidgetVisitor.h"
3 3 #include "Visualization/VisualizationCursorItem.h"
4 4 #include "Visualization/VisualizationDefs.h"
5 5 #include "Visualization/VisualizationGraphHelper.h"
6 6 #include "Visualization/VisualizationGraphRenderingDelegate.h"
7 7 #include "Visualization/VisualizationMultiZoneSelectionDialog.h"
8 8 #include "Visualization/VisualizationSelectionZoneItem.h"
9 9 #include "Visualization/VisualizationSelectionZoneManager.h"
10 10 #include "Visualization/VisualizationWidget.h"
11 11 #include "Visualization/VisualizationZoneWidget.h"
12 12 #include "ui_VisualizationGraphWidget.h"
13 13
14 14 #include <Actions/ActionsGuiController.h>
15 15 #include <Common/MimeTypesDef.h>
16 16 #include <Data/ArrayData.h>
17 17 #include <Data/IDataSeries.h>
18 18 #include <Data/SpectrogramSeries.h>
19 19 #include <DragAndDrop/DragDropGuiController.h>
20 20 #include <Settings/SqpSettingsDefs.h>
21 21 #include <SqpApplication.h>
22 22 #include <Time/TimeController.h>
23 23 #include <Variable/Variable.h>
24 24 #include <Variable/VariableController.h>
25 25
26 26 #include <unordered_map>
27 27
28 28 Q_LOGGING_CATEGORY(LOG_VisualizationGraphWidget, "VisualizationGraphWidget")
29 29
30 30 namespace {
31 31
32 32 /// Key pressed to enable drag&drop in all modes
33 33 const auto DRAG_DROP_MODIFIER = Qt::AltModifier;
34 34
35 35 /// Key pressed to enable zoom on horizontal axis
36 36 const auto HORIZONTAL_ZOOM_MODIFIER = Qt::ControlModifier;
37 37
38 38 /// Key pressed to enable zoom on vertical axis
39 39 const auto VERTICAL_ZOOM_MODIFIER = Qt::ShiftModifier;
40 40
41 41 /// Speed of a step of a wheel event for a pan, in percentage of the axis range
42 42 const auto PAN_SPEED = 5;
43 43
44 44 /// Key pressed to enable a calibration pan
45 45 const auto VERTICAL_PAN_MODIFIER = Qt::AltModifier;
46 46
47 47 /// Key pressed to enable multi selection of selection zones
48 48 const auto MULTI_ZONE_SELECTION_MODIFIER = Qt::ControlModifier;
49 49
50 50 /// Minimum size for the zoom box, in percentage of the axis range
51 51 const auto ZOOM_BOX_MIN_SIZE = 0.8;
52 52
53 53 /// Format of the dates appearing in the label of a cursor
54 54 const auto CURSOR_LABELS_DATETIME_FORMAT = QStringLiteral("yyyy/MM/dd\nhh:mm:ss:zzz");
55 55
56 56 } // namespace
57 57
58 58 struct VisualizationGraphWidget::VisualizationGraphWidgetPrivate {
59 59
60 60 explicit VisualizationGraphWidgetPrivate(const QString &name)
61 61 : m_Name{name},
62 m_DoAcquisition{true},
62 m_Flags{GraphFlag::EnableAll},
63 63 m_IsCalibration{false},
64 64 m_RenderingDelegate{nullptr}
65 65 {
66 66 }
67 67
68 68 void updateData(PlottablesMap &plottables, std::shared_ptr<IDataSeries> dataSeries,
69 69 const SqpRange &range)
70 70 {
71 71 VisualizationGraphHelper::updateData(plottables, dataSeries, range);
72 72
73 73 // Prevents that data has changed to update rendering
74 74 m_RenderingDelegate->onPlotUpdated();
75 75 }
76 76
77 77 QString m_Name;
78 78 // 1 variable -> n qcpplot
79 79 std::map<std::shared_ptr<Variable>, PlottablesMap> m_VariableToPlotMultiMap;
80 bool m_DoAcquisition;
80 GraphFlags m_Flags;
81 81 bool m_IsCalibration;
82 82 /// Delegate used to attach rendering features to the plot
83 83 std::unique_ptr<VisualizationGraphRenderingDelegate> m_RenderingDelegate;
84 84
85 85 QCPItemRect *m_DrawingZoomRect = nullptr;
86 86 QStack<QPair<QCPRange, QCPRange> > m_ZoomStack;
87 87
88 88 std::unique_ptr<VisualizationCursorItem> m_HorizontalCursor = nullptr;
89 89 std::unique_ptr<VisualizationCursorItem> m_VerticalCursor = nullptr;
90 90
91 91 VisualizationSelectionZoneItem *m_DrawingZone = nullptr;
92 92 VisualizationSelectionZoneItem *m_HoveredZone = nullptr;
93 93 QVector<VisualizationSelectionZoneItem *> m_SelectionZones;
94 94
95 95 bool m_HasMovedMouse = false; // Indicates if the mouse moved in a releaseMouse even
96 96
97 97 void startDrawingRect(const QPoint &pos, QCustomPlot &plot)
98 98 {
99 99 removeDrawingRect(plot);
100 100
101 101 auto axisPos = posToAxisPos(pos, plot);
102 102
103 103 m_DrawingZoomRect = new QCPItemRect{&plot};
104 104 QPen p;
105 105 p.setWidth(2);
106 106 m_DrawingZoomRect->setPen(p);
107 107
108 108 m_DrawingZoomRect->topLeft->setCoords(axisPos);
109 109 m_DrawingZoomRect->bottomRight->setCoords(axisPos);
110 110 }
111 111
112 112 void removeDrawingRect(QCustomPlot &plot)
113 113 {
114 114 if (m_DrawingZoomRect) {
115 115 plot.removeItem(m_DrawingZoomRect); // the item is deleted by QCustomPlot
116 116 m_DrawingZoomRect = nullptr;
117 117 plot.replot(QCustomPlot::rpQueuedReplot);
118 118 }
119 119 }
120 120
121 121 void startDrawingZone(const QPoint &pos, VisualizationGraphWidget *graph)
122 122 {
123 123 endDrawingZone(graph);
124 124
125 125 auto axisPos = posToAxisPos(pos, graph->plot());
126 126
127 127 m_DrawingZone = new VisualizationSelectionZoneItem{&graph->plot()};
128 128 m_DrawingZone->setRange(axisPos.x(), axisPos.x());
129 129 m_DrawingZone->setEditionEnabled(false);
130 130 }
131 131
132 132 void endDrawingZone(VisualizationGraphWidget *graph)
133 133 {
134 134 if (m_DrawingZone) {
135 135 auto drawingZoneRange = m_DrawingZone->range();
136 136 if (qAbs(drawingZoneRange.m_TEnd - drawingZoneRange.m_TStart) > 0) {
137 137 m_DrawingZone->setEditionEnabled(true);
138 138 addSelectionZone(m_DrawingZone);
139 139 }
140 140 else {
141 141 graph->plot().removeItem(m_DrawingZone); // the item is deleted by QCustomPlot
142 142 }
143 143
144 144 graph->plot().replot(QCustomPlot::rpQueuedReplot);
145 145 m_DrawingZone = nullptr;
146 146 }
147 147 }
148 148
149 149 void setSelectionZonesEditionEnabled(bool value)
150 150 {
151 151 for (auto s : m_SelectionZones) {
152 152 s->setEditionEnabled(value);
153 153 }
154 154 }
155 155
156 156 void addSelectionZone(VisualizationSelectionZoneItem *zone) { m_SelectionZones << zone; }
157 157
158 158 VisualizationSelectionZoneItem *selectionZoneAt(const QPoint &pos,
159 159 const QCustomPlot &plot) const
160 160 {
161 161 VisualizationSelectionZoneItem *selectionZoneItemUnderCursor = nullptr;
162 162 auto minDistanceToZone = -1;
163 163 for (auto zone : m_SelectionZones) {
164 164 auto distanceToZone = zone->selectTest(pos, false);
165 165 if ((minDistanceToZone < 0 || distanceToZone <= minDistanceToZone)
166 166 && distanceToZone >= 0 && distanceToZone < plot.selectionTolerance()) {
167 167 selectionZoneItemUnderCursor = zone;
168 168 }
169 169 }
170 170
171 171 return selectionZoneItemUnderCursor;
172 172 }
173 173
174 174 QVector<VisualizationSelectionZoneItem *> selectionZonesAt(const QPoint &pos,
175 175 const QCustomPlot &plot) const
176 176 {
177 177 QVector<VisualizationSelectionZoneItem *> zones;
178 178 for (auto zone : m_SelectionZones) {
179 179 auto distanceToZone = zone->selectTest(pos, false);
180 180 if (distanceToZone >= 0 && distanceToZone < plot.selectionTolerance()) {
181 181 zones << zone;
182 182 }
183 183 }
184 184
185 185 return zones;
186 186 }
187 187
188 188 void moveSelectionZoneOnTop(VisualizationSelectionZoneItem *zone, QCustomPlot &plot)
189 189 {
190 190 if (!m_SelectionZones.isEmpty() && m_SelectionZones.last() != zone) {
191 191 zone->moveToTop();
192 192 m_SelectionZones.removeAll(zone);
193 193 m_SelectionZones.append(zone);
194 194 }
195 195 }
196 196
197 197 QPointF posToAxisPos(const QPoint &pos, QCustomPlot &plot) const
198 198 {
199 199 auto axisX = plot.axisRect()->axis(QCPAxis::atBottom);
200 200 auto axisY = plot.axisRect()->axis(QCPAxis::atLeft);
201 201 return QPointF{axisX->pixelToCoord(pos.x()), axisY->pixelToCoord(pos.y())};
202 202 }
203 203
204 204 bool pointIsInAxisRect(const QPointF &axisPoint, QCustomPlot &plot) const
205 205 {
206 206 auto axisX = plot.axisRect()->axis(QCPAxis::atBottom);
207 207 auto axisY = plot.axisRect()->axis(QCPAxis::atLeft);
208 208 return axisX->range().contains(axisPoint.x()) && axisY->range().contains(axisPoint.y());
209 209 }
210 210 };
211 211
212 212 VisualizationGraphWidget::VisualizationGraphWidget(const QString &name, QWidget *parent)
213 213 : VisualizationDragWidget{parent},
214 214 ui{new Ui::VisualizationGraphWidget},
215 215 impl{spimpl::make_unique_impl<VisualizationGraphWidgetPrivate>(name)}
216 216 {
217 217 ui->setupUi(this);
218 218
219 219 // 'Close' options : widget is deleted when closed
220 220 setAttribute(Qt::WA_DeleteOnClose);
221 221
222 222 // Set qcpplot properties :
223 223 // - zoom is enabled
224 224 // - Mouse wheel on qcpplot is intercepted to determine the zoom orientation
225 225 ui->widget->setInteractions(QCP::iRangeZoom);
226 226 ui->widget->axisRect()->setRangeDrag(Qt::Horizontal | Qt::Vertical);
227 227
228 228 // The delegate must be initialized after the ui as it uses the plot
229 229 impl->m_RenderingDelegate = std::make_unique<VisualizationGraphRenderingDelegate>(*this);
230 230
231 231 // Init the cursors
232 232 impl->m_HorizontalCursor = std::make_unique<VisualizationCursorItem>(&plot());
233 233 impl->m_HorizontalCursor->setOrientation(Qt::Horizontal);
234 234 impl->m_VerticalCursor = std::make_unique<VisualizationCursorItem>(&plot());
235 235 impl->m_VerticalCursor->setOrientation(Qt::Vertical);
236 236
237 237 connect(ui->widget, &QCustomPlot::mousePress, this, &VisualizationGraphWidget::onMousePress);
238 238 connect(ui->widget, &QCustomPlot::mouseRelease, this,
239 239 &VisualizationGraphWidget::onMouseRelease);
240 240 connect(ui->widget, &QCustomPlot::mouseMove, this, &VisualizationGraphWidget::onMouseMove);
241 241 connect(ui->widget, &QCustomPlot::mouseWheel, this, &VisualizationGraphWidget::onMouseWheel);
242 242 connect(ui->widget, &QCustomPlot::mouseDoubleClick, this,
243 243 &VisualizationGraphWidget::onMouseDoubleClick);
244 244 connect(ui->widget->xAxis, static_cast<void (QCPAxis::*)(const QCPRange &, const QCPRange &)>(
245 245 &QCPAxis::rangeChanged),
246 246 this, &VisualizationGraphWidget::onRangeChanged, Qt::DirectConnection);
247 247
248 248 // Activates menu when right clicking on the graph
249 249 ui->widget->setContextMenuPolicy(Qt::CustomContextMenu);
250 250 connect(ui->widget, &QCustomPlot::customContextMenuRequested, this,
251 251 &VisualizationGraphWidget::onGraphMenuRequested);
252 252
253 253 connect(this, &VisualizationGraphWidget::requestDataLoading, &sqpApp->variableController(),
254 254 &VariableController::onRequestDataLoading);
255 255
256 256 connect(&sqpApp->variableController(), &VariableController::updateVarDisplaying, this,
257 257 &VisualizationGraphWidget::onUpdateVarDisplaying);
258 258
259 259 #ifdef Q_OS_MAC
260 260 plot().setPlottingHint(QCP::phFastPolylines, true);
261 261 #endif
262 262 }
263 263
264 264
265 265 VisualizationGraphWidget::~VisualizationGraphWidget()
266 266 {
267 267 delete ui;
268 268 }
269 269
270 270 VisualizationZoneWidget *VisualizationGraphWidget::parentZoneWidget() const noexcept
271 271 {
272 272 auto parent = parentWidget();
273 273 while (parent != nullptr && !qobject_cast<VisualizationZoneWidget *>(parent)) {
274 274 parent = parent->parentWidget();
275 275 }
276 276
277 277 return qobject_cast<VisualizationZoneWidget *>(parent);
278 278 }
279 279
280 280 VisualizationWidget *VisualizationGraphWidget::parentVisualizationWidget() const
281 281 {
282 282 auto parent = parentWidget();
283 283 while (parent != nullptr && !qobject_cast<VisualizationWidget *>(parent)) {
284 284 parent = parent->parentWidget();
285 285 }
286 286
287 287 return qobject_cast<VisualizationWidget *>(parent);
288 288 }
289 289
290 void VisualizationGraphWidget::enableAcquisition(bool enable)
290 void VisualizationGraphWidget::setFlags(GraphFlags flags)
291 291 {
292 impl->m_DoAcquisition = enable;
292 impl->m_Flags = std::move(flags);
293 293 }
294 294
295 295 void VisualizationGraphWidget::addVariable(std::shared_ptr<Variable> variable, SqpRange range)
296 296 {
297 297 // Uses delegate to create the qcpplot components according to the variable
298 298 auto createdPlottables = VisualizationGraphHelper::create(variable, *ui->widget);
299 299
300 300 if (auto dataSeries = variable->dataSeries()) {
301 301 // Set axes properties according to the units of the data series
302 302 impl->m_RenderingDelegate->setAxesProperties(dataSeries);
303 303
304 304 // Sets rendering properties for the new plottables
305 305 // Warning: this method must be called after setAxesProperties(), as it can access to some
306 306 // axes properties that have to be initialized
307 307 impl->m_RenderingDelegate->setPlottablesProperties(dataSeries, createdPlottables);
308 308 }
309 309
310 310 impl->m_VariableToPlotMultiMap.insert({variable, std::move(createdPlottables)});
311 311
312 312 connect(variable.get(), SIGNAL(updated()), this, SLOT(onDataCacheVariableUpdated()));
313 313
314 this->enableAcquisition(false);
314 this->setFlags(GraphFlag::DisableAll);
315 315 this->setGraphRange(range);
316 this->enableAcquisition(true);
316 this->setFlags(GraphFlag::EnableAll);
317 317
318 318 emit requestDataLoading(QVector<std::shared_ptr<Variable> >() << variable, range, false);
319 319
320 320 emit variableAdded(variable);
321 321 }
322 322
323 323 void VisualizationGraphWidget::removeVariable(std::shared_ptr<Variable> variable) noexcept
324 324 {
325 325 // Each component associated to the variable :
326 326 // - is removed from qcpplot (which deletes it)
327 327 // - is no longer referenced in the map
328 328 auto variableIt = impl->m_VariableToPlotMultiMap.find(variable);
329 329 if (variableIt != impl->m_VariableToPlotMultiMap.cend()) {
330 330 emit variableAboutToBeRemoved(variable);
331 331
332 332 auto &plottablesMap = variableIt->second;
333 333
334 334 for (auto plottableIt = plottablesMap.cbegin(), plottableEnd = plottablesMap.cend();
335 335 plottableIt != plottableEnd;) {
336 336 ui->widget->removePlottable(plottableIt->second);
337 337 plottableIt = plottablesMap.erase(plottableIt);
338 338 }
339 339
340 340 impl->m_VariableToPlotMultiMap.erase(variableIt);
341 341 }
342 342
343 343 // Updates graph
344 344 ui->widget->replot();
345 345 }
346 346
347 347 QList<std::shared_ptr<Variable> > VisualizationGraphWidget::variables() const
348 348 {
349 349 auto variables = QList<std::shared_ptr<Variable> >{};
350 350 for (auto it = std::cbegin(impl->m_VariableToPlotMultiMap);
351 351 it != std::cend(impl->m_VariableToPlotMultiMap); ++it) {
352 352 variables << it->first;
353 353 }
354 354
355 355 return variables;
356 356 }
357 357
358 358 void VisualizationGraphWidget::setYRange(std::shared_ptr<Variable> variable)
359 359 {
360 360 if (!variable) {
361 361 qCCritical(LOG_VisualizationGraphWidget()) << "Can't set y-axis range: variable is null";
362 362 return;
363 363 }
364 364
365 365 VisualizationGraphHelper::setYAxisRange(variable, *ui->widget);
366 366 }
367 367
368 368 SqpRange VisualizationGraphWidget::graphRange() const noexcept
369 369 {
370 370 auto graphRange = ui->widget->xAxis->range();
371 371 return SqpRange{graphRange.lower, graphRange.upper};
372 372 }
373 373
374 374 void VisualizationGraphWidget::setGraphRange(const SqpRange &range)
375 375 {
376 376 qCDebug(LOG_VisualizationGraphWidget()) << tr("VisualizationGraphWidget::setGraphRange START");
377 377 ui->widget->xAxis->setRange(range.m_TStart, range.m_TEnd);
378 378 ui->widget->replot();
379 379 qCDebug(LOG_VisualizationGraphWidget()) << tr("VisualizationGraphWidget::setGraphRange END");
380 380 }
381 381
382 382 QVector<SqpRange> VisualizationGraphWidget::selectionZoneRanges() const
383 383 {
384 384 QVector<SqpRange> ranges;
385 385 for (auto zone : impl->m_SelectionZones) {
386 386 ranges << zone->range();
387 387 }
388 388
389 389 return ranges;
390 390 }
391 391
392 392 void VisualizationGraphWidget::addSelectionZones(const QVector<SqpRange> &ranges)
393 393 {
394 394 for (const auto &range : ranges) {
395 395 // note: ownership is transfered to QCustomPlot
396 396 auto zone = new VisualizationSelectionZoneItem(&plot());
397 397 zone->setRange(range.m_TStart, range.m_TEnd);
398 398 impl->addSelectionZone(zone);
399 399 }
400 400
401 401 plot().replot(QCustomPlot::rpQueuedReplot);
402 402 }
403 403
404 404 void VisualizationGraphWidget::removeSelectionZone(VisualizationSelectionZoneItem *selectionZone)
405 405 {
406 406 parentVisualizationWidget()->selectionZoneManager().setSelected(selectionZone, false);
407 407
408 408 if (impl->m_HoveredZone == selectionZone) {
409 409 impl->m_HoveredZone = nullptr;
410 410 setCursor(Qt::ArrowCursor);
411 411 }
412 412
413 413 impl->m_SelectionZones.removeAll(selectionZone);
414 414 plot().removeItem(selectionZone);
415 415 plot().replot(QCustomPlot::rpQueuedReplot);
416 416 }
417 417
418 418 void VisualizationGraphWidget::undoZoom()
419 419 {
420 420 auto zoom = impl->m_ZoomStack.pop();
421 421 auto axisX = plot().axisRect()->axis(QCPAxis::atBottom);
422 422 auto axisY = plot().axisRect()->axis(QCPAxis::atLeft);
423 423
424 424 axisX->setRange(zoom.first);
425 425 axisY->setRange(zoom.second);
426 426
427 427 plot().replot(QCustomPlot::rpQueuedReplot);
428 428 }
429 429
430 430 void VisualizationGraphWidget::accept(IVisualizationWidgetVisitor *visitor)
431 431 {
432 432 if (visitor) {
433 433 visitor->visit(this);
434 434 }
435 435 else {
436 436 qCCritical(LOG_VisualizationGraphWidget())
437 437 << tr("Can't visit widget : the visitor is null");
438 438 }
439 439 }
440 440
441 441 bool VisualizationGraphWidget::canDrop(const Variable &variable) const
442 442 {
443 443 auto isSpectrogram = [](const auto &variable) {
444 444 return std::dynamic_pointer_cast<SpectrogramSeries>(variable.dataSeries()) != nullptr;
445 445 };
446 446
447 447 // - A spectrogram series can't be dropped on graph with existing plottables
448 448 // - No data series can be dropped on graph with existing spectrogram series
449 449 return isSpectrogram(variable)
450 450 ? impl->m_VariableToPlotMultiMap.empty()
451 451 : std::none_of(
452 452 impl->m_VariableToPlotMultiMap.cbegin(), impl->m_VariableToPlotMultiMap.cend(),
453 453 [isSpectrogram](const auto &entry) { return isSpectrogram(*entry.first); });
454 454 }
455 455
456 456 bool VisualizationGraphWidget::contains(const Variable &variable) const
457 457 {
458 458 // Finds the variable among the keys of the map
459 459 auto variablePtr = &variable;
460 460 auto findVariable
461 461 = [variablePtr](const auto &entry) { return variablePtr == entry.first.get(); };
462 462
463 463 auto end = impl->m_VariableToPlotMultiMap.cend();
464 464 auto it = std::find_if(impl->m_VariableToPlotMultiMap.cbegin(), end, findVariable);
465 465 return it != end;
466 466 }
467 467
468 468 QString VisualizationGraphWidget::name() const
469 469 {
470 470 return impl->m_Name;
471 471 }
472 472
473 473 QMimeData *VisualizationGraphWidget::mimeData(const QPoint &position) const
474 474 {
475 475 auto mimeData = new QMimeData;
476 476
477 477 auto selectionZoneItemUnderCursor = impl->selectionZoneAt(position, plot());
478 478 if (sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::SelectionZones
479 479 && selectionZoneItemUnderCursor) {
480 480 mimeData->setData(MIME_TYPE_TIME_RANGE, TimeController::mimeDataForTimeRange(
481 481 selectionZoneItemUnderCursor->range()));
482 482 mimeData->setData(MIME_TYPE_SELECTION_ZONE, TimeController::mimeDataForTimeRange(
483 483 selectionZoneItemUnderCursor->range()));
484 484 }
485 485 else {
486 486 mimeData->setData(MIME_TYPE_GRAPH, QByteArray{});
487 487
488 488 auto timeRangeData = TimeController::mimeDataForTimeRange(graphRange());
489 489 mimeData->setData(MIME_TYPE_TIME_RANGE, timeRangeData);
490 490 }
491 491
492 492 return mimeData;
493 493 }
494 494
495 495 QPixmap VisualizationGraphWidget::customDragPixmap(const QPoint &dragPosition)
496 496 {
497 497 auto selectionZoneItemUnderCursor = impl->selectionZoneAt(dragPosition, plot());
498 498 if (sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::SelectionZones
499 499 && selectionZoneItemUnderCursor) {
500 500
501 501 auto zoneTopLeft = selectionZoneItemUnderCursor->topLeft->pixelPosition();
502 502 auto zoneBottomRight = selectionZoneItemUnderCursor->bottomRight->pixelPosition();
503 503
504 504 auto zoneSize = QSizeF{qAbs(zoneBottomRight.x() - zoneTopLeft.x()),
505 505 qAbs(zoneBottomRight.y() - zoneTopLeft.y())}
506 506 .toSize();
507 507
508 508 auto pixmap = QPixmap(zoneSize);
509 509 render(&pixmap, QPoint(), QRegion{QRect{zoneTopLeft.toPoint(), zoneSize}});
510 510
511 511 return pixmap;
512 512 }
513 513
514 514 return QPixmap();
515 515 }
516 516
517 517 bool VisualizationGraphWidget::isDragAllowed() const
518 518 {
519 519 return true;
520 520 }
521 521
522 522 void VisualizationGraphWidget::highlightForMerge(bool highlighted)
523 523 {
524 524 if (highlighted) {
525 525 plot().setBackground(QBrush(QColor("#BBD5EE")));
526 526 }
527 527 else {
528 528 plot().setBackground(QBrush(Qt::white));
529 529 }
530 530
531 531 plot().update();
532 532 }
533 533
534 534 void VisualizationGraphWidget::addVerticalCursor(double time)
535 535 {
536 536 impl->m_VerticalCursor->setPosition(time);
537 537 impl->m_VerticalCursor->setVisible(true);
538 538
539 539 auto text
540 540 = DateUtils::dateTime(time).toString(CURSOR_LABELS_DATETIME_FORMAT).replace(' ', '\n');
541 541 impl->m_VerticalCursor->setLabelText(text);
542 542 }
543 543
544 544 void VisualizationGraphWidget::addVerticalCursorAtViewportPosition(double position)
545 545 {
546 546 impl->m_VerticalCursor->setAbsolutePosition(position);
547 547 impl->m_VerticalCursor->setVisible(true);
548 548
549 549 auto axis = plot().axisRect()->axis(QCPAxis::atBottom);
550 550 auto text
551 551 = DateUtils::dateTime(axis->pixelToCoord(position)).toString(CURSOR_LABELS_DATETIME_FORMAT);
552 552 impl->m_VerticalCursor->setLabelText(text);
553 553 }
554 554
555 555 void VisualizationGraphWidget::removeVerticalCursor()
556 556 {
557 557 impl->m_VerticalCursor->setVisible(false);
558 558 plot().replot(QCustomPlot::rpQueuedReplot);
559 559 }
560 560
561 561 void VisualizationGraphWidget::addHorizontalCursor(double value)
562 562 {
563 563 impl->m_HorizontalCursor->setPosition(value);
564 564 impl->m_HorizontalCursor->setVisible(true);
565 565 impl->m_HorizontalCursor->setLabelText(QString::number(value));
566 566 }
567 567
568 568 void VisualizationGraphWidget::addHorizontalCursorAtViewportPosition(double position)
569 569 {
570 570 impl->m_HorizontalCursor->setAbsolutePosition(position);
571 571 impl->m_HorizontalCursor->setVisible(true);
572 572
573 573 auto axis = plot().axisRect()->axis(QCPAxis::atLeft);
574 574 impl->m_HorizontalCursor->setLabelText(QString::number(axis->pixelToCoord(position)));
575 575 }
576 576
577 577 void VisualizationGraphWidget::removeHorizontalCursor()
578 578 {
579 579 impl->m_HorizontalCursor->setVisible(false);
580 580 plot().replot(QCustomPlot::rpQueuedReplot);
581 581 }
582 582
583 583 void VisualizationGraphWidget::closeEvent(QCloseEvent *event)
584 584 {
585 585 Q_UNUSED(event);
586 586
587 587 // Prevents that all variables will be removed from graph when it will be closed
588 588 for (auto &variableEntry : impl->m_VariableToPlotMultiMap) {
589 589 emit variableAboutToBeRemoved(variableEntry.first);
590 590 }
591 591 }
592 592
593 593 void VisualizationGraphWidget::enterEvent(QEvent *event)
594 594 {
595 595 Q_UNUSED(event);
596 596 impl->m_RenderingDelegate->showGraphOverlay(true);
597 597 }
598 598
599 599 void VisualizationGraphWidget::leaveEvent(QEvent *event)
600 600 {
601 601 Q_UNUSED(event);
602 602 impl->m_RenderingDelegate->showGraphOverlay(false);
603 603
604 604 if (auto parentZone = parentZoneWidget()) {
605 605 parentZone->notifyMouseLeaveGraph(this);
606 606 }
607 607 else {
608 608 qCWarning(LOG_VisualizationGraphWidget()) << "leaveEvent: No parent zone widget";
609 609 }
610 610
611 611 if (impl->m_HoveredZone) {
612 612 impl->m_HoveredZone->setHovered(false);
613 613 impl->m_HoveredZone = nullptr;
614 614 }
615 615 }
616 616
617 617 QCustomPlot &VisualizationGraphWidget::plot() const noexcept
618 618 {
619 619 return *ui->widget;
620 620 }
621 621
622 622 void VisualizationGraphWidget::onGraphMenuRequested(const QPoint &pos) noexcept
623 623 {
624 624 QMenu graphMenu{};
625 625
626 626 // Iterates on variables (unique keys)
627 627 for (auto it = impl->m_VariableToPlotMultiMap.cbegin(),
628 628 end = impl->m_VariableToPlotMultiMap.cend();
629 629 it != end; it = impl->m_VariableToPlotMultiMap.upper_bound(it->first)) {
630 630 // 'Remove variable' action
631 631 graphMenu.addAction(tr("Remove variable %1").arg(it->first->name()),
632 632 [ this, var = it->first ]() { removeVariable(var); });
633 633 }
634 634
635 635 if (!impl->m_ZoomStack.isEmpty()) {
636 636 if (!graphMenu.isEmpty()) {
637 637 graphMenu.addSeparator();
638 638 }
639 639
640 640 graphMenu.addAction(tr("Undo Zoom"), [this]() { undoZoom(); });
641 641 }
642 642
643 643 // Selection Zone Actions
644 644 auto selectionZoneItem = impl->selectionZoneAt(pos, plot());
645 645 if (selectionZoneItem) {
646 646 auto selectedItems = parentVisualizationWidget()->selectionZoneManager().selectedItems();
647 647 selectedItems.removeAll(selectionZoneItem);
648 648 selectedItems.prepend(selectionZoneItem); // Put the current selection zone first
649 649
650 650 auto zoneActions = sqpApp->actionsGuiController().selectionZoneActions();
651 651 if (!zoneActions.isEmpty() && !graphMenu.isEmpty()) {
652 652 graphMenu.addSeparator();
653 653 }
654 654
655 655 QHash<QString, QMenu *> subMenus;
656 656 QHash<QString, bool> subMenusEnabled;
657 657
658 658 for (auto zoneAction : zoneActions) {
659 659
660 660 auto isEnabled = zoneAction->isEnabled(selectedItems);
661 661
662 662 auto menu = &graphMenu;
663 663 for (auto subMenuName : zoneAction->subMenuList()) {
664 664 if (!subMenus.contains(subMenuName)) {
665 665 menu = menu->addMenu(subMenuName);
666 666 subMenus[subMenuName] = menu;
667 667 subMenusEnabled[subMenuName] = isEnabled;
668 668 }
669 669 else {
670 670 menu = subMenus.value(subMenuName);
671 671 if (isEnabled) {
672 672 // The sub menu is enabled if at least one of its actions is enabled
673 673 subMenusEnabled[subMenuName] = true;
674 674 }
675 675 }
676 676 }
677 677
678 678 auto action = menu->addAction(zoneAction->name());
679 679 action->setEnabled(isEnabled);
680 680 action->setShortcut(zoneAction->displayedShortcut());
681 681 QObject::connect(action, &QAction::triggered,
682 682 [zoneAction, selectedItems]() { zoneAction->execute(selectedItems); });
683 683 }
684 684
685 685 for (auto it = subMenus.cbegin(); it != subMenus.cend(); ++it) {
686 686 it.value()->setEnabled(subMenusEnabled[it.key()]);
687 687 }
688 688 }
689 689
690 690 if (!graphMenu.isEmpty()) {
691 691 graphMenu.exec(QCursor::pos());
692 692 }
693 693 }
694 694
695 695 void VisualizationGraphWidget::onRangeChanged(const QCPRange &t1, const QCPRange &t2)
696 696 {
697 697 qCDebug(LOG_VisualizationGraphWidget()) << tr("TORM: VisualizationGraphWidget::onRangeChanged")
698 698 << QThread::currentThread()->objectName() << "DoAcqui"
699 << impl->m_DoAcquisition;
699 << impl->m_Flags.testFlag(GraphFlag::EnableAcquisition);
700 700
701 701 auto graphRange = SqpRange{t1.lower, t1.upper};
702 702 auto oldGraphRange = SqpRange{t2.lower, t2.upper};
703 703
704 if (impl->m_DoAcquisition) {
704 if (impl->m_Flags.testFlag(GraphFlag::EnableAcquisition)) {
705 705 QVector<std::shared_ptr<Variable> > variableUnderGraphVector;
706 706
707 707 for (auto it = impl->m_VariableToPlotMultiMap.begin(),
708 708 end = impl->m_VariableToPlotMultiMap.end();
709 709 it != end; it = impl->m_VariableToPlotMultiMap.upper_bound(it->first)) {
710 710 variableUnderGraphVector.push_back(it->first);
711 711 }
712 712 emit requestDataLoading(std::move(variableUnderGraphVector), graphRange,
713 713 !impl->m_IsCalibration);
714 }
714 715
715 if (!impl->m_IsCalibration) {
716 qCDebug(LOG_VisualizationGraphWidget())
717 << tr("TORM: VisualizationGraphWidget::Synchronize notify !!")
718 << QThread::currentThread()->objectName() << graphRange << oldGraphRange;
719 emit synchronize(graphRange, oldGraphRange);
720 }
716 if (impl->m_Flags.testFlag(GraphFlag::EnableSynchronization) && !impl->m_IsCalibration) {
717 qCDebug(LOG_VisualizationGraphWidget())
718 << tr("TORM: VisualizationGraphWidget::Synchronize notify !!")
719 << QThread::currentThread()->objectName() << graphRange << oldGraphRange;
720 emit synchronize(graphRange, oldGraphRange);
721 721 }
722 722
723 723 auto pos = mapFromGlobal(QCursor::pos());
724 724 auto axisPos = impl->posToAxisPos(pos, plot());
725 725 if (auto parentZone = parentZoneWidget()) {
726 726 if (impl->pointIsInAxisRect(axisPos, plot())) {
727 727 parentZone->notifyMouseMoveInGraph(pos, axisPos, this);
728 728 }
729 729 else {
730 730 parentZone->notifyMouseLeaveGraph(this);
731 731 }
732 732 }
733 733 else {
734 734 qCWarning(LOG_VisualizationGraphWidget()) << "onMouseMove: No parent zone widget";
735 735 }
736
737 // Quits calibration
738 impl->m_IsCalibration = false;
736 739 }
737 740
738 741 void VisualizationGraphWidget::onMouseDoubleClick(QMouseEvent *event) noexcept
739 742 {
740 743 impl->m_RenderingDelegate->onMouseDoubleClick(event);
741 744 }
742 745
743 746 void VisualizationGraphWidget::onMouseMove(QMouseEvent *event) noexcept
744 747 {
745 748 // Handles plot rendering when mouse is moving
746 749 impl->m_RenderingDelegate->onMouseMove(event);
747 750
748 751 auto axisPos = impl->posToAxisPos(event->pos(), plot());
749 752
750 753 // Zoom box and zone drawing
751 754 if (impl->m_DrawingZoomRect) {
752 755 impl->m_DrawingZoomRect->bottomRight->setCoords(axisPos);
753 756 }
754 757 else if (impl->m_DrawingZone) {
755 758 impl->m_DrawingZone->setEnd(axisPos.x());
756 759 }
757 760
758 761 // Cursor
759 762 if (auto parentZone = parentZoneWidget()) {
760 763 if (impl->pointIsInAxisRect(axisPos, plot())) {
761 764 parentZone->notifyMouseMoveInGraph(event->pos(), axisPos, this);
762 765 }
763 766 else {
764 767 parentZone->notifyMouseLeaveGraph(this);
765 768 }
766 769 }
767 770 else {
768 771 qCWarning(LOG_VisualizationGraphWidget()) << "onMouseMove: No parent zone widget";
769 772 }
770 773
771 774 // Search for the selection zone under the mouse
772 775 auto selectionZoneItemUnderCursor = impl->selectionZoneAt(event->pos(), plot());
773 776 if (selectionZoneItemUnderCursor && !impl->m_DrawingZone
774 777 && sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::SelectionZones) {
775 778
776 779 // Sets the appropriate cursor shape
777 780 auto cursorShape = selectionZoneItemUnderCursor->curshorShapeForPosition(event->pos());
778 781 setCursor(cursorShape);
779 782
780 783 // Manages the hovered zone
781 784 if (selectionZoneItemUnderCursor != impl->m_HoveredZone) {
782 785 if (impl->m_HoveredZone) {
783 786 impl->m_HoveredZone->setHovered(false);
784 787 }
785 788 selectionZoneItemUnderCursor->setHovered(true);
786 789 impl->m_HoveredZone = selectionZoneItemUnderCursor;
787 790 plot().replot(QCustomPlot::rpQueuedReplot);
788 791 }
789 792 }
790 793 else {
791 794 // There is no zone under the mouse or the interaction mode is not "selection zones"
792 795 if (impl->m_HoveredZone) {
793 796 impl->m_HoveredZone->setHovered(false);
794 797 impl->m_HoveredZone = nullptr;
795 798 }
796 799
797 800 setCursor(Qt::ArrowCursor);
798 801 }
799 802
800 803 impl->m_HasMovedMouse = true;
801 804 VisualizationDragWidget::mouseMoveEvent(event);
802 805 }
803 806
804 807 void VisualizationGraphWidget::onMouseWheel(QWheelEvent *event) noexcept
805 808 {
806 809 auto value = event->angleDelta().x() + event->angleDelta().y();
807 810 if (value != 0) {
808 811
809 812 auto direction = value > 0 ? 1.0 : -1.0;
810 813 auto isZoomX = event->modifiers().testFlag(HORIZONTAL_ZOOM_MODIFIER);
811 814 auto isZoomY = event->modifiers().testFlag(VERTICAL_ZOOM_MODIFIER);
812 815 impl->m_IsCalibration = event->modifiers().testFlag(VERTICAL_PAN_MODIFIER);
813 816
814 817 auto zoomOrientations = QFlags<Qt::Orientation>{};
815 818 zoomOrientations.setFlag(Qt::Horizontal, isZoomX);
816 819 zoomOrientations.setFlag(Qt::Vertical, isZoomY);
817 820
818 821 ui->widget->axisRect()->setRangeZoom(zoomOrientations);
819 822
820 823 if (!isZoomX && !isZoomY) {
821 824 auto axis = plot().axisRect()->axis(QCPAxis::atBottom);
822 825 auto diff = direction * (axis->range().size() * (PAN_SPEED / 100.0));
823 826
824 827 axis->setRange(axis->range() + diff);
825 828
826 829 if (plot().noAntialiasingOnDrag()) {
827 830 plot().setNotAntialiasedElements(QCP::aeAll);
828 831 }
829 832
830 833 plot().replot(QCustomPlot::rpQueuedReplot);
831 834 }
832 835 }
833 836 }
834 837
835 838 void VisualizationGraphWidget::onMousePress(QMouseEvent *event) noexcept
836 839 {
837 840 auto isDragDropClick = event->modifiers().testFlag(DRAG_DROP_MODIFIER);
838 841 auto isSelectionZoneMode
839 842 = sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::SelectionZones;
840 843 auto isLeftClick = event->buttons().testFlag(Qt::LeftButton);
841 844
842 845 if (!isDragDropClick && isLeftClick) {
843 846 if (sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::ZoomBox) {
844 847 // Starts a zoom box
845 848 impl->startDrawingRect(event->pos(), plot());
846 849 }
847 850 else if (isSelectionZoneMode && impl->m_DrawingZone == nullptr) {
848 851 // Starts a new selection zone
849 852 auto zoneAtPos = impl->selectionZoneAt(event->pos(), plot());
850 853 if (!zoneAtPos) {
851 854 impl->startDrawingZone(event->pos(), this);
852 855 }
853 856 }
854 857 }
855 858
856 859 // Allows mouse panning only in default mode
857 860 plot().setInteraction(QCP::iRangeDrag, sqpApp->plotsInteractionMode()
858 861 == SqpApplication::PlotsInteractionMode::None
859 862 && !isDragDropClick);
860 863
861 864 // Allows zone edition only in selection zone mode without drag&drop
862 865 impl->setSelectionZonesEditionEnabled(isSelectionZoneMode && !isDragDropClick);
863 866
864 867 // Selection / Deselection
865 868 if (isSelectionZoneMode) {
866 869 auto isMultiSelectionClick = event->modifiers().testFlag(MULTI_ZONE_SELECTION_MODIFIER);
867 870 auto selectionZoneItemUnderCursor = impl->selectionZoneAt(event->pos(), plot());
868 871
869 872
870 873 if (selectionZoneItemUnderCursor && !selectionZoneItemUnderCursor->selected()
871 874 && !isMultiSelectionClick) {
872 875 parentVisualizationWidget()->selectionZoneManager().select(
873 876 {selectionZoneItemUnderCursor});
874 877 }
875 878 else if (!selectionZoneItemUnderCursor && !isMultiSelectionClick && isLeftClick) {
876 879 parentVisualizationWidget()->selectionZoneManager().clearSelection();
877 880 }
878 881 else {
879 882 // No selection change
880 883 }
881 884
882 885 if (selectionZoneItemUnderCursor && isLeftClick) {
883 886 selectionZoneItemUnderCursor->setAssociatedEditedZones(
884 887 parentVisualizationWidget()->selectionZoneManager().selectedItems());
885 888 }
886 889 }
887 890
888 891
889 892 impl->m_HasMovedMouse = false;
890 893 VisualizationDragWidget::mousePressEvent(event);
891 894 }
892 895
893 896 void VisualizationGraphWidget::onMouseRelease(QMouseEvent *event) noexcept
894 897 {
895 898 if (impl->m_DrawingZoomRect) {
896 899
897 900 auto axisX = plot().axisRect()->axis(QCPAxis::atBottom);
898 901 auto axisY = plot().axisRect()->axis(QCPAxis::atLeft);
899 902
900 903 auto newAxisXRange = QCPRange{impl->m_DrawingZoomRect->topLeft->coords().x(),
901 904 impl->m_DrawingZoomRect->bottomRight->coords().x()};
902 905
903 906 auto newAxisYRange = QCPRange{impl->m_DrawingZoomRect->topLeft->coords().y(),
904 907 impl->m_DrawingZoomRect->bottomRight->coords().y()};
905 908
906 909 impl->removeDrawingRect(plot());
907 910
908 911 if (newAxisXRange.size() > axisX->range().size() * (ZOOM_BOX_MIN_SIZE / 100.0)
909 912 && newAxisYRange.size() > axisY->range().size() * (ZOOM_BOX_MIN_SIZE / 100.0)) {
910 913 impl->m_ZoomStack.push(qMakePair(axisX->range(), axisY->range()));
911 914 axisX->setRange(newAxisXRange);
912 915 axisY->setRange(newAxisYRange);
913 916
914 917 plot().replot(QCustomPlot::rpQueuedReplot);
915 918 }
916 919 }
917 920
918 921 impl->endDrawingZone(this);
919 922
920 impl->m_IsCalibration = false;
921
922 923 // Selection / Deselection
923 924 auto isSelectionZoneMode
924 925 = sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::SelectionZones;
925 926 if (isSelectionZoneMode) {
926 927 auto isMultiSelectionClick = event->modifiers().testFlag(MULTI_ZONE_SELECTION_MODIFIER);
927 928 auto selectionZoneItemUnderCursor = impl->selectionZoneAt(event->pos(), plot());
928 929 if (selectionZoneItemUnderCursor && event->button() == Qt::LeftButton
929 930 && !impl->m_HasMovedMouse) {
930 931
931 932 auto zonesUnderCursor = impl->selectionZonesAt(event->pos(), plot());
932 933 if (zonesUnderCursor.count() > 1) {
933 934 // There are multiple zones under the mouse.
934 935 // Performs the selection with a selection dialog.
935 936 VisualizationMultiZoneSelectionDialog dialog{this};
936 937 dialog.setZones(zonesUnderCursor);
937 938 dialog.move(mapToGlobal(event->pos() - QPoint(dialog.width() / 2, 20)));
938 939 dialog.activateWindow();
939 940 dialog.raise();
940 941 if (dialog.exec() == QDialog::Accepted) {
941 942 auto selection = dialog.selectedZones();
942 943
943 944 if (!isMultiSelectionClick) {
944 945 parentVisualizationWidget()->selectionZoneManager().clearSelection();
945 946 }
946 947
947 948 for (auto it = selection.cbegin(); it != selection.cend(); ++it) {
948 949 auto zone = it.key();
949 950 auto isSelected = it.value();
950 951 parentVisualizationWidget()->selectionZoneManager().setSelected(zone,
951 952 isSelected);
952 953
953 954 if (isSelected) {
954 955 // Puts the zone on top of the stack so it can be moved or resized
955 956 impl->moveSelectionZoneOnTop(zone, plot());
956 957 }
957 958 }
958 959 }
959 960 }
960 961 else {
961 962 if (!isMultiSelectionClick) {
962 963 parentVisualizationWidget()->selectionZoneManager().select(
963 964 {selectionZoneItemUnderCursor});
964 965 impl->moveSelectionZoneOnTop(selectionZoneItemUnderCursor, plot());
965 966 }
966 967 else {
967 968 parentVisualizationWidget()->selectionZoneManager().setSelected(
968 969 selectionZoneItemUnderCursor, !selectionZoneItemUnderCursor->selected()
969 970 || event->button() == Qt::RightButton);
970 971 }
971 972 }
972 973 }
973 974 else {
974 975 // No selection change
975 976 }
976 977 }
977 978 }
978 979
979 980 void VisualizationGraphWidget::onDataCacheVariableUpdated()
980 981 {
981 982 auto graphRange = ui->widget->xAxis->range();
982 983 auto dateTime = SqpRange{graphRange.lower, graphRange.upper};
983 984
984 985 for (auto &variableEntry : impl->m_VariableToPlotMultiMap) {
985 986 auto variable = variableEntry.first;
986 987 qCDebug(LOG_VisualizationGraphWidget())
987 988 << "TORM: VisualizationGraphWidget::onDataCacheVariableUpdated S" << variable->range();
988 989 qCDebug(LOG_VisualizationGraphWidget())
989 990 << "TORM: VisualizationGraphWidget::onDataCacheVariableUpdated E" << dateTime;
990 991 if (dateTime.contains(variable->range()) || dateTime.intersect(variable->range())) {
991 992 impl->updateData(variableEntry.second, variable->dataSeries(), variable->range());
992 993 }
993 994 }
994 995 }
995 996
996 997 void VisualizationGraphWidget::onUpdateVarDisplaying(std::shared_ptr<Variable> variable,
997 998 const SqpRange &range)
998 999 {
999 1000 auto it = impl->m_VariableToPlotMultiMap.find(variable);
1000 1001 if (it != impl->m_VariableToPlotMultiMap.end()) {
1001 1002 impl->updateData(it->second, variable->dataSeries(), range);
1002 1003 }
1003 1004 }
@@ -1,601 +1,601
1 1 #include "Visualization/VisualizationZoneWidget.h"
2 2
3 3 #include "Visualization/IVisualizationWidgetVisitor.h"
4 4 #include "Visualization/QCustomPlotSynchronizer.h"
5 5 #include "Visualization/VisualizationGraphWidget.h"
6 6 #include "Visualization/VisualizationWidget.h"
7 7 #include "ui_VisualizationZoneWidget.h"
8 8
9 9 #include "Common/MimeTypesDef.h"
10 10 #include "Common/VisualizationDef.h"
11 11
12 12 #include <Data/SqpRange.h>
13 13 #include <Time/TimeController.h>
14 14 #include <Variable/Variable.h>
15 15 #include <Variable/VariableController.h>
16 16
17 17 #include <Visualization/operations/FindVariableOperation.h>
18 18
19 19 #include <DragAndDrop/DragDropGuiController.h>
20 20 #include <QUuid>
21 21 #include <SqpApplication.h>
22 22 #include <cmath>
23 23
24 24 #include <QLayout>
25 25
26 26 Q_LOGGING_CATEGORY(LOG_VisualizationZoneWidget, "VisualizationZoneWidget")
27 27
28 28 namespace {
29 29
30 30 /**
31 31 * Applies a function to all graphs of the zone represented by its layout
32 32 * @param layout the layout that contains graphs
33 33 * @param fun the function to apply to each graph
34 34 */
35 35 template <typename Fun>
36 36 void processGraphs(QLayout &layout, Fun fun)
37 37 {
38 38 for (auto i = 0; i < layout.count(); ++i) {
39 39 if (auto item = layout.itemAt(i)) {
40 40 if (auto visualizationGraphWidget
41 41 = qobject_cast<VisualizationGraphWidget *>(item->widget())) {
42 42 fun(*visualizationGraphWidget);
43 43 }
44 44 }
45 45 }
46 46 }
47 47
48 48 /// Generates a default name for a new graph, according to the number of graphs already displayed in
49 49 /// the zone
50 50 QString defaultGraphName(QLayout &layout)
51 51 {
52 52 QSet<QString> existingNames;
53 53 processGraphs(
54 54 layout, [&existingNames](auto &graphWidget) { existingNames.insert(graphWidget.name()); });
55 55
56 56 int zoneNum = 1;
57 57 QString name;
58 58 do {
59 59 name = QObject::tr("Graph ").append(QString::number(zoneNum));
60 60 ++zoneNum;
61 61 } while (existingNames.contains(name));
62 62
63 63 return name;
64 64 }
65 65
66 66 } // namespace
67 67
68 68 struct VisualizationZoneWidget::VisualizationZoneWidgetPrivate {
69 69
70 70 explicit VisualizationZoneWidgetPrivate()
71 71 : m_SynchronisationGroupId{QUuid::createUuid()},
72 72 m_Synchronizer{std::make_unique<QCustomPlotSynchronizer>()}
73 73 {
74 74 }
75 75 QUuid m_SynchronisationGroupId;
76 76 std::unique_ptr<IGraphSynchronizer> m_Synchronizer;
77 77
78 78 void dropGraph(int index, VisualizationZoneWidget *zoneWidget);
79 79 void dropVariables(const QList<std::shared_ptr<Variable> > &variables, int index,
80 80 VisualizationZoneWidget *zoneWidget);
81 81 };
82 82
83 83 VisualizationZoneWidget::VisualizationZoneWidget(const QString &name, QWidget *parent)
84 84 : VisualizationDragWidget{parent},
85 85 ui{new Ui::VisualizationZoneWidget},
86 86 impl{spimpl::make_unique_impl<VisualizationZoneWidgetPrivate>()}
87 87 {
88 88 ui->setupUi(this);
89 89
90 90 ui->zoneNameLabel->setText(name);
91 91
92 92 ui->dragDropContainer->setPlaceHolderType(DragDropGuiController::PlaceHolderType::Graph);
93 93 ui->dragDropContainer->setMimeType(MIME_TYPE_GRAPH,
94 94 VisualizationDragDropContainer::DropBehavior::Inserted);
95 95 ui->dragDropContainer->setMimeType(
96 96 MIME_TYPE_VARIABLE_LIST, VisualizationDragDropContainer::DropBehavior::InsertedAndMerged);
97 97 ui->dragDropContainer->setMimeType(MIME_TYPE_TIME_RANGE,
98 98 VisualizationDragDropContainer::DropBehavior::Merged);
99 99 ui->dragDropContainer->setMimeType(MIME_TYPE_ZONE,
100 100 VisualizationDragDropContainer::DropBehavior::Forbidden);
101 101 ui->dragDropContainer->setMimeType(MIME_TYPE_SELECTION_ZONE,
102 102 VisualizationDragDropContainer::DropBehavior::Forbidden);
103 103 ui->dragDropContainer->setAcceptMimeDataFunction([this](auto mimeData) {
104 104 return sqpApp->dragDropGuiController().checkMimeDataForVisualization(mimeData,
105 105 ui->dragDropContainer);
106 106 });
107 107
108 108 auto acceptDragWidgetFun = [](auto dragWidget, auto mimeData) {
109 109 if (!mimeData) {
110 110 return false;
111 111 }
112 112
113 113 if (mimeData->hasFormat(MIME_TYPE_VARIABLE_LIST)) {
114 114 auto variables = sqpApp->variableController().variablesForMimeData(
115 115 mimeData->data(MIME_TYPE_VARIABLE_LIST));
116 116
117 117 if (variables.count() != 1) {
118 118 return false;
119 119 }
120 120 auto variable = variables.first();
121 121
122 122 if (auto graphWidget = dynamic_cast<const VisualizationGraphWidget *>(dragWidget)) {
123 123 return graphWidget->canDrop(*variable);
124 124 }
125 125 }
126 126
127 127 return true;
128 128 };
129 129 ui->dragDropContainer->setAcceptDragWidgetFunction(acceptDragWidgetFun);
130 130
131 131 connect(ui->dragDropContainer, &VisualizationDragDropContainer::dropOccuredInContainer, this,
132 132 &VisualizationZoneWidget::dropMimeData);
133 133 connect(ui->dragDropContainer, &VisualizationDragDropContainer::dropOccuredOnWidget, this,
134 134 &VisualizationZoneWidget::dropMimeDataOnGraph);
135 135
136 136 // 'Close' options : widget is deleted when closed
137 137 setAttribute(Qt::WA_DeleteOnClose);
138 138 connect(ui->closeButton, &QToolButton::clicked, this, &VisualizationZoneWidget::close);
139 139 ui->closeButton->setIcon(sqpApp->style()->standardIcon(QStyle::SP_TitleBarCloseButton));
140 140
141 141 // Synchronisation id
142 142 QMetaObject::invokeMethod(&sqpApp->variableController(), "onAddSynchronizationGroupId",
143 143 Qt::QueuedConnection, Q_ARG(QUuid, impl->m_SynchronisationGroupId));
144 144 }
145 145
146 146 VisualizationZoneWidget::~VisualizationZoneWidget()
147 147 {
148 148 delete ui;
149 149 }
150 150
151 151 void VisualizationZoneWidget::setZoneRange(const SqpRange &range)
152 152 {
153 153 if (auto graph = firstGraph()) {
154 154 graph->setGraphRange(range);
155 155 }
156 156 else {
157 157 qCWarning(LOG_VisualizationZoneWidget())
158 158 << tr("setZoneRange:Cannot set the range of an empty zone.");
159 159 }
160 160 }
161 161
162 162 void VisualizationZoneWidget::addGraph(VisualizationGraphWidget *graphWidget)
163 163 {
164 164 // Synchronize new graph with others in the zone
165 165 impl->m_Synchronizer->addGraph(*graphWidget);
166 166
167 167 ui->dragDropContainer->addDragWidget(graphWidget);
168 168 }
169 169
170 170 void VisualizationZoneWidget::insertGraph(int index, VisualizationGraphWidget *graphWidget)
171 171 {
172 172 // Synchronize new graph with others in the zone
173 173 impl->m_Synchronizer->addGraph(*graphWidget);
174 174
175 175 ui->dragDropContainer->insertDragWidget(index, graphWidget);
176 176 }
177 177
178 178 VisualizationGraphWidget *VisualizationZoneWidget::createGraph(std::shared_ptr<Variable> variable)
179 179 {
180 180 return createGraph(variable, -1);
181 181 }
182 182
183 183 VisualizationGraphWidget *VisualizationZoneWidget::createGraph(std::shared_ptr<Variable> variable,
184 184 int index)
185 185 {
186 186 auto graphWidget
187 187 = new VisualizationGraphWidget{defaultGraphName(*ui->dragDropContainer->layout()), this};
188 188
189 189
190 190 // Set graph properties
191 191 graphWidget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::MinimumExpanding);
192 192 graphWidget->setMinimumHeight(GRAPH_MINIMUM_HEIGHT);
193 193
194 194
195 195 // Lambda to synchronize zone widget
196 196 auto synchronizeZoneWidget = [this, graphWidget](const SqpRange &graphRange,
197 197 const SqpRange &oldGraphRange) {
198 198
199 199 auto zoomType = VariableController::getZoomType(graphRange, oldGraphRange);
200 200 auto frameLayout = ui->dragDropContainer->layout();
201 201 for (auto i = 0; i < frameLayout->count(); ++i) {
202 202 auto graphChild
203 203 = dynamic_cast<VisualizationGraphWidget *>(frameLayout->itemAt(i)->widget());
204 204 if (graphChild && (graphChild != graphWidget)) {
205 205
206 206 auto graphChildRange = graphChild->graphRange();
207 207 switch (zoomType) {
208 208 case AcquisitionZoomType::ZoomIn: {
209 209 auto deltaLeft = graphRange.m_TStart - oldGraphRange.m_TStart;
210 210 auto deltaRight = oldGraphRange.m_TEnd - graphRange.m_TEnd;
211 211 graphChildRange.m_TStart += deltaLeft;
212 212 graphChildRange.m_TEnd -= deltaRight;
213 213 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: ZoomIn");
214 214 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: deltaLeft")
215 215 << deltaLeft;
216 216 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: deltaRight")
217 217 << deltaRight;
218 218 qCDebug(LOG_VisualizationZoneWidget())
219 219 << tr("TORM: dt") << graphRange.m_TEnd - graphRange.m_TStart;
220 220
221 221 break;
222 222 }
223 223
224 224 case AcquisitionZoomType::ZoomOut: {
225 225 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: ZoomOut");
226 226 auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
227 227 auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
228 228 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: deltaLeft")
229 229 << deltaLeft;
230 230 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: deltaRight")
231 231 << deltaRight;
232 232 qCDebug(LOG_VisualizationZoneWidget())
233 233 << tr("TORM: dt") << graphRange.m_TEnd - graphRange.m_TStart;
234 234 graphChildRange.m_TStart -= deltaLeft;
235 235 graphChildRange.m_TEnd += deltaRight;
236 236 break;
237 237 }
238 238 case AcquisitionZoomType::PanRight: {
239 239 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: PanRight");
240 240 auto deltaLeft = graphRange.m_TStart - oldGraphRange.m_TStart;
241 241 auto deltaRight = graphRange.m_TEnd - oldGraphRange.m_TEnd;
242 242 graphChildRange.m_TStart += deltaLeft;
243 243 graphChildRange.m_TEnd += deltaRight;
244 244 qCDebug(LOG_VisualizationZoneWidget())
245 245 << tr("TORM: dt") << graphRange.m_TEnd - graphRange.m_TStart;
246 246 break;
247 247 }
248 248 case AcquisitionZoomType::PanLeft: {
249 249 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: PanLeft");
250 250 auto deltaLeft = oldGraphRange.m_TStart - graphRange.m_TStart;
251 251 auto deltaRight = oldGraphRange.m_TEnd - graphRange.m_TEnd;
252 252 graphChildRange.m_TStart -= deltaLeft;
253 253 graphChildRange.m_TEnd -= deltaRight;
254 254 break;
255 255 }
256 256 case AcquisitionZoomType::Unknown: {
257 257 qCDebug(LOG_VisualizationZoneWidget())
258 258 << tr("Impossible to synchronize: zoom type unknown");
259 259 break;
260 260 }
261 261 default:
262 262 qCCritical(LOG_VisualizationZoneWidget())
263 263 << tr("Impossible to synchronize: zoom type not take into account");
264 264 // No action
265 265 break;
266 266 }
267 graphChild->enableAcquisition(false);
268 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: Range before: ")
269 << graphChild->graphRange();
270 qCDebug(LOG_VisualizationZoneWidget()) << tr("TORM: Range after : ")
271 << graphChildRange;
267 graphChild->setFlags(GraphFlag::DisableAll);
268 qCDebug(LOG_VisualizationZoneWidget())
269 << tr("TORM: Range before: ") << graphChild->graphRange();
270 qCDebug(LOG_VisualizationZoneWidget())
271 << tr("TORM: Range after : ") << graphChildRange;
272 272 qCDebug(LOG_VisualizationZoneWidget())
273 273 << tr("TORM: child dt") << graphChildRange.m_TEnd - graphChildRange.m_TStart;
274 274 graphChild->setGraphRange(graphChildRange);
275 graphChild->enableAcquisition(true);
275 graphChild->setFlags(GraphFlag::EnableAll);
276 276 }
277 277 }
278 278 };
279 279
280 280 // connection for synchronization
281 281 connect(graphWidget, &VisualizationGraphWidget::synchronize, synchronizeZoneWidget);
282 282 connect(graphWidget, &VisualizationGraphWidget::variableAdded, this,
283 283 &VisualizationZoneWidget::onVariableAdded);
284 284 connect(graphWidget, &VisualizationGraphWidget::variableAboutToBeRemoved, this,
285 285 &VisualizationZoneWidget::onVariableAboutToBeRemoved);
286 286
287 287 auto range = SqpRange{};
288 288 if (auto firstGraph = this->firstGraph()) {
289 289 // Case of a new graph in a existant zone
290 290 range = firstGraph->graphRange();
291 291 }
292 292 else {
293 293 // Case of a new graph as the first of the zone
294 294 range = variable->range();
295 295 }
296 296
297 297 this->insertGraph(index, graphWidget);
298 298
299 299 graphWidget->addVariable(variable, range);
300 300 graphWidget->setYRange(variable);
301 301
302 302 return graphWidget;
303 303 }
304 304
305 305 VisualizationGraphWidget *
306 306 VisualizationZoneWidget::createGraph(const QList<std::shared_ptr<Variable> > variables, int index)
307 307 {
308 308 if (variables.isEmpty()) {
309 309 return nullptr;
310 310 }
311 311
312 312 auto graphWidget = createGraph(variables.first(), index);
313 313 for (auto variableIt = variables.cbegin() + 1; variableIt != variables.cend(); ++variableIt) {
314 314 graphWidget->addVariable(*variableIt, graphWidget->graphRange());
315 315 }
316 316
317 317 return graphWidget;
318 318 }
319 319
320 320 VisualizationGraphWidget *VisualizationZoneWidget::firstGraph() const
321 321 {
322 322 VisualizationGraphWidget *firstGraph = nullptr;
323 323 auto layout = ui->dragDropContainer->layout();
324 324 if (layout->count() > 0) {
325 325 if (auto visualizationGraphWidget
326 326 = qobject_cast<VisualizationGraphWidget *>(layout->itemAt(0)->widget())) {
327 327 firstGraph = visualizationGraphWidget;
328 328 }
329 329 }
330 330
331 331 return firstGraph;
332 332 }
333 333
334 334 void VisualizationZoneWidget::accept(IVisualizationWidgetVisitor *visitor)
335 335 {
336 336 if (visitor) {
337 337 visitor->visitEnter(this);
338 338
339 339 // Apply visitor to graph children: widgets different from graphs are not visited (no
340 340 // action)
341 341 processGraphs(
342 342 *ui->dragDropContainer->layout(),
343 343 [visitor](VisualizationGraphWidget &graphWidget) { graphWidget.accept(visitor); });
344 344
345 345 visitor->visitLeave(this);
346 346 }
347 347 else {
348 348 qCCritical(LOG_VisualizationZoneWidget()) << tr("Can't visit widget : the visitor is null");
349 349 }
350 350 }
351 351
352 352 bool VisualizationZoneWidget::canDrop(const Variable &variable) const
353 353 {
354 354 // A tab can always accomodate a variable
355 355 Q_UNUSED(variable);
356 356 return true;
357 357 }
358 358
359 359 bool VisualizationZoneWidget::contains(const Variable &variable) const
360 360 {
361 361 Q_UNUSED(variable);
362 362 return false;
363 363 }
364 364
365 365 QString VisualizationZoneWidget::name() const
366 366 {
367 367 return ui->zoneNameLabel->text();
368 368 }
369 369
370 370 QMimeData *VisualizationZoneWidget::mimeData(const QPoint &position) const
371 371 {
372 372 Q_UNUSED(position);
373 373
374 374 auto mimeData = new QMimeData;
375 375 mimeData->setData(MIME_TYPE_ZONE, QByteArray{});
376 376
377 377 if (auto firstGraph = this->firstGraph()) {
378 378 auto timeRangeData = TimeController::mimeDataForTimeRange(firstGraph->graphRange());
379 379 mimeData->setData(MIME_TYPE_TIME_RANGE, timeRangeData);
380 380 }
381 381
382 382 return mimeData;
383 383 }
384 384
385 385 bool VisualizationZoneWidget::isDragAllowed() const
386 386 {
387 387 return true;
388 388 }
389 389
390 390 void VisualizationZoneWidget::notifyMouseMoveInGraph(const QPointF &graphPosition,
391 391 const QPointF &plotPosition,
392 392 VisualizationGraphWidget *graphWidget)
393 393 {
394 394 processGraphs(*ui->dragDropContainer->layout(), [&graphPosition, &plotPosition, &graphWidget](
395 395 VisualizationGraphWidget &processedGraph) {
396 396
397 397 switch (sqpApp->plotsCursorMode()) {
398 398 case SqpApplication::PlotsCursorMode::Vertical:
399 399 processedGraph.removeHorizontalCursor();
400 400 processedGraph.addVerticalCursorAtViewportPosition(graphPosition.x());
401 401 break;
402 402 case SqpApplication::PlotsCursorMode::Temporal:
403 403 processedGraph.addVerticalCursor(plotPosition.x());
404 404 processedGraph.removeHorizontalCursor();
405 405 break;
406 406 case SqpApplication::PlotsCursorMode::Horizontal:
407 407 processedGraph.removeVerticalCursor();
408 408 if (&processedGraph == graphWidget) {
409 409 processedGraph.addHorizontalCursorAtViewportPosition(graphPosition.y());
410 410 }
411 411 else {
412 412 processedGraph.removeHorizontalCursor();
413 413 }
414 414 break;
415 415 case SqpApplication::PlotsCursorMode::Cross:
416 416 if (&processedGraph == graphWidget) {
417 417 processedGraph.addVerticalCursorAtViewportPosition(graphPosition.x());
418 418 processedGraph.addHorizontalCursorAtViewportPosition(graphPosition.y());
419 419 }
420 420 else {
421 421 processedGraph.removeHorizontalCursor();
422 422 processedGraph.removeVerticalCursor();
423 423 }
424 424 break;
425 425 case SqpApplication::PlotsCursorMode::NoCursor:
426 426 processedGraph.removeHorizontalCursor();
427 427 processedGraph.removeVerticalCursor();
428 428 break;
429 429 }
430 430
431 431
432 432 });
433 433 }
434 434
435 435 void VisualizationZoneWidget::notifyMouseLeaveGraph(VisualizationGraphWidget *graphWidget)
436 436 {
437 437 processGraphs(*ui->dragDropContainer->layout(), [](VisualizationGraphWidget &processedGraph) {
438 438 processedGraph.removeHorizontalCursor();
439 439 processedGraph.removeVerticalCursor();
440 440 });
441 441 }
442 442
443 443 void VisualizationZoneWidget::closeEvent(QCloseEvent *event)
444 444 {
445 445 // Closes graphs in the zone
446 446 processGraphs(*ui->dragDropContainer->layout(),
447 447 [](VisualizationGraphWidget &graphWidget) { graphWidget.close(); });
448 448
449 449 // Delete synchronization group from variable controller
450 450 QMetaObject::invokeMethod(&sqpApp->variableController(), "onRemoveSynchronizationGroupId",
451 451 Qt::QueuedConnection, Q_ARG(QUuid, impl->m_SynchronisationGroupId));
452 452
453 453 QWidget::closeEvent(event);
454 454 }
455 455
456 456 void VisualizationZoneWidget::onVariableAdded(std::shared_ptr<Variable> variable)
457 457 {
458 458 QMetaObject::invokeMethod(&sqpApp->variableController(), "onAddSynchronized",
459 459 Qt::QueuedConnection, Q_ARG(std::shared_ptr<Variable>, variable),
460 460 Q_ARG(QUuid, impl->m_SynchronisationGroupId));
461 461 }
462 462
463 463 void VisualizationZoneWidget::onVariableAboutToBeRemoved(std::shared_ptr<Variable> variable)
464 464 {
465 465 QMetaObject::invokeMethod(&sqpApp->variableController(), "desynchronize", Qt::QueuedConnection,
466 466 Q_ARG(std::shared_ptr<Variable>, variable),
467 467 Q_ARG(QUuid, impl->m_SynchronisationGroupId));
468 468 }
469 469
470 470 void VisualizationZoneWidget::dropMimeData(int index, const QMimeData *mimeData)
471 471 {
472 472 if (mimeData->hasFormat(MIME_TYPE_GRAPH)) {
473 473 impl->dropGraph(index, this);
474 474 }
475 475 else if (mimeData->hasFormat(MIME_TYPE_VARIABLE_LIST)) {
476 476 auto variables = sqpApp->variableController().variablesForMimeData(
477 477 mimeData->data(MIME_TYPE_VARIABLE_LIST));
478 478 impl->dropVariables(variables, index, this);
479 479 }
480 480 else {
481 481 qCWarning(LOG_VisualizationZoneWidget())
482 482 << tr("VisualizationZoneWidget::dropMimeData, unknown MIME data received.");
483 483 }
484 484 }
485 485
486 486 void VisualizationZoneWidget::dropMimeDataOnGraph(VisualizationDragWidget *dragWidget,
487 487 const QMimeData *mimeData)
488 488 {
489 489 auto graphWidget = qobject_cast<VisualizationGraphWidget *>(dragWidget);
490 490 if (!graphWidget) {
491 491 qCWarning(LOG_VisualizationZoneWidget())
492 492 << tr("VisualizationZoneWidget::dropMimeDataOnGraph, dropping in an unknown widget, "
493 493 "drop aborted");
494 494 Q_ASSERT(false);
495 495 return;
496 496 }
497 497
498 498 if (mimeData->hasFormat(MIME_TYPE_VARIABLE_LIST)) {
499 499 auto variables = sqpApp->variableController().variablesForMimeData(
500 500 mimeData->data(MIME_TYPE_VARIABLE_LIST));
501 501 for (const auto &var : variables) {
502 502 graphWidget->addVariable(var, graphWidget->graphRange());
503 503 }
504 504 }
505 505 else if (mimeData->hasFormat(MIME_TYPE_TIME_RANGE)) {
506 506 auto range = TimeController::timeRangeForMimeData(mimeData->data(MIME_TYPE_TIME_RANGE));
507 507 graphWidget->setGraphRange(range);
508 508 }
509 509 else {
510 510 qCWarning(LOG_VisualizationZoneWidget())
511 511 << tr("VisualizationZoneWidget::dropMimeDataOnGraph, unknown MIME data received.");
512 512 }
513 513 }
514 514
515 515 void VisualizationZoneWidget::VisualizationZoneWidgetPrivate::dropGraph(
516 516 int index, VisualizationZoneWidget *zoneWidget)
517 517 {
518 518 auto &helper = sqpApp->dragDropGuiController();
519 519
520 520 auto graphWidget = qobject_cast<VisualizationGraphWidget *>(helper.getCurrentDragWidget());
521 521 if (!graphWidget) {
522 522 qCWarning(LOG_VisualizationZoneWidget())
523 523 << tr("VisualizationZoneWidget::dropGraph, drop aborted, the dropped graph is not "
524 524 "found or invalid.");
525 525 Q_ASSERT(false);
526 526 return;
527 527 }
528 528
529 529 auto parentDragDropContainer
530 530 = qobject_cast<VisualizationDragDropContainer *>(graphWidget->parentWidget());
531 531 if (!parentDragDropContainer) {
532 532 qCWarning(LOG_VisualizationZoneWidget())
533 533 << tr("VisualizationZoneWidget::dropGraph, drop aborted, the parent container of "
534 534 "the dropped graph is not found.");
535 535 Q_ASSERT(false);
536 536 return;
537 537 }
538 538
539 539 const auto &variables = graphWidget->variables();
540 540
541 541 if (parentDragDropContainer != zoneWidget->ui->dragDropContainer && !variables.isEmpty()) {
542 542 // The drop didn't occur in the same zone
543 543
544 544 // Abort the requests for the variables (if any)
545 545 // Commented, because it's not sure if it's needed or not
546 546 // for (const auto& var : variables)
547 547 //{
548 548 // sqpApp->variableController().onAbortProgressRequested(var);
549 549 //}
550 550
551 551 auto previousParentZoneWidget = graphWidget->parentZoneWidget();
552 552 auto nbGraph = parentDragDropContainer->countDragWidget();
553 553 if (nbGraph == 1) {
554 554 // This is the only graph in the previous zone, close the zone
555 555 helper.delayedCloseWidget(previousParentZoneWidget);
556 556 }
557 557 else {
558 558 // Close the graph
559 559 helper.delayedCloseWidget(graphWidget);
560 560 }
561 561
562 562 // Creates the new graph in the zone
563 563 auto newGraphWidget = zoneWidget->createGraph(variables, index);
564 564 newGraphWidget->addSelectionZones(graphWidget->selectionZoneRanges());
565 565 }
566 566 else {
567 567 // The drop occurred in the same zone or the graph is empty
568 568 // Simple move of the graph, no variable operation associated
569 569 parentDragDropContainer->layout()->removeWidget(graphWidget);
570 570
571 571 if (variables.isEmpty() && parentDragDropContainer != zoneWidget->ui->dragDropContainer) {
572 572 // The graph is empty and dropped in a different zone.
573 573 // Take the range of the first graph in the zone (if existing).
574 574 auto layout = zoneWidget->ui->dragDropContainer->layout();
575 575 if (layout->count() > 0) {
576 576 if (auto visualizationGraphWidget
577 577 = qobject_cast<VisualizationGraphWidget *>(layout->itemAt(0)->widget())) {
578 578 graphWidget->setGraphRange(visualizationGraphWidget->graphRange());
579 579 }
580 580 }
581 581 }
582 582
583 583 zoneWidget->ui->dragDropContainer->insertDragWidget(index, graphWidget);
584 584 }
585 585 }
586 586
587 587 void VisualizationZoneWidget::VisualizationZoneWidgetPrivate::dropVariables(
588 588 const QList<std::shared_ptr<Variable> > &variables, int index,
589 589 VisualizationZoneWidget *zoneWidget)
590 590 {
591 591 // Note: the AcceptMimeDataFunction (set on the drop container) ensure there is a single and
592 592 // compatible variable here
593 593 if (variables.count() > 1) {
594 594 qCWarning(LOG_VisualizationZoneWidget())
595 595 << tr("VisualizationZoneWidget::dropVariables, dropping multiple variables, operation "
596 596 "aborted.");
597 597 return;
598 598 }
599 599
600 600 zoneWidget->createGraph(variables, index);
601 601 }
@@ -1,71 +1,73
1 1 #include "Visualization/operations/RescaleAxeOperation.h"
2 2 #include "Visualization/VisualizationGraphWidget.h"
3 3
4 4 Q_LOGGING_CATEGORY(LOG_RescaleAxeOperation, "RescaleAxeOperation")
5 5
6 6 struct RescaleAxeOperation::RescaleAxeOperationPrivate {
7 7 explicit RescaleAxeOperationPrivate(std::shared_ptr<Variable> variable, const SqpRange &range)
8 8 : m_Variable{variable}, m_Range{range}
9 9 {
10 10 }
11 11
12 12 std::shared_ptr<Variable> m_Variable;
13 13 SqpRange m_Range;
14 14 };
15 15
16 16 RescaleAxeOperation::RescaleAxeOperation(std::shared_ptr<Variable> variable, const SqpRange &range)
17 17 : impl{spimpl::make_unique_impl<RescaleAxeOperationPrivate>(variable, range)}
18 18 {
19 19 }
20 20
21 21 void RescaleAxeOperation::visitEnter(VisualizationWidget *widget)
22 22 {
23 23 // VisualizationWidget is not intended to contain a variable
24 24 Q_UNUSED(widget)
25 25 }
26 26
27 27 void RescaleAxeOperation::visitLeave(VisualizationWidget *widget)
28 28 {
29 29 // VisualizationWidget is not intended to contain a variable
30 30 Q_UNUSED(widget)
31 31 }
32 32
33 33 void RescaleAxeOperation::visitEnter(VisualizationTabWidget *tabWidget)
34 34 {
35 35 // VisualizationTabWidget is not intended to contain a variable
36 36 Q_UNUSED(tabWidget)
37 37 }
38 38
39 39 void RescaleAxeOperation::visitLeave(VisualizationTabWidget *tabWidget)
40 40 {
41 41 // VisualizationTabWidget is not intended to contain a variable
42 42 Q_UNUSED(tabWidget)
43 43 }
44 44
45 45 void RescaleAxeOperation::visitEnter(VisualizationZoneWidget *zoneWidget)
46 46 {
47 47 // VisualizationZoneWidget is not intended to contain a variable
48 48 Q_UNUSED(zoneWidget)
49 49 }
50 50
51 51 void RescaleAxeOperation::visitLeave(VisualizationZoneWidget *zoneWidget)
52 52 {
53 53 // VisualizationZoneWidget is not intended to contain a variable
54 54 Q_UNUSED(zoneWidget)
55 55 }
56 56
57 57 void RescaleAxeOperation::visit(VisualizationGraphWidget *graphWidget)
58 58 {
59 59 if (graphWidget) {
60 60 // If the widget contains the variable, rescale it
61 61 if (impl->m_Variable && graphWidget->contains(*impl->m_Variable)) {
62 graphWidget->enableAcquisition(false);
62 // During rescale, acquisition for the graph is disabled but synchronization is still
63 // enabled
64 graphWidget->setFlags(GraphFlag::EnableSynchronization);
63 65 graphWidget->setGraphRange(impl->m_Range);
64 graphWidget->enableAcquisition(true);
66 graphWidget->setFlags(GraphFlag::EnableAll);
65 67 }
66 68 }
67 69 else {
68 70 qCCritical(LOG_RescaleAxeOperation(),
69 71 "Can't visit VisualizationGraphWidget : the widget is null");
70 72 }
71 73 }
@@ -1,109 +1,118
1 1 #include "FuzzingDefs.h"
2 2
3 3 const QString ACQUISITION_TIMEOUT_PROPERTY = QStringLiteral("acquisitionTimeout");
4 4 const QString NB_MAX_OPERATIONS_PROPERTY = QStringLiteral("component");
5 5 const QString NB_MAX_SYNC_GROUPS_PROPERTY = QStringLiteral("nbSyncGroups");
6 6 const QString NB_MAX_VARIABLES_PROPERTY = QStringLiteral("nbMaxVariables");
7 7 const QString AVAILABLE_OPERATIONS_PROPERTY = QStringLiteral("availableOperations");
8 8 const QString CACHE_TOLERANCE_PROPERTY = QStringLiteral("cacheTolerance");
9 9 const QString INITIAL_RANGE_PROPERTY = QStringLiteral("initialRange");
10 10 const QString MAX_RANGE_PROPERTY = QStringLiteral("maxRange");
11 11 const QString METADATA_POOL_PROPERTY = QStringLiteral("metadataPool");
12 12 const QString PROVIDER_PROPERTY = QStringLiteral("provider");
13 13 const QString OPERATION_DELAY_BOUNDS_PROPERTY = QStringLiteral("operationDelays");
14 14 const QString VALIDATORS_PROPERTY = QStringLiteral("validators");
15 15 const QString VALIDATION_FREQUENCY_BOUNDS_PROPERTY = QStringLiteral("validationFrequencyBounds");
16 16
17 17 // //////////// //
18 18 // FuzzingState //
19 19 // //////////// //
20 20
21 21 const SyncGroup &FuzzingState::syncGroup(SyncGroupId id) const
22 22 {
23 23 return m_SyncGroupsPool.at(id);
24 24 }
25 25
26 26 SyncGroup &FuzzingState::syncGroup(SyncGroupId id)
27 27 {
28 28 return m_SyncGroupsPool.at(id);
29 29 }
30 30
31 31 const VariableState &FuzzingState::variableState(VariableId id) const
32 32 {
33 33 return m_VariablesPool.at(id);
34 34 }
35 35
36 36 VariableState &FuzzingState::variableState(VariableId id)
37 37 {
38 38 return m_VariablesPool.at(id);
39 39 }
40 40
41 41 SyncGroupId FuzzingState::syncGroupId(VariableId variableId) const
42 42 {
43 43 auto end = m_SyncGroupsPool.cend();
44 44 auto it
45 45 = std::find_if(m_SyncGroupsPool.cbegin(), end, [&variableId](const auto &syncGroupEntry) {
46 46 const auto &syncGroup = syncGroupEntry.second;
47 47 return syncGroup.m_Variables.find(variableId) != syncGroup.m_Variables.end();
48 48 });
49 49
50 50 return it != end ? it->first : SyncGroupId{};
51 51 }
52 52
53 53 std::vector<SyncGroupId> FuzzingState::syncGroupsIds() const
54 54 {
55 55 std::vector<SyncGroupId> result{};
56 56
57 57 for (const auto &entry : m_SyncGroupsPool) {
58 58 result.push_back(entry.first);
59 59 }
60 60
61 61 return result;
62 62 }
63 63
64 64 void FuzzingState::synchronizeVariable(VariableId variableId, SyncGroupId syncGroupId)
65 65 {
66 66 if (syncGroupId.isNull()) {
67 67 return;
68 68 }
69 69
70 // Registers variable into sync group: if it's the first variable, sets the variable range as
71 // the sync group range
70 // Registers variable into sync group
72 71 auto &syncGroup = m_SyncGroupsPool.at(syncGroupId);
72 auto &variableState = m_VariablesPool.at(variableId);
73 73 syncGroup.m_Variables.insert(variableId);
74 74 if (syncGroup.m_Variables.size() == 1) {
75 auto &variableState = m_VariablesPool.at(variableId);
75 // If it's the first variable, sets the variable range as the sync group range
76 76 syncGroup.m_Range = variableState.m_Range;
77 77 }
78 else {
79 // If a variable is added to an existing group, sets its range to the group's range
80 variableState.m_Range = syncGroup.m_Range;
81 }
78 82 }
79 83
80 84 void FuzzingState::desynchronizeVariable(VariableId variableId, SyncGroupId syncGroupId)
81 85 {
82 86 if (syncGroupId.isNull()) {
83 87 return;
84 88 }
85 89
86 90 // Unregisters variable from sync group: if there is no more variable in the group, resets the
87 91 // range
88 92 auto &syncGroup = m_SyncGroupsPool.at(syncGroupId);
89 93 syncGroup.m_Variables.erase(variableId);
90 94 if (syncGroup.m_Variables.empty()) {
91 95 syncGroup.m_Range = INVALID_RANGE;
92 96 }
93 97 }
94 98
95 99 void FuzzingState::updateRanges(VariableId variableId, const SqpRange &newRange)
96 100 {
97 101 auto syncGroupId = this->syncGroupId(variableId);
98 102
99 103 // Retrieves the variables to update:
100 // - if the variable is synchronized to others, updates all synchronized variables
104 // - if the variable is synchronized to others, updates the range of the group and of all
105 // synchronized variables
101 106 // - otherwise, updates only the variable
102 auto variablesToUpdate = syncGroupId.isNull() ? std::set<VariableId>{variableId}
103 : m_SyncGroupsPool.at(syncGroupId).m_Variables;
104
105 // Sets new range
106 for (const auto &variableId : variablesToUpdate) {
107 if (syncGroupId.isNull()) {
107 108 m_VariablesPool.at(variableId).m_Range = newRange;
108 109 }
110 else {
111 auto &syncGroup = m_SyncGroupsPool.at(syncGroupId);
112 syncGroup.m_Range = newRange;
113
114 for (const auto &variableId : syncGroup.m_Variables) {
115 m_VariablesPool.at(variableId).m_Range = newRange;
116 }
117 }
109 118 }
@@ -1,265 +1,268
1 1 #include "FuzzingOperations.h"
2 2 #include "FuzzingUtils.h"
3 3
4 4 #include <Data/IDataProvider.h>
5 5
6 6 #include <Variable/Variable.h>
7 7 #include <Variable/VariableController.h>
8 8
9 9 #include <QUuid>
10 10
11 11 #include <functional>
12 12
13 13 Q_LOGGING_CATEGORY(LOG_FuzzingOperations, "FuzzingOperations")
14 14
15 15 namespace {
16 16
17 17 struct CreateOperation : public IFuzzingOperation {
18 18 bool canExecute(VariableId variableId, const FuzzingState &fuzzingState) const override
19 19 {
20 20 // A variable can be created only if it doesn't exist yet
21 21 return fuzzingState.variableState(variableId).m_Variable == nullptr;
22 22 }
23 23
24 24 void execute(VariableId variableId, FuzzingState &fuzzingState,
25 25 VariableController &variableController,
26 26 const Properties &properties) const override
27 27 {
28 28 // Retrieves metadata pool from properties, and choose one of the metadata entries to
29 29 // associate it with the variable
30 30 auto metaDataPool = properties.value(METADATA_POOL_PROPERTY).value<MetadataPool>();
31 31 auto variableMetadata = RandomGenerator::instance().randomChoice(metaDataPool);
32 32
33 33 // Retrieves provider
34 34 auto variableProvider
35 35 = properties.value(PROVIDER_PROPERTY).value<std::shared_ptr<IDataProvider> >();
36 36
37 37 auto variableName = QString{"Var_%1"}.arg(QUuid::createUuid().toString());
38 38 qCInfo(LOG_FuzzingOperations()).noquote() << "Creating variable" << variableName
39 39 << "(metadata:" << variableMetadata << ")...";
40 40
41 41 auto newVariable
42 42 = variableController.createVariable(variableName, variableMetadata, variableProvider);
43 43
44 44 // Updates variable's state
45 45 auto &variableState = fuzzingState.variableState(variableId);
46 46 variableState.m_Range = properties.value(INITIAL_RANGE_PROPERTY).value<SqpRange>();
47 47 std::swap(variableState.m_Variable, newVariable);
48 48 }
49 49 };
50 50
51 51 struct DeleteOperation : public IFuzzingOperation {
52 52 bool canExecute(VariableId variableId, const FuzzingState &fuzzingState) const override
53 53 {
54 54 // A variable can be delete only if it exists
55 55 return fuzzingState.variableState(variableId).m_Variable != nullptr;
56 56 }
57 57
58 58 void execute(VariableId variableId, FuzzingState &fuzzingState,
59 59 VariableController &variableController, const Properties &) const override
60 60 {
61 61 auto &variableState = fuzzingState.variableState(variableId);
62 62
63 63 qCInfo(LOG_FuzzingOperations()).noquote() << "Deleting variable"
64 64 << variableState.m_Variable->name() << "...";
65 65 variableController.deleteVariable(variableState.m_Variable);
66 66
67 67 // Updates variable's state
68 68 variableState.m_Range = INVALID_RANGE;
69 69 variableState.m_Variable = nullptr;
70 70
71 71 // Desynchronizes the variable if it was in a sync group
72 72 auto syncGroupId = fuzzingState.syncGroupId(variableId);
73 73 fuzzingState.desynchronizeVariable(variableId, syncGroupId);
74 74 }
75 75 };
76 76
77 77 /**
78 78 * Defines a move operation through a range.
79 79 *
80 80 * A move operation is determined by three functions:
81 81 * - Two 'move' functions, used to indicate in which direction the beginning and the end of a range
82 82 * are going during the operation. These functions will be:
83 83 * -- {<- / <-} for pan left
84 84 * -- {-> / ->} for pan right
85 85 * -- {-> / <-} for zoom in
86 86 * -- {<- / ->} for zoom out
87 87 * - One 'max move' functions, used to compute the max delta at which the operation can move a
88 88 * range, according to a max range. For exemple, for a range of {1, 5} and a max range of {0, 10},
89 89 * max deltas will be:
90 90 * -- {0, 4} for pan left
91 91 * -- {6, 10} for pan right
92 92 * -- {3, 3} for zoom in
93 93 * -- {0, 6} for zoom out (same spacing left and right)
94 94 */
95 95 struct MoveOperation : public IFuzzingOperation {
96 96 using MoveFunction = std::function<double(double currentValue, double maxValue)>;
97 97 using MaxMoveFunction = std::function<double(const SqpRange &range, const SqpRange &maxRange)>;
98 98
99 99 explicit MoveOperation(MoveFunction rangeStartMoveFun, MoveFunction rangeEndMoveFun,
100 100 MaxMoveFunction maxMoveFun,
101 101 const QString &label = QStringLiteral("Move operation"))
102 102 : m_RangeStartMoveFun{std::move(rangeStartMoveFun)},
103 103 m_RangeEndMoveFun{std::move(rangeEndMoveFun)},
104 104 m_MaxMoveFun{std::move(maxMoveFun)},
105 105 m_Label{label}
106 106 {
107 107 }
108 108
109 109 bool canExecute(VariableId variableId, const FuzzingState &fuzzingState) const override
110 110 {
111 111 return fuzzingState.variableState(variableId).m_Variable != nullptr;
112 112 }
113 113
114 114 void execute(VariableId variableId, FuzzingState &fuzzingState,
115 115 VariableController &variableController,
116 116 const Properties &properties) const override
117 117 {
118 118 auto &variableState = fuzzingState.variableState(variableId);
119 119 auto variable = variableState.m_Variable;
120 120
121 121 // Gets the max range defined
122 122 auto maxRange = properties.value(MAX_RANGE_PROPERTY, QVariant::fromValue(INVALID_RANGE))
123 123 .value<SqpRange>();
124 124 auto variableRange = variableState.m_Range;
125 125
126 126 if (maxRange == INVALID_RANGE || variableRange.m_TStart < maxRange.m_TStart
127 127 || variableRange.m_TEnd > maxRange.m_TEnd) {
128 128 qCWarning(LOG_FuzzingOperations()) << "Can't execute operation: invalid max range";
129 129 return;
130 130 }
131 131
132 132 // Computes the max delta at which the variable can move, up to the limits of the max range
133 133 auto deltaMax = m_MaxMoveFun(variableRange, maxRange);
134 134
135 135 // Generates random delta that will be used to move variable
136 136 auto delta = RandomGenerator::instance().generateDouble(0, deltaMax);
137 137
138 138 // Moves variable to its new range
139 139 auto isSynchronized = !fuzzingState.syncGroupId(variableId).isNull();
140 140 auto newVariableRange = SqpRange{m_RangeStartMoveFun(variableRange.m_TStart, delta),
141 141 m_RangeEndMoveFun(variableRange.m_TEnd, delta)};
142 142 qCInfo(LOG_FuzzingOperations()).noquote() << "Performing" << m_Label << "on"
143 143 << variable->name() << "(from" << variableRange
144 144 << "to" << newVariableRange << ")...";
145 145 variableController.onRequestDataLoading({variable}, newVariableRange, isSynchronized);
146 146
147 147 // Updates state
148 148 fuzzingState.updateRanges(variableId, newVariableRange);
149 149 }
150 150
151 151 MoveFunction m_RangeStartMoveFun;
152 152 MoveFunction m_RangeEndMoveFun;
153 153 MaxMoveFunction m_MaxMoveFun;
154 154 QString m_Label;
155 155 };
156 156
157 157 struct SynchronizeOperation : public IFuzzingOperation {
158 158 bool canExecute(VariableId variableId, const FuzzingState &fuzzingState) const override
159 159 {
160 160 auto variable = fuzzingState.variableState(variableId).m_Variable;
161 161 return variable != nullptr && !fuzzingState.m_SyncGroupsPool.empty()
162 162 && fuzzingState.syncGroupId(variableId).isNull();
163 163 }
164 164
165 165 void execute(VariableId variableId, FuzzingState &fuzzingState,
166 166 VariableController &variableController, const Properties &) const override
167 167 {
168 168 auto &variableState = fuzzingState.variableState(variableId);
169 169
170 170 // Chooses a random synchronization group and adds the variable into sync group
171 171 auto syncGroupId = RandomGenerator::instance().randomChoice(fuzzingState.syncGroupsIds());
172 172 qCInfo(LOG_FuzzingOperations()).noquote() << "Adding" << variableState.m_Variable->name()
173 173 << "into synchronization group" << syncGroupId
174 174 << "...";
175 175 variableController.onAddSynchronized(variableState.m_Variable, syncGroupId);
176 176
177 177 // Updates state
178 178 fuzzingState.synchronizeVariable(variableId, syncGroupId);
179
180 variableController.onRequestDataLoading({variableState.m_Variable}, variableState.m_Range,
181 false);
179 182 }
180 183 };
181 184
182 185 struct DesynchronizeOperation : public IFuzzingOperation {
183 186 bool canExecute(VariableId variableId, const FuzzingState &fuzzingState) const override
184 187 {
185 188 auto variable = fuzzingState.variableState(variableId).m_Variable;
186 189 return variable != nullptr && !fuzzingState.syncGroupId(variableId).isNull();
187 190 }
188 191
189 192 void execute(VariableId variableId, FuzzingState &fuzzingState,
190 193 VariableController &variableController, const Properties &) const override
191 194 {
192 195 auto &variableState = fuzzingState.variableState(variableId);
193 196
194 197 // Gets the sync group of the variable
195 198 auto syncGroupId = fuzzingState.syncGroupId(variableId);
196 199
197 200 qCInfo(LOG_FuzzingOperations()).noquote() << "Removing" << variableState.m_Variable->name()
198 201 << "from synchronization group" << syncGroupId
199 202 << "...";
200 variableController.onAddSynchronized(variableState.m_Variable, syncGroupId);
203 variableController.desynchronize(variableState.m_Variable, syncGroupId);
201 204
202 205 // Updates state
203 206 fuzzingState.desynchronizeVariable(variableId, syncGroupId);
204 207 }
205 208 };
206 209
207 210 struct UnknownOperation : public IFuzzingOperation {
208 211 bool canExecute(VariableId, const FuzzingState &) const override { return false; }
209 212
210 213 void execute(VariableId, FuzzingState &, VariableController &,
211 214 const Properties &) const override
212 215 {
213 216 }
214 217 };
215 218
216 219 } // namespace
217 220
218 221 std::unique_ptr<IFuzzingOperation> FuzzingOperationFactory::create(FuzzingOperationType type)
219 222 {
220 223 switch (type) {
221 224 case FuzzingOperationType::CREATE:
222 225 return std::make_unique<CreateOperation>();
223 226 case FuzzingOperationType::DELETE:
224 227 return std::make_unique<DeleteOperation>();
225 228 case FuzzingOperationType::PAN_LEFT:
226 229 return std::make_unique<MoveOperation>(
227 230 std::minus<double>(), std::minus<double>(),
228 231 [](const SqpRange &range, const SqpRange &maxRange) {
229 232 return range.m_TStart - maxRange.m_TStart;
230 233 },
231 234 QStringLiteral("Pan left operation"));
232 235 case FuzzingOperationType::PAN_RIGHT:
233 236 return std::make_unique<MoveOperation>(
234 237 std::plus<double>(), std::plus<double>(),
235 238 [](const SqpRange &range, const SqpRange &maxRange) {
236 239 return maxRange.m_TEnd - range.m_TEnd;
237 240 },
238 241 QStringLiteral("Pan right operation"));
239 242 case FuzzingOperationType::ZOOM_IN:
240 243 return std::make_unique<MoveOperation>(
241 244 std::plus<double>(), std::minus<double>(),
242 245 [](const SqpRange &range, const SqpRange &maxRange) {
243 246 Q_UNUSED(maxRange)
244 247 return range.m_TEnd - (range.m_TStart + range.m_TEnd) / 2.;
245 248 },
246 249 QStringLiteral("Zoom in operation"));
247 250 case FuzzingOperationType::ZOOM_OUT:
248 251 return std::make_unique<MoveOperation>(
249 252 std::minus<double>(), std::plus<double>(),
250 253 [](const SqpRange &range, const SqpRange &maxRange) {
251 254 return std::min(range.m_TStart - maxRange.m_TStart,
252 255 maxRange.m_TEnd - range.m_TEnd);
253 256 },
254 257 QStringLiteral("Zoom out operation"));
255 258 case FuzzingOperationType::SYNCHRONIZE:
256 259 return std::make_unique<SynchronizeOperation>();
257 260 case FuzzingOperationType::DESYNCHRONIZE:
258 261 return std::make_unique<DesynchronizeOperation>();
259 262 default:
260 263 // Default case returns unknown operation
261 264 break;
262 265 }
263 266
264 267 return std::make_unique<UnknownOperation>();
265 268 }
@@ -1,228 +1,228
1 1 #include "FuzzingValidators.h"
2 2 #include "FuzzingDefs.h"
3 3
4 4 #include <Data/DataSeries.h>
5 5 #include <Variable/Variable.h>
6 6
7 7 #include <QTest>
8 8
9 9 #include <functional>
10 10
11 11 Q_LOGGING_CATEGORY(LOG_FuzzingValidators, "FuzzingValidators")
12 12
13 13 namespace {
14 14
15 15 // ////////////// //
16 16 // DATA VALIDATOR //
17 17 // ////////////// //
18 18
19 19 /// Singleton used to validate data of a variable
20 20 class DataValidatorHelper {
21 21 public:
22 22 /// @return the single instance of the helper
23 23 static DataValidatorHelper &instance();
24 24 virtual ~DataValidatorHelper() noexcept = default;
25 25
26 26 virtual void validate(const VariableState &variableState) const = 0;
27 27 };
28 28
29 29 /**
30 30 * Default implementation of @sa DataValidatorHelper
31 31 */
32 32 class DefaultDataValidatorHelper : public DataValidatorHelper {
33 33 public:
34 34 void validate(const VariableState &variableState) const override
35 35 {
36 36 Q_UNUSED(variableState);
37 37 qCWarning(LOG_FuzzingValidators()).noquote() << "Checking variable's data... WARN: no data "
38 38 "verification is available for this server";
39 39 }
40 40 };
41 41
42 42 /// Data resolution in local server's files
43 43 const auto LOCALHOST_SERVER_RESOLUTION = 4;
44 44 /// Reference value used to generate the data on the local server (a value is the number of seconds
45 45 /// between the data date and this reference date)
46 46 const auto LOCALHOST_REFERENCE_VALUE
47 47 = DateUtils::secondsSinceEpoch(QDateTime{QDate{2000, 1, 1}, QTime{}, Qt::UTC});
48 48
49 49 /**
50 50 * Implementation of @sa DataValidatorHelper for the local AMDA server
51 51 */
52 52 class LocalhostServerDataValidatorHelper : public DataValidatorHelper {
53 53 public:
54 54 void validate(const VariableState &variableState) const override
55 55 {
56 56 // Don't check data for null variable
57 57 if (!variableState.m_Variable || variableState.m_Range == INVALID_RANGE) {
58 58 return;
59 59 }
60 60
61 61 auto message = "Checking variable's data...";
62 62 auto toDateString = [](double value) { return DateUtils::dateTime(value).toString(); };
63 63
64 64 // Checks that data are defined
65 65 auto variableDataSeries = variableState.m_Variable->dataSeries();
66 66 if (variableDataSeries == nullptr && variableState.m_Range != INVALID_RANGE) {
67 67 qCInfo(LOG_FuzzingValidators()).noquote()
68 68 << message << "FAIL: the variable has no data while a range is defined";
69 69 QFAIL("");
70 70 }
71 71
72 72 auto dataIts = variableDataSeries->xAxisRange(variableState.m_Range.m_TStart,
73 73 variableState.m_Range.m_TEnd);
74 74
75 75 // Checks that the data are well defined in the range:
76 76 // - there is at least one data
77 77 // - the data are consistent (no data holes)
78 78 if (std::distance(dataIts.first, dataIts.second) == 0) {
79 79 qCInfo(LOG_FuzzingValidators()).noquote() << message
80 80 << "FAIL: the variable has no data";
81 81 QFAIL("");
82 82 }
83 83
84 84 auto firstXAxisData = dataIts.first->x();
85 85 auto lastXAxisData = (dataIts.second - 1)->x();
86 86
87 87 if (std::abs(firstXAxisData - variableState.m_Range.m_TStart) > LOCALHOST_SERVER_RESOLUTION
88 88 || std::abs(lastXAxisData - variableState.m_Range.m_TEnd)
89 89 > LOCALHOST_SERVER_RESOLUTION) {
90 90 qCInfo(LOG_FuzzingValidators()).noquote()
91 91 << message << "FAIL: the data in the defined range are inconsistent (data hole "
92 92 "found at the beginning or the end)";
93 93 QFAIL("");
94 94 }
95 95
96 96 auto dataHoleIt = std::adjacent_find(
97 97 dataIts.first, dataIts.second, [](const auto &it1, const auto &it2) {
98 98 /// @todo: validate resolution
99 return std::abs(it1.x() - it2.x()) > 2 * (LOCALHOST_SERVER_RESOLUTION - 1);
99 return std::abs(it1.x() - it2.x()) > 2 * LOCALHOST_SERVER_RESOLUTION;
100 100 });
101 101
102 102 if (dataHoleIt != dataIts.second) {
103 103 qCInfo(LOG_FuzzingValidators()).noquote()
104 104 << message << "FAIL: the data in the defined range are inconsistent (data hole "
105 105 "found between times "
106 106 << toDateString(dataHoleIt->x()) << "and " << toDateString((dataHoleIt + 1)->x())
107 107 << ")";
108 108 QFAIL("");
109 109 }
110 110
111 111 // Checks values
112 112 auto dataIndex = 0;
113 113 for (auto dataIt = dataIts.first; dataIt != dataIts.second; ++dataIt, ++dataIndex) {
114 114 auto xAxisData = dataIt->x();
115 115 auto valuesData = dataIt->values();
116 116 for (auto valueIndex = 0, valueEnd = valuesData.size(); valueIndex < valueEnd;
117 117 ++valueIndex) {
118 118 auto value = valuesData.at(valueIndex);
119 119 auto expectedValue = xAxisData + valueIndex * LOCALHOST_SERVER_RESOLUTION
120 120 - LOCALHOST_REFERENCE_VALUE;
121 121
122 122 if (value != expectedValue) {
123 123 qCInfo(LOG_FuzzingValidators()).noquote()
124 124 << message << "FAIL: incorrect value data at time"
125 125 << toDateString(xAxisData) << ", index" << valueIndex << "(found:" << value
126 126 << ", expected:" << expectedValue << ")";
127 127 QFAIL("");
128 128 }
129 129 }
130 130 }
131 131
132 132 // At this step validation is OK
133 133 qCInfo(LOG_FuzzingValidators()).noquote() << message << "OK";
134 134 }
135 135 };
136 136
137 137 /// Creates the @sa DataValidatorHelper according to the server passed in parameter
138 138 std::unique_ptr<DataValidatorHelper> createDataValidatorInstance(const QString &server)
139 139 {
140 140 if (server == QString{"localhost"}) {
141 141 return std::make_unique<LocalhostServerDataValidatorHelper>();
142 142 }
143 143 else {
144 144 return std::make_unique<DefaultDataValidatorHelper>();
145 145 }
146 146 }
147 147
148 148 DataValidatorHelper &DataValidatorHelper::instance()
149 149 {
150 150 // Creates instance depending on the SCIQLOP_AMDA_SERVER value at compile time
151 151 static auto instance = createDataValidatorInstance(SCIQLOP_AMDA_SERVER);
152 152 return *instance;
153 153 }
154 154
155 155 // /////////////// //
156 156 // RANGE VALIDATOR //
157 157 // /////////////// //
158 158
159 159 /**
160 160 * Checks that a range of a variable matches the expected range passed as a parameter
161 161 * @param variable the variable for which to check the range
162 162 * @param expectedRange the expected range
163 163 * @param getVariableRangeFun the function to retrieve the range from the variable
164 164 * @remarks if the variable is null, checks that the expected range is the invalid range
165 165 */
166 166 void validateRange(std::shared_ptr<Variable> variable, const SqpRange &expectedRange,
167 167 std::function<SqpRange(const Variable &)> getVariableRangeFun)
168 168 {
169 169 auto compare = [](const auto &range, const auto &expectedRange, const auto &message) {
170 170 if (range == expectedRange) {
171 171 qCInfo(LOG_FuzzingValidators()).noquote() << message << "OK";
172 172 }
173 173 else {
174 174 qCInfo(LOG_FuzzingValidators()).noquote() << message << "FAIL (current range:" << range
175 175 << ", expected range:" << expectedRange
176 176 << ")";
177 177 QFAIL("");
178 178 }
179 179 };
180 180
181 181 if (variable) {
182 182 compare(getVariableRangeFun(*variable), expectedRange, "Checking variable's range...");
183 183 }
184 184 else {
185 185 compare(INVALID_RANGE, expectedRange, "Checking that there is no range set...");
186 186 }
187 187 }
188 188
189 189 /**
190 190 * Default implementation of @sa IFuzzingValidator. This validator takes as parameter of its
191 191 * construction a function of validation which is called in the validate() method
192 192 */
193 193 class FuzzingValidator : public IFuzzingValidator {
194 194 public:
195 195 /// Signature of a validation function
196 196 using ValidationFunction = std::function<void(const VariableState &variableState)>;
197 197
198 198 explicit FuzzingValidator(ValidationFunction fun) : m_Fun(std::move(fun)) {}
199 199
200 200 void validate(const VariableState &variableState) const override { m_Fun(variableState); }
201 201
202 202 private:
203 203 ValidationFunction m_Fun;
204 204 };
205 205
206 206 } // namespace
207 207
208 208 std::unique_ptr<IFuzzingValidator> FuzzingValidatorFactory::create(FuzzingValidatorType type)
209 209 {
210 210 switch (type) {
211 211 case FuzzingValidatorType::DATA:
212 212 return std::make_unique<FuzzingValidator>([](const VariableState &variableState) {
213 213 DataValidatorHelper::instance().validate(variableState);
214 214 });
215 215 case FuzzingValidatorType::RANGE:
216 216 return std::make_unique<FuzzingValidator>([](const VariableState &variableState) {
217 217 auto getVariableRange = [](const Variable &variable) { return variable.range(); };
218 218 validateRange(variableState.m_Variable, variableState.m_Range, getVariableRange);
219 219 });
220 220 default:
221 221 // Default case returns invalid validator
222 222 break;
223 223 }
224 224
225 225 // Invalid validator
226 226 return std::make_unique<FuzzingValidator>(
227 227 [](const VariableState &) { QFAIL("Invalid validator"); });
228 228 }
@@ -1,391 +1,395
1 1 #include "FuzzingDefs.h"
2 2 #include "FuzzingOperations.h"
3 3 #include "FuzzingUtils.h"
4 4 #include "FuzzingValidators.h"
5 5
6 6 #include "AmdaProvider.h"
7 7
8 8 #include <Common/SignalWaiter.h>
9 9 #include <Network/NetworkController.h>
10 10 #include <Settings/SqpSettingsDefs.h>
11 11 #include <SqpApplication.h>
12 12 #include <Time/TimeController.h>
13 13 #include <Variable/Variable.h>
14 14 #include <Variable/VariableController.h>
15 15
16 16 #include <QLoggingCategory>
17 17 #include <QObject>
18 18 #include <QtTest>
19 19
20 20 #include <memory>
21 21
22 22 Q_LOGGING_CATEGORY(LOG_TestAmdaFuzzing, "TestAmdaFuzzing")
23 23
24 24 /**
25 25 * Macro used to generate a getter for a property in @sa FuzzingTest. The macro generates a static
26 26 * attribute that is initialized by searching in properties the property and use a default value if
27 27 * it's not present. Macro arguments are:
28 28 * - GETTER_NAME : name of the getter
29 29 * - PROPERTY_NAME: used to generate constants for property's name ({PROPERTY_NAME}_PROPERTY) and
30 30 * default value ({PROPERTY_NAME}_DEFAULT_VALUE)
31 31 * - TYPE : return type of the getter
32 32 */
33 33 // clang-format off
34 34 #define DECLARE_PROPERTY_GETTER(GETTER_NAME, PROPERTY_NAME, TYPE) \
35 35 TYPE GETTER_NAME() const \
36 36 { \
37 37 static auto result = m_Properties.value(PROPERTY_NAME##_PROPERTY, PROPERTY_NAME##_DEFAULT_VALUE).value<TYPE>(); \
38 38 return result; \
39 39 } \
40 40 // clang-format on
41 41
42 42 namespace {
43 43
44 44 // /////// //
45 45 // Aliases //
46 46 // /////// //
47 47
48 48 using IntPair = std::pair<int, int>;
49 49 using Weight = double;
50 50 using Weights = std::vector<Weight>;
51 51
52 52 struct OperationProperty {
53 53 Weight m_Weight{1.};
54 54 bool m_WaitAcquisition{false};
55 55 };
56 56
57 57 using VariableOperation = std::pair<VariableId, std::shared_ptr<IFuzzingOperation> >;
58 58 using VariablesOperations = std::vector<VariableOperation>;
59 59
60 60 using OperationsTypes = std::map<FuzzingOperationType, OperationProperty>;
61 61 using OperationsPool = std::map<std::shared_ptr<IFuzzingOperation>, OperationProperty>;
62 62
63 63 using Validators = std::vector<std::shared_ptr<IFuzzingValidator> >;
64 64
65 65 // ///////// //
66 66 // Constants //
67 67 // ///////// //
68 68
69 69 // Defaults values used when the associated properties have not been set for the test
70 70 const auto ACQUISITION_TIMEOUT_DEFAULT_VALUE = 30000;
71 71 const auto NB_MAX_OPERATIONS_DEFAULT_VALUE = 100;
72 72 const auto NB_MAX_SYNC_GROUPS_DEFAULT_VALUE = 1;
73 73 const auto NB_MAX_VARIABLES_DEFAULT_VALUE = 1;
74 74 const auto AVAILABLE_OPERATIONS_DEFAULT_VALUE = QVariant::fromValue(
75 75 OperationsTypes{{FuzzingOperationType::CREATE, {1., true}},
76 76 {FuzzingOperationType::DELETE, {0.1}}, // Delete operation is less frequent
77 77 {FuzzingOperationType::PAN_LEFT, {1.}},
78 78 {FuzzingOperationType::PAN_RIGHT, {1.}},
79 79 {FuzzingOperationType::ZOOM_IN, {1.}},
80 80 {FuzzingOperationType::ZOOM_OUT, {1.}},
81 81 {FuzzingOperationType::SYNCHRONIZE, {0.8}},
82 82 {FuzzingOperationType::DESYNCHRONIZE, {0.4}}});
83 83 const auto CACHE_TOLERANCE_DEFAULT_VALUE = 0.2;
84 84
85 85 /// Min/max delays between each operation (in ms)
86 86 const auto OPERATION_DELAY_BOUNDS_DEFAULT_VALUE = QVariant::fromValue(std::make_pair(100, 3000));
87 87
88 88 /// Validators for the tests (executed in the order in which they're defined)
89 89 const auto VALIDATORS_DEFAULT_VALUE = QVariant::fromValue(
90 90 ValidatorsTypes{{FuzzingValidatorType::RANGE, FuzzingValidatorType::DATA}});
91 91
92 92 /// Min/max number of operations to execute before calling validation
93 93 const auto VALIDATION_FREQUENCY_BOUNDS_DEFAULT_VALUE = QVariant::fromValue(std::make_pair(1, 10));
94 94
95 95 // /////// //
96 96 // Methods //
97 97 // /////// //
98 98
99 99 /// Goes through the variables pool and operations pool to determine the set of {variable/operation}
100 100 /// pairs that are valid (i.e. operation that can be executed on variable)
101 101 std::pair<VariablesOperations, Weights> availableOperations(const FuzzingState &fuzzingState,
102 102 const OperationsPool &operationsPool)
103 103 {
104 104 VariablesOperations result{};
105 105 Weights weights{};
106 106
107 107 for (const auto &variablesPoolEntry : fuzzingState.m_VariablesPool) {
108 108 auto variableId = variablesPoolEntry.first;
109 109
110 110 for (const auto &operationsPoolEntry : operationsPool) {
111 111 auto operation = operationsPoolEntry.first;
112 112 auto operationProperty = operationsPoolEntry.second;
113 113
114 114 // A pair is valid if the current operation can be executed on the current variable
115 115 if (operation->canExecute(variableId, fuzzingState)) {
116 116 result.push_back({variableId, operation});
117 117 weights.push_back(operationProperty.m_Weight);
118 118 }
119 119 }
120 120 }
121 121
122 122 return {result, weights};
123 123 }
124 124
125 125 OperationsPool createOperationsPool(const OperationsTypes &types)
126 126 {
127 127 OperationsPool result{};
128 128
129 129 std::transform(
130 130 types.cbegin(), types.cend(), std::inserter(result, result.end()), [](const auto &type) {
131 131 return std::make_pair(FuzzingOperationFactory::create(type.first), type.second);
132 132 });
133 133
134 134 return result;
135 135 }
136 136
137 137 Validators createValidators(const ValidatorsTypes &types)
138 138 {
139 139 Validators result{};
140 140
141 141 std::transform(types.cbegin(), types.cend(), std::inserter(result, result.end()),
142 142 [](const auto &type) { return FuzzingValidatorFactory::create(type); });
143 143
144 144 return result;
145 145 }
146 146
147 147 /**
148 148 * Validates all the variables' states passed in parameter, according to a set of validators
149 149 * @param variablesPool the variables' states
150 150 * @param validators the validators used for validation
151 151 */
152 152 void validate(const VariablesPool &variablesPool, const Validators &validators)
153 153 {
154 154 for (const auto &variablesPoolEntry : variablesPool) {
155 155 auto variableId = variablesPoolEntry.first;
156 156 const auto &variableState = variablesPoolEntry.second;
157 157
158 158 auto variableMessage = variableState.m_Variable ? variableState.m_Variable->name()
159 159 : QStringLiteral("null variable");
160 160 qCInfo(LOG_TestAmdaFuzzing()).noquote() << "Validating state of variable at index"
161 161 << variableId << "(" << variableMessage << ")...";
162 162
163 163 for (const auto &validator : validators) {
164 164 validator->validate(VariableState{variableState});
165 165 }
166 166
167 167 qCInfo(LOG_TestAmdaFuzzing()).noquote() << "Validation completed.";
168 168 }
169 169 }
170 170
171 171 /**
172 172 * Class to run random tests
173 173 */
174 174 class FuzzingTest {
175 175 public:
176 176 explicit FuzzingTest(VariableController &variableController, Properties properties)
177 177 : m_VariableController{variableController},
178 178 m_Properties{std::move(properties)},
179 179 m_FuzzingState{}
180 180 {
181 181 // Inits variables pool: at init, all variables are null
182 182 for (auto variableId = 0; variableId < nbMaxVariables(); ++variableId) {
183 183 m_FuzzingState.m_VariablesPool[variableId] = VariableState{};
184 184 }
185 185
186 186 // Inits sync groups and registers them into the variable controller
187 187 for (auto i = 0; i < nbMaxSyncGroups(); ++i) {
188 188 auto syncGroupId = SyncGroupId::createUuid();
189 189 variableController.onAddSynchronizationGroupId(syncGroupId);
190 190 m_FuzzingState.m_SyncGroupsPool[syncGroupId] = SyncGroup{};
191 191 }
192 192 }
193 193
194 194 void execute()
195 195 {
196 196 qCInfo(LOG_TestAmdaFuzzing()).noquote() << "Running" << nbMaxOperations() << "operations on"
197 197 << nbMaxVariables() << "variable(s)...";
198 198
199 199
200 200 // Inits the count of the number of operations before the next validation
201 201 int nextValidationCounter = 0;
202 202 auto updateValidationCounter = [this, &nextValidationCounter]() {
203 203 nextValidationCounter = RandomGenerator::instance().generateInt(
204 204 validationFrequencies().first, validationFrequencies().second);
205 205 qCInfo(LOG_TestAmdaFuzzing()).noquote()
206 206 << "Next validation in " << nextValidationCounter << "operation(s)...";
207 207 };
208 208 updateValidationCounter();
209 209
210 210 auto canExecute = true;
211 211 for (auto i = 0; i < nbMaxOperations() && canExecute; ++i) {
212 212 // Retrieves all operations that can be executed in the current context
213 213 VariablesOperations variableOperations{};
214 214 Weights weights{};
215 215 std::tie(variableOperations, weights)
216 216 = availableOperations(m_FuzzingState, operationsPool());
217 217
218 218 canExecute = !variableOperations.empty();
219 219 if (canExecute) {
220 220 --nextValidationCounter;
221 221
222 222 // Of the operations available, chooses a random operation and executes it
223 223 auto variableOperation
224 224 = RandomGenerator::instance().randomChoice(variableOperations, weights);
225 225
226 226 auto variableId = variableOperation.first;
227 227 auto fuzzingOperation = variableOperation.second;
228 228
229 229 auto waitAcquisition = nextValidationCounter == 0
230 230 || operationsPool().at(fuzzingOperation).m_WaitAcquisition;
231 231
232 232 fuzzingOperation->execute(variableId, m_FuzzingState, m_VariableController,
233 233 m_Properties);
234 234
235 235 if (waitAcquisition) {
236 236 qCDebug(LOG_TestAmdaFuzzing()) << "Waiting for acquisition to finish...";
237 237 SignalWaiter{m_VariableController, SIGNAL(acquisitionFinished())}.wait(
238 238 acquisitionTimeout());
239 239
240 240 // Validates variables
241 241 if (nextValidationCounter == 0) {
242 242 validate(m_FuzzingState.m_VariablesPool, validators());
243 243 updateValidationCounter();
244 244 }
245 245 }
246 246 else {
247 247 // Delays the next operation with a randomly generated time
248 248 auto delay = RandomGenerator::instance().generateInt(operationDelays().first,
249 249 operationDelays().second);
250 250 qCDebug(LOG_TestAmdaFuzzing())
251 251 << "Waiting " << delay << "ms before the next operation...";
252 252 QTest::qWait(delay);
253 253 }
254 254 }
255 255 else {
256 256 qCInfo(LOG_TestAmdaFuzzing()).noquote()
257 257 << "No more operations are available, the execution of the test will stop...";
258 258 }
259 259 }
260 260
261 261 qCInfo(LOG_TestAmdaFuzzing()).noquote() << "Execution of the test completed.";
262 262 }
263 263
264 264 private:
265 265 OperationsPool operationsPool() const
266 266 {
267 267 static auto result = createOperationsPool(
268 268 m_Properties.value(AVAILABLE_OPERATIONS_PROPERTY, AVAILABLE_OPERATIONS_DEFAULT_VALUE)
269 269 .value<OperationsTypes>());
270 270 return result;
271 271 }
272 272
273 273 Validators validators() const
274 274 {
275 275 static auto result
276 276 = createValidators(m_Properties.value(VALIDATORS_PROPERTY, VALIDATORS_DEFAULT_VALUE)
277 277 .value<ValidatorsTypes>());
278 278 return result;
279 279 }
280 280
281 281 DECLARE_PROPERTY_GETTER(nbMaxOperations, NB_MAX_OPERATIONS, int)
282 282 DECLARE_PROPERTY_GETTER(nbMaxSyncGroups, NB_MAX_SYNC_GROUPS, int)
283 283 DECLARE_PROPERTY_GETTER(nbMaxVariables, NB_MAX_VARIABLES, int)
284 284 DECLARE_PROPERTY_GETTER(operationDelays, OPERATION_DELAY_BOUNDS, IntPair)
285 285 DECLARE_PROPERTY_GETTER(validationFrequencies, VALIDATION_FREQUENCY_BOUNDS, IntPair)
286 286 DECLARE_PROPERTY_GETTER(acquisitionTimeout, ACQUISITION_TIMEOUT, int)
287 287
288 288 VariableController &m_VariableController;
289 289 Properties m_Properties;
290 290 FuzzingState m_FuzzingState;
291 291 };
292 292
293 293 } // namespace
294 294
295 295 Q_DECLARE_METATYPE(OperationsTypes)
296 296
297 297 class TestAmdaFuzzing : public QObject {
298 298 Q_OBJECT
299 299
300 300 private slots:
301 301 /// Input data for @sa testFuzzing()
302 302 void testFuzzing_data();
303 303 void testFuzzing();
304 304 };
305 305
306 306 void TestAmdaFuzzing::testFuzzing_data()
307 307 {
308 308 // Note: Comment this line to run fuzzing tests
309 309 QSKIP("Fuzzing tests are disabled by default");
310 310
311 311 // ////////////// //
312 312 // Test structure //
313 313 // ////////////// //
314 314
315 315 QTest::addColumn<Properties>("properties"); // Properties for random test
316 316
317 317 // ////////// //
318 318 // Test cases //
319 319 // ////////// //
320 320
321 321 auto maxRange = SqpRange::fromDateTime({2017, 1, 1}, {0, 0}, {2017, 1, 5}, {0, 0});
322 322 MetadataPool metadataPool{{{"dataType", "vector"}, {"xml:id", "imf"}}};
323 323
324 324 // Note: we don't use auto here as we want to pass std::shared_ptr<IDataProvider> as is in the
325 325 // QVariant
326 326 std::shared_ptr<IDataProvider> provider = std::make_shared<AmdaProvider>();
327 327
328 328 QTest::newRow("fuzzingTest") << Properties{
329 329 {MAX_RANGE_PROPERTY, QVariant::fromValue(maxRange)},
330 330 {METADATA_POOL_PROPERTY, QVariant::fromValue(metadataPool)},
331 331 {PROVIDER_PROPERTY, QVariant::fromValue(provider)}};
332 332 }
333 333
334 334 void TestAmdaFuzzing::testFuzzing()
335 335 {
336 336 QFETCH(Properties, properties);
337 337
338 338 // Sets cache property
339 339 QSettings settings{};
340 340 auto cacheTolerance = properties.value(CACHE_TOLERANCE_PROPERTY, CACHE_TOLERANCE_DEFAULT_VALUE);
341 341 settings.setValue(GENERAL_TOLERANCE_AT_INIT_KEY, cacheTolerance);
342 342 settings.setValue(GENERAL_TOLERANCE_AT_UPDATE_KEY, cacheTolerance);
343 343
344 344 auto &variableController = sqpApp->variableController();
345 345 auto &timeController = sqpApp->timeController();
346 346
347 347 // Generates random initial range (bounded to max range)
348 348 auto maxRange = properties.value(MAX_RANGE_PROPERTY, QVariant::fromValue(INVALID_RANGE))
349 349 .value<SqpRange>();
350 350
351 351 QVERIFY(maxRange != INVALID_RANGE);
352 352
353 353 auto initialRangeStart
354 354 = RandomGenerator::instance().generateDouble(maxRange.m_TStart, maxRange.m_TEnd);
355 355 auto initialRangeEnd
356 356 = RandomGenerator::instance().generateDouble(maxRange.m_TStart, maxRange.m_TEnd);
357 357 if (initialRangeStart > initialRangeEnd) {
358 358 std::swap(initialRangeStart, initialRangeEnd);
359 359 }
360 360
361 361 // Sets initial range on time controller
362 362 SqpRange initialRange{initialRangeStart, initialRangeEnd};
363 363 qCInfo(LOG_TestAmdaFuzzing()).noquote() << "Setting initial range to" << initialRange << "...";
364 364 timeController.onTimeToUpdate(initialRange);
365 365 properties.insert(INITIAL_RANGE_PROPERTY, QVariant::fromValue(initialRange));
366 366
367 367 FuzzingTest test{variableController, properties};
368 368 test.execute();
369 369 }
370 370
371 371 int main(int argc, char *argv[])
372 372 {
373 // Increases the test function timeout (which is 5 minutes by default) to 12 hours
374 // https://stackoverflow.com/questions/42655932/setting-timeout-to-qt-test
375 qputenv("QTEST_FUNCTION_TIMEOUT", QByteArray::number(12*60*60*1000));
376
373 377 QLoggingCategory::setFilterRules(
374 378 "*.warning=false\n"
375 379 "*.info=false\n"
376 380 "*.debug=false\n"
377 381 "FuzzingOperations.info=true\n"
378 382 "FuzzingValidators.info=true\n"
379 383 "TestAmdaFuzzing.info=true\n");
380 384
381 385 SqpApplication app{argc, argv};
382 386 SqpApplication::setOrganizationName("LPP");
383 387 SqpApplication::setOrganizationDomain("lpp.fr");
384 388 SqpApplication::setApplicationName("SciQLop-TestFuzzing");
385 389 app.setAttribute(Qt::AA_Use96Dpi, true);
386 390 TestAmdaFuzzing testObject{};
387 391 QTEST_SET_MAIN_SOURCE_PATH
388 392 return QTest::qExec(&testObject, argc, argv);
389 393 }
390 394
391 395 #include "TestAmdaFuzzing.moc"
General Comments 0
You need to be logged in to leave comments. Login now