| 
									
										
										
										
											2018-08-28 06:33:15 +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-28 06:33:15 +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-28 06:33:15 +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-28 06:33:15 +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
										 |  |  | #include <channel/remotedatablock.h>
 | 
					
						
							|  |  |  | #include <channel/remotedatareadqueue.h>
 | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | const uint32_t RemoteDataReadQueue::MinimumMaxSize = 10; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteDataReadQueue::RemoteDataReadQueue() : | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         m_dataBlock(0), | 
					
						
							| 
									
										
										
										
											2018-08-29 08:48:57 +02:00
										 |  |  |         m_maxSize(MinimumMaxSize), | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         m_blockIndex(1), | 
					
						
							| 
									
										
										
										
											2018-08-28 14:04:30 +02:00
										 |  |  |         m_sampleIndex(0), | 
					
						
							| 
									
										
										
										
											2018-09-13 02:33:56 +02:00
										 |  |  |         m_sampleCount(0), | 
					
						
							| 
									
										
										
										
											2018-08-28 14:04:30 +02:00
										 |  |  |         m_full(false) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteDataReadQueue::~RemoteDataReadQueue() | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     RemoteDataBlock* data; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     while ((data = pop()) != 0) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-03 01:52:11 +01:00
										 |  |  |         qDebug("RemoteDataReadQueue::~RemoteDataReadQueue: data block was still in queue"); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         delete data; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteDataReadQueue::push(RemoteDataBlock* dataBlock) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |     if (length() >= m_maxSize) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-03 01:52:11 +01:00
										 |  |  |         qWarning("RemoteDataReadQueue::push: queue is full"); | 
					
						
							| 
									
										
										
										
											2018-08-28 14:04:30 +02:00
										 |  |  |         m_full = true; // stop filling the queue
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         RemoteDataBlock *data = m_dataReadQueue.takeLast(); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         delete data; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-28 14:04:30 +02:00
										 |  |  |     if (m_full) { | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |         m_full = (length() > m_maxSize/2); // do not fill queue again before queue is half size
 | 
					
						
							| 
									
										
										
										
											2018-08-28 14:04:30 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!m_full) { | 
					
						
							|  |  |  |         m_dataReadQueue.append(dataBlock); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteDataBlock* RemoteDataReadQueue::pop() | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (m_dataReadQueue.isEmpty()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_blockIndex = 1; | 
					
						
							|  |  |  |         m_sampleIndex = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return m_dataReadQueue.takeFirst(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteDataReadQueue::setSize(uint32_t size) | 
					
						
							| 
									
										
										
										
											2018-08-29 08:48:57 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     if (size != m_maxSize) { | 
					
						
							|  |  |  |         m_maxSize = size < MinimumMaxSize ? MinimumMaxSize : size; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteDataReadQueue::readSample(Sample& s, bool scaleForTx) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-28 14:04:30 +02:00
										 |  |  |     // depletion/repletion state
 | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |     if (m_dataBlock == 0) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |         if (length() >= m_maxSize/2) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-02-03 01:52:11 +01:00
										 |  |  |             qDebug("RemoteDataReadQueue::readSample: initial pop new block: queue size: %u", length()); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |             m_blockIndex = 1; | 
					
						
							|  |  |  |             m_dataBlock = m_dataReadQueue.takeFirst(); | 
					
						
							| 
									
										
										
										
											2018-09-13 02:33:56 +02:00
										 |  |  |             convertDataToSample(s, m_blockIndex, m_sampleIndex, scaleForTx); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |             m_sampleIndex++; | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |             m_sampleCount++; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             s = Sample{0, 0}; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-13 02:33:56 +02:00
										 |  |  |     int sampleSize = m_dataBlock->m_superBlocks[m_blockIndex].m_header.m_sampleBytes * 2; | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |     uint32_t samplesPerBlock = RemoteNbBytesPerBlock / sampleSize; | 
					
						
							| 
									
										
										
										
											2018-09-10 18:52:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (m_sampleIndex < samplesPerBlock) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-09-13 02:33:56 +02:00
										 |  |  |         convertDataToSample(s, m_blockIndex, m_sampleIndex, scaleForTx); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         m_sampleIndex++; | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |         m_sampleCount++; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_sampleIndex = 0; | 
					
						
							|  |  |  |         m_blockIndex++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  |         if (m_blockIndex < RemoteNbOrginalBlocks) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2018-09-13 02:33:56 +02:00
										 |  |  |             convertDataToSample(s, m_blockIndex, m_sampleIndex, scaleForTx); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |             m_sampleIndex++; | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |             m_sampleCount++; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2018-11-18 11:06:41 +01:00
										 |  |  |             delete m_dataBlock; | 
					
						
							|  |  |  |             m_dataBlock = 0; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-18 11:06:41 +01:00
										 |  |  |             if (length() == 0) { | 
					
						
							| 
									
										
										
										
											2019-02-03 01:52:11 +01:00
										 |  |  |                 qWarning("RemoteDataReadQueue::readSample: try to pop new block but queue is empty"); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |             if (length() > 0) | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2019-02-03 01:52:11 +01:00
										 |  |  |                 //qDebug("RemoteDataReadQueue::readSample: pop new block: queue size: %u", length());
 | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |                 m_blockIndex = 1; | 
					
						
							|  |  |  |                 m_dataBlock = m_dataReadQueue.takeFirst(); | 
					
						
							| 
									
										
										
										
											2018-09-13 02:33:56 +02:00
										 |  |  |                 convertDataToSample(s, m_blockIndex, m_sampleIndex, scaleForTx); | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |                 m_sampleIndex++; | 
					
						
							| 
									
										
										
										
											2018-08-30 01:56:53 +02:00
										 |  |  |                 m_sampleCount++; | 
					
						
							| 
									
										
										
										
											2018-08-28 06:33:15 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 s = Sample{0, 0}; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |