QTcpServer或QTcpClient(在服务器端)知道,连接的客户端现在已断开连接

时间:2011-06-13 04:17:53

标签: qt

在下面的代码中我可以识别客户端是否已连接并且添加了QTableWidget中的一行,但我怎么知道客户端已断开连接,因此我可以从同一个表中删除一行断开连接的客户端。

TcpServer::TcpServer(QWidget *parent) :QDialog(parent),ui(new Ui::TcpServer)
{
    ui->setupUi(this);
    m_coSerSo =new CoServerSocket(this);
    count=0;


   connect(m_coSerSo,SIGNAL(newConnection()),this, SLOT(updateConnectionTable()));
 }

 TcpServer::~TcpServer()
 {
    delete ui;
 }
 void TcpServer::updateConnectionTable()
 { 
     int row = ui->tableWidget->rowCount();
     ui->tableWidget->setRowCount(row + 1);
     ui->tableWidget->setItem(row, 0, new QTableWidgetItem(m_coSerSo->getPeerAdd()));
     ui->tableWidget->setItem(row, 1,
          new QTableWidgetItem(QDateTime::currentDateTime ().toString()));
}


CoServerSocket::CoServerSocket(QObject *parent)
    : QTcpServer(parent)
{ peerAdd ="good1";

}

void CoServerSocket::incomingConnection(int socketId)
{
    socketClient = new CoClientSocket(this);
    socketClient->setSocketDescriptor(socketId);

    peerAdd =  socketClient->peerAddress().toString();
}
QString CoServerSocket::getPeerAdd()
{
    return peerAdd;
}

1 个答案:

答案 0 :(得分:0)

您在incomingConnection(int)内创建的套接字有一个disconnected()信号。使用QSignalMapper确定断开连接的套接字并更新表视图。快速而脏的代码,可能很有帮助,当然还有很多语法错误:

TcpServer::TcpServer(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::TcpServer)
{
    ui->setupUi(this);
    m_coisSerSo = new CoisServerSocket(this);
    count = 0;

    // The mapper forwards the signal from the client socket,
    // adding the socket itself as an argument.

    this->mapper = new QSignalMapper(this);
    connect(this->mapper, SIGNAL(mapped(QObject*)), 
            this, SLOT(clientDisconnected(QObject*)));


    connect(m_coisSerSo,SIGNAL(newConnection()),this, SLOT(updateConnectionTable()));
}

void CoisServerSocket::incomingConnection(int socketId)
{
    socketClient = new CoisClientSocket(this);
    socketClient->setSocketDescriptor(socketId);

    // Map the socket so that we can receive its disconnection
    // notification. When the socket emits the "disconnected()"
    // signal, the mapper will emit "mapped(QObject*)" and will
    // pass the socket as the argument.

    this->mapper->setMapping(socketClient, socketClient);
    connect(socketClient, SIGNAL(disconnected()), this->mapper, SLOT(map()));

    peerAdd =  socketClient->peerAddress().toString();
}

void CoisServerSocket::clientDisconnected(QObject* object)
{
    if (CoisClientSocket* client = qobject_cast<CoisClientSocket*>(object))
    {
        // Unmap the socket.

        this->mapper->removeMappings(client);

        // Handle disconnection here.

        ...

        // A consequence of mixing a TCP server and a dialog in the
        // same class is that passing "this" as an argument to the
        // socket constructor doesn't help much with memory management. 
        // They will stay around as long as the dialog lives. Delete 
        // them once they aren't needed anymore.

        client->deleteLater();
    }
}