qdnslookup.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2012 Jeremy Lainé <jeremy.laine@m4x.org>
  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 QDNSLOOKUP_H
  40. #define QDNSLOOKUP_H
  41. #include <QtCore/qlist.h>
  42. #include <QtCore/qobject.h>
  43. #include <QtCore/qshareddata.h>
  44. #include <QtCore/qsharedpointer.h>
  45. #include <QtCore/qstring.h>
  46. QT_BEGIN_NAMESPACE
  47. class QHostAddress;
  48. class QDnsLookupPrivate;
  49. class QDnsDomainNameRecordPrivate;
  50. class QDnsHostAddressRecordPrivate;
  51. class QDnsMailExchangeRecordPrivate;
  52. class QDnsServiceRecordPrivate;
  53. class QDnsTextRecordPrivate;
  54. class Q_NETWORK_EXPORT QDnsDomainNameRecord
  55. {
  56. public:
  57. QDnsDomainNameRecord();
  58. QDnsDomainNameRecord(const QDnsDomainNameRecord &other);
  59. #ifdef Q_COMPILER_RVALUE_REFS
  60. QDnsDomainNameRecord &operator=(QDnsDomainNameRecord &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  61. #endif
  62. QDnsDomainNameRecord &operator=(const QDnsDomainNameRecord &other);
  63. ~QDnsDomainNameRecord();
  64. void swap(QDnsDomainNameRecord &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  65. QString name() const;
  66. quint32 timeToLive() const;
  67. QString value() const;
  68. private:
  69. QSharedDataPointer<QDnsDomainNameRecordPrivate> d;
  70. friend class QDnsLookupRunnable;
  71. };
  72. Q_DECLARE_SHARED(QDnsDomainNameRecord)
  73. class Q_NETWORK_EXPORT QDnsHostAddressRecord
  74. {
  75. public:
  76. QDnsHostAddressRecord();
  77. QDnsHostAddressRecord(const QDnsHostAddressRecord &other);
  78. #ifdef Q_COMPILER_RVALUE_REFS
  79. QDnsHostAddressRecord &operator=(QDnsHostAddressRecord &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  80. #endif
  81. QDnsHostAddressRecord &operator=(const QDnsHostAddressRecord &other);
  82. ~QDnsHostAddressRecord();
  83. void swap(QDnsHostAddressRecord &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  84. QString name() const;
  85. quint32 timeToLive() const;
  86. QHostAddress value() const;
  87. private:
  88. QSharedDataPointer<QDnsHostAddressRecordPrivate> d;
  89. friend class QDnsLookupRunnable;
  90. };
  91. Q_DECLARE_SHARED(QDnsHostAddressRecord)
  92. class Q_NETWORK_EXPORT QDnsMailExchangeRecord
  93. {
  94. public:
  95. QDnsMailExchangeRecord();
  96. QDnsMailExchangeRecord(const QDnsMailExchangeRecord &other);
  97. #ifdef Q_COMPILER_RVALUE_REFS
  98. QDnsMailExchangeRecord &operator=(QDnsMailExchangeRecord &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  99. #endif
  100. QDnsMailExchangeRecord &operator=(const QDnsMailExchangeRecord &other);
  101. ~QDnsMailExchangeRecord();
  102. void swap(QDnsMailExchangeRecord &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  103. QString exchange() const;
  104. QString name() const;
  105. quint16 preference() const;
  106. quint32 timeToLive() const;
  107. private:
  108. QSharedDataPointer<QDnsMailExchangeRecordPrivate> d;
  109. friend class QDnsLookupRunnable;
  110. };
  111. Q_DECLARE_SHARED(QDnsMailExchangeRecord)
  112. class Q_NETWORK_EXPORT QDnsServiceRecord
  113. {
  114. public:
  115. QDnsServiceRecord();
  116. QDnsServiceRecord(const QDnsServiceRecord &other);
  117. #ifdef Q_COMPILER_RVALUE_REFS
  118. QDnsServiceRecord &operator=(QDnsServiceRecord &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  119. #endif
  120. QDnsServiceRecord &operator=(const QDnsServiceRecord &other);
  121. ~QDnsServiceRecord();
  122. void swap(QDnsServiceRecord &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  123. QString name() const;
  124. quint16 port() const;
  125. quint16 priority() const;
  126. QString target() const;
  127. quint32 timeToLive() const;
  128. quint16 weight() const;
  129. private:
  130. QSharedDataPointer<QDnsServiceRecordPrivate> d;
  131. friend class QDnsLookupRunnable;
  132. };
  133. Q_DECLARE_SHARED(QDnsServiceRecord)
  134. class Q_NETWORK_EXPORT QDnsTextRecord
  135. {
  136. public:
  137. QDnsTextRecord();
  138. QDnsTextRecord(const QDnsTextRecord &other);
  139. #ifdef Q_COMPILER_RVALUE_REFS
  140. QDnsTextRecord &operator=(QDnsTextRecord &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  141. #endif
  142. QDnsTextRecord &operator=(const QDnsTextRecord &other);
  143. ~QDnsTextRecord();
  144. void swap(QDnsTextRecord &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  145. QString name() const;
  146. quint32 timeToLive() const;
  147. QList<QByteArray> values() const;
  148. private:
  149. QSharedDataPointer<QDnsTextRecordPrivate> d;
  150. friend class QDnsLookupRunnable;
  151. };
  152. Q_DECLARE_SHARED(QDnsTextRecord)
  153. class Q_NETWORK_EXPORT QDnsLookup : public QObject
  154. {
  155. Q_OBJECT
  156. Q_PROPERTY(Error error READ error NOTIFY finished)
  157. Q_PROPERTY(QString errorString READ errorString NOTIFY finished)
  158. Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
  159. Q_PROPERTY(Type type READ type WRITE setType NOTIFY typeChanged)
  160. Q_PROPERTY(QHostAddress nameserver READ nameserver WRITE setNameserver NOTIFY nameserverChanged)
  161. public:
  162. enum Error
  163. {
  164. NoError = 0,
  165. ResolverError,
  166. OperationCancelledError,
  167. InvalidRequestError,
  168. InvalidReplyError,
  169. ServerFailureError,
  170. ServerRefusedError,
  171. NotFoundError
  172. };
  173. Q_ENUM(Error)
  174. enum Type
  175. {
  176. A = 1,
  177. AAAA = 28,
  178. ANY = 255,
  179. CNAME = 5,
  180. MX = 15,
  181. NS = 2,
  182. PTR = 12,
  183. SRV = 33,
  184. TXT = 16
  185. };
  186. Q_ENUM(Type)
  187. explicit QDnsLookup(QObject *parent = Q_NULLPTR);
  188. QDnsLookup(Type type, const QString &name, QObject *parent = Q_NULLPTR);
  189. QDnsLookup(Type type, const QString &name, const QHostAddress &nameserver, QObject *parent = Q_NULLPTR);
  190. ~QDnsLookup();
  191. Error error() const;
  192. QString errorString() const;
  193. bool isFinished() const;
  194. QString name() const;
  195. void setName(const QString &name);
  196. Type type() const;
  197. void setType(QDnsLookup::Type);
  198. QHostAddress nameserver() const;
  199. void setNameserver(const QHostAddress &nameserver);
  200. QList<QDnsDomainNameRecord> canonicalNameRecords() const;
  201. QList<QDnsHostAddressRecord> hostAddressRecords() const;
  202. QList<QDnsMailExchangeRecord> mailExchangeRecords() const;
  203. QList<QDnsDomainNameRecord> nameServerRecords() const;
  204. QList<QDnsDomainNameRecord> pointerRecords() const;
  205. QList<QDnsServiceRecord> serviceRecords() const;
  206. QList<QDnsTextRecord> textRecords() const;
  207. public Q_SLOTS:
  208. void abort();
  209. void lookup();
  210. Q_SIGNALS:
  211. void finished();
  212. void nameChanged(const QString &name);
  213. void typeChanged(Type type);
  214. void nameserverChanged(const QHostAddress &nameserver);
  215. private:
  216. Q_DECLARE_PRIVATE(QDnsLookup)
  217. Q_PRIVATE_SLOT(d_func(), void _q_lookupFinished(const QDnsLookupReply &reply))
  218. };
  219. QT_END_NAMESPACE
  220. #endif // QDNSLOOKUP_H