##// END OF EJS Templates
Updates DataSourceController::loadProductItem() method...
Updates DataSourceController::loadProductItem() method - Passes the DataSource uid as a parameter of the method. The uid will be used to retrieve the right provider, which will be passed for the variable creation - Stores data providers as shared_ptr instead of unique_ptr - Updates the mock plugin to pass the data source uid to the loadProductItem() method

File last commit:

r137:a659cfcd7e23
r167:31990a7209fc
Show More
CosinusProvider.cpp
30 lines | 835 B | text/x-c | CppLexer
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 #include "CosinusProvider.h"
#include <Data/DataProviderParameters.h>
#include <Data/ScalarSeries.h>
Add cmath header missing
r135 #include <cmath>
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 std::unique_ptr<IDataSeries>
CosinusProvider::retrieveData(const DataProviderParameters &parameters) const
{
// Gets the timerange from the parameters
auto start = parameters.m_TStart;
auto end = parameters.m_TEnd;
// 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_unique<ScalarSeries>(end - start, QStringLiteral("t"), QStringLiteral(""));
Alexandre Leroux
Add int data index in CosinusProvider
r137 auto dataIndex = 0;
for (auto time = start; time < end; ++time, ++dataIndex) {
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 scalarSeries->setData(dataIndex, time, std::cos(time));
}
return scalarSeries;
}