Multi device support: removed as much as possible (now) DSPDeviceEngine dependencies in MainWindow to source plugin GUIs. This includes file sink handling. Applies to BladeRF only.

This commit is contained in:
f4exb 2016-05-12 10:31:57 +02:00
parent 5de7b0168e
commit e25c465b82
25 changed files with 271 additions and 102 deletions

View File

@ -338,7 +338,7 @@ void AirspyGui::updateStatus()
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
break; break;
case DSPDeviceEngine::StIdle: case DSPDeviceEngine::StIdle:
ui->startStop->setStyleSheet("QToolButton { background-color : cyan; }"); ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
break; break;
case DSPDeviceEngine::StRunning: case DSPDeviceEngine::StRunning:
ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); ui->startStop->setStyleSheet("QToolButton { background-color : green; }");

View File

@ -36,6 +36,9 @@
<layout class="QHBoxLayout" name="horizontalLayout_freq"> <layout class="QHBoxLayout" name="horizontalLayout_freq">
<item> <item>
<widget class="ButtonSwitch" name="startStop"> <widget class="ButtonSwitch" name="startStop">
<property name="toolTip">
<string>start/stop acquisition</string>
</property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>

View File

@ -22,7 +22,10 @@
#include "ui_bladerfgui.h" #include "ui_bladerfgui.h"
#include "plugin/pluginapi.h" #include "plugin/pluginapi.h"
#include "gui/colormapper.h" #include "gui/colormapper.h"
#include "gui/glspectrum.h"
#include "dsp/dspengine.h" #include "dsp/dspengine.h"
#include "dsp/dspcommands.h"
#include "dsp/filesink.h"
#include "bladerfgui.h" #include "bladerfgui.h"
BladerfGui::BladerfGui(PluginAPI* pluginAPI, QWidget* parent) : BladerfGui::BladerfGui(PluginAPI* pluginAPI, QWidget* parent) :
@ -31,6 +34,7 @@ BladerfGui::BladerfGui(PluginAPI* pluginAPI, QWidget* parent) :
m_pluginAPI(pluginAPI), m_pluginAPI(pluginAPI),
m_settings(), m_settings(),
m_sampleSource(NULL), m_sampleSource(NULL),
m_sampleRate(0),
m_lastEngineState((DSPDeviceEngine::State)-1) m_lastEngineState((DSPDeviceEngine::State)-1)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -57,10 +61,19 @@ BladerfGui::BladerfGui(PluginAPI* pluginAPI, QWidget* parent) :
m_sampleSource = new BladerfInput(); m_sampleSource = new BladerfInput();
DSPEngine::instance()->setSource(m_sampleSource); DSPEngine::instance()->setSource(m_sampleSource);
char recFileNameCStr[30];
sprintf(recFileNameCStr, "test_%d.sdriq", m_pluginAPI->getDeviceUID());
m_fileSink = new FileSink(std::string(recFileNameCStr));
m_pluginAPI->addSink(m_fileSink);
connect(m_pluginAPI->getDeviceOutputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleDSPMessages()), Qt::QueuedConnection);
} }
BladerfGui::~BladerfGui() BladerfGui::~BladerfGui()
{ {
m_pluginAPI->removeSink(m_fileSink);
delete m_fileSink;
delete m_sampleSource; // Valgrind memcheck delete m_sampleSource; // Valgrind memcheck
delete ui; delete ui;
} }
@ -129,6 +142,37 @@ bool BladerfGui::handleMessage(const Message& message)
} }
} }
void BladerfGui::handleDSPMessages()
{
Message* message;
while ((message = m_pluginAPI->getDeviceOutputMessageQueue()->pop()) != 0)
{
qDebug("BladerfGui::handleDSPMessages: message: %s", message->getIdentifier());
if (DSPSignalNotification::match(*message))
{
DSPSignalNotification* notif = (DSPSignalNotification*) message;
m_sampleRate = notif->getSampleRate();
m_deviceCenterFrequency = notif->getCenterFrequency();
qDebug("BladerfGui::handleDSPMessages: SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency());
// updateCenterFreqDisplay();
updateSampleRateAndFrequency();
// qDebug() << "MainWindow::handleDSPMessages: forward to file sink";
// m_fileSink->handleMessage(*notif);
delete message;
}
}
}
void BladerfGui::updateSampleRateAndFrequency()
{
m_pluginAPI->getSpectrum()->setSampleRate(m_sampleRate);
m_pluginAPI->getSpectrum()->setCenterFrequency(m_deviceCenterFrequency);
ui->deviceRateLabel->setText(tr("%1k").arg((float)m_sampleRate / 1000));
}
void BladerfGui::displaySettings() void BladerfGui::displaySettings()
{ {
ui->centerFrequency->setValue(m_settings.m_centerFrequency / 1000); ui->centerFrequency->setValue(m_settings.m_centerFrequency / 1000);
@ -325,6 +369,20 @@ void BladerfGui::on_startStop_toggled(bool checked)
} }
} }
void BladerfGui::on_record_toggled(bool checked)
{
if (checked)
{
ui->record->setStyleSheet("QToolButton { background-color : red; }");
m_fileSink->startRecording();
}
else
{
ui->record->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
m_fileSink->stopRecording();
}
}
void BladerfGui::updateHardware() void BladerfGui::updateHardware()
{ {
qDebug() << "BladerfGui::updateHardware"; qDebug() << "BladerfGui::updateHardware";

View File

@ -23,6 +23,7 @@
#include "bladerfinput.h" #include "bladerfinput.h"
class PluginAPI; class PluginAPI;
class FileSink;
namespace Ui { namespace Ui {
class BladerfGui; class BladerfGui;
@ -56,13 +57,18 @@ private:
QTimer m_statusTimer; QTimer m_statusTimer;
std::vector<int> m_gains; std::vector<int> m_gains;
SampleSource* m_sampleSource; SampleSource* m_sampleSource;
FileSink *m_fileSink; //!< File sink to record device I/Q output
int m_sampleRate;
quint64 m_deviceCenterFrequency; //!< Center frequency in device
int m_lastEngineState; int m_lastEngineState;
void displaySettings(); void displaySettings();
void sendSettings(); void sendSettings();
unsigned int getXb200Index(bool xb_200, bladerf_xb200_path xb200Path, bladerf_xb200_filter xb200Filter); unsigned int getXb200Index(bool xb_200, bladerf_xb200_path xb200Path, bladerf_xb200_filter xb200Filter);
void updateSampleRateAndFrequency();
private slots: private slots:
void handleDSPMessages();
void on_centerFrequency_changed(quint64 value); void on_centerFrequency_changed(quint64 value);
void on_dcOffset_toggled(bool checked); void on_dcOffset_toggled(bool checked);
void on_iqImbalance_toggled(bool checked); void on_iqImbalance_toggled(bool checked);
@ -75,6 +81,7 @@ private slots:
void on_xb200_currentIndexChanged(int index); void on_xb200_currentIndexChanged(int index);
void on_fcPos_currentIndexChanged(int index); void on_fcPos_currentIndexChanged(int index);
void on_startStop_toggled(bool checked); void on_startStop_toggled(bool checked);
void on_record_toggled(bool checked);
void updateHardware(); void updateHardware();
void updateStatus(); void updateStatus();
}; };

View File

@ -6,8 +6,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>300</width> <width>259</width>
<height>175</height> <height>207</height>
</rect> </rect>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
@ -35,16 +35,56 @@
<item> <item>
<layout class="QHBoxLayout" name="horizontalLayout_freq"> <layout class="QHBoxLayout" name="horizontalLayout_freq">
<item> <item>
<widget class="ButtonSwitch" name="startStop"> <layout class="QVBoxLayout" name="deviceUILayout">
<property name="text"> <item>
<string/> <layout class="QHBoxLayout" name="deviceButtonsLayout">
</property> <item>
<property name="icon"> <widget class="ButtonSwitch" name="startStop">
<iconset resource="../../../sdrbase/resources/res.qrc"> <property name="toolTip">
<normaloff>:/play.png</normaloff> <string>start/stop acquisition</string>
<normalon>:/stop.png</normalon>:/play.png</iconset> </property>
</property> <property name="text">
</widget> <string/>
</property>
<property name="icon">
<iconset resource="../../../sdrbase/resources/res.qrc">
<normaloff>:/play.png</normaloff>
<normalon>:/stop.png</normalon>:/play.png</iconset>
</property>
</widget>
</item>
<item>
<widget class="ButtonSwitch" name="record">
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="../../../sdrbase/resources/res.qrc">
<normaloff>:/record_off.png</normaloff>
<normalon>:/record_on.png</normalon>:/record_off.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="deviceRateLayout">
<item>
<widget class="QLabel" name="deviceRateLabel">
<property name="toolTip">
<string>Sample rate kS/s</string>
</property>
<property name="text">
<string>00000k</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item> </item>
<item> <item>
<spacer name="freqLeftSpacer"> <spacer name="freqLeftSpacer">
@ -141,13 +181,6 @@
</property> </property>
</widget> </widget>
</item> </item>
<item row="0" column="0">
<widget class="QLabel" name="corrLabel">
<property name="text">
<string>Auto</string>
</property>
</widget>
</item>
<item row="0" column="3"> <item row="0" column="3">
<spacer name="horizontalSpacer_2"> <spacer name="horizontalSpacer_2">
<property name="orientation"> <property name="orientation">
@ -161,6 +194,13 @@
</property> </property>
</spacer> </spacer>
</item> </item>
<item row="0" column="0">
<widget class="QLabel" name="corrLabel">
<property name="text">
<string>Auto</string>
</property>
</widget>
</item>
<item row="0" column="4"> <item row="0" column="4">
<widget class="QLabel" name="xb200Label"> <widget class="QLabel" name="xb200Label">
<property name="text"> <property name="text">

View File

@ -408,7 +408,7 @@ void FCDProGui::updateStatus()
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
break; break;
case DSPDeviceEngine::StIdle: case DSPDeviceEngine::StIdle:
ui->startStop->setStyleSheet("QToolButton { background-color : cyan; }"); ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
break; break;
case DSPDeviceEngine::StRunning: case DSPDeviceEngine::StRunning:
ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); ui->startStop->setStyleSheet("QToolButton { background-color : green; }");

View File

@ -25,6 +25,9 @@
<property name="windowTitle"> <property name="windowTitle">
<string>FunCubeDongle</string> <string>FunCubeDongle</string>
</property> </property>
<property name="toolTip">
<string>start/stop acquisition</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout"> <layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing"> <property name="spacing">
<number>3</number> <number>3</number>

View File

@ -182,7 +182,7 @@ void FCDProPlusGui::updateStatus()
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
break; break;
case DSPDeviceEngine::StIdle: case DSPDeviceEngine::StIdle:
ui->startStop->setStyleSheet("QToolButton { background-color : cyan; }"); ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
break; break;
case DSPDeviceEngine::StRunning: case DSPDeviceEngine::StRunning:
ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); ui->startStop->setStyleSheet("QToolButton { background-color : green; }");

