| 
									
										
										
										
											2016-10-19 18:42:57 +02: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                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 06:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 <errno.h>
 | 
					
						
							|  |  |  | #include <QDebug>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | #include "SWGDeviceSettings.h"
 | 
					
						
							|  |  |  | #include "SWGDeviceState.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | #include "util/simpleserializer.h"
 | 
					
						
							|  |  |  | #include "dsp/dspcommands.h"
 | 
					
						
							|  |  |  | #include "dsp/dspengine.h"
 | 
					
						
							|  |  |  | #include "dsp/filerecord.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | #include "device/deviceapi.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | #include "fileoutput.h"
 | 
					
						
							|  |  |  | #include "fileoutputworker.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(FileOutput::MsgConfigureFileOutput, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(FileOutput::MsgStartStop, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(FileOutput::MsgConfigureFileOutputName, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(FileOutput::MsgConfigureFileOutputWork, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(FileOutput::MsgConfigureFileOutputStreamTiming, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(FileOutput::MsgReportFileOutputGeneration, Message) | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(FileOutput::MsgReportFileOutputStreamTiming, Message) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FileOutput::FileOutput(DeviceAPI *deviceAPI) : | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  |     m_deviceAPI(deviceAPI), | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 	m_settings(), | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	m_fileOutputWorker(nullptr), | 
					
						
							|  |  |  | 	m_deviceDescription("FileOutput"), | 
					
						
							| 
									
										
										
										
											2016-10-23 10:38:44 +02:00
										 |  |  | 	m_fileName("./test.sdriq"), | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 	m_startingTimeStamp(0), | 
					
						
							| 
									
										
										
										
											2017-09-14 13:55:57 +02:00
										 |  |  | 	m_masterTimer(deviceAPI->getMasterTimer()) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 00:27:08 +02:00
										 |  |  |     m_deviceAPI->setNbSinkStreams(1); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | FileOutput::~FileOutput() | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	stop(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::destroy() | 
					
						
							| 
									
										
										
										
											2017-09-16 11:34:25 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::openFileStream() | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (m_ofstream.is_open()) { | 
					
						
							|  |  |  | 		m_ofstream.close(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m_ofstream.open(m_fileName.toStdString().c_str(), std::ios::binary); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 14:05:21 +02:00
										 |  |  |     FileRecord::Header header; | 
					
						
							| 
									
										
										
										
											2017-01-02 03:14:46 +01:00
										 |  |  | 	int actualSampleRate = m_settings.m_sampleRate * (1<<m_settings.m_log2Interp); | 
					
						
							| 
									
										
										
										
											2018-10-10 14:05:21 +02:00
										 |  |  |     header.sampleRate = actualSampleRate; | 
					
						
							|  |  |  |     header.centerFrequency = m_settings.m_centerFrequency; | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  |     m_startingTimeStamp = time(0); | 
					
						
							| 
									
										
										
										
											2018-10-10 14:05:21 +02:00
										 |  |  |     header.startTimeStamp = m_startingTimeStamp; | 
					
						
							|  |  |  |     header.sampleSize = SDR_RX_SAMP_SZ; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FileRecord::writeHeader(m_ofstream, header); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	qDebug() << "FileOutput::openFileStream: " << m_fileName.toStdString().c_str(); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::init() | 
					
						
							| 
									
										
										
										
											2017-12-25 12:59:44 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     applySettings(m_settings, true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | bool FileOutput::start() | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	QMutexLocker mutexLocker(&m_mutex); | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	qDebug() << "FileOutput::start"; | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-23 10:54:54 +02:00
										 |  |  | 	openFileStream(); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	m_fileOutputWorker = new FileOutputWorker(&m_ofstream, &m_sampleSourceFifo); | 
					
						
							|  |  |  |     m_fileOutputWorker->moveToThread(&m_fileOutputWorkerThread); | 
					
						
							|  |  |  | 	m_fileOutputWorker->setSamplerate(m_settings.m_sampleRate); | 
					
						
							|  |  |  | 	m_fileOutputWorker->setLog2Interpolation(m_settings.m_log2Interp); | 
					
						
							|  |  |  | 	m_fileOutputWorker->connectTimer(m_masterTimer); | 
					
						
							| 
									
										
										
										
											2020-07-12 10:22:24 +02:00
										 |  |  | 	startWorker(); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mutexLocker.unlock(); | 
					
						
							|  |  |  | 	//applySettings(m_generalSettings, m_settings, true);
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	qDebug("FileOutput::start: started"); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-14 07:40:16 +02:00
										 |  |  |     if (getMessageQueueToGUI()) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         MsgReportFileOutputGeneration *report = MsgReportFileOutputGeneration::create(true); // acquisition on
 | 
					
						
							| 
									
										
										
										
											2017-10-14 07:40:16 +02:00
										 |  |  |         getMessageQueueToGUI()->push(report); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::stop() | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	qDebug() << "FileSourceInput::stop"; | 
					
						
							|  |  |  | 	QMutexLocker mutexLocker(&m_mutex); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	if (m_fileOutputWorker) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-07-12 10:22:24 +02:00
										 |  |  | 		stopWorker(); | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 		delete m_fileOutputWorker; | 
					
						
							|  |  |  | 		m_fileOutputWorker = nullptr; | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-23 10:54:54 +02:00
										 |  |  |     if (m_ofstream.is_open()) { | 
					
						
							|  |  |  |         m_ofstream.close(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-14 07:40:16 +02:00
										 |  |  |     if (getMessageQueueToGUI()) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         MsgReportFileOutputGeneration *report = MsgReportFileOutputGeneration::create(false); // acquisition off
 | 
					
						
							| 
									
										
										
										
											2017-10-14 07:40:16 +02:00
										 |  |  |         getMessageQueueToGUI()->push(report); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::startWorker() | 
					
						
							| 
									
										
										
										
											2020-07-12 12:51:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |     m_fileOutputWorker->startWork(); | 
					
						
							|  |  |  |     m_fileOutputWorkerThread.start(); | 
					
						
							| 
									
										
										
										
											2020-07-12 12:51:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::stopWorker() | 
					
						
							| 
									
										
										
										
											2020-07-12 12:51:38 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |     m_fileOutputWorker->stopWork(); | 
					
						
							|  |  |  |     m_fileOutputWorkerThread.quit(); | 
					
						
							|  |  |  |     m_fileOutputWorkerThread.wait(); | 
					
						
							| 
									
										
										
										
											2020-07-12 12:51:38 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | QByteArray FileOutput::serialize() const | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | bool FileOutput::deserialize(const QByteArray& data) | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     bool success = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!m_settings.deserialize(data)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.resetToDefaults(); | 
					
						
							|  |  |  |         success = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |     MsgConfigureFileOutput* message = MsgConfigureFileOutput::create(m_settings, true); | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         MsgConfigureFileOutput* messageToGUI = MsgConfigureFileOutput::create(m_settings, true); | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |         m_guiMessageQueue->push(messageToGUI); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return success; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | const QString& FileOutput::getDeviceDescription() const | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return m_deviceDescription; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | int FileOutput::getSampleRate() const | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-23 10:38:44 +02:00
										 |  |  | 	return m_settings.m_sampleRate; | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | quint64 FileOutput::getCenterFrequency() const | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-10-23 10:38:44 +02:00
										 |  |  | 	return m_settings.m_centerFrequency; | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::setCenterFrequency(qint64 centerFrequency) | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |     FileOutputSettings settings = m_settings; | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |     settings.m_centerFrequency = centerFrequency; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |     MsgConfigureFileOutput* message = MsgConfigureFileOutput::create(settings, false); | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         MsgConfigureFileOutput* messageToGUI = MsgConfigureFileOutput::create(settings, false); | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  |         m_guiMessageQueue->push(messageToGUI); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | std::time_t FileOutput::getStartingTimeStamp() const | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	return m_startingTimeStamp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | bool FileOutput::handleMessage(const Message& message) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	if (MsgConfigureFileOutputName::match(message)) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 		MsgConfigureFileOutputName& conf = (MsgConfigureFileOutputName&) message; | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 		m_fileName = conf.getFileName(); | 
					
						
							|  |  |  | 		openFileStream(); | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-12-14 00:38:22 +01:00
										 |  |  | 	else if (MsgStartStop::match(message)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  |         MsgStartStop& cmd = (MsgStartStop&) message; | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         qDebug() << "FileOutput::handleMessage: MsgStartStop: " << (cmd.getStartStop() ? "start" : "stop"); | 
					
						
							| 
									
										
										
										
											2017-12-14 00:38:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (cmd.getStartStop()) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             if (m_deviceAPI->initDeviceEngine()) | 
					
						
							| 
									
										
										
										
											2017-12-14 00:38:22 +01:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |                 m_deviceAPI->startDeviceEngine(); | 
					
						
							| 
									
										
										
										
											2017-12-14 00:38:22 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             m_deviceAPI->stopDeviceEngine(); | 
					
						
							| 
									
										
										
										
											2017-12-14 00:38:22 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	else if (MsgConfigureFileOutput::match(message)) | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	    qDebug() << "FileOutput::handleMessage: MsgConfigureFileOutput"; | 
					
						
							|  |  |  | 	    MsgConfigureFileOutput& conf = (MsgConfigureFileOutput&) message; | 
					
						
							| 
									
										
										
										
											2017-10-14 07:28:57 +02:00
										 |  |  |         applySettings(conf.getSettings(), conf.getForce()); | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	else if (MsgConfigureFileOutputWork::match(message)) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 		MsgConfigureFileOutputWork& conf = (MsgConfigureFileOutputWork&) message; | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 		bool working = conf.isWorking(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 		if (m_fileOutputWorker != 0) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-07-12 10:22:24 +02:00
										 |  |  | 			if (working) { | 
					
						
							|  |  |  | 				startWorker(); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				stopWorker(); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 	else if (MsgConfigureFileOutputStreamTiming::match(message)) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         MsgReportFileOutputStreamTiming *report; | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 		if (m_fileOutputWorker != 0 && getMessageQueueToGUI()) | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | 			report = MsgReportFileOutputStreamTiming::create(m_fileOutputWorker->getSamplesCount()); | 
					
						
							| 
									
										
										
										
											2017-10-14 07:34:00 +02:00
										 |  |  | 			getMessageQueueToGUI()->push(report); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:42:57 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | void FileOutput::applySettings(const FileOutputSettings& settings, bool force) | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     QMutexLocker mutexLocker(&m_mutex); | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  |     bool forwardChange = false; | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (force || (m_settings.m_centerFrequency != settings.m_centerFrequency)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_centerFrequency = settings.m_centerFrequency; | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  |         forwardChange = true; | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (force || (m_settings.m_sampleRate != settings.m_sampleRate)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_sampleRate = settings.m_sampleRate; | 
					
						
							| 
									
										
										
										
											2016-10-23 10:38:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         if (m_fileOutputWorker != 0) | 
					
						
							| 
									
										
										
										
											2016-10-23 10:38:44 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |             m_fileOutputWorker->setSamplerate(m_settings.m_sampleRate); | 
					
						
							| 
									
										
										
										
											2016-10-23 10:38:44 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  |         forwardChange = true; | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-02 03:14:46 +01:00
										 |  |  |     if (force || (m_settings.m_log2Interp != settings.m_log2Interp)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_log2Interp = settings.m_log2Interp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         if (m_fileOutputWorker != 0) | 
					
						
							| 
									
										
										
										
											2017-01-02 03:14:46 +01:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |             m_fileOutputWorker->setLog2Interpolation(m_settings.m_log2Interp); | 
					
						
							| 
									
										
										
										
											2017-01-02 03:14:46 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         forwardChange = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  |     if (forwardChange) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  |         qDebug("FileOutput::applySettings: forward: m_centerFrequency: %llu m_sampleRate: %llu m_log2Interp: %d", | 
					
						
							| 
									
										
										
										
											2016-10-23 02:22:00 +02:00
										 |  |  |                 m_settings.m_centerFrequency, | 
					
						
							| 
									
										
										
										
											2017-01-02 03:14:46 +01:00
										 |  |  |                 m_settings.m_sampleRate, | 
					
						
							|  |  |  |                 m_settings.m_log2Interp); | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  |         DSPSignalNotification *notif = new DSPSignalNotification(m_settings.m_sampleRate, m_settings.m_centerFrequency); | 
					
						
							| 
									
										
										
										
											2017-09-13 23:42:28 +02:00
										 |  |  |         m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif); | 
					
						
							| 
									
										
										
										
											2016-10-22 21:47:59 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 01:21:17 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | int FileOutput::webapiRunGet( | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |         SWGSDRangel::SWGDeviceState& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |     m_deviceAPI->getDeviceEngineStateStr(*response.getState()); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-04 00:29:15 +02:00
										 |  |  | int FileOutput::webapiRun( | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |         bool run, | 
					
						
							|  |  |  |         SWGSDRangel::SWGDeviceState& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2017-12-14 23:29:12 +01:00
										 |  |  |     m_deviceAPI->getDeviceEngineStateStr(*response.getState()); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:22:45 +01:00
										 |  |  |     MsgStartStop *message = MsgStartStop::create(run); | 
					
						
							|  |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgStartStop *messagetoGui = MsgStartStop::create(run); | 
					
						
							|  |  |  |         m_guiMessageQueue->push(messagetoGui); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |