2016-10-19 12:42:57 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// 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 //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include <QTime>
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QString>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
#include "ui_filesinkgui.h"
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "gui/colormapper.h"
|
|
|
|
#include "gui/glspectrum.h"
|
|
|
|
#include "dsp/dspengine.h"
|
|
|
|
#include "dsp/dspcommands.h"
|
|
|
|
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
#include "device/devicesinkapi.h"
|
2017-10-29 20:11:35 -04:00
|
|
|
#include "device/deviceuiset.h"
|
2016-10-19 12:42:57 -04:00
|
|
|
#include "filesinkgui.h"
|
|
|
|
|
2017-10-29 21:54:22 -04:00
|
|
|
FileSinkGui::FileSinkGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
2016-10-19 12:42:57 -04:00
|
|
|
QWidget(parent),
|
|
|
|
ui(new Ui::FileSinkGui),
|
2017-10-29 20:11:35 -04:00
|
|
|
m_deviceUISet(deviceUISet),
|
2017-12-13 18:38:22 -05:00
|
|
|
m_doApplySettings(true),
|
2017-10-14 01:28:57 -04:00
|
|
|
m_forceSettings(true),
|
2016-10-19 12:42:57 -04:00
|
|
|
m_settings(),
|
2016-10-20 19:21:17 -04:00
|
|
|
m_fileName("./test.sdriq"),
|
2017-05-25 14:13:34 -04:00
|
|
|
m_deviceSampleSink(0),
|
|
|
|
m_sampleRate(0),
|
|
|
|
m_generation(false),
|
2016-10-19 12:42:57 -04:00
|
|
|
m_startingTimeStamp(0),
|
|
|
|
m_samplesCount(0),
|
|
|
|
m_tickCount(0),
|
2018-06-21 13:28:11 -04:00
|
|
|
m_lastEngineState(DSPDeviceSinkEngine::StNotStarted)
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2017-04-06 13:19:32 -04:00
|
|
|
|
2017-05-16 10:21:59 -04:00
|
|
|
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
|
2016-10-19 12:42:57 -04:00
|
|
|
ui->centerFrequency->setValueRange(7, 0, pow(10,7));
|
|
|
|
|
2017-05-16 10:21:59 -04:00
|
|
|
ui->sampleRate->setColorMapper(ColorMapper(ColorMapper::GrayGreenYellow));
|
2017-04-06 13:19:32 -04:00
|
|
|
ui->sampleRate->setValueRange(7, 32000U, 9000000U);
|
|
|
|
|
|
|
|
ui->fileNameText->setText(m_fileName);
|
2016-10-19 12:42:57 -04:00
|
|
|
|
2017-10-29 21:54:22 -04:00
|
|
|
connect(&(m_deviceUISet->m_deviceSinkAPI->getMasterTimer()), SIGNAL(timeout()), this, SLOT(tick()));
|
2016-10-22 20:22:00 -04:00
|
|
|
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
2016-10-19 12:42:57 -04:00
|
|
|
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));
|
|
|
|
m_statusTimer.start(500);
|
|
|
|
|
|
|
|
displaySettings();
|
|
|
|
|
2017-10-29 21:54:22 -04:00
|
|
|
m_deviceSampleSink = (FileSinkOutput*) m_deviceUISet->m_deviceSinkAPI->getSampleSink();
|
2017-09-17 11:35:03 -04:00
|
|
|
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
FileSinkGui::~FileSinkGui()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::destroy()
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::setName(const QString& name)
|
|
|
|
{
|
|
|
|
setObjectName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FileSinkGui::getName() const
|
|
|
|
{
|
|
|
|
return objectName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::resetToDefaults()
|
|
|
|
{
|
|
|
|
m_settings.resetToDefaults();
|
|
|
|
displaySettings();
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 FileSinkGui::getCenterFrequency() const
|
|
|
|
{
|
2016-10-20 19:21:17 -04:00
|
|
|
return m_settings.m_centerFrequency;
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::setCenterFrequency(qint64 centerFrequency)
|
|
|
|
{
|
2016-10-20 19:21:17 -04:00
|
|
|
m_settings.m_centerFrequency = centerFrequency;
|
2016-10-19 12:42:57 -04:00
|
|
|
displaySettings();
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray FileSinkGui::serialize() const
|
|
|
|
{
|
|
|
|
return m_settings.serialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileSinkGui::deserialize(const QByteArray& data)
|
|
|
|
{
|
|
|
|
if(m_settings.deserialize(data)) {
|
|
|
|
displaySettings();
|
2017-10-14 01:28:57 -04:00
|
|
|
m_forceSettings = true;
|
2016-10-19 12:42:57 -04:00
|
|
|
sendSettings();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileSinkGui::handleMessage(const Message& message)
|
|
|
|
{
|
2017-12-27 22:04:50 -05:00
|
|
|
if (FileSinkOutput::MsgConfigureFileSink::match(message))
|
|
|
|
{
|
|
|
|
const FileSinkOutput::MsgConfigureFileSink& cfg = (FileSinkOutput::MsgConfigureFileSink&) message;
|
|
|
|
m_settings = cfg.getSettings();
|
|
|
|
blockApplySettings(true);
|
|
|
|
displaySettings();
|
|
|
|
blockApplySettings(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (FileSinkOutput::MsgReportFileSinkGeneration::match(message))
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
|
|
|
m_generation = ((FileSinkOutput::MsgReportFileSinkGeneration&)message).getAcquisition();
|
|
|
|
updateWithGeneration();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (FileSinkOutput::MsgReportFileSinkStreamTiming::match(message))
|
|
|
|
{
|
|
|
|
m_samplesCount = ((FileSinkOutput::MsgReportFileSinkStreamTiming&)message).getSamplesCount();
|
|
|
|
updateWithStreamTime();
|
|
|
|
return true;
|
|
|
|
}
|
2017-12-13 18:38:22 -05:00
|
|
|
else if (FileSinkOutput::MsgStartStop::match(message))
|
|
|
|
{
|
|
|
|
FileSinkOutput::MsgStartStop& notif = (FileSinkOutput::MsgStartStop&) message;
|
|
|
|
blockApplySettings(true);
|
|
|
|
ui->startStop->setChecked(notif.getStartStop());
|
|
|
|
blockApplySettings(false);
|
|
|
|
return true;
|
|
|
|
}
|
2016-10-19 12:42:57 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-17 11:35:03 -04:00
|
|
|
void FileSinkGui::handleInputMessages()
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
2016-10-22 20:22:00 -04:00
|
|
|
Message* message;
|
2016-10-19 12:42:57 -04:00
|
|
|
|
2017-09-17 11:35:03 -04:00
|
|
|
while ((message = m_inputMessageQueue.pop()) != 0)
|
2016-10-22 20:22:00 -04:00
|
|
|
{
|
2017-09-17 11:35:03 -04:00
|
|
|
qDebug("FileSinkGui::handleInputMessages: message: %s", message->getIdentifier());
|
2016-10-19 12:42:57 -04:00
|
|
|
|
2016-10-22 20:22:00 -04:00
|
|
|
if (DSPSignalNotification::match(*message))
|
|
|
|
{
|
|
|
|
DSPSignalNotification* notif = (DSPSignalNotification*) message;
|
2017-09-17 11:35:03 -04:00
|
|
|
qDebug("FileSinkGui::handleInputMessages: DSPSignalNotification: SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency());
|
2016-10-22 20:22:00 -04:00
|
|
|
m_sampleRate = notif->getSampleRate();
|
|
|
|
m_deviceCenterFrequency = notif->getCenterFrequency();
|
|
|
|
updateSampleRateAndFrequency();
|
|
|
|
|
|
|
|
delete message;
|
|
|
|
}
|
2017-09-17 11:35:03 -04:00
|
|
|
else
|
2016-10-23 06:22:52 -04:00
|
|
|
{
|
2017-09-17 11:35:03 -04:00
|
|
|
if (handleMessage(*message))
|
|
|
|
{
|
|
|
|
delete message;
|
|
|
|
}
|
2016-10-23 06:22:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-22 20:22:00 -04:00
|
|
|
void FileSinkGui::updateSampleRateAndFrequency()
|
|
|
|
{
|
2017-10-29 20:11:35 -04:00
|
|
|
m_deviceUISet->getSpectrum()->setSampleRate(m_sampleRate);
|
|
|
|
m_deviceUISet->getSpectrum()->setCenterFrequency(m_deviceCenterFrequency);
|
2017-01-01 21:14:46 -05:00
|
|
|
ui->deviceRateText->setText(tr("%1k").arg((float)(m_sampleRate*(1<<m_settings.m_log2Interp)) / 1000));
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::displaySettings()
|
|
|
|
{
|
2016-10-20 19:21:17 -04:00
|
|
|
ui->centerFrequency->setValue(m_settings.m_centerFrequency / 1000);
|
2017-04-06 13:19:32 -04:00
|
|
|
ui->sampleRate->setValue(m_settings.m_sampleRate);
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::sendSettings()
|
|
|
|
{
|
2016-10-22 20:22:00 -04:00
|
|
|
if(!m_updateTimer.isActive())
|
|
|
|
m_updateTimer.start(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FileSinkGui::updateHardware()
|
|
|
|
{
|
|
|
|
qDebug() << "FileSinkGui::updateHardware";
|
2017-10-14 01:28:57 -04:00
|
|
|
FileSinkOutput::MsgConfigureFileSink* message = FileSinkOutput::MsgConfigureFileSink::create(m_settings, m_forceSettings);
|
2016-10-20 19:21:17 -04:00
|
|
|
m_deviceSampleSink->getInputMessageQueue()->push(message);
|
2017-10-14 01:28:57 -04:00
|
|
|
m_forceSettings = false;
|
2016-10-22 20:22:00 -04:00
|
|
|
m_updateTimer.stop();
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::updateStatus()
|
|
|
|
{
|
2017-10-29 21:54:22 -04:00
|
|
|
int state = m_deviceUISet->m_deviceSinkAPI->state();
|
2016-10-19 12:42:57 -04:00
|
|
|
|
|
|
|
if(m_lastEngineState != state)
|
|
|
|
{
|
|
|
|
switch(state)
|
|
|
|
{
|
2016-10-19 16:32:14 -04:00
|
|
|
case DSPDeviceSinkEngine::StNotStarted:
|
2016-10-19 12:42:57 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
break;
|
2016-10-19 16:32:14 -04:00
|
|
|
case DSPDeviceSinkEngine::StIdle:
|
2016-10-19 12:42:57 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
|
|
|
break;
|
2016-10-19 16:32:14 -04:00
|
|
|
case DSPDeviceSinkEngine::StRunning:
|
2017-06-05 17:00:28 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
2016-10-19 12:42:57 -04:00
|
|
|
break;
|
2016-10-19 16:32:14 -04:00
|
|
|
case DSPDeviceSinkEngine::StError:
|
2017-06-05 17:00:28 -04:00
|
|
|
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
2017-10-29 21:54:22 -04:00
|
|
|
QMessageBox::information(this, tr("Message"), m_deviceUISet->m_deviceSinkAPI->errorMessage());
|
2016-10-19 12:42:57 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_lastEngineState = state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-20 19:21:17 -04:00
|
|
|
void FileSinkGui::on_centerFrequency_changed(quint64 value)
|
|
|
|
{
|
|
|
|
m_settings.m_centerFrequency = value * 1000;
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2017-04-06 13:19:32 -04:00
|
|
|
void FileSinkGui::on_sampleRate_changed(quint64 value)
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
2017-04-06 13:19:32 -04:00
|
|
|
m_settings.m_sampleRate = value;
|
2016-10-20 19:21:17 -04:00
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2017-01-01 21:14:46 -05:00
|
|
|
void FileSinkGui::on_interp_currentIndexChanged(int index)
|
|
|
|
{
|
|
|
|
if (index < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_settings.m_log2Interp = index;
|
|
|
|
updateSampleRateAndFrequency();
|
|
|
|
sendSettings();
|
|
|
|
}
|
|
|
|
|
2016-10-20 19:21:17 -04:00
|
|
|
void FileSinkGui::on_startStop_toggled(bool checked)
|
|
|
|
{
|
2017-12-13 18:38:22 -05:00
|
|
|
if (m_doApplySettings)
|
2016-10-20 19:21:17 -04:00
|
|
|
{
|
2017-12-13 18:38:22 -05:00
|
|
|
FileSinkOutput::MsgStartStop *message = FileSinkOutput::MsgStartStop::create(checked);
|
|
|
|
m_deviceSampleSink->getInputMessageQueue()->push(message);
|
2016-10-20 19:21:17 -04:00
|
|
|
}
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
void FileSinkGui::on_showFileDialog_clicked(bool checked __attribute__((unused)))
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
2016-10-20 19:21:17 -04:00
|
|
|
QString fileName = QFileDialog::getSaveFileName(this,
|
2018-05-10 18:00:15 -04:00
|
|
|
tr("Save I/Q record file"), ".", tr("SDR I/Q Files (*.sdriq)"), 0, QFileDialog::DontUseNativeDialog);
|
2016-10-19 12:42:57 -04:00
|
|
|
|
|
|
|
if (fileName != "")
|
|
|
|
{
|
|
|
|
m_fileName = fileName;
|
|
|
|
ui->fileNameText->setText(m_fileName);
|
|
|
|
configureFileName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::configureFileName()
|
|
|
|
{
|
|
|
|
qDebug() << "FileSinkGui::configureFileName: " << m_fileName.toStdString().c_str();
|
|
|
|
FileSinkOutput::MsgConfigureFileSinkName* message = FileSinkOutput::MsgConfigureFileSinkName::create(m_fileName);
|
2016-10-20 19:21:17 -04:00
|
|
|
m_deviceSampleSink->getInputMessageQueue()->push(message);
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::updateWithGeneration()
|
|
|
|
{
|
|
|
|
ui->showFileDialog->setEnabled(!m_generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::updateWithStreamTime()
|
|
|
|
{
|
|
|
|
int t_sec = 0;
|
|
|
|
int t_msec = 0;
|
|
|
|
|
2016-10-20 19:21:17 -04:00
|
|
|
if (m_settings.m_sampleRate > 0){
|
|
|
|
t_msec = ((m_samplesCount * 1000) / m_settings.m_sampleRate) % 1000;
|
|
|
|
t_sec = m_samplesCount / m_settings.m_sampleRate;
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QTime t(0, 0, 0, 0);
|
|
|
|
t = t.addSecs(t_sec);
|
|
|
|
t = t.addMSecs(t_msec);
|
2018-05-11 05:00:08 -04:00
|
|
|
QString s_timems = t.toString("HH:mm:ss.zzz");
|
2016-10-19 12:42:57 -04:00
|
|
|
ui->relTimeText->setText(s_timems);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkGui::tick()
|
|
|
|
{
|
2016-10-23 06:22:52 -04:00
|
|
|
if ((++m_tickCount & 0xf) == 0)
|
|
|
|
{
|
2016-10-19 12:42:57 -04:00
|
|
|
FileSinkOutput::MsgConfigureFileSinkStreamTiming* message = FileSinkOutput::MsgConfigureFileSinkStreamTiming::create();
|
2016-10-20 19:21:17 -04:00
|
|
|
m_deviceSampleSink->getInputMessageQueue()->push(message);
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
}
|