繁体   English   中英

QtcpSocket如何同时发送多个信息?

[英]How to send multiple information trought QTcpSocket at the same time?

即时通讯正在做一个小的客户端/服务器预订应用程序,即时通讯卡住了我如何发送类的信息,实际上我有3个类,即时通讯发送这样的信息:

VentanaPrincipalS::VentanaPrincipalS(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::VentanaPrincipalS)
{
  //..Methods..//
  connect(conexion,SIGNAL(nuevaConexion(QTcpSocket*)), this, SLOT(enviarDataCliente(QTcpSocket*)));
  connect(conexion,SIGNAL(nuevaConexion(QTcpSocket*)), this, SLOT(enviarDataVuelo(QTcpSocket*)));
  connect(conexion,SIGNAL(nuevaConexion(QTcpSocket*)), this, SLOT(enviarDataReservacion(QTcpSocket*)));
   //..Methods..//
}
void VentanaPrincipalS::enviarDataVuelo(QTcpSocket *sock)
{
  QByteArray buffer;
  QDataStream out(&buffer, QIODevice::ReadWrite);
  out << 1;
  for(int i = 0; i < empresa.cantidadVuelos(); i++){
      out << empresa.getVuelos().at(i)->getDestino() << empresa.getVuelos().at(i)->getIdVuelo() << empresa.getVuelos().at(i)->getPartida();
  }
  if(sock->isValid())
  {
    sock->write(buffer);
  }

}
//2 More methods just like this, switching the out first number
to know which class is...//

在客户端,我收到这样的消息:

in>> caracterControl;
    switch(caracterControl){
    case 1:{
        while(!in.atEnd()){
            QString destino;
            QString id;
            QDate fecha;
            in >> destino >> id >> fecha;
            qDebug()<< destino +" "+ id + " " + fecha.toString();
            MVuelo vuelop(id, destino, fecha);
            listaVuelos.append(id);
            vuelosRecibidos.push_back(vuelop);
        }
     }
     case 2:{
        while(!in.atEnd()){
            QString cedula;
            QString correo;
            QString nombre;
            QString telf;
            in >> cedula >> correo >> nombre >> telf;
            MCliente cliente(nombre, cedula, telf, correo);
            qDebug()<< "Cliente: " + cedula;
        }
     }
    case 3:{
       while(!in.atEnd()){
           QString reserva;
           QString vuelo;
           in >> reserva >> vuelo;
           qDebug()<< "Reserva: " + reserva;
       }
    }

}

1、2或3,具体取决于类别。

问题在于信息不完整,就像套接字崩溃是因为另一种方法正在他身上写消息一样,是否有办法按顺序接收所有信息,还是有办法告诉服务器套接字已完成读取?

请帮我 ;(...

PD:是的,服务器和套接字已成功连接,请确保:)

注意:我有一个带有3个客户端(21727090、20350202和123)的QList,并且即时消息接收此槽qDebug()

2

“客户:21727090”

“客户:20350202”

“客户:123”

“客户:”

“客户:”

“客户:”

问题在于信息不完整,就像套接字崩溃是因为另一种方法正在他身上写消息一样,是否有办法按顺序接收所有信息,还是有办法告诉服务器套接字已完成读取?

最快的解决方法是在写入后在其中放置一个阻塞(即同步)等待,如下所示:

if (sock->isValid())
{
    sock->write(buffer);
    if (!sock->waitForBytesWritten(5000))
        qDebug() << QString("Operation timed out or an error occurred for sock, error: %1).arg(sock->errorString());
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM