CosinusProvider.cpp
48 lines
| 1.5 KiB
| text/x-c
|
CppLexer
Alexandre Leroux
|
r128 | #include "CosinusProvider.h" | ||
#include <Data/DataProviderParameters.h> | ||||
#include <Data/ScalarSeries.h> | ||||
r135 | #include <cmath> | |||
r298 | #include <QDateTime> | |||
r364 | #include <QThread> | |||
r298 | ||||
r231 | Q_LOGGING_CATEGORY(LOG_CosinusProvider, "CosinusProvider") | |||
Alexandre Leroux
|
r408 | std::shared_ptr<IDataSeries> CosinusProvider::retrieveData(const SqpDateTime &dateTime) const | ||
Alexandre Leroux
|
r128 | { | ||
r298 | auto dataIndex = 0; | |||
r231 | ||||
// Gets the timerange from the parameters | ||||
r298 | double freq = 100.0; | |||
double start = dateTime.m_TStart * freq; // 100 htz | ||||
double end = dateTime.m_TEnd * freq; // 100 htz | ||||
r231 | ||||
// We assure that timerange is valid | ||||
if (end < start) { | ||||
std::swap(start, end); | ||||
} | ||||
// Generates scalar series containing cosinus values (one value per second) | ||||
auto scalarSeries | ||||
= std::make_shared<ScalarSeries>(end - start, Unit{QStringLiteral("t"), true}, Unit{}); | ||||
for (auto time = start; time < end; ++time, ++dataIndex) { | ||||
r298 | const auto timeOnFreq = time / freq; | |||
scalarSeries->setData(dataIndex, timeOnFreq, std::cos(timeOnFreq)); | ||||
r231 | } | |||
Alexandre Leroux
|
r128 | return scalarSeries; | ||
} | ||||
Alexandre Leroux
|
r310 | |||
Alexandre Leroux
|
r408 | void CosinusProvider::requestDataLoading(QUuid token, const DataProviderParameters ¶meters) | ||
Alexandre Leroux
|
r310 | { | ||
r367 | qCDebug(LOG_CosinusProvider()) << "CosinusProvider::requestDataLoading" | |||
<< QThread::currentThread()->objectName(); | ||||
Alexandre Leroux
|
r310 | // NOTE: Try to use multithread if possible | ||
Alexandre Leroux
|
r408 | const auto times = parameters.m_Times; | ||
for (const auto &dateTime : qAsConst(times)) { | ||||
auto scalarSeries = this->retrieveData(dateTime); | ||||
Alexandre Leroux
|
r376 | emit dataProvided(token, scalarSeries, dateTime); | ||
Alexandre Leroux
|
r310 | } | ||
} | ||||