| 
									
										
										
										
											2018-10-09 09:26:28 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-19 06:43:20 +01:00
										 |  |  | // Copyright (C) 2015-2016, 2018-2020 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
 | 
					
						
							|  |  |  | // Copyright (C) 2018 beta-tester <alpha-beta-release@gmx.net>                   //
 | 
					
						
							|  |  |  | // Copyright (C) 2021, 2023 Jon Beniston, M7RCE <jon@beniston.com>               //
 | 
					
						
							|  |  |  | // Copyright (C) 2022 CRD716 <crd716@gmail.com>                                  //
 | 
					
						
							|  |  |  | // Copyright (C) 2022 Jiří Pinkava <jiri.pinkava@rossum.ai>                      //
 | 
					
						
							| 
									
										
										
										
											2018-10-09 09:26:28 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 14:32:15 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-10-09 09:26:28 +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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef INCLUDE_FILERECORD_H
 | 
					
						
							|  |  |  | #define INCLUDE_FILERECORD_H
 | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 15:42:34 +00:00
										 |  |  | #include <QFile>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-02 22:29:04 +02:00
										 |  |  | #include <dsp/basebandsamplesink.h>
 | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <iostream>
 | 
					
						
							|  |  |  | #include <fstream>
 | 
					
						
							|  |  |  | #include <ctime>
 | 
					
						
							| 
									
										
										
										
											2020-08-06 10:46:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "dsp/filerecordinterface.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2016-05-12 10:31:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | class Message; | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-06 10:46:49 +02:00
										 |  |  | class SDRBASE_API FileRecord : public FileRecordInterface { | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 16:40:57 +02:00
										 |  |  | #pragma pack(push, 1)
 | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  |     struct Header | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-10-09 16:40:57 +02:00
										 |  |  |     	quint32 sampleRate; | 
					
						
							| 
									
										
										
										
											2018-10-09 09:26:28 +02:00
										 |  |  |         quint64 centerFrequency; | 
					
						
							|  |  |  |         quint64 startTimeStamp; | 
					
						
							|  |  |  |         quint32 sampleSize; | 
					
						
							|  |  |  |         quint32 filler; | 
					
						
							|  |  |  |         quint32 crc32; | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2018-10-09 16:40:57 +02:00
										 |  |  | #pragma pack(pop)
 | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-21 10:06:10 +01:00
										 |  |  | 	FileRecord(quint32 sampleRate=0, quint64 centerFrequency=0); | 
					
						
							| 
									
										
										
										
											2020-08-06 10:46:49 +02:00
										 |  |  |     FileRecord(const QString& fileBase); | 
					
						
							| 
									
										
										
										
											2016-10-02 10:30:58 +02:00
										 |  |  | 	virtual ~FileRecord(); | 
					
						
							| 
									
										
										
										
											2016-05-12 10:31:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  |     quint64 getByteCount() const { return m_byteCount; } | 
					
						
							| 
									
										
										
										
											2021-05-21 10:06:10 +01:00
										 |  |  |     void setMsShift(qint64 shift) { m_msShift = shift; } | 
					
						
							| 
									
										
										
										
											2022-10-27 21:46:46 -05:00
										 |  |  |     const QString& getCurrentFileName() { return m_currentFileName; } | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-28 08:56:36 +02:00
										 |  |  |     void genUniqueFileName(uint deviceUID, int istream = -1); | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-25 08:24:23 +02:00
										 |  |  | 	virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly); | 
					
						
							| 
									
										
										
										
											2015-08-13 08:51:33 +02:00
										 |  |  | 	virtual void start(); | 
					
						
							|  |  |  | 	virtual void stop(); | 
					
						
							| 
									
										
										
										
											2015-08-14 05:00:28 +02:00
										 |  |  | 	virtual bool handleMessage(const Message& message); | 
					
						
							| 
									
										
										
										
											2020-08-06 10:46:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual void setFileName(const QString& fileBase); | 
					
						
							| 
									
										
										
										
											2021-01-18 09:55:15 +00:00
										 |  |  |     virtual bool startRecording(); | 
					
						
							|  |  |  |     virtual bool stopRecording(); | 
					
						
							| 
									
										
										
										
											2020-08-06 10:46:49 +02:00
										 |  |  |     virtual bool isRecording() const { return m_recordOn; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 09:26:28 +02:00
										 |  |  |     static bool readHeader(std::ifstream& samplefile, Header& header); //!< returns true if CRC checksum is correct else false
 | 
					
						
							| 
									
										
										
										
											2023-01-02 15:42:34 +00:00
										 |  |  |     static bool readHeader(QFile& samplefile, Header& header); //!< returns true if CRC checksum is correct else false
 | 
					
						
							| 
									
										
										
										
											2018-10-10 14:05:21 +02:00
										 |  |  |     static void writeHeader(std::ofstream& samplefile, Header& header); | 
					
						
							| 
									
										
										
										
											2023-01-02 15:42:34 +00:00
										 |  |  |     static void writeHeader(QFile& samplefile, Header& header); | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2020-08-06 10:46:49 +02:00
										 |  |  | 	QString m_fileBase; | 
					
						
							| 
									
										
										
										
											2018-10-09 09:26:28 +02:00
										 |  |  | 	quint32 m_sampleRate; | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 	quint64 m_centerFrequency; | 
					
						
							|  |  |  | 	bool m_recordOn; | 
					
						
							|  |  |  |     bool m_recordStart; | 
					
						
							| 
									
										
										
										
											2023-01-02 15:42:34 +00:00
										 |  |  | #ifdef ANDROID
 | 
					
						
							|  |  |  |     QFile m_sampleFile; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  |     std::ofstream m_sampleFile; | 
					
						
							| 
									
										
										
										
											2023-01-02 15:42:34 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-10-27 21:46:46 -05:00
										 |  |  |     QString m_currentFileName; | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  |     quint64 m_byteCount; | 
					
						
							| 
									
										
										
										
											2021-05-21 10:06:10 +01:00
										 |  |  |     qint64 m_msShift; | 
					
						
							| 
									
										
										
										
											2022-09-15 21:59:42 +02:00
										 |  |  |     QRecursiveMutex m_mutex; | 
					
						
							| 
									
										
										
										
											2015-07-28 23:54:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void writeHeader(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-09 09:26:28 +02:00
										 |  |  | #endif // INCLUDE_FILERECORD_H
 |