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 <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
#include "dsp/dspcommands.h"
|
|
|
|
#include "dsp/dspengine.h"
|
|
|
|
#include "dsp/filerecord.h"
|
|
|
|
|
2016-10-22 15:47:59 -04:00
|
|
|
#include "device/devicesinkapi.h"
|
|
|
|
|
2016-10-19 12:42:57 -04:00
|
|
|
#include "filesinkgui.h"
|
|
|
|
#include "filesinkoutput.h"
|
|
|
|
#include "filesinkthread.h"
|
|
|
|
|
|
|
|
MESSAGE_CLASS_DEFINITION(FileSinkOutput::MsgConfigureFileSink, Message)
|
|
|
|
MESSAGE_CLASS_DEFINITION(FileSinkOutput::MsgConfigureFileSinkName, Message)
|
|
|
|
MESSAGE_CLASS_DEFINITION(FileSinkOutput::MsgConfigureFileSinkWork, Message)
|
|
|
|
MESSAGE_CLASS_DEFINITION(FileSinkOutput::MsgConfigureFileSinkStreamTiming, Message)
|
|
|
|
MESSAGE_CLASS_DEFINITION(FileSinkOutput::MsgReportFileSinkGeneration, Message)
|
|
|
|
MESSAGE_CLASS_DEFINITION(FileSinkOutput::MsgReportFileSinkStreamTiming, Message)
|
|
|
|
|
2016-10-22 15:47:59 -04:00
|
|
|
FileSinkOutput::FileSinkOutput(DeviceSinkAPI *deviceAPI, const QTimer& masterTimer) :
|
|
|
|
m_deviceAPI(deviceAPI),
|
2016-10-19 12:42:57 -04:00
|
|
|
m_settings(),
|
2016-10-19 16:32:14 -04:00
|
|
|
m_fileSinkThread(0),
|
2016-10-23 04:38:44 -04:00
|
|
|
m_deviceDescription("FileSink"),
|
|
|
|
m_fileName("./test.sdriq"),
|
2016-10-19 12:42:57 -04:00
|
|
|
m_startingTimeStamp(0),
|
|
|
|
m_masterTimer(masterTimer)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
FileSinkOutput::~FileSinkOutput()
|
|
|
|
{
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkOutput::openFileStream()
|
|
|
|
{
|
|
|
|
if (m_ofstream.is_open()) {
|
|
|
|
m_ofstream.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ofstream.open(m_fileName.toStdString().c_str(), std::ios::binary);
|
|
|
|
|
2017-01-01 21:14:46 -05:00
|
|
|
int actualSampleRate = m_settings.m_sampleRate * (1<<m_settings.m_log2Interp);
|
|
|
|
m_ofstream.write((const char *) &actualSampleRate, sizeof(int));
|
|
|
|
//m_ofstream.write((const char *) &m_settings.m_sampleRate, sizeof(int));
|
2016-10-20 19:21:17 -04:00
|
|
|
m_ofstream.write((const char *) &m_settings.m_centerFrequency, sizeof(quint64));
|
|
|
|
m_startingTimeStamp = time(0);
|
|
|
|
m_ofstream.write((const char *) &m_startingTimeStamp, sizeof(std::time_t));
|
2016-10-19 12:42:57 -04:00
|
|
|
|
|
|
|
qDebug() << "FileSinkOutput::openFileStream: " << m_fileName.toStdString().c_str();
|
|
|
|
}
|
|
|
|
|
2017-04-13 21:44:49 -04:00
|
|
|
bool FileSinkOutput::start()
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
|
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
|
|
qDebug() << "FileSinkOutput::start";
|
|
|
|
|
2016-10-23 04:54:54 -04:00
|
|
|
openFileStream();
|
2016-10-19 12:42:57 -04:00
|
|
|
|
2016-10-23 04:54:54 -04:00
|
|
|
if((m_fileSinkThread = new FileSinkThread(&m_ofstream, &m_sampleSourceFifo)) == 0)
|
|
|
|
{
|
2016-10-19 12:42:57 -04:00
|
|
|
qFatal("out of memory");
|
|
|
|
stop();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-10-23 04:38:44 -04:00
|
|
|
m_fileSinkThread->setSamplerate(m_settings.m_sampleRate);
|
2017-01-01 21:14:46 -05:00
|
|
|
m_fileSinkThread->setLog2Interpolation(m_settings.m_log2Interp);
|
2016-10-19 16:32:14 -04:00
|
|
|
m_fileSinkThread->connectTimer(m_masterTimer);
|
|
|
|
m_fileSinkThread->startWork();
|
2016-10-19 12:42:57 -04:00
|
|
|
|
|
|
|
mutexLocker.unlock();
|
|
|
|
//applySettings(m_generalSettings, m_settings, true);
|
|
|
|
qDebug("FileSinkOutput::start: started");
|
|
|
|
|
|
|
|
MsgReportFileSinkGeneration *report = MsgReportFileSinkGeneration::create(true); // acquisition on
|
|
|
|
getOutputMessageQueueToGUI()->push(report);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileSinkOutput::stop()
|
|
|
|
{
|
|
|
|
qDebug() << "FileSourceInput::stop";
|
|
|
|
QMutexLocker mutexLocker(&m_mutex);
|
|
|
|
|
2016-10-19 16:32:14 -04:00
|
|
|
if(m_fileSinkThread != 0)
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
2016-10-19 16:32:14 -04:00
|
|
|
m_fileSinkThread->stopWork();
|
|
|
|
delete m_fileSinkThread;
|
|
|
|
m_fileSinkThread = 0;
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
2016-10-23 04:54:54 -04:00
|
|
|
if (m_ofstream.is_open()) {
|
|
|
|
m_ofstream.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
MsgReportFileSinkGeneration *report = MsgReportFileSinkGeneration::create(false); // acquisition off
|
2016-10-19 12:42:57 -04:00
|
|
|
getOutputMessageQueueToGUI()->push(report);
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString& FileSinkOutput::getDeviceDescription() const
|
|
|
|
{
|
|
|
|
return m_deviceDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
int FileSinkOutput::getSampleRate() const
|
|
|
|
{
|
2016-10-23 04:38:44 -04:00
|
|
|
return m_settings.m_sampleRate;
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
quint64 FileSinkOutput::getCenterFrequency() const
|
|
|
|
{
|
2016-10-23 04:38:44 -04:00
|
|
|
return m_settings.m_centerFrequency;
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::time_t FileSinkOutput::getStartingTimeStamp() const
|
|
|
|
{
|
|
|
|
return m_startingTimeStamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FileSinkOutput::handleMessage(const Message& message)
|
|
|
|
{
|
|
|
|
if (MsgConfigureFileSinkName::match(message))
|
|
|
|
{
|
|
|
|
MsgConfigureFileSinkName& conf = (MsgConfigureFileSinkName&) message;
|
|
|
|
m_fileName = conf.getFileName();
|
|
|
|
openFileStream();
|
|
|
|
return true;
|
|
|
|
}
|
2016-10-20 19:21:17 -04:00
|
|
|
else if (MsgConfigureFileSink::match(message))
|
|
|
|
{
|
2016-10-22 20:22:00 -04:00
|
|
|
qDebug() << "FileSinkOutput::handleMessage: MsgConfigureFileSink";
|
2016-10-20 19:21:17 -04:00
|
|
|
MsgConfigureFileSink& conf = (MsgConfigureFileSink&) message;
|
|
|
|
applySettings(conf.getSettings(), false);
|
|
|
|
return true;
|
|
|
|
}
|
2016-10-19 12:42:57 -04:00
|
|
|
else if (MsgConfigureFileSinkWork::match(message))
|
|
|
|
{
|
|
|
|
MsgConfigureFileSinkWork& conf = (MsgConfigureFileSinkWork&) message;
|
|
|
|
bool working = conf.isWorking();
|
|
|
|
|
2016-10-19 16:32:14 -04:00
|
|
|
if (m_fileSinkThread != 0)
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
|
|
|
if (working)
|
|
|
|
{
|
2016-10-19 16:32:14 -04:00
|
|
|
m_fileSinkThread->startWork();
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-19 16:32:14 -04:00
|
|
|
m_fileSinkThread->stopWork();
|
2016-10-19 12:42:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (MsgConfigureFileSinkStreamTiming::match(message))
|
|
|
|
{
|
2016-10-23 06:22:52 -04:00
|
|
|
MsgReportFileSinkStreamTiming *report;
|
2016-10-19 12:42:57 -04:00
|
|
|
|
2016-10-19 16:32:14 -04:00
|
|
|
if (m_fileSinkThread != 0)
|
2016-10-19 12:42:57 -04:00
|
|
|
{
|
2016-10-19 16:32:14 -04:00
|
|
|
report = MsgReportFileSinkStreamTiming::create(m_fileSinkThread->getSamplesCount());
|
2016-10-19 12:42:57 -04:00
|
|
|
getOutputMessageQueueToGUI()->push(report);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-10-20 19:21:17 -04:00
|
|
|
|
|
|
|
void FileSinkOutput::applySettings(const FileSinkSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
QMutexLocker mutexLocker(&m_mutex);
|
2016-10-22 15:47:59 -04:00
|
|
|
bool forwardChange = false;
|
2016-10-20 19:21:17 -04:00
|
|
|
|
|
|
|
if (force || (m_settings.m_centerFrequency != settings.m_centerFrequency))
|
|
|
|
{
|
|
|
|
m_settings.m_centerFrequency = settings.m_centerFrequency;
|
2016-10-22 15:47:59 -04:00
|
|
|
forwardChange = true;
|
2016-10-20 19:21:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (force || (m_settings.m_sampleRate != settings.m_sampleRate))
|
|
|
|
{
|
|
|
|
m_settings.m_sampleRate = settings.m_sampleRate;
|
2016-10-23 04:38:44 -04:00
|
|
|
|
|
|
|
if (m_fileSinkThread != 0)
|
|
|
|
{
|
|
|
|
m_fileSinkThread->setSamplerate(m_settings.m_sampleRate);
|
|
|
|
}
|
|
|
|
|
2016-10-22 15:47:59 -04:00
|
|
|
forwardChange = true;
|
2016-10-20 19:21:17 -04:00
|
|
|
}
|
2016-10-22 15:47:59 -04:00
|
|
|
|
2017-01-01 21:14:46 -05:00
|
|
|
if (force || (m_settings.m_log2Interp != settings.m_log2Interp))
|
|
|
|
{
|
|
|
|
m_settings.m_log2Interp = settings.m_log2Interp;
|
|
|
|
|
|
|
|
if (m_fileSinkThread != 0)
|
|
|
|
{
|
|
|
|
m_fileSinkThread->setSamplerate(m_settings.m_sampleRate);
|
|
|
|
}
|
|
|
|
|
|
|
|
forwardChange = true;
|
|
|
|
}
|
|
|
|
|
2016-10-22 15:47:59 -04:00
|
|
|
if (forwardChange)
|
|
|
|
{
|
2017-04-06 14:13:31 -04:00
|
|
|
qDebug("FileSinkOutput::applySettings: forward: m_centerFrequency: %llu m_sampleRate: %llu m_log2Interp: %d",
|
2016-10-22 20:22:00 -04:00
|
|
|
m_settings.m_centerFrequency,
|
2017-01-01 21:14:46 -05:00
|
|
|
m_settings.m_sampleRate,
|
|
|
|
m_settings.m_log2Interp);
|
2016-10-22 15:47:59 -04:00
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(m_settings.m_sampleRate, m_settings.m_centerFrequency);
|
2017-09-13 17:42:28 -04:00
|
|
|
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif);
|
2016-10-22 15:47:59 -04:00
|
|
|
}
|
|
|
|
|
2016-10-20 19:21:17 -04:00
|
|
|
}
|