2013-01-23 11:41:13 +01:00
|
|
|
/******************************************************************************\
|
2020-01-01 15:41:43 +01:00
|
|
|
* Copyright (c) 2004-2020
|
2013-01-23 11:41:13 +01:00
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Volker Fischer
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* 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; either version 2 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 for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
2019-07-09 08:52:38 +02:00
|
|
|
#pragma once
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QMessageBox>
|
2013-05-10 21:34:55 +02:00
|
|
|
#include <QThread>
|
2013-01-23 11:41:13 +01:00
|
|
|
#include <QMutex>
|
|
|
|
#include <vector>
|
|
|
|
#include "global.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "util.h"
|
2014-02-16 09:12:07 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <sys/socket.h>
|
2014-02-11 21:39:07 +01:00
|
|
|
#endif
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
|
2014-01-06 16:57:40 +01:00
|
|
|
// The header files channel.h and server.h require to include this header file
|
|
|
|
// so we get a cyclic dependency. To solve this issue, a prototype of the
|
|
|
|
// channel class and server class is defined here.
|
|
|
|
class CServer; // forward declaration of CServer
|
|
|
|
class CChannel; // forward declaration of CChannel
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Definitions ****************************************************************/
|
|
|
|
// number of ports we try to bind until we give up
|
|
|
|
#define NUM_SOCKET_PORTS_TO_TRY 50
|
|
|
|
|
|
|
|
|
|
|
|
/* Classes ********************************************************************/
|
2014-02-16 09:12:07 +01:00
|
|
|
/* Base socket class -------------------------------------------------------- */
|
2013-01-23 11:41:13 +01:00
|
|
|
class CSocket : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
CSocket ( CChannel* pNewChannel,
|
|
|
|
const quint16 iPortNumber )
|
2014-01-03 09:54:49 +01:00
|
|
|
: pChannel ( pNewChannel ),
|
|
|
|
bIsClient ( true ),
|
|
|
|
bJitterBufferOK ( true ) { Init ( iPortNumber ); }
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
CSocket ( CServer* pNServP,
|
|
|
|
const quint16 iPortNumber )
|
2014-01-03 09:54:49 +01:00
|
|
|
: pServer ( pNServP ),
|
|
|
|
bIsClient ( false ),
|
|
|
|
bJitterBufferOK ( true ) { Init ( iPortNumber ); }
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2014-02-11 18:35:39 +01:00
|
|
|
virtual ~CSocket();
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
void SendPacket ( const CVector<uint8_t>& vecbySendBuf,
|
|
|
|
const CHostAddress& HostAddr );
|
|
|
|
|
2014-01-03 09:54:49 +01:00
|
|
|
bool GetAndResetbJitterBufferOKFlag();
|
2014-02-13 19:38:25 +01:00
|
|
|
void Close();
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
protected:
|
2020-04-11 10:03:23 +02:00
|
|
|
void Init ( const quint16 iPortNumber );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
#ifdef _WIN32
|
2014-02-11 18:35:39 +01:00
|
|
|
SOCKET UdpSocket;
|
2014-02-16 09:12:07 +01:00
|
|
|
#else
|
2014-02-11 21:21:32 +01:00
|
|
|
int UdpSocket;
|
2014-02-11 18:35:39 +01:00
|
|
|
#endif
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
QMutex Mutex;
|
|
|
|
|
|
|
|
CVector<uint8_t> vecbyRecBuf;
|
|
|
|
CHostAddress RecHostAddr;
|
2014-01-23 21:33:55 +01:00
|
|
|
QHostAddress SenderAddress;
|
|
|
|
quint16 SenderPort;
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2013-05-10 21:46:59 +02:00
|
|
|
CChannel* pChannel; // for client
|
|
|
|
CServer* pServer; // for server
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
bool bIsClient;
|
|
|
|
|
2014-01-03 09:54:49 +01:00
|
|
|
bool bJitterBufferOK;
|
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
public slots:
|
|
|
|
void OnDataReceived();
|
2013-05-10 21:34:55 +02:00
|
|
|
|
|
|
|
signals:
|
2014-02-16 09:12:07 +01:00
|
|
|
void NewConnection(); // for the client
|
2014-02-11 18:35:39 +01:00
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
void NewConnection ( int iChID,
|
|
|
|
CHostAddress RecHostAddr ); // for the server
|
2014-02-13 22:03:33 +01:00
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
void ServerFull ( CHostAddress RecHostAddr );
|
|
|
|
|
|
|
|
void InvalidPacketReceived ( CHostAddress RecHostAddr );
|
|
|
|
|
|
|
|
void ProtcolMessageReceived ( int iRecCounter,
|
|
|
|
int iRecID,
|
|
|
|
CVector<uint8_t> vecbyMesBodyData,
|
|
|
|
CHostAddress HostAdr );
|
|
|
|
|
|
|
|
void ProtcolCLMessageReceived ( int iRecID,
|
|
|
|
CVector<uint8_t> vecbyMesBodyData,
|
|
|
|
CHostAddress HostAdr );
|
2013-05-10 21:34:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
/* Socket which runs in a separate high priority thread --------------------- */
|
|
|
|
// The receive socket should be put in a high priority thread to ensure the GUI
|
|
|
|
// does not effect the stability of the audio stream (e.g. if the GUI is on
|
|
|
|
// high load because of a table update, the incoming network packets must still
|
|
|
|
// be put in the jitter buffer with highest priority).
|
2013-06-03 18:07:17 +02:00
|
|
|
class CHighPrioSocket : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
CHighPrioSocket ( CChannel* pNewChannel,
|
2014-02-16 09:12:07 +01:00
|
|
|
const quint16 iPortNumber )
|
|
|
|
: Socket ( pNewChannel, iPortNumber ) { Init(); }
|
2014-02-01 16:14:47 +01:00
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
CHighPrioSocket ( CServer* pNewServer,
|
|
|
|
const quint16 iPortNumber )
|
|
|
|
: Socket ( pNewServer, iPortNumber ) { Init(); }
|
2013-06-03 18:07:17 +02:00
|
|
|
|
|
|
|
virtual ~CHighPrioSocket()
|
|
|
|
{
|
2014-02-16 10:01:08 +01:00
|
|
|
NetworkWorkerThread.Stop();
|
2013-05-10 21:34:55 +02:00
|
|
|
}
|
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
// starts the high priority socket receive thread (with using blocking
|
|
|
|
// socket request call)
|
|
|
|
NetworkWorkerThread.start ( QThread::TimeCriticalPriority );
|
|
|
|
}
|
|
|
|
|
2013-05-10 21:34:55 +02:00
|
|
|
void SendPacket ( const CVector<uint8_t>& vecbySendBuf,
|
|
|
|
const CHostAddress& HostAddr )
|
|
|
|
{
|
2014-02-13 19:38:25 +01:00
|
|
|
Socket.SendPacket ( vecbySendBuf, HostAddr );
|
2013-05-10 21:34:55 +02:00
|
|
|
}
|
|
|
|
|
2014-01-10 21:00:45 +01:00
|
|
|
bool GetAndResetbJitterBufferOKFlag()
|
|
|
|
{
|
2014-02-13 19:38:25 +01:00
|
|
|
return Socket.GetAndResetbJitterBufferOKFlag();
|
2014-01-10 21:00:45 +01:00
|
|
|
}
|
|
|
|
|
2013-05-10 21:34:55 +02:00
|
|
|
protected:
|
2014-02-01 16:14:47 +01:00
|
|
|
class CSocketThread : public QThread
|
|
|
|
{
|
|
|
|
public:
|
2019-05-17 22:55:46 +02:00
|
|
|
CSocketThread ( CSocket* pNewSocket = nullptr, QObject* parent = nullptr ) :
|
2014-02-11 18:47:48 +01:00
|
|
|
QThread ( parent ), pSocket ( pNewSocket ), bRun ( true ) {}
|
2014-02-01 16:14:47 +01:00
|
|
|
|
2014-02-16 10:01:08 +01:00
|
|
|
void Stop()
|
2014-02-13 19:38:25 +01:00
|
|
|
{
|
|
|
|
// disable run flag so that the thread loop can be exit
|
|
|
|
bRun = false;
|
|
|
|
|
|
|
|
// to leave blocking wait for receive
|
|
|
|
pSocket->Close();
|
|
|
|
|
|
|
|
// give thread some time to terminate
|
|
|
|
wait ( 5000 );
|
2014-02-01 16:14:47 +01:00
|
|
|
}
|
|
|
|
|
2014-02-13 19:38:25 +01:00
|
|
|
void SetSocket ( CSocket* pNewSocket ) { pSocket = pNewSocket; }
|
|
|
|
|
2014-02-01 16:14:47 +01:00
|
|
|
protected:
|
|
|
|
void run() {
|
2014-02-13 19:38:25 +01:00
|
|
|
// make sure the socket pointer is initialized (should be always the
|
|
|
|
// case)
|
2019-05-17 22:55:46 +02:00
|
|
|
if ( pSocket != nullptr )
|
2014-02-01 16:14:47 +01:00
|
|
|
{
|
|
|
|
while ( bRun )
|
|
|
|
{
|
2014-02-13 19:38:25 +01:00
|
|
|
// this function is a blocking function (waiting for network
|
|
|
|
// packets to be received and processed)
|
2014-02-01 16:14:47 +01:00
|
|
|
pSocket->OnDataReceived();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CSocket* pSocket;
|
|
|
|
bool bRun;
|
|
|
|
};
|
|
|
|
|
2014-02-16 09:12:07 +01:00
|
|
|
void Init()
|
|
|
|
{
|
|
|
|
// Creation of the new socket thread which has to have the highest
|
|
|
|
// possible thread priority to make sure the jitter buffer is reliably
|
|
|
|
// filled with the network audio packets and does not get interrupted
|
|
|
|
// by other GUI threads. The following code is based on:
|
|
|
|
// http://qt-project.org/wiki/Threads_Events_QObjects
|
|
|
|
Socket.moveToThread ( &NetworkWorkerThread );
|
|
|
|
|
|
|
|
NetworkWorkerThread.SetSocket ( &Socket );
|
2014-02-16 10:28:34 +01:00
|
|
|
|
|
|
|
// connect the "InvalidPacketReceived" signal
|
2020-06-06 22:15:33 +02:00
|
|
|
QObject::connect ( &Socket, &CSocket::InvalidPacketReceived,
|
|
|
|
this, &CHighPrioSocket::InvalidPacketReceived );
|
2014-02-16 09:12:07 +01:00
|
|
|
}
|
|
|
|
|
2014-02-01 16:14:47 +01:00
|
|
|
CSocketThread NetworkWorkerThread;
|
2014-02-13 19:38:25 +01:00
|
|
|
CSocket Socket;
|
2014-02-16 10:28:34 +01:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void InvalidPacketReceived ( CHostAddress RecHostAddr );
|
2013-01-23 11:41:13 +01:00
|
|
|
};
|