mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 04:50:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef INCLUDE_FILESINK_H
 | |
| #define INCLUDE_FILESINK_H
 | |
| 
 | |
| #include <dsp/basebandsamplesink.h>
 | |
| #include <string>
 | |
| #include <iostream>
 | |
| #include <fstream>
 | |
| 
 | |
| #include <ctime>
 | |
| #include "util/export.h"
 | |
| 
 | |
| class Message;
 | |
| 
 | |
| class SDRANGEL_API FileRecord : public BasebandSampleSink {
 | |
| public:
 | |
| 
 | |
|     struct Header
 | |
|     {
 | |
|         int         sampleRate;
 | |
|         quint64     centerFrequency;
 | |
|         std::time_t startTimeStamp;
 | |
|     };
 | |
| 
 | |
| 	FileRecord();
 | |
|     FileRecord(const std::string& filename);
 | |
| 	virtual ~FileRecord();
 | |
| 
 | |
|     quint64 getByteCount() const { return m_byteCount; }
 | |
| 
 | |
|     void setFileName(const std::string& filename);
 | |
| 
 | |
| 	virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
 | |
| 	virtual void start();
 | |
| 	virtual void stop();
 | |
| 	virtual bool handleMessage(const Message& message);
 | |
|     void startRecording();
 | |
|     void stopRecording();
 | |
|     static void readHeader(std::ifstream& samplefile, Header& header);
 | |
| 
 | |
| private:
 | |
| 	std::string m_fileName;
 | |
| 	int m_sampleRate;
 | |
| 	quint64 m_centerFrequency;
 | |
| 	bool m_recordOn;
 | |
|     bool m_recordStart;
 | |
|     std::ofstream m_sampleFile;
 | |
|     quint64 m_byteCount;
 | |
| 
 | |
| 	void handleConfigure(const std::string& fileName);
 | |
|     void writeHeader();
 | |
| };
 | |
| 
 | |
| #endif // INCLUDE_FILESINK_H
 |