-
Notifications
You must be signed in to change notification settings - Fork 0
/
TCPConnectionPrivate.cpp
48 lines (41 loc) · 1.19 KB
/
TCPConnectionPrivate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include "TCPConnectionPrivate.h"
#include <QTextStream>
#include <QFile>
#include <QDateTime>
#include <QThread>
#include "TCPProcessor.h"
TcpConnectionPrivate::TcpConnectionPrivate(qintptr socketDescriptor, QObject *parent) :
QObject(parent),
_socketDescriptor( socketDescriptor )
{
}
TcpConnectionPrivate::~TcpConnectionPrivate()
{
qDebug() << "TcpConnectionPrivate::~TcpConnectionPrivate()";
if (_socket)
_socket->abort();
}
void TcpConnectionPrivate::Run()
{
_socket = new QTcpSocket( this );
_socket->setSocketDescriptor( _socketDescriptor );
_processor = QSharedPointer<TCPProcessor>(new TCPProcessor( _socket,
[&](){ProcessTimeOut();} ));
connect( _socket, SIGNAL( readyRead() ), this, SLOT( ReadyRead() ) );
connect( _socket, SIGNAL( disconnected() ), this, SLOT( deleteLater() ) );
connect( _socket, SIGNAL( disconnected() ), this, SLOT( Disconnected() ) );
}
void TcpConnectionPrivate::ReadyRead()
{
_processor->ProcessDatagramm();
}
void TcpConnectionPrivate::ProcessTimeOut()
{
qDebug() << "Time out";
emit TimeOut();
_socket->close();
}
void TcpConnectionPrivate::Disconnected()
{
emit SocketClosed( thread() );
}