##// END OF EJS Templates
Corrected stupid scroll bug, scrolling a graph did also trigger vertical scroll...
Corrected stupid scroll bug, scrolling a graph did also trigger vertical scroll Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1367:8b508ae3dac1
r1374:5ef45d7f54ca
Show More
CosinusProvider.cpp
204 lines | 7.2 KiB | text/x-c | CppLexer
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 #include "CosinusProvider.h"
Alexandre Leroux
Handles parametric frequency
r782 #include "MockDefs.h"
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128
#include <Data/DataProviderParameters.h>
#include <Data/ScalarSeries.h>
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 #include <Data/SpectrogramSeries.h>
Alexandre Leroux
Generates vectors (2)...
r785 #include <Data/VectorSeries.h>
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128
Add cmath header missing
r135 #include <cmath>
Alexandre Leroux
Introduces NaN and zero values in data of the mock spectrogram...
r922 #include <set>
Add cmath header missing
r135
Add DownloadProgress emission for mock plugin
r428 #include <QFuture>
Add current progression for thread fix
r364 #include <QThread>
Add DownloadProgress emission for mock plugin
r428 #include <QtConcurrent/QtConcurrent>
Fix the cosinus bug....
r298
The cosinus provider can now handle data request
r231
Alexandre Leroux
Generates vectors (1)...
r784 namespace {
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 /// Number of bands generated for a spectrogram
const auto SPECTROGRAM_NUMBER_BANDS = 30;
Alexandre Leroux
Introduces NaN and zero values in data of the mock spectrogram...
r922 /// Bands for which to generate NaN values for a spectrogram
const auto SPECTROGRAM_NAN_BANDS = std::set<int>{1, 3, 10, 20};
/// Bands for which to generate zeros for a spectrogram
const auto SPECTROGRAM_ZERO_BANDS = std::set<int>{2, 15, 19, 29};
Alexandre Leroux
Generates vectors (1)...
r784 /// Abstract cosinus type
struct ICosinusType {
virtual ~ICosinusType() = default;
/// @return the number of components generated for the type
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 virtual std::size_t componentCount() const = 0;
Alexandre Leroux
Generates vectors (1)...
r784 /// @return the data series created for the type
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 virtual IDataSeries* createDataSeries(std::vector<double> xAxisData,
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 std::vector<double> valuesData) const = 0;
Alexandre Leroux
MockPlugin: moving the generation of values in each type (scalar, vector, and later spectrogram)
r894 /// Generates values (one value per component)
/// @param x the x-axis data used to generate values
/// @param values the vector in which to insert the generated values
/// @param dataIndex the index of insertion of the generated values
///
virtual void generateValues(double x, std::vector<double> &values, int dataIndex) const = 0;
Alexandre Leroux
Generates vectors (1)...
r784 };
Alexandre Leroux
Generates vectors (2)...
r785 struct ScalarCosinus : public ICosinusType {
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 std::size_t componentCount() const override { return 1; }
Alexandre Leroux
Generates vectors (2)...
r785
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 IDataSeries* createDataSeries(std::vector<double> xAxisData,
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 std::vector<double> valuesData) const override
Alexandre Leroux
Generates vectors (2)...
r785 {
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 return new ScalarSeries(std::move(xAxisData), std::move(valuesData),
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 Unit{QStringLiteral("t"), true}, Unit{});
Alexandre Leroux
Generates vectors (2)...
r785 }
Alexandre Leroux
MockPlugin: moving the generation of values in each type (scalar, vector, and later spectrogram)
r894
void generateValues(double x, std::vector<double> &values, int dataIndex) const override
{
values[dataIndex] = std::cos(x);
}
Alexandre Leroux
Generates vectors (2)...
r785 };
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895
struct SpectrogramCosinus : public ICosinusType {
/// Ctor with y-axis
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 explicit SpectrogramCosinus(std::vector<double> yAxisData, Unit yAxisUnit, Unit valuesUnit)
: m_YAxisData{std::move(yAxisData)},
m_YAxisUnit{std::move(yAxisUnit)},
m_ValuesUnit{std::move(valuesUnit)}
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 {
}
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 std::size_t componentCount() const override { return m_YAxisData.size(); }
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 IDataSeries* createDataSeries(std::vector<double> xAxisData,
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 std::vector<double> valuesData) const override
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 {
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 return new SpectrogramSeries(
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 std::move(xAxisData), m_YAxisData, std::move(valuesData),
Unit{QStringLiteral("t"), true}, m_YAxisUnit, m_ValuesUnit);
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 }
void generateValues(double x, std::vector<double> &values, int dataIndex) const override
{
Alexandre Leroux
Implements methods for generating spectrograms in the plugin
r896 auto componentCount = this->componentCount();
for (int i = 0; i < componentCount; ++i) {
auto y = m_YAxisData[i];
Alexandre Leroux
Introduces NaN and zero values in data of the mock spectrogram...
r922
double value;
Fixed Spectrogram plots...
r1367 // if (SPECTROGRAM_ZERO_BANDS.find(y) != SPECTROGRAM_ZERO_BANDS.end()) {
// value = 0.;
// }
// else if (SPECTROGRAM_NAN_BANDS.find(y) != SPECTROGRAM_NAN_BANDS.end()) {
// value = std::numeric_limits<double>::quiet_NaN();
// }
// else
{
Alexandre Leroux
Introduces NaN and zero values in data of the mock spectrogram...
r922 // Generates value for non NaN/zero bands
Fixed Spectrogram plots...
r1367 //auto r = 3 * std::sqrt(x * x + y * y) + 1e-2;
//value = 2 * x * (std::cos(r + 2) / r - std::sin(r + 2) / r);
value = x + 10*y;
Alexandre Leroux
Introduces NaN and zero values in data of the mock spectrogram...
r922 }
Alexandre Leroux
Implements methods for generating spectrograms in the plugin
r896
values[componentCount * dataIndex + i] = value;
}
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 }
std::vector<double> m_YAxisData;
Unit m_YAxisUnit;
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 Unit m_ValuesUnit;
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 };
Alexandre Leroux
Generates vectors (2)...
r785 struct VectorCosinus : public ICosinusType {
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 std::size_t componentCount() const override { return 3; }
Alexandre Leroux
Generates vectors (2)...
r785
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 IDataSeries* createDataSeries(std::vector<double> xAxisData,
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 std::vector<double> valuesData) const override
Alexandre Leroux
Generates vectors (2)...
r785 {
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 return new VectorSeries(std::move(xAxisData), std::move(valuesData),
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 Unit{QStringLiteral("t"), true}, Unit{});
Alexandre Leroux
Generates vectors (2)...
r785 }
Alexandre Leroux
MockPlugin: moving the generation of values in each type (scalar, vector, and later spectrogram)
r894
void generateValues(double x, std::vector<double> &values, int dataIndex) const override
{
// Generates value for each component: cos(x), cos(x)/2, cos(x)/3
auto xValue = std::cos(x);
auto componentCount = this->componentCount();
for (auto i = 0; i < componentCount; ++i) {
values[componentCount * dataIndex + i] = xValue / (i + 1);
}
}
Alexandre Leroux
Generates vectors (2)...
r785 };
Alexandre Leroux
Generates vectors (3)...
r786 /// Converts string to cosinus type
/// @return the cosinus type if the string could be converted, nullptr otherwise
std::unique_ptr<ICosinusType> cosinusType(const QString &type) noexcept
{
if (type.compare(QStringLiteral("scalar"), Qt::CaseInsensitive) == 0) {
return std::make_unique<ScalarCosinus>();
}
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 else if (type.compare(QStringLiteral("spectrogram"), Qt::CaseInsensitive) == 0) {
// Generates default y-axis data for spectrogram [0., 1., 2., ...]
std::vector<double> yAxisData(SPECTROGRAM_NUMBER_BANDS);
Fixed Spectrogram plots...
r1367 std::iota(yAxisData.begin(), yAxisData.end(), 1.);
for (auto & v:yAxisData)
{
v = std::pow(2,v);
}
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 return std::make_unique<SpectrogramCosinus>(std::move(yAxisData), Unit{"eV"},
Unit{"eV/(cm^2-s-sr-eV)"});
Alexandre Leroux
Initializes spectrogram management in the plugin...
r895 }
Alexandre Leroux
Generates vectors (3)...
r786 else if (type.compare(QStringLiteral("vector"), Qt::CaseInsensitive) == 0) {
return std::make_unique<VectorCosinus>();
}
else {
return nullptr;
}
}
Alexandre Leroux
Generates vectors (1)...
r784 } // namespace
Alexandre Leroux
Generates and registers clone provider
r712 std::shared_ptr<IDataProvider> CosinusProvider::clone() const
{
// No copy is made in clone
return std::make_shared<CosinusProvider>();
}
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 IDataSeries *CosinusProvider::_generate(const DateTimeRange &range, const QVariantHash &metaData)
{
auto dataIndex = 0;
// Retrieves cosinus type
auto typeVariant = metaData.value(COSINUS_TYPE_KEY, COSINUS_TYPE_DEFAULT_VALUE);
auto type = cosinusType(typeVariant.toString());
auto freqVariant = metaData.value(COSINUS_FREQUENCY_KEY, COSINUS_FREQUENCY_DEFAULT_VALUE);
double freq = freqVariant.toDouble();
double start = std::ceil(range.m_TStart * freq);
double end = std::floor(range.m_TEnd * freq);
if (end < start) {
std::swap(start, end);
}
std::size_t dataCount = static_cast<std::size_t>(end - start + 1);
std::size_t componentCount = type->componentCount();
auto xAxisData = std::vector<double>{};
xAxisData.resize(dataCount);
auto valuesData = std::vector<double>{};
valuesData.resize(dataCount * componentCount);
int progress = 0;
auto progressEnd = dataCount;
for (auto time = start; time <= end; ++time, ++dataIndex)
{
const auto x = time / freq;
xAxisData[dataIndex] = x;
// Generates values (depending on the type)
type->generateValues(x, valuesData, dataIndex);
}
Alexandre Leroux
Updates generation of spectrogram in the mock plugin to set values' unit
r914 return type->createDataSeries(std::move(xAxisData), std::move(valuesData));
Alexandre Leroux
Creates a default provider that will be returned by the mock plugin
r128 }
Alexandre Leroux
Use std::shared_ptr in CosinusProvider
r310
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 IDataSeries* CosinusProvider::getData(const DataProviderParameters &parameters)
{
[WIP] new generic WS plugin and few other fixes...
r1352 return _generate(parameters.m_Range, parameters.m_Data);
Ported Mock plugin to new IDataProvider interface compatible with...
r1350 }