2020-04-28 16:44:03 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015-2020 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// Symbol synchronizer or symbol clock recovery mostly encapsulating //
|
|
|
|
// liquid-dsp's symsync "object" //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
#ifndef INCLUDE_SPECTRUMVIS_H
|
|
|
|
#define INCLUDE_SPECTRUMVIS_H
|
|
|
|
|
2015-10-22 00:27:56 +00:00
|
|
|
#include <QMutex>
|
2020-04-29 15:41:17 +00:00
|
|
|
|
|
|
|
#include "dsp/basebandsamplesink.h"
|
2014-05-18 15:52:39 +00:00
|
|
|
#include "dsp/fftengine.h"
|
2017-10-22 17:12:43 +00:00
|
|
|
#include "dsp/fftwindow.h"
|
2020-05-01 00:12:30 +00:00
|
|
|
#include "dsp/glspectrumsettings.h"
|
2018-03-20 12:49:21 +00:00
|
|
|
#include "export.h"
|
2015-08-18 00:47:14 +00:00
|
|
|
#include "util/message.h"
|
2018-06-28 21:47:15 +00:00
|
|
|
#include "util/movingaverage2d.h"
|
2018-07-01 00:16:59 +00:00
|
|
|
#include "util/fixedaverage2d.h"
|
2018-10-12 06:47:14 +00:00
|
|
|
#include "util/max2d.h"
|
2020-04-29 15:41:17 +00:00
|
|
|
#include "websockets/wsspectrum.h"
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2020-04-28 16:44:03 +00:00
|
|
|
class GLSpectrumInterface;
|
2014-05-18 15:52:39 +00:00
|
|
|
class MessageQueue;
|
|
|
|
|
2020-05-05 16:58:18 +00:00
|
|
|
namespace SWGSDRangel {
|
|
|
|
class SWGGLSpectrum;
|
|
|
|
class SWGSpectrumServer;
|
2020-05-05 23:38:23 +00:00
|
|
|
class SWGSuccessResponse;
|
2020-05-05 16:58:18 +00:00
|
|
|
};
|
|
|
|
|
2020-11-11 18:34:28 +00:00
|
|
|
class SDRBASE_API SpectrumVis : public BasebandSampleSink {
|
2015-08-18 00:47:14 +00:00
|
|
|
|
2014-05-18 15:52:39 +00:00
|
|
|
public:
|
2020-05-14 20:14:11 +00:00
|
|
|
class SDRBASE_API MsgConfigureSpectrumVis : public Message {
|
2020-05-01 00:12:30 +00:00
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const GLSpectrumSettings& getSettings() const { return m_settings; }
|
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
2020-05-01 22:35:47 +00:00
|
|
|
static MsgConfigureSpectrumVis* create(const GLSpectrumSettings& settings, bool force) {
|
2020-05-01 00:12:30 +00:00
|
|
|
return new MsgConfigureSpectrumVis(settings, force);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
GLSpectrumSettings m_settings;
|
|
|
|
bool m_force;
|
|
|
|
|
|
|
|
MsgConfigureSpectrumVis(const GLSpectrumSettings& settings, bool force) :
|
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2020-07-05 09:04:20 +00:00
|
|
|
class SDRBASE_API MsgStartStop : public Message {
|
2020-07-05 08:03:41 +00:00
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool getStartStop() const { return m_startStop; }
|
|
|
|
|
|
|
|
static MsgStartStop* create(bool startStop) {
|
|
|
|
return new MsgStartStop(startStop);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_startStop;
|
|
|
|
|
|
|
|
MsgStartStop(bool startStop) :
|
|
|
|
Message(),
|
|
|
|
m_startStop(startStop)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2020-11-11 18:34:28 +00:00
|
|
|
class SDRBASE_API MsgConfigureWSpectrumOpenClose : public Message
|
2020-05-01 22:35:47 +00:00
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
Real getOpenClose() const { return m_openClose; }
|
|
|
|
|
|
|
|
static MsgConfigureWSpectrumOpenClose* create(bool openClose) {
|
|
|
|
return new MsgConfigureWSpectrumOpenClose(openClose);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_openClose;
|
|
|
|
|
|
|
|
MsgConfigureWSpectrumOpenClose(bool openClose) :
|
|
|
|
Message(),
|
|
|
|
m_openClose(openClose)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2018-10-12 06:47:14 +00:00
|
|
|
enum AvgMode
|
2018-07-01 00:16:59 +00:00
|
|
|
{
|
2018-07-01 20:36:36 +00:00
|
|
|
AvgModeNone,
|
2018-10-12 06:47:14 +00:00
|
|
|
AvgModeMovingAvg,
|
|
|
|
AvgModeFixedAvg,
|
|
|
|
AvgModeMax
|
2018-07-01 00:16:59 +00:00
|
|
|
};
|
|
|
|
|
2020-04-30 07:57:05 +00:00
|
|
|
SpectrumVis(Real scalef);
|
|
|
|
virtual ~SpectrumVis();
|
|
|
|
|
|
|
|
void setGLSpectrum(GLSpectrumInterface* glSpectrum) { m_glSpectrum = glSpectrum; }
|
|
|
|
|
|
|
|
void setScalef(Real scalef);
|
|
|
|
void configureWSSpectrum(const QString& address, uint16_t port);
|
2020-07-16 14:58:45 +00:00
|
|
|
const GLSpectrumSettings& getSettings() const { return m_settings; }
|
|
|
|
Real getSpecMax() const { return m_specMax / m_powFFTDiv; }
|
2021-02-10 07:34:42 +00:00
|
|
|
void getPowerSpectrumCopy(std::vector<Real>& copy) { copy.assign(m_powerSpectrum.begin(), m_powerSpectrum.end()); }
|
|
|
|
void getPSDCopy(std::vector<Real>& copy) { copy.assign(m_psd.begin(), m_psd.begin() + m_settings.m_fftSize); }
|
2020-04-30 07:57:05 +00:00
|
|
|
|
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
|
|
|
|
virtual void feed(const Complex *begin, unsigned int length); //!< direct FFT feed
|
|
|
|
void feedTriggered(const SampleVector::const_iterator& triggerPoint, const SampleVector::const_iterator& end, bool positiveOnly);
|
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& message);
|
|
|
|
|
2021-02-08 20:52:47 +00:00
|
|
|
void setMessageQueueToGUI(MessageQueue *queue) { m_guiMessageQueue = queue; }
|
|
|
|
MessageQueue *getMessageQueueToGUI() { return m_guiMessageQueue; }
|
|
|
|
|
2020-05-05 16:58:18 +00:00
|
|
|
int webapiSpectrumSettingsGet(SWGSDRangel::SWGGLSpectrum& response, QString& errorMessage) const;
|
2020-05-05 23:38:23 +00:00
|
|
|
int webapiSpectrumSettingsPutPatch(
|
|
|
|
bool force,
|
|
|
|
const QStringList& spectrumSettingsKeys,
|
|
|
|
SWGSDRangel::SWGGLSpectrum& response, // query + response
|
|
|
|
QString& errorMessage);
|
2020-05-05 16:58:18 +00:00
|
|
|
int webapiSpectrumServerGet(SWGSDRangel::SWGSpectrumServer& response, QString& errorMessage) const;
|
2020-05-05 23:38:23 +00:00
|
|
|
int webapiSpectrumServerPost(SWGSDRangel::SWGSuccessResponse& response, QString& errorMessage);
|
|
|
|
int webapiSpectrumServerDelete(SWGSDRangel::SWGSuccessResponse& response, QString& errorMessage);
|
2020-05-05 16:58:18 +00:00
|
|
|
|
2020-04-30 07:57:05 +00:00
|
|
|
private:
|
2019-10-26 20:30:53 +00:00
|
|
|
class MsgConfigureScalingFactor : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
MsgConfigureScalingFactor(Real scalef) :
|
|
|
|
Message(),
|
|
|
|
m_scalef(scalef)
|
|
|
|
{}
|
|
|
|
|
|
|
|
Real getScalef() const { return m_scalef; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Real m_scalef;
|
|
|
|
};
|
|
|
|
|
2020-04-30 07:57:05 +00:00
|
|
|
class MsgConfigureWSpectrum : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
MsgConfigureWSpectrum(const QString& address, uint16_t port) :
|
|
|
|
Message(),
|
|
|
|
m_address(address),
|
|
|
|
m_port(port)
|
|
|
|
{}
|
|
|
|
|
|
|
|
const QString& getAddress() const { return m_address; }
|
|
|
|
uint16_t getPort() const { return m_port; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_address;
|
|
|
|
uint16_t m_port;
|
|
|
|
};
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2020-07-05 08:03:41 +00:00
|
|
|
bool m_running;
|
2014-05-18 15:52:39 +00:00
|
|
|
FFTEngine* m_fft;
|
|
|
|
FFTWindow m_window;
|
2020-03-12 05:27:38 +00:00
|
|
|
unsigned int m_fftEngineSequence;
|
2014-05-18 15:52:39 +00:00
|
|
|
|
|
|
|
std::vector<Complex> m_fftBuffer;
|
2021-02-10 07:34:42 +00:00
|
|
|
std::vector<Real> m_powerSpectrum; //!< displayable power spectrum
|
|
|
|
std::vector<Real> m_psd; //!< real PSD
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2020-05-01 00:12:30 +00:00
|
|
|
GLSpectrumSettings m_settings;
|
2021-02-08 22:40:28 +00:00
|
|
|
int m_overlapSize;
|
|
|
|
int m_refillSize;
|
|
|
|
int m_fftBufferFill;
|
2015-07-14 23:19:39 +00:00
|
|
|
bool m_needMoreSamples;
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2018-01-22 13:07:24 +00:00
|
|
|
Real m_scalef;
|
2020-04-28 16:44:03 +00:00
|
|
|
GLSpectrumInterface* m_glSpectrum;
|
2020-04-29 15:41:17 +00:00
|
|
|
WSSpectrum m_wsSpectrum;
|
2018-07-01 00:16:59 +00:00
|
|
|
MovingAverage2D<double> m_movingAverage;
|
|
|
|
FixedAverage2D<double> m_fixedAverage;
|
2018-10-12 06:47:14 +00:00
|
|
|
Max2D<double> m_max;
|
2020-07-16 14:58:45 +00:00
|
|
|
Real m_specMax;
|
2018-06-28 21:47:15 +00:00
|
|
|
|
2020-04-29 15:41:17 +00:00
|
|
|
uint64_t m_centerFrequency;
|
|
|
|
int m_sampleRate;
|
|
|
|
|
2018-06-28 21:47:15 +00:00
|
|
|
Real m_ofs;
|
2018-07-05 23:34:05 +00:00
|
|
|
Real m_powFFTDiv;
|
2018-06-28 21:47:15 +00:00
|
|
|
static const Real m_mult;
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2021-02-08 20:52:47 +00:00
|
|
|
MessageQueue *m_guiMessageQueue; //!< Input message queue to the GUI
|
|
|
|
|
2015-10-22 00:27:56 +00:00
|
|
|
QMutex m_mutex;
|
|
|
|
|
2020-07-09 22:08:42 +00:00
|
|
|
void setRunning(bool running) { m_running = running; }
|
2020-05-01 00:12:30 +00:00
|
|
|
void applySettings(const GLSpectrumSettings& settings, bool force = false);
|
2020-05-01 00:16:20 +00:00
|
|
|
void handleConfigureDSP(uint64_t centerFrequency, int sampleRate);
|
2019-10-26 20:30:53 +00:00
|
|
|
void handleScalef(Real scalef);
|
2020-05-01 00:16:20 +00:00
|
|
|
void handleWSOpenClose(bool openClose);
|
2020-04-30 07:57:05 +00:00
|
|
|
void handleConfigureWSSpectrum(const QString& address, uint16_t port);
|
2020-05-05 16:58:18 +00:00
|
|
|
|
|
|
|
static void webapiFormatSpectrumSettings(SWGSDRangel::SWGGLSpectrum& response, const GLSpectrumSettings& settings);
|
2020-05-05 23:38:23 +00:00
|
|
|
static void webapiUpdateSpectrumSettings(
|
|
|
|
GLSpectrumSettings& settings,
|
|
|
|
const QStringList& spectrumSettingsKeys,
|
|
|
|
SWGSDRangel::SWGGLSpectrum& response);
|
2014-05-18 15:52:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_SPECTRUMVIS_H
|