View File

@ -36,6 +36,9 @@
<layout class="QHBoxLayout" name="horizontalLayout_3"> <layout class="QHBoxLayout" name="horizontalLayout_3">
<item> <item>
<widget class="ButtonSwitch" name="startStop"> <widget class="ButtonSwitch" name="startStop">
<property name="toolTip">
<string>start/stop acquisition</string>
</property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>

View File

@ -209,7 +209,7 @@ void FileSourceGui::updateStatus()
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
break; break;
case DSPDeviceEngine::StIdle: case DSPDeviceEngine::StIdle:
ui->startStop->setStyleSheet("QToolButton { background-color : cyan; }"); ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
break; break;
case DSPDeviceEngine::StRunning: case DSPDeviceEngine::StRunning:
ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); ui->startStop->setStyleSheet("QToolButton { background-color : green; }");

View File

@ -36,6 +36,9 @@
<layout class="QHBoxLayout" name="horizontalLayout_freq"> <layout class="QHBoxLayout" name="horizontalLayout_freq">
<item> <item>
<widget class="ButtonSwitch" name="startStop"> <widget class="ButtonSwitch" name="startStop">
<property name="toolTip">
<string>start/stop acquisition</string>
</property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>

View File

@ -321,7 +321,7 @@ void HackRFGui::updateStatus()
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
break; break;
case DSPDeviceEngine::StIdle: case DSPDeviceEngine::StIdle:
ui->startStop->setStyleSheet("QToolButton { background-color : cyan; }"); ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
break; break;
case DSPDeviceEngine::StRunning: case DSPDeviceEngine::StRunning:
ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); ui->startStop->setStyleSheet("QToolButton { background-color : green; }");

