Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QPacketProtocol Class Reference
[QtBaseModule]

The QPacketProtocol class encapsulates communicating discrete packets across fragmented IO channels, such as TCP sockets. More...

    #include <QPacketProtocol>

Inherits QObject.

Public Functions

  • 29 public functions inherited from QObject

Signals

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 public type inherited from QObject
  • 4 static public members inherited from QObject
  • 7 protected functions inherited from QObject
  • 2 protected variables inherited from QObject

Detailed Description

The QPacketProtocol class encapsulates communicating discrete packets across fragmented IO channels, such as TCP sockets.

QPacketProtocol makes it simple to send arbitrary sized data "packets" across fragmented transports such as TCP and UDP.

As transmission boundaries are not respected, sending packets over protocols like TCP frequently involves "stitching" them back together at the receiver. QPacketProtocol makes this easier by performing this task for you. Packet data sent using QPacketProtocol is prepended with a 4-byte size header allowing the receiving QPacketProtocol to buffer the packet internally until it has all been received. QPacketProtocol does not perform any sanity checking on the size or on the data, so this class should only be used in prototyping or trusted situations where DOS attacks are unlikely.

QPacketProtocol does not perform any communications itself. Instead it can operate on any QIODevice that supports the QIODevice::readyRead() signal. A logical "packet" is encapsulated by the companion QPacket class. The following example shows two ways to send data using QPacketProtocol. The transmitted data is equivalent in both.

    QTcpSocket socket;
    // ... connect socket ...

    QPacketProtocol protocol(&socket);

    // Send packet the quick way
    protocol.send() << "Hello world" << 123;

    // Send packet the longer way
    QPacket packet;
    packet << "Hello world" << 123;
    protocol.send(packet);

Likewise, the following shows how to read data from QPacketProtocol, assuming that the QPacketProtocol::readyRead() signal has been emitted.

    // ... QPacketProtocol::readyRead() is emitted ...

    int a;
    QByteArray b;

    // Receive packet the quick way
    protocol.read() >> a >> b;

    // Receive packet the longer way
    QPacket packet = protocol.read();
    p >> a >> b;

See also QPacket.


Member Function Documentation

QPacketProtocol::QPacketProtocol ( QIODevice * dev, QObject * parent = 0 )

Construct a QPacketProtocol instance that works on dev with the specified parent.

QPacketProtocol::~QPacketProtocol ()   [virtual]

Destroys the QPacketProtocol instance.

void QPacketProtocol::clear ()

Discard any unread packets.

QIODevice * QPacketProtocol::device ()

Return the QIODevice passed to the QPacketProtocol constructor.

void QPacketProtocol::invalidPacket ()   [signal]

A packet larger than the maximum allowable packet size was received. The packet will be discarded and, as it indicates corruption in the protocol, no further packets will be received.

qint32 QPacketProtocol::maximumPacketSize () const

Returns the maximum packet size allowed. By default this is 2,147,483,647 bytes.

If a packet claiming to be larger than the maximum packet size is received, the QPacketProtocol::invalidPacket() signal is emitted.

See also QPacketProtocol::setMaximumPacketSize().

void QPacketProtocol::packetWritten ()   [signal]

Emitted each time a packet is completing written to the device. This signal may be used for communications flow control.

qint64 QPacketProtocol::packetsAvailable () const

Returns the number of received packets yet to be read.

QPacket QPacketProtocol::read ()

Return the next unread packet, or an invalid QPacket instance if no packets are available. This method does NOT block.

void QPacketProtocol::readyRead ()   [signal]

Emitted whenever a new packet is received. Applications may use QPacketProtocol::read() to retrieve this packet.

QPacketAutoSend QPacketProtocol::send ()

Returns a streamable object that is transmitted on destruction. For example

    protocol.send() << "Hello world" << 123;

will send a packet containing "Hello world" and 123. To construct more complex packets, explicitly construct a QPacket instance.

void QPacketProtocol::send ( const QPacket & packet )

This is an overloaded member function, provided for convenience.

Transmit the packet.

qint32 QPacketProtocol::setMaximumPacketSize ( qint32 max )

Sets the maximum allowable packet size to max.

See also QPacketProtocol::maximumPacketSize().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 44
  2. Microsoft ouvre aux autres compilateurs C++ AMP, la spécification pour la conception d'applications parallèles C++ utilisant le GPU 22
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. RIM : « 13 % des développeurs ont gagné plus de 100 000 $ sur l'AppWord », Qt et open-source au menu du BlackBerry DevCon Europe 0
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt qtextended4.4
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web