qlocalsocket.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QLOCALSOCKET_H
  38. #define QLOCALSOCKET_H
  39. #include <QtCore/qiodevice.h>
  40. #include <QtNetwork/qabstractsocket.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Network)
  44. #ifndef QT_NO_LOCALSOCKET
  45. class QLocalSocketPrivate;
  46. class Q_NETWORK_EXPORT QLocalSocket : public QIODevice
  47. {
  48.     Q_OBJECT
  49.     Q_DECLARE_PRIVATE(QLocalSocket)
  50. public:
  51.     enum LocalSocketError
  52.     {
  53.         ConnectionRefusedError = QAbstractSocket::ConnectionRefusedError,
  54.         PeerClosedError = QAbstractSocket::RemoteHostClosedError,
  55.         ServerNotFoundError = QAbstractSocket::HostNotFoundError,
  56.         SocketAccessError = QAbstractSocket::SocketAccessError,
  57.         SocketResourceError = QAbstractSocket::SocketResourceError,
  58.         SocketTimeoutError = QAbstractSocket::SocketTimeoutError,
  59.         DatagramTooLargeError = QAbstractSocket::DatagramTooLargeError,
  60.         ConnectionError = QAbstractSocket::NetworkError,
  61.         UnsupportedSocketOperationError = QAbstractSocket::UnsupportedSocketOperationError,
  62.         UnknownSocketError = QAbstractSocket::UnknownSocketError
  63.     };
  64.     enum LocalSocketState
  65.     {
  66.         UnconnectedState = QAbstractSocket::UnconnectedState,
  67.         ConnectingState = QAbstractSocket::ConnectingState,
  68.         ConnectedState = QAbstractSocket::ConnectedState,
  69.         ClosingState = QAbstractSocket::ClosingState
  70.     };
  71.     QLocalSocket(QObject *parent = 0);
  72.     ~QLocalSocket();
  73.     void connectToServer(const QString &name, OpenMode openMode = ReadWrite);
  74.     void disconnectFromServer();
  75.     QString serverName() const;
  76.     QString fullServerName() const;
  77.     void abort();
  78.     virtual bool isSequential() const;
  79.     virtual qint64 bytesAvailable() const;
  80.     virtual qint64 bytesToWrite() const;
  81.     virtual bool canReadLine() const;
  82.     virtual void close();
  83.     LocalSocketError error() const;
  84.     bool flush();
  85.     bool isValid() const;
  86.     qint64 readBufferSize() const;
  87.     void setReadBufferSize(qint64 size);
  88.     bool setSocketDescriptor(quintptr socketDescriptor,
  89.                              LocalSocketState socketState = ConnectedState,
  90.                              OpenMode openMode = ReadWrite);
  91.     quintptr socketDescriptor() const;
  92.     LocalSocketState state() const;
  93.     bool waitForBytesWritten(int msecs = 30000);
  94.     bool waitForConnected(int msecs = 30000);
  95.     bool waitForDisconnected(int msecs = 30000);
  96.     bool waitForReadyRead(int msecs = 30000);
  97. Q_SIGNALS:
  98.     void connected();
  99.     void disconnected();
  100.     void error(QLocalSocket::LocalSocketError socketError);
  101.     void stateChanged(QLocalSocket::LocalSocketState socketState);
  102. protected:
  103.     virtual qint64 readData(char*, qint64);
  104.     virtual qint64 writeData(const char*, qint64);
  105. private:
  106.     Q_DISABLE_COPY(QLocalSocket)
  107. #ifdef Q_OS_WIN
  108.     Q_PRIVATE_SLOT(d_func(), void _q_notified())
  109.     Q_PRIVATE_SLOT(d_func(), void _q_canWrite())
  110.     Q_PRIVATE_SLOT(d_func(), void _q_pipeClosed())
  111. #else
  112.     Q_PRIVATE_SLOT(d_func(), void _q_stateChanged(QAbstractSocket::SocketState))
  113.     Q_PRIVATE_SLOT(d_func(), void _q_error(QAbstractSocket::SocketError))
  114.     Q_PRIVATE_SLOT(d_func(), void _q_connectToSocket())
  115.     Q_PRIVATE_SLOT(d_func(), void _q_abortConnectionAttempt())
  116. #endif
  117. };
  118. #ifndef QT_NO_DEBUG_STREAM
  119. #include <QtCore/qdebug.h>
  120. Q_NETWORK_EXPORT QDebug operator<<(QDebug, QLocalSocket::LocalSocketError);
  121. Q_NETWORK_EXPORT QDebug operator<<(QDebug, QLocalSocket::LocalSocketState);
  122. #endif
  123. #endif // QT_NO_LOCALSOCKET
  124. QT_END_NAMESPACE
  125. QT_END_HEADER
  126. #endif // QLOCALSOCKET_H