View File

@ -42,6 +42,9 @@
<layout class="QHBoxLayout" name="horizontalLayout_freq"> <layout class="QHBoxLayout" name="horizontalLayout_freq">
<item> <item>
<widget class="ButtonSwitch" name="startStop"> <widget class="ButtonSwitch" name="startStop">
<property name="toolTip">
<string>start/stop acquisition</string>
</property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>

View File

@ -288,7 +288,7 @@ void RTLSDRGui::updateStatus()
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
break; break;
case DSPDeviceEngine::StIdle: case DSPDeviceEngine::StIdle:
ui->startStop->setStyleSheet("QToolButton { background-color : cyan; }"); ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
break; break;
case DSPDeviceEngine::StRunning: case DSPDeviceEngine::StRunning:
ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); ui->startStop->setStyleSheet("QToolButton { background-color : green; }");

View File

@ -36,6 +36,9 @@
<layout class="QHBoxLayout" name="horizontalLayout_freq"> <layout class="QHBoxLayout" name="horizontalLayout_freq">
<item> <item>
<widget class="ButtonSwitch" name="startStop"> <widget class="ButtonSwitch" name="startStop">
<property name="toolTip">
<string>start/stop acquisition</string>
</property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>

View File

@ -654,7 +654,7 @@ void SDRdaemonGui::updateStatus()
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
break; break;
case DSPDeviceEngine::StIdle: case DSPDeviceEngine::StIdle:
ui->startStop->setStyleSheet("QToolButton { background-color : cyan; }"); ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
break; break;
case DSPDeviceEngine::StRunning: case DSPDeviceEngine::StRunning:
ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); ui->startStop->setStyleSheet("QToolButton { background-color : green; }");

