| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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.                                           //
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01: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_SAMPLEFIFO_H
 | 
					
						
							|  |  |  | #define INCLUDE_SAMPLEFIFO_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							|  |  |  | #include <QMutex>
 | 
					
						
							| 
									
										
										
										
											2020-04-19 06:13:32 +02:00
										 |  |  | #include <QElapsedTimer>
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #include "dsp/dsptypes.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRBASE_API SampleSinkFifo : public QObject { | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	QMutex m_mutex; | 
					
						
							| 
									
										
										
										
											2020-04-19 06:13:32 +02:00
										 |  |  | 	QElapsedTimer m_msgRateTimer; | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	int m_suppressed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SampleVector m_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 08:36:38 +02:00
										 |  |  | 	unsigned int m_size; | 
					
						
							|  |  |  | 	unsigned int m_fill; | 
					
						
							|  |  |  | 	unsigned int m_head; | 
					
						
							|  |  |  | 	unsigned int m_tail; | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 08:36:38 +02:00
										 |  |  | 	void create(unsigned int s); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2019-05-18 06:30:37 +02:00
										 |  |  | 	SampleSinkFifo(QObject* parent = nullptr); | 
					
						
							|  |  |  | 	SampleSinkFifo(int size, QObject* parent = nullptr); | 
					
						
							|  |  |  |     SampleSinkFifo(const SampleSinkFifo& other); | 
					
						
							| 
									
										
										
										
											2016-10-06 19:18:02 +02:00
										 |  |  | 	~SampleSinkFifo(); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool setSize(int size); | 
					
						
							| 
									
										
										
										
											2019-11-23 07:39:57 +01:00
										 |  |  |     void reset(); | 
					
						
							| 
									
										
										
										
											2019-10-03 08:36:38 +02:00
										 |  |  | 	inline unsigned int size() const { return m_size; } | 
					
						
							|  |  |  | 	inline unsigned int fill() { QMutexLocker mutexLocker(&m_mutex); unsigned int fill = m_fill; return fill; } | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 08:36:38 +02:00
										 |  |  | 	unsigned int write(const quint8* data, unsigned int count); | 
					
						
							|  |  |  | 	unsigned int write(SampleVector::const_iterator begin, SampleVector::const_iterator end); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 08:36:38 +02:00
										 |  |  | 	unsigned int read(SampleVector::iterator begin, SampleVector::iterator end); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 08:36:38 +02:00
										 |  |  | 	unsigned int readBegin(unsigned int count, | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 		SampleVector::iterator* part1Begin, SampleVector::iterator* part1End, | 
					
						
							|  |  |  | 		SampleVector::iterator* part2Begin, SampleVector::iterator* part2End); | 
					
						
							| 
									
										
										
										
											2019-10-03 08:36:38 +02:00
										 |  |  | 	unsigned int readCommit(unsigned int count); | 
					
						
							| 
									
										
										
										
											2019-11-23 07:39:57 +01:00
										 |  |  |     static unsigned int getSizePolicy(unsigned int sampleRate); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | signals: | 
					
						
							|  |  |  | 	void dataReady(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // INCLUDE_SAMPLEFIFO_H
 |