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  · 

QBluetoothAbstractServer Class Reference
[QtBluetoothModule]

The QBluetoothAbstractServer class represents an abstract Bluetooth server socket. More...

    #include <QBluetoothAbstractServer>

Inherits QObject.

Inherited by QBluetoothL2CapServer, QBluetoothRfcommServer, and QBluetoothScoServer.

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 QBluetoothAbstractServer class represents an abstract Bluetooth server socket.

This class is a common base class for all Bluetooth server socket implementations and makes it possible to accept incoming Bluetooth connections. The users should not use this class directly, instead they should use concrete implementations.

The subclasses will implement a listen() implementation in order to create a listening socket for each particular Bluetooth socket type. In particular, QBluetoothL2CapServer, QBluetoothRfcommServer, and QBluetoothScoServer will create L2CAP, RFCOMM and SCO sockets respectively.

Services that provide RFCOMM based profiles should use the QBluetoothRfcommServer class. L2CAP based services should use the QBluetoothL2CapServer class. Headset and Handsfree profile implementations will require the use of QBluetoothScoServer class.

The typical use of this class is to call the listen() implementation in the subclass, and then hook onto the newConnection() signal to get an indication of an incoming connection. The newConnection() signal is emitted each time a client has connected to the server. Call nextPendingConnection() to accept the pending connection as a connected QBluetoothAbstractSocket. The actual socket type depends on the type of the server. E.g. the QBluetoothRfcommServer socket will return QBluetoothRfcommSocket type sockets.

If an error occurs, serverError() returns the type of error that has occurred.

Calling close() makes the QBluetoothAbstractServer stop listening for incoming connections and deletes all pending connections.

See also QBluetoothAbstractSocket.


Member Function Documentation

QBluetoothAbstractServer::~QBluetoothAbstractServer ()

Destroys the server.

void QBluetoothAbstractServer::close ()   [virtual]

Closes the server. The server will no longer listen for incoming connections and all pending connections will be closed.

See also isListening() and socketDescriptor().

QString QBluetoothAbstractServer::errorString () const

Returns a human-readable description of the last device error that occurred.

See also serverError().

bool QBluetoothAbstractServer::hasPendingConnections () const

Returns true if the server has a pending connection(s); otherwise returns false.

See also nextPendingConnection() and setMaxPendingConnections().

bool QBluetoothAbstractServer::isListening () const

Returns true if the server is currently listening for remote connections, and false otherwise.

See also close() and socketDescriptor().

int QBluetoothAbstractServer::maxPendingConnections () const

Returns the maximum number of pending accepted connections. The default is 1.

See also setMaxPendingConnections() and hasPendingConnections().

void QBluetoothAbstractServer::newConnection ()   [signal]

This signal is emitted every time a new connection is available. Call nextPendingConnection() in order to accept the connection.

See also hasPendingConnections() and nextPendingConnection().

QBluetoothAbstractSocket * QBluetoothAbstractServer::nextPendingConnection ()

Returns the next pending connection as a connected QBluetoothAbstractSocket object. The function returns a pointer to a QBluetoothAbstractSocket in QBluetoothAbstractSocket::ConnectedState that you can use for communicating with the client.

The type of the socket returned will be based on the server socket type used. You will need to use qobject_cast to convert the result into the concrete socket type required.

    QBluetoothAbstractSocket *sock = server->nextPendingConnection();
    if (sock) {
        QBluetoothRfcommSocket *rfcomm =
            qobject_cast<QBluetoothRfcommSocket *>(sock);
        if (rfcomm) {
            // use RFCOMM socket
        }
    }

The socket is created as a child of the server, which means that it is automatically deleted when the QBluetoothAbstractServer object is destroyed. It is still a good idea to delete the object explicitly when you are done with it, to avoid wasting memory.

A NULL pointer is returned if this function is called when there are no pending connections.

See also hasPendingConnections().

QBluetoothAbstractSocket::SocketError QBluetoothAbstractServer::serverError () const

Returns the last error that has occurred.

See also errorString().

void QBluetoothAbstractServer::setMaxPendingConnections ( int numConnections )

Sets the maximum number of pending accepted connections to numConnections. QBluetoothAbstractServer will accept no more than numConnections incoming connections before nextPendingConnection() is called. By default, the limit is 1 pending connection.

See also maxPendingConnections() and hasPendingConnections().

int QBluetoothAbstractServer::socketDescriptor () const

Returns the socket descriptor the server is currently listening on. If the server is not listening, then -1 is returned.

See also isListening().

bool QBluetoothAbstractServer::waitForNewConnection ( int msecs = 0, bool * timedOut = 0 )

Waits for at most msecs milliseconds or until an incoming connection is available. Returns true if a connection is available; otherwise returns false. If the operation timed out and timedOut is not 0, *timedOut will be set to true.

This is a blocking function call. Its use is not advised in a single-threaded GUI application, since the whole application will stop responding until the function returns. waitForNewConnection() is mostly useful when there is no event loop available.

The non-blocking alternative is to connect to the newConnection() signal.

See also hasPendingConnections() and nextPendingConnection().

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 103
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 56
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 97
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 32
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 231
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 103
  7. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
Page suivante

Le Qt Labs au hasard

Logo

QLocale : à propos du temps (et des dates, et des langues, et des...)

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. 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