View File

@ -36,6 +36,9 @@
<layout class="QHBoxLayout" name="horizontalLayout_freq"> <layout class="QHBoxLayout" name="horizontalLayout_freq">
<item> <item>
<widget class="ButtonSwitch" name="startStop"> <widget class="ButtonSwitch" name="startStop">
<property name="toolTip">
<string>start/stop acquisition</string>
</property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>

View File

@ -1,12 +1,10 @@
#include "dsp/filesink.h" #include "dsp/filesink.h"
#include "dsp/dspcommands.h" #include "dsp/dspcommands.h"
#include "util/simpleserializer.h" #include "util/simpleserializer.h"
#include "util/messagequeue.h" #include "util/message.h"
#include <QDebug> #include <QDebug>
MESSAGE_CLASS_DEFINITION(FileSink::MsgConfigureFileSink, Message)
FileSink::FileSink() : FileSink::FileSink() :
SampleSink(), SampleSink(),
m_fileName(std::string("test.sdriq")), m_fileName(std::string("test.sdriq")),
@ -19,15 +17,29 @@ FileSink::FileSink() :
setObjectName("FileSink"); setObjectName("FileSink");
} }
FileSink::FileSink(const std::string& filename) :
SampleSink(),
m_fileName(std::string(filename)),
m_sampleRate(0),
m_centerFrequency(0),
m_recordOn(false),
m_recordStart(false),
m_byteCount(0)
{
setObjectName("FileSink");
}
FileSink::~FileSink() FileSink::~FileSink()
{ {
stopRecording(); stopRecording();
} }
void FileSink::configure(MessageQueue* msgQueue, const std::string& filename) void FileSink::setFileName(const std::string& filename)
{ {
Message* cmd = MsgConfigureFileSink::create(filename); if (!m_recordOn)
msgQueue->push(cmd); {
m_fileName = filename;
}
} }
void FileSink::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly) void FileSink::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly)
@ -94,13 +106,6 @@ bool FileSink::handleMessage(const Message& message)
<< " m_centerFrequency: " << m_centerFrequency; << " m_centerFrequency: " << m_centerFrequency;
return true; return true;
} }
else if (MsgConfigureFileSink::match(message))
{
MsgConfigureFileSink& conf = (MsgConfigureFileSink&) message;
handleConfigure(conf.getFileName());
qDebug() << "FileSink::handleMessage: MsgConfigureFileSink: fileName: " << m_fileName.c_str();
return true;
}
else else
{ {
return false; return false;
@ -113,7 +118,7 @@ void FileSink::handleConfigure(const std::string& fileName)
{ {
stopRecording(); stopRecording();
} }
m_fileName = fileName; m_fileName = fileName;
} }

View File

