| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-19 06:43:20 +01:00
										 |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | // Copyright (C) 2015-2019, 2021 Edouard Griffiths, F4EXB <f4exb06@gmail.com>    //
 | 
					
						
							|  |  |  | // Copyright (C) 2015 John Greb <hexameron@spam.no>                              //
 | 
					
						
							|  |  |  | // Copyright (C) 2022 Jiří Pinkava <jiri.pinkava@rossum.ai>                      //
 | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | // Remtoe sink channel (Rx) data blocks queue                                    //
 | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +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-20 14:05:27 +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-20 14:05:27 +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/remotedataqueue.h>
 | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | #include <QDebug>
 | 
					
						
							|  |  |  | #include <QMutexLocker>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteDataQueue::RemoteDataQueue(QObject* parent) : | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | 	QObject(parent), | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | 	m_queue() | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | RemoteDataQueue::~RemoteDataQueue() | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | 	RemoteDataFrame* data; | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 23:40:28 +01:00
										 |  |  | 	while ((data = pop()) != nullptr) | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-02-03 01:52:11 +01:00
										 |  |  | 		qDebug() << "RemoteDataQueue::~RemoteDataQueue: data block was still in queue"; | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | 		delete data; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | void RemoteDataQueue::push(RemoteDataFrame* data, bool emitSignal) | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (data) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		m_lock.lock(); | 
					
						
							| 
									
										
										
										
											2021-12-10 23:40:28 +01:00
										 |  |  | 		m_queue.enqueue(data); | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | 		// qDebug("RemoteDataQueue::push: %d", m_queue.size());
 | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | 		m_lock.unlock(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 23:40:28 +01:00
										 |  |  | 	if (emitSignal) { | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | 		emit dataBlockEnqueued(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 10:44:58 +01:00
										 |  |  | RemoteDataFrame* RemoteDataQueue::pop() | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	QMutexLocker locker(&m_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-10 23:40:28 +01:00
										 |  |  | 	if (m_queue.isEmpty()) { | 
					
						
							|  |  |  | 		return nullptr; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return m_queue.dequeue(); | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | int RemoteDataQueue::size() | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	QMutexLocker locker(&m_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return m_queue.size(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 22:58:42 +01:00
										 |  |  | void RemoteDataQueue::clear() | 
					
						
							| 
									
										
										
										
											2018-08-20 14:05:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	QMutexLocker locker(&m_lock); | 
					
						
							|  |  |  | 	m_queue.clear(); | 
					
						
							|  |  |  | } |