/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2020 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 // // (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 . // /////////////////////////////////////////////////////////////////////////////////// #include #include #include "dsp/dspengine.h" #include "dsp/dspcommands.h" #include "dsp/spectrumvis.h" #include "util/db.h" #include "filesinkmessages.h" #include "filesinkbaseband.h" MESSAGE_CLASS_DEFINITION(FileSinkBaseband::MsgConfigureFileSinkBaseband, Message) MESSAGE_CLASS_DEFINITION(FileSinkBaseband::MsgConfigureFileSinkWork, Message) FileSinkBaseband::FileSinkBaseband() : m_channelizer(&m_sink), m_specMax(0), m_squelchLevel(0), m_squelchOpen(false) { qDebug("FileSinkBaseband::FileSinkBaseband"); m_sampleFifo.setSize(SampleSinkFifo::getSizePolicy(48000)); } FileSinkBaseband::~FileSinkBaseband() { qDebug("FileSinkBaseband::~FileSinkBaseband"); m_inputMessageQueue.clear(); stopWork(); } void FileSinkBaseband::reset() { QMutexLocker mutexLocker(&m_mutex); m_inputMessageQueue.clear(); m_sampleFifo.reset(); } void FileSinkBaseband::startWork() { QMutexLocker mutexLocker(&m_mutex); qDebug("FileSinkBaseband::startWork"); m_timer = new QTimer(); connect( m_timer, &QTimer::timeout, this, &FileSinkBaseband::tick ); m_timer->start(200); QObject::connect( &m_sampleFifo, &SampleSinkFifo::dataReady, this, &FileSinkBaseband::handleData, Qt::QueuedConnection ); QObject::connect( &m_inputMessageQueue, &MessageQueue::messageEnqueued, this, &FileSinkBaseband::handleInputMessages ); } void FileSinkBaseband::stopWork() { QMutexLocker mutexLocker(&m_mutex); qDebug("FileSinkBaseband::stopWork"); m_timer->stop(); m_sink.stopRecording(); QObject::disconnect( &m_inputMessageQueue, &MessageQueue::messageEnqueued, this, &FileSinkBaseband::handleInputMessages ); QObject::disconnect( &m_sampleFifo, &SampleSinkFifo::dataReady, this, &FileSinkBaseband::handleData ); delete m_timer; } void FileSinkBaseband::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end) { m_sampleFifo.write(begin, end); } void FileSinkBaseband::handleData() { QMutexLocker mutexLocker(&m_mutex); while ((m_sampleFifo.fill() > 0) && (m_inputMessageQueue.size() == 0)) { SampleVector::iterator part1begin; SampleVector::iterator part1end; SampleVector::iterator part2begin; SampleVector::iterator part2end; std::size_t count = m_sampleFifo.readBegin(m_sampleFifo.fill(), &part1begin, &part1end, &part2begin, &part2end); // first part of FIFO data if (part1begin != part1end) { m_channelizer.feed(part1begin, part1end); } // second part of FIFO data (used when block wraps around) if(part2begin != part2end) { m_channelizer.feed(part2begin, part2end); } m_sampleFifo.readCommit((unsigned int) count); } } void FileSinkBaseband::handleInputMessages() { Message* message; while ((message = m_inputMessageQueue.pop()) != nullptr) { if (handleMessage(*message)) { delete message; } } } bool FileSinkBaseband::handleMessage(const Message& cmd) { if (MsgConfigureFileSinkBaseband::match(cmd)) { QMutexLocker mutexLocker(&m_mutex); MsgConfigureFileSinkBaseband& cfg = (MsgConfigureFileSinkBaseband&) cmd; qDebug() << "FileSinkBaseband::handleMessage: MsgConfigureFileSinkBaseband"; applySettings(cfg.getSettings(), cfg.getForce()); return true; } else if (DSPSignalNotification::match(cmd)) { QMutexLocker mutexLocker(&m_mutex); DSPSignalNotification& notif = (DSPSignalNotification&) cmd; qDebug() << "FileSinkBaseband::handleMessage: DSPSignalNotification:" << " basebandSampleRate: " << notif.getSampleRate() << " cnterFrequency: " << notif.getCenterFrequency(); m_sampleFifo.setSize(SampleSinkFifo::getSizePolicy(notif.getSampleRate())); m_centerFrequency = notif.getCenterFrequency(); m_channelizer.setBasebandSampleRate(notif.getSampleRate()); int desiredSampleRate = m_channelizer.getBasebandSampleRate() / (1<getSpecMax(); bool squelchOpen = m_specMax > m_squelchLevel; if (squelchOpen != m_squelchOpen) { if (m_messageQueueToGUI) { FileSinkMessages::MsgReportSquelch *msg = FileSinkMessages::MsgReportSquelch::create(squelchOpen); m_messageQueueToGUI->push(msg); } if (m_settings.m_squelchRecordingEnable) { m_sink.squelchRecording(squelchOpen); } } m_squelchOpen = squelchOpen; } }