@ -8,8 +8,8 @@
#include <ctime> #include <ctime>
#include "dsp/samplesink.h" #include "dsp/samplesink.h"
#include "util/export.h" #include "util/export.h"
#include "util/message.h"
#include "util/messagequeue.h" class Message;
class SDRANGEL_API FileSink : public SampleSink { class SDRANGEL_API FileSink : public SampleSink {
public: public:
@ -22,11 +22,12 @@ public:
}; };
FileSink(); FileSink();
FileSink(const std::string& filename);
virtual ~FileSink(); virtual ~FileSink();
quint64 getByteCount() const { return m_byteCount; } quint64 getByteCount() const { return m_byteCount; }
void configure(MessageQueue* msgQueue, const std::string& filename); void setFileName(const std::string& filename);
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly); virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
virtual void start(); virtual void start();
@ -37,26 +38,6 @@ public:
static void readHeader(std::ifstream& samplefile, Header& header); static void readHeader(std::ifstream& samplefile, Header& header);
private: private:
class MsgConfigureFileSink : public Message {
MESSAGE_CLASS_DECLARATION
public:
const std::string& getFileName() const { return m_fileName; }
static MsgConfigureFileSink* create(const std::string& fileName)
{
return new MsgConfigureFileSink(fileName);
}
private:
std::string m_fileName;
MsgConfigureFileSink(const std::string& fileName) :
Message(),
m_fileName(fileName)
{ }
};
std::string m_fileName; std::string m_fileName;
int m_sampleRate; int m_sampleRate;
quint64 m_centerFrequency; quint64 m_centerFrequency;

View File

