| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | // Copyright (C) 2020 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01: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                  //
 | 
					
						
							|  |  |  | // (at your option) any later version.                                           //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QGlobalStatic>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 23:40:52 +01:00
										 |  |  | #include "util/messagequeue.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | #include "messagepipesgcworker.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | #include "messagepipes.h"
 | 
					
						
							| 
									
										
										
										
											2021-01-13 17:07:38 +00:00
										 |  |  | #include "pipeendpoint.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 23:40:52 +01:00
										 |  |  | MessagePipes::MessagePipes() | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | 	m_gcWorker = new MessagePipesGCWorker(); | 
					
						
							| 
									
										
										
										
											2020-12-15 23:40:52 +01:00
										 |  |  | 	m_gcWorker->setC2FRegistrations( | 
					
						
							|  |  |  | 		m_registrations.getMutex(), | 
					
						
							|  |  |  | 		m_registrations.getElements(), | 
					
						
							|  |  |  | 		m_registrations.getConsumers() | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | 	m_gcWorker->moveToThread(&m_gcThread); | 
					
						
							|  |  |  | 	startGC(); | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MessagePipes::~MessagePipes() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | 	if (m_gcWorker->isRunning()) { | 
					
						
							|  |  |  | 		stopGC(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 17:07:38 +00:00
										 |  |  | MessageQueue *MessagePipes::registerChannelToFeature(const PipeEndPoint *source, Feature *feature, const QString& type) | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-15 23:40:52 +01:00
										 |  |  | 	return m_registrations.registerProducerToConsumer(source, feature, type); | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 17:07:38 +00:00
										 |  |  | MessageQueue *MessagePipes::unregisterChannelToFeature(const PipeEndPoint *source, Feature *feature, const QString& type) | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-20 01:53:03 +01:00
										 |  |  | 	MessageQueue *messageQueue = m_registrations.unregisterProducerToConsumer(source, feature, type); | 
					
						
							|  |  |  | 	m_gcWorker->addMessageQueueToDelete(messageQueue); | 
					
						
							|  |  |  | 	return messageQueue; | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-13 17:07:38 +00:00
										 |  |  | QList<MessageQueue*>* MessagePipes::getMessageQueues(const PipeEndPoint *source, const QString& type) | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-15 23:40:52 +01:00
										 |  |  | 	return m_registrations.getElements(source, type); | 
					
						
							| 
									
										
										
										
											2020-11-29 09:26:32 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-12-12 16:31:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void MessagePipes::startGC() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	qDebug("MessagePipes::startGC"); | 
					
						
							|  |  |  |     m_gcWorker->startWork(); | 
					
						
							|  |  |  |     m_gcThread.start(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MessagePipes::stopGC() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qDebug("MessagePipes::stopGC"); | 
					
						
							|  |  |  | 	m_gcWorker->stopWork(); | 
					
						
							|  |  |  | 	m_gcThread.quit(); | 
					
						
							|  |  |  | 	m_gcThread.wait(); | 
					
						
							|  |  |  | } |