| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2017 Edouard Griffiths, F4EXB                                   //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 PLUGINS_CHANNELTX_UDPSINK_UDPSINKUDPHANDLER_H_
 | 
					
						
							|  |  |  | #define PLUGINS_CHANNELTX_UDPSINK_UDPSINKUDPHANDLER_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							|  |  |  | #include <QUdpSocket>
 | 
					
						
							|  |  |  | #include <QHostAddress>
 | 
					
						
							|  |  |  | #include <QMutex>
 | 
					
						
							| 
									
										
										
										
											2017-09-12 13:54:32 +02:00
										 |  |  | #include <stdint.h>
 | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "dsp/dsptypes.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-23 02:17:54 +02:00
										 |  |  | #include "util/message.h"
 | 
					
						
							|  |  |  | #include "util/messagequeue.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-16 04:00:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  | class UDPSinkUDPHandler : public QObject | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     UDPSinkUDPHandler(); | 
					
						
							|  |  |  |     virtual ~UDPSinkUDPHandler(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void start(); | 
					
						
							|  |  |  |     void stop(); | 
					
						
							|  |  |  |     void configureUDPLink(const QString& address, quint16 port); | 
					
						
							|  |  |  |     void resetReadIndex(); | 
					
						
							| 
									
										
										
										
											2017-08-17 01:03:09 +02:00
										 |  |  |     void resizeBuffer(float sampleRate); | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 00:25:20 +02:00
										 |  |  |     void readSample(FixReal &t); | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  |     void readSample(Sample &s); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-25 02:21:34 +02:00
										 |  |  |     void setAutoRWBalance(bool autoRWBalance) { m_autoRWBalance = autoRWBalance; } | 
					
						
							| 
									
										
										
										
											2017-08-16 04:00:33 +02:00
										 |  |  |     void setFeedbackMessageQueue(MessageQueue *messageQueue) { m_feedbackMessageQueue = messageQueue; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-16 03:33:05 +02:00
										 |  |  |     /** Get buffer gauge value in % of buffer size ([-50:50])
 | 
					
						
							|  |  |  |      *  [-50:0] : write leads or read lags | 
					
						
							|  |  |  |      *  [0:50]  : read leads or write lags | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     inline int32_t getBufferGauge() const | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-08-17 01:03:09 +02:00
										 |  |  |         int32_t val = m_rwDelta - (m_nbUDPFrames/2); | 
					
						
							|  |  |  |         return (100*val) / m_nbUDPFrames; | 
					
						
							| 
									
										
										
										
											2017-08-16 03:33:05 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  |     static const int m_udpBlockSize = 512; // UDP block size in number of bytes
 | 
					
						
							| 
									
										
										
										
											2017-08-17 00:38:08 +02:00
										 |  |  |     static const int m_minNbUDPFrames = 256;  // number of frames of block size in the UDP buffer
 | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | public slots: | 
					
						
							|  |  |  |     void dataReadyRead(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2017-08-23 02:17:54 +02:00
										 |  |  |     class MsgUDPAddressAndPort : public Message { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         const QString& getAddress() const { return m_address; } | 
					
						
							|  |  |  |         quint16 getPort() const { return m_port; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgUDPAddressAndPort* create(QString address, quint16 port) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return new MsgUDPAddressAndPort(address, port); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         QString m_address; | 
					
						
							|  |  |  |         quint16 m_port; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgUDPAddressAndPort(QString address, quint16 port) : | 
					
						
							|  |  |  |             Message(), | 
					
						
							|  |  |  |             m_address(address), | 
					
						
							|  |  |  |             m_port(port) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 00:38:08 +02:00
										 |  |  |     typedef char (udpBlk_t)[m_udpBlockSize]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-18 12:31:17 +02:00
										 |  |  |     void moveData(char *blk); | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  |     void advanceReadPointer(int nbBytes); | 
					
						
							| 
									
										
										
										
											2017-08-23 02:17:54 +02:00
										 |  |  |     void applyUDPLink(const QString& address, quint16 port); | 
					
						
							|  |  |  |     bool handleMessage(const Message& message); | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QUdpSocket *m_dataSocket; | 
					
						
							|  |  |  |     QHostAddress m_dataAddress; | 
					
						
							|  |  |  |     QHostAddress m_remoteAddress; | 
					
						
							|  |  |  |     quint16 m_dataPort; | 
					
						
							| 
									
										
										
										
											2017-08-18 12:31:17 +02:00
										 |  |  |     quint16 m_remotePort; | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  |     bool m_dataConnected; | 
					
						
							| 
									
										
										
										
											2017-08-17 01:03:09 +02:00
										 |  |  |     udpBlk_t *m_udpBuf; | 
					
						
							| 
									
										
										
										
											2017-08-18 12:31:17 +02:00
										 |  |  |     char m_udpDump[m_udpBlockSize + 8192]; // UDP block size + largest possible block
 | 
					
						
							|  |  |  |     int m_udpDumpIndex; | 
					
						
							| 
									
										
										
										
											2017-08-17 01:03:09 +02:00
										 |  |  |     int m_nbUDPFrames; | 
					
						
							|  |  |  |     int m_nbAllocatedUDPFrames; | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  |     int m_writeIndex; | 
					
						
							|  |  |  |     int m_readFrameIndex; | 
					
						
							|  |  |  |     int m_readIndex; | 
					
						
							| 
									
										
										
										
											2017-08-16 03:33:05 +02:00
										 |  |  |     int m_rwDelta; | 
					
						
							| 
									
										
										
										
											2017-08-16 11:35:47 +02:00
										 |  |  |     float m_d; | 
					
						
							| 
									
										
										
										
											2017-08-25 02:21:34 +02:00
										 |  |  |     bool m_autoRWBalance; | 
					
						
							| 
									
										
										
										
											2017-08-16 04:00:33 +02:00
										 |  |  |     MessageQueue *m_feedbackMessageQueue; | 
					
						
							| 
									
										
										
										
											2017-08-23 02:17:54 +02:00
										 |  |  |     MessageQueue m_inputMessageQueue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void handleMessages(); | 
					
						
							| 
									
										
										
										
											2017-08-15 20:23:49 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* PLUGINS_CHANNELTX_UDPSINK_UDPSINKUDPHANDLER_H_ */
 |