| 
									
										
										
										
											2018-08-27 18:27:09 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2018 Edouard Griffiths, F4EXB.                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | // Remote sink channel (Rx) data blocks to read queue                            //
 | 
					
						
							| 
									
										
										
										
											2018-08-27 18:27:09 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | // SDRangel can serve as a remote SDR front end that handles the interface       //
 | 
					
						
							|  |  |  | // with a physical device and sends or receives the I/Q samples stream via UDP   //
 | 
					
						
							|  |  |  | // to or from another SDRangel instance or any program implementing the same     //
 | 
					
						
							|  |  |  | // protocol. The remote SDRangel is controlled via its Web REST API.             //
 | 
					
						
							| 
									
										
										
										
											2018-08-27 18:27:09 +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-08-27 18:27:09 +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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | #ifndef CHANNEL_REMOTEDATAREADQUEUE_H_
 | 
					
						
							|  |  |  | #define CHANNEL_REMOTEDATAREADQUEUE_H_
 | 
					
						
							| 
									
										
										
										
											2018-08-27 18:27:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | #include <QQueue>
 | 
					
						
							| 
									
										
										
										
											2018-08-27 18:27:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 09:37:13 +02:00
										 |  |  | #include "export.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | class RemoteDataFrame; | 
					
						
							| 
									
										
										
										
											2020-11-20 19:47:04 +01:00
										 |  |  | struct Sample; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 09:37:13 +02:00
										 |  |  | class SDRBASE_API RemoteDataReadQueue | 
					
						
							| 
									
										
										
										
											2018-08-27 18:27:09 +02:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     RemoteDataReadQueue(); | 
					
						
							|  |  |  |     ~RemoteDataReadQueue(); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     void push(RemoteDataFrame* dataFrame); //!< push frame on the queue
 | 
					
						
							| 
									
										
										
										
											2021-12-19 11:30:48 +01:00
										 |  |  |     void readSample(Sample& s, bool isTx); //!< Read sample from queue
 | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |     uint32_t length() const { return m_dataReadQueue.size(); } //!< Returns queue length
 | 
					
						
							|  |  |  |     uint32_t size() const { return m_maxSize; } //!< Returns queue size (max length)
 | 
					
						
							|  |  |  |     void setSize(uint32_t size);              //!< Sets the queue size (max length)
 | 
					
						
							| 
									
										
										
										
											2018-08-31 08:47:18 +02:00
										 |  |  |     uint32_t readSampleCount() const { return m_sampleCount; } //!< Returns the absolute number of samples read
 | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 08:48:57 +02:00
										 |  |  |     static const uint32_t MinimumMaxSize; | 
					
						
							| 
									
										
										
										
											2018-08-27 18:27:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     QQueue<RemoteDataFrame*> m_dataReadQueue; | 
					
						
							|  |  |  |     RemoteDataFrame *m_dataFrame; | 
					
						
							| 
									
										
										
										
											2018-08-29 08:48:57 +02:00
										 |  |  |     uint32_t m_maxSize; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |     uint32_t m_blockIndex; | 
					
						
							|  |  |  |     uint32_t m_sampleIndex; | 
					
						
							| 
									
										
										
										
											2018-08-31 08:47:18 +02:00
										 |  |  |     uint32_t m_sampleCount; //!< use a counter capped below 2^31 as it is going to be converted to an int in the web interface
 | 
					
						
							| 
									
										
										
										
											2018-09-10 18:52:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |     RemoteDataFrame* pop();                //!< Pop frame from the queue
 | 
					
						
							| 
									
										
										
										
											2021-12-10 23:40:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-19 11:30:48 +01:00
										 |  |  |     inline void convertDataToSample(Sample& s, uint32_t blockIndex, uint32_t sampleIndex, bool isTx) | 
					
						
							| 
									
										
										
										
											2018-09-10 18:52:40 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |         int sampleSize = m_dataFrame->m_superBlocks[blockIndex].m_header.m_sampleBytes * 2; // I/Q sample size in data block
 | 
					
						
							| 
									
										
										
										
											2018-09-13 02:33:56 +02:00
										 |  |  |         int32_t iconv, qconv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-18 22:48:20 +01:00
										 |  |  |         if (sizeof(Sample) == sampleSize) // no conversion
 | 
					
						
							| 
									
										
										
										
											2018-11-18 11:06:41 +01:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  |             s = *((Sample*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize])); | 
					
						
							| 
									
										
										
										
											2018-11-18 11:06:41 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-19 11:30:48 +01:00
										 |  |  |         else if (isTx) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (sampleSize == 2) // 8 -> 16 bits
 | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2021-12-20 22:30:43 +01:00
										 |  |  |                 int8_t *buf = (int8_t*)  m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf; | 
					
						
							|  |  |  |                 iconv = buf[sampleIndex*sampleSize] * (1<<8); | 
					
						
							|  |  |  |                 qconv = buf[sampleIndex*sampleSize+1]  * (1<<8); | 
					
						
							| 
									
										
										
										
											2021-12-19 11:30:48 +01:00
										 |  |  |                 s.setReal(iconv); | 
					
						
							|  |  |  |                 s.setImag(qconv); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if (sampleSize == 4) // just convert types (always 16 bits wide)
 | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2021-12-20 22:30:43 +01:00
										 |  |  |                 iconv = *((int16_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize])); | 
					
						
							|  |  |  |                 qconv = *((int16_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize+2])); | 
					
						
							| 
									
										
										
										
											2021-12-19 11:30:48 +01:00
										 |  |  |                 s.setReal(iconv); | 
					
						
							|  |  |  |                 s.setImag(qconv); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if (sampleSize == 8) // just convert types (always 16 bits wide)
 | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2021-12-20 22:30:43 +01:00
										 |  |  |                 iconv = *((int32_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize])); | 
					
						
							|  |  |  |                 qconv = *((int32_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize+4])); | 
					
						
							| 
									
										
										
										
											2021-12-19 11:30:48 +01:00
										 |  |  |                 s.setReal(iconv); | 
					
						
							|  |  |  |                 s.setImag(qconv); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else // invalid
 | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 s = Sample{0, 0}; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-18 22:48:20 +01:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2018-09-10 18:52:40 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2021-12-20 22:30:43 +01:00
										 |  |  |             if ((sampleSize == 2) && (sizeof(Sample) == 2)) // 8 -> 16 bits
 | 
					
						
							| 
									
										
										
										
											2021-12-18 22:48:20 +01:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2021-12-20 22:30:43 +01:00
										 |  |  |                 int8_t *buf = (int8_t*) m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf; | 
					
						
							|  |  |  |                 iconv = buf[sampleIndex*sampleSize] * (1<<8); | 
					
						
							|  |  |  |                 qconv = buf[sampleIndex*sampleSize+1] * (1<<8); | 
					
						
							|  |  |  |                 s.setReal(iconv); | 
					
						
							|  |  |  |                 s.setImag(qconv); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if ((sampleSize == 2) && (sizeof(Sample) == 4)) // 8 -> 24 bits
 | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 int8_t *buf = (int8_t*) m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf; | 
					
						
							|  |  |  |                 iconv = buf[sampleIndex*sampleSize] * (1<<16); | 
					
						
							|  |  |  |                 qconv = buf[sampleIndex*sampleSize+1] * (1<<16); | 
					
						
							| 
									
										
										
										
											2021-12-18 22:48:20 +01:00
										 |  |  |                 s.setReal(iconv); | 
					
						
							|  |  |  |                 s.setImag(qconv); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if (sampleSize == 4) // 16 -> 24 bits
 | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2021-12-20 22:30:43 +01:00
										 |  |  |                 iconv = *((int16_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize])) * (1<<8); | 
					
						
							|  |  |  |                 qconv = *((int16_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize+2])) * (1<<8); | 
					
						
							| 
									
										
										
										
											2021-12-18 22:48:20 +01:00
										 |  |  |                 s.setReal(iconv); | 
					
						
							|  |  |  |                 s.setImag(qconv); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if (sampleSize == 8) // 24 -> 16 bits
 | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2021-12-20 22:30:43 +01:00
										 |  |  |                 iconv = *((int32_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize])) / (1<<8); | 
					
						
							|  |  |  |                 qconv = *((int32_t*) &(m_dataFrame->m_superBlocks[blockIndex].m_protectedBlock.buf[sampleIndex*sampleSize+4])) / (1<<8); | 
					
						
							| 
									
										
										
										
											2021-12-18 22:48:20 +01:00
										 |  |  |                 s.setReal(iconv); | 
					
						
							|  |  |  |                 s.setImag(qconv); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else // invalid
 | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 s = Sample{0, 0}; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-09-10 18:52:40 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-27 18:27:09 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | #endif /* CHANNEL_REMOTEDATAREADQUEUE_H_ */
 |