qlocalsocket.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QLOCALSOCKET_H
  40. #define QLOCALSOCKET_H
  41. #include <QtCore/qiodevice.h>
  42. #include <QtNetwork/qabstractsocket.h>
  43. QT_BEGIN_NAMESPACE
  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. OperationError = QAbstractSocket::OperationError
  64. };
  65. enum LocalSocketState
  66. {
  67. UnconnectedState = QAbstractSocket::UnconnectedState,
  68. ConnectingState = QAbstractSocket::ConnectingState,
  69. ConnectedState = QAbstractSocket::ConnectedState,
  70. ClosingState = QAbstractSocket::ClosingState
  71. };
  72. QLocalSocket(QObject *parent = Q_NULLPTR);
  73. ~QLocalSocket();
  74. void connectToServer(OpenMode openMode = ReadWrite);
  75. void connectToServer(const QString &name, OpenMode openMode = ReadWrite);
  76. void disconnectFromServer();
  77. void setServerName(const QString &name);
  78. QString serverName() const;
  79. QString fullServerName() const;
  80. void abort();
  81. virtual bool isSequential() const Q_DECL_OVERRIDE;
  82. virtual qint64 bytesAvailable() const Q_DECL_OVERRIDE;
  83. virtual qint64 bytesToWrite() const Q_DECL_OVERRIDE;
  84. virtual bool canReadLine() const Q_DECL_OVERRIDE;
  85. virtual bool open(OpenMode openMode = ReadWrite) Q_DECL_OVERRIDE;
  86. virtual void close() Q_DECL_OVERRIDE;
  87. LocalSocketError error() const;
  88. bool flush();
  89. bool isValid() const;
  90. qint64 readBufferSize() const;
  91. void setReadBufferSize(qint64 size);
  92. bool setSocketDescriptor(qintptr socketDescriptor,
  93. LocalSocketState socketState = ConnectedState,
  94. OpenMode openMode = ReadWrite);
  95. qintptr socketDescriptor() const;
  96. LocalSocketState state() const;
  97. bool waitForBytesWritten(int msecs = 30000) Q_DECL_OVERRIDE;
  98. bool waitForConnected(int msecs = 30000);
  99. bool waitForDisconnected(int msecs = 30000);
  100. bool waitForReadyRead(int msecs = 30000) Q_DECL_OVERRIDE;
  101. Q_SIGNALS:
  102. void connected();
  103. void disconnected();
  104. void error(QLocalSocket::LocalSocketError socketError);
  105. void stateChanged(QLocalSocket::LocalSocketState socketState);
  106. protected:
  107. virtual qint64 readData(char*, qint64) Q_DECL_OVERRIDE;
  108. virtual qint64 writeData(const char*, qint64) Q_DECL_OVERRIDE;
  109. private:
  110. Q_DISABLE_COPY(QLocalSocket)
  111. #if defined(QT_LOCALSOCKET_TCP)
  112. Q_PRIVATE_SLOT(d_func(), void _q_stateChanged(QAbstractSocket::SocketState))
  113. Q_PRIVATE_SLOT(d_func(), void _q_error(QAbstractSocket::SocketError))
  114. #elif defined(Q_OS_WIN)
  115. Q_PRIVATE_SLOT(d_func(), void _q_canWrite())
  116. Q_PRIVATE_SLOT(d_func(), void _q_pipeClosed())
  117. Q_PRIVATE_SLOT(d_func(), void _q_winError(ulong, const QString &))
  118. #else
  119. Q_PRIVATE_SLOT(d_func(), void _q_stateChanged(QAbstractSocket::SocketState))
  120. Q_PRIVATE_SLOT(d_func(), void _q_error(QAbstractSocket::SocketError))
  121. Q_PRIVATE_SLOT(d_func(), void _q_connectToSocket())
  122. Q_PRIVATE_SLOT(d_func(), void _q_abortConnectionAttempt())
  123. #endif
  124. };
  125. #ifndef QT_NO_DEBUG_STREAM
  126. #include <QtCore/qdebug.h>
  127. Q_NETWORK_EXPORT QDebug operator<<(QDebug, QLocalSocket::LocalSocketError);
  128. Q_NETWORK_EXPORT QDebug operator<<(QDebug, QLocalSocket::LocalSocketState);
  129. #endif
  130. #endif // QT_NO_LOCALSOCKET
  131. QT_END_NAMESPACE
  132. #endif // QLOCALSOCKET_H