@ -38,7 +38,7 @@
#include "gui/audiodialog.h" #include "gui/audiodialog.h"
#include "dsp/dspengine.h" #include "dsp/dspengine.h"
#include "dsp/spectrumvis.h" #include "dsp/spectrumvis.h"
#include "dsp/filesink.h" //#include "dsp/filesink.h"
#include "dsp/dspcommands.h" #include "dsp/dspcommands.h"
#include "plugin/plugingui.h" #include "plugin/plugingui.h"
#include "plugin/pluginapi.h" #include "plugin/pluginapi.h"
@ -105,13 +105,13 @@ MainWindow::MainWindow(QWidget* parent) :
DSPDeviceEngine *dspDeviceEngine = m_dspEngine->getDeviceEngineByIndex(0); DSPDeviceEngine *dspDeviceEngine = m_dspEngine->getDeviceEngineByIndex(0);
connect(dspDeviceEngine->getOutputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleDSPMessages()), Qt::QueuedConnection); // connect(dspDeviceEngine->getOutputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleDSPMessages()), Qt::QueuedConnection);
dspDeviceEngine->start(); dspDeviceEngine->start();
m_pluginManager = new PluginManager(this, dspDeviceEngine); m_deviceUIs.push_back(new DeviceUISet(m_masterTimer));
m_pluginManager->loadPlugins();
m_deviceUIs.push_back(new DeviceUISet(m_masterTimer)); m_pluginManager = new PluginManager(this, dspDeviceEngine, m_deviceUIs.back()->m_spectrum);
m_pluginManager->loadPlugins();
ui->tabSpectra->addTab(m_deviceUIs.back()->m_spectrum, "X0"); ui->tabSpectra->addTab(m_deviceUIs.back()->m_spectrum, "X0");
ui->tabSpectraGUI->addTab(m_deviceUIs.back()->m_spectrumGUI, "X0"); ui->tabSpectraGUI->addTab(m_deviceUIs.back()->m_spectrumGUI, "X0");
@ -123,8 +123,8 @@ MainWindow::MainWindow(QWidget* parent) :
m_deviceUIs.back()->m_sampleSource->blockSignals(sampleSourceSignalsBlocked); m_deviceUIs.back()->m_sampleSource->blockSignals(sampleSourceSignalsBlocked);
ui->tabInputs->addTab(m_deviceUIs.back()->m_sampleSource, "X0"); ui->tabInputs->addTab(m_deviceUIs.back()->m_sampleSource, "X0");
m_fileSink = new FileSink(); // m_fileSink = new FileSink();
dspDeviceEngine->addSink(m_fileSink); // TODO: one file sink per device engine // dspDeviceEngine->addSink(m_fileSink); // TODO: one file sink per device engine
qDebug() << "MainWindow::MainWindow: loadSettings..."; qDebug() << "MainWindow::MainWindow: loadSettings...";
@ -174,9 +174,9 @@ MainWindow::~MainWindow()
delete m_deviceUIs[i]; delete m_deviceUIs[i];
} }
m_dspEngine->removeSink(m_fileSink); // TODO: one file sink per device engine // m_dspEngine->removeSink(m_fileSink); // TODO: one file sink per device engine
//m_dspEngine->removeSink(m_rxSpectrumVis); // //m_dspEngine->removeSink(m_rxSpectrumVis);
delete m_fileSink; // delete m_fileSink;
//delete m_rxSpectrumVis; //delete m_rxSpectrumVis;
delete m_pluginManager; delete m_pluginManager;
@ -364,9 +364,7 @@ void MainWindow::handleDSPMessages()
while ((message = m_dspEngine->getOutputMessageQueue()->pop()) != 0) while ((message = m_dspEngine->getOutputMessageQueue()->pop()) != 0)
{ {
qDebug("Message: %s", message->getIdentifier()); qDebug("MainWindow::handleDSPMessages: message: %s", message->getIdentifier());
std::cerr << "MainWindow::handleDSPMessages: " << message->getIdentifier() << std::endl;
if (DSPSignalNotification::match(*message)) if (DSPSignalNotification::match(*message))
{ {
@ -376,8 +374,8 @@ void MainWindow::handleDSPMessages()
qDebug("SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency()); qDebug("SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency());
updateCenterFreqDisplay(); updateCenterFreqDisplay();
updateSampleRate(); updateSampleRate();
qDebug() << "MainWindow::handleDSPMessages: forward to file sink"; // qDebug() << "MainWindow::handleDSPMessages: forward to file sink";
m_fileSink->handleMessage(*notif); // m_fileSink->handleMessage(*notif);
delete message; delete message;
} }
@ -390,8 +388,7 @@ void MainWindow::handleMessages()
while ((message = m_inputMessageQueue.pop()) != 0) while ((message = m_inputMessageQueue.pop()) != 0)
{ {
qDebug("Message: %s", message->getIdentifier()); qDebug("MainWindow::handleMessages: message: %s", message->getIdentifier());
std::cerr << "MainWindow::handleMessages: " << message->getIdentifier() << std::endl;
if (!m_pluginManager->handleMessage(*message)) if (!m_pluginManager->handleMessage(*message))
{ {
@ -400,17 +397,17 @@ void MainWindow::handleMessages()
} }
} }
void MainWindow::on_action_Start_Recording_triggered() //void MainWindow::on_action_Start_Recording_triggered()
{ //{
m_recording->setColor(Qt::red); // m_recording->setColor(Qt::red);
m_fileSink->startRecording(); // m_fileSink->startRecording();
} //}
//
void MainWindow::on_action_Stop_Recording_triggered() //void MainWindow::on_action_Stop_Recording_triggered()
{ //{
m_recording->setColor(Qt::gray); // m_recording->setColor(Qt::gray);
m_fileSink->stopRecording(); // m_fileSink->stopRecording();
} //}
void MainWindow::on_action_View_Fullscreen_toggled(bool checked) void MainWindow::on_action_View_Fullscreen_toggled(bool checked)
{ {

View File

@ -37,7 +37,7 @@ class SpectrumVis;
class GLSpectrum; class GLSpectrum;
class GLSpectrumGUI; class GLSpectrumGUI;
class ChannelWindow; class ChannelWindow;
class FileSink; //class FileSink;
class SampleSource; class SampleSource;
class PluginAPI; class PluginAPI;
class PluginGUI; class PluginGUI;
@ -96,7 +96,7 @@ private:
MainSettings m_settings; MainSettings m_settings;
SpectrumVis* m_rxSpectrumVis; SpectrumVis* m_rxSpectrumVis;
FileSink *m_fileSink; // FileSink *m_fileSink;
std::vector<DeviceUISet*> m_deviceUIs; std::vector<DeviceUISet*> m_deviceUIs;
@ -135,8 +135,8 @@ private:
private slots: private slots:
void handleDSPMessages(); void handleDSPMessages();
void handleMessages(); void handleMessages();
void on_action_Start_Recording_triggered(); // void on_action_Start_Recording_triggered();
void on_action_Stop_Recording_triggered(); // void on_action_Stop_Recording_triggered();
void on_action_View_Fullscreen_toggled(bool checked); void on_action_View_Fullscreen_toggled(bool checked);
void on_presetSave_clicked(); void on_presetSave_clicked();
void on_presetUpdate_clicked(); void on_presetUpdate_clicked();

View File

@ -58,6 +58,16 @@ void PluginAPI::registerSampleSource(const QString& sourceName, PluginInterface*
m_pluginManager->registerSampleSource(sourceName, plugin); m_pluginManager->registerSampleSource(sourceName, plugin);
} }
void PluginAPI::addSink(SampleSink* sink)
{
m_pluginManager->addSink(sink);
}
void PluginAPI::removeSink(SampleSink* sink)
{
m_pluginManager->removeSink(sink);
}
void PluginAPI::addThreadedSink(ThreadedSampleSink* sink) void PluginAPI::addThreadedSink(ThreadedSampleSink* sink)
{ {
m_pluginManager->addThreadedSink(sink); m_pluginManager->addThreadedSink(sink);
@ -93,6 +103,26 @@ QString PluginAPI::errorMessage()
return m_pluginManager->errorMessage(); return m_pluginManager->errorMessage();
} }
uint PluginAPI::getDeviceUID() const
{
return m_pluginManager->getDeviceUID();
}
MessageQueue *PluginAPI::getDeviceInputMessageQueue()
{
return m_pluginManager->getDeviceInputMessageQueue();
}
MessageQueue *PluginAPI::getDeviceOutputMessageQueue()
{
return m_pluginManager->getDeviceOutputMessageQueue();
}
GLSpectrum *PluginAPI::getSpectrum()
{
return m_pluginManager->getSpectrum();
}
PluginAPI::PluginAPI(PluginManager* pluginManager, MainWindow* mainWindow) : PluginAPI::PluginAPI(PluginManager* pluginManager, MainWindow* mainWindow) :
QObject(mainWindow), QObject(mainWindow),
m_pluginManager(pluginManager), m_pluginManager(pluginManager),

View File

@ -18,6 +18,7 @@ class MessageQueue;
class MainWindow; class MainWindow;
class ChannelMarker; class ChannelMarker;
class ThreadedSampleSink; class ThreadedSampleSink;
class GLSpectrum;
class PluginGUI; class PluginGUI;
class SDRANGEL_API PluginAPI : public QObject { class SDRANGEL_API PluginAPI : public QObject {
@ -42,13 +43,20 @@ public:
void registerSampleSource(const QString& sourceName, PluginInterface* plugin); void registerSampleSource(const QString& sourceName, PluginInterface* plugin);
// Device engine stuff // Device engine stuff
void addThreadedSink(ThreadedSampleSink* sink); void addSink(SampleSink* sink); //!< Add a sample sink to device engine
void removeThreadedSink(ThreadedSampleSink* sink); void removeSink(SampleSink* sink); //!< Remove a sample sink from device engine
void addThreadedSink(ThreadedSampleSink* sink); //!< Add a sample sink that will run on its own thread to device engine
void removeThreadedSink(ThreadedSampleSink* sink); //!< Remove a sample sink that runs on its own thread from device engine
bool initAcquisition(); //!< Initialize device engine acquisition sequence bool initAcquisition(); //!< Initialize device engine acquisition sequence
bool startAcquisition(); //!< Start device engine acquisition sequence bool startAcquisition(); //!< Start device engine acquisition sequence
void stopAcquistion(); //!< Stop device engine acquisition sequence void stopAcquistion(); //!< Stop device engine acquisition sequence
DSPDeviceEngine::State state() const; //!< device engine state DSPDeviceEngine::State state() const; //!< device engine state
QString errorMessage(); //!< Return the current device engine error message QString errorMessage(); //!< Return the current device engine error message
uint getDeviceUID() const; //!< Return the current device engine unique ID
MessageQueue *getDeviceInputMessageQueue();
MessageQueue *getDeviceOutputMessageQueue();
GLSpectrum *getSpectrum();
// R/O access to main window // R/O access to main window
const MainWindow* getMainWindow() const { return m_mainWindow; } const MainWindow* getMainWindow() const { return m_mainWindow; }

View File

@ -10,11 +10,12 @@
#include <QDebug> #include <QDebug>
PluginManager::PluginManager(MainWindow* mainWindow, DSPDeviceEngine* dspDeviceEngine, QObject* parent) : PluginManager::PluginManager(MainWindow* mainWindow, DSPDeviceEngine* dspDeviceEngine, GLSpectrum *spectrum, QObject* parent) :
QObject(parent), QObject(parent),
m_pluginAPI(this, mainWindow), m_pluginAPI(this, mainWindow),
m_mainWindow(mainWindow), m_mainWindow(mainWindow),
m_dspDeviceEngine(dspDeviceEngine), m_dspDeviceEngine(dspDeviceEngine),
m_spectrum(spectrum),
m_sampleSourceId(), m_sampleSourceId(),
m_sampleSourceSerial(), m_sampleSourceSerial(),
m_sampleSourceSequence(0), m_sampleSourceSequence(0),
@ -86,6 +87,16 @@ void PluginManager::registerSampleSource(const QString& sourceName, PluginInterf
m_sampleSourceRegistrations.append(SampleSourceRegistration(sourceName, plugin)); m_sampleSourceRegistrations.append(SampleSourceRegistration(sourceName, plugin));
} }
void PluginManager::addSink(SampleSink* sink)
{
m_dspDeviceEngine->addSink(sink);
}
void PluginManager::removeSink(SampleSink* sink)
{
m_dspDeviceEngine->removeSink(sink);
}
void PluginManager::addThreadedSink(ThreadedSampleSink* sink) void PluginManager::addThreadedSink(ThreadedSampleSink* sink)
{ {
m_dspDeviceEngine->addThreadedSink(sink); m_dspDeviceEngine->addThreadedSink(sink);

View File

@ -14,7 +14,10 @@ class Preset;
class MainWindow; class MainWindow;
class SampleSource; class SampleSource;
class Message; class Message;
class MessageQueue;
class DSPDeviceEngine; class DSPDeviceEngine;
class GLSpectrum;
class SampleSink;
class ThreadedSampleSink; class ThreadedSampleSink;
class SDRANGEL_API PluginManager : public QObject { class SDRANGEL_API PluginManager : public QObject {
@ -36,7 +39,7 @@ public:
typedef QList<Plugin> Plugins; typedef QList<Plugin> Plugins;
explicit PluginManager(MainWindow* mainWindow, DSPDeviceEngine* dspDeviceEngine, QObject* parent = NULL); explicit PluginManager(MainWindow* mainWindow, DSPDeviceEngine* dspDeviceEngine, GLSpectrum *spectrum, QObject* parent = NULL);
~PluginManager(); ~PluginManager();
void loadPlugins(); void loadPlugins();
@ -49,13 +52,20 @@ public:
void registerSampleSource(const QString& sourceName, PluginInterface* plugin); void registerSampleSource(const QString& sourceName, PluginInterface* plugin);
void addThreadedSink(ThreadedSampleSink* sink); void addSink(SampleSink* sink);
void removeThreadedSink(ThreadedSampleSink* sink); void removeSink(SampleSink* sink);
void addThreadedSink(ThreadedSampleSink* sink);
void removeThreadedSink(ThreadedSampleSink* sink);
bool initAcquisition() { return m_dspDeviceEngine->initAcquisition(); } //!< Initialize device engine acquisition sequence bool initAcquisition() { return m_dspDeviceEngine->initAcquisition(); } //!< Initialize device engine acquisition sequence
bool startAcquisition() { return m_dspDeviceEngine->startAcquisition(); } //!< Start device engine acquisition sequence bool startAcquisition() { return m_dspDeviceEngine->startAcquisition(); } //!< Start device engine acquisition sequence
void stopAcquistion() { m_dspDeviceEngine->stopAcquistion(); } //!< Stop device engine acquisition sequence void stopAcquistion() { m_dspDeviceEngine->stopAcquistion(); } //!< Stop device engine acquisition sequence
DSPDeviceEngine::State state() const { return m_dspDeviceEngine->state(); } DSPDeviceEngine::State state() const { return m_dspDeviceEngine->state(); }
QString errorMessage() { return m_dspDeviceEngine->errorMessage(); } //!< Return the current device engine error message QString errorMessage() { return m_dspDeviceEngine->errorMessage(); } //!< Return the current device engine error message
uint getDeviceUID() const { return m_dspDeviceEngine->getUID(); } //!< Return the current device engine unique ID
MessageQueue *getDeviceInputMessageQueue() { return m_dspDeviceEngine->getInputMessageQueue(); }
MessageQueue *getDeviceOutputMessageQueue() { return m_dspDeviceEngine->getOutputMessageQueue(); }
GLSpectrum *getSpectrum() { return m_spectrum; }
void loadSettings(const Preset* preset); void loadSettings(const Preset* preset);
void loadSourceSettings(const Preset* preset); void loadSourceSettings(const Preset* preset);
@ -132,6 +142,7 @@ private:
PluginAPI m_pluginAPI; PluginAPI m_pluginAPI;
MainWindow* m_mainWindow; MainWindow* m_mainWindow;
DSPDeviceEngine* m_dspDeviceEngine; DSPDeviceEngine* m_dspDeviceEngine;
GLSpectrum* m_spectrum;
Plugins m_plugins; Plugins m_plugins;
ChannelRegistrations m_channelRegistrations; ChannelRegistrations m_channelRegistrations;