qdbusconnection.h 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Copyright (C) 2016 Intel Corporation.
  5. ** Contact: https://www.qt.io/licensing/
  6. **
  7. ** This file is part of the QtDBus module of the Qt Toolkit.
  8. **
  9. ** $QT_BEGIN_LICENSE:LGPL$
  10. ** Commercial License Usage
  11. ** Licensees holding valid commercial Qt licenses may use this file in
  12. ** accordance with the commercial license agreement provided with the
  13. ** Software or, alternatively, in accordance with the terms contained in
  14. ** a written agreement between you and The Qt Company. For licensing terms
  15. ** and conditions see https://www.qt.io/terms-conditions. For further
  16. ** information use the contact form at https://www.qt.io/contact-us.
  17. **
  18. ** GNU Lesser General Public License Usage
  19. ** Alternatively, this file may be used under the terms of the GNU Lesser
  20. ** General Public License version 3 as published by the Free Software
  21. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  22. ** packaging of this file. Please review the following information to
  23. ** ensure the GNU Lesser General Public License version 3 requirements
  24. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  25. **
  26. ** GNU General Public License Usage
  27. ** Alternatively, this file may be used under the terms of the GNU
  28. ** General Public License version 2.0 or (at your option) the GNU General
  29. ** Public license version 3 or any later version approved by the KDE Free
  30. ** Qt Foundation. The licenses are as published by the Free Software
  31. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  32. ** included in the packaging of this file. Please review the following
  33. ** information to ensure the GNU General Public License requirements will
  34. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  35. ** https://www.gnu.org/licenses/gpl-3.0.html.
  36. **
  37. ** $QT_END_LICENSE$
  38. **
  39. ****************************************************************************/
  40. #ifndef QDBUSCONNECTION_H
  41. #define QDBUSCONNECTION_H
  42. #include <QtDBus/qdbusmacros.h>
  43. #include <QtCore/qobjectdefs.h>
  44. #include <QtCore/qstring.h>
  45. #ifndef QT_NO_DBUS
  46. QT_BEGIN_NAMESPACE
  47. namespace QDBus
  48. {
  49. enum CallMode {
  50. NoBlock,
  51. Block,
  52. BlockWithGui,
  53. AutoDetect
  54. };
  55. }
  56. class QDBusAbstractInterfacePrivate;
  57. class QDBusInterface;
  58. class QDBusError;
  59. class QDBusMessage;
  60. class QDBusPendingCall;
  61. class QDBusConnectionInterface;
  62. class QDBusVirtualObject;
  63. class QObject;
  64. class QDBusConnectionPrivate;
  65. class Q_DBUS_EXPORT QDBusConnection
  66. {
  67. Q_GADGET
  68. Q_ENUMS(BusType UnregisterMode)
  69. Q_FLAGS(RegisterOptions)
  70. public:
  71. enum BusType { SessionBus, SystemBus, ActivationBus };
  72. enum RegisterOption {
  73. ExportAdaptors = 0x01,
  74. ExportScriptableSlots = 0x10,
  75. ExportScriptableSignals = 0x20,
  76. ExportScriptableProperties = 0x40,
  77. ExportScriptableInvokables = 0x80,
  78. ExportScriptableContents = 0xf0,
  79. ExportNonScriptableSlots = 0x100,
  80. ExportNonScriptableSignals = 0x200,
  81. ExportNonScriptableProperties = 0x400,
  82. ExportNonScriptableInvokables = 0x800,
  83. ExportNonScriptableContents = 0xf00,
  84. ExportAllSlots = ExportScriptableSlots|ExportNonScriptableSlots,
  85. ExportAllSignals = ExportScriptableSignals|ExportNonScriptableSignals,
  86. ExportAllProperties = ExportScriptableProperties|ExportNonScriptableProperties,
  87. ExportAllInvokables = ExportScriptableInvokables|ExportNonScriptableInvokables,
  88. ExportAllContents = ExportScriptableContents|ExportNonScriptableContents,
  89. #ifndef Q_QDOC
  90. // Qt 4.2 had a misspelling here
  91. ExportAllSignal = ExportAllSignals,
  92. #endif
  93. ExportChildObjects = 0x1000
  94. // Reserved = 0xff000000
  95. };
  96. Q_DECLARE_FLAGS(RegisterOptions, RegisterOption)
  97. enum UnregisterMode {
  98. UnregisterNode,
  99. UnregisterTree
  100. };
  101. enum VirtualObjectRegisterOption {
  102. SingleNode = 0x0,
  103. SubPath = 0x1
  104. // Reserved = 0xff000000
  105. };
  106. #ifndef Q_QDOC
  107. Q_DECLARE_FLAGS(VirtualObjectRegisterOptions, VirtualObjectRegisterOption)
  108. #endif
  109. enum ConnectionCapability {
  110. UnixFileDescriptorPassing = 0x0001
  111. };
  112. Q_DECLARE_FLAGS(ConnectionCapabilities, ConnectionCapability)
  113. explicit QDBusConnection(const QString &name);
  114. QDBusConnection(const QDBusConnection &other);
  115. #ifdef Q_COMPILER_RVALUE_REFS
  116. QDBusConnection(QDBusConnection &&other) Q_DECL_NOTHROW : d(other.d) { other.d = Q_NULLPTR; }
  117. QDBusConnection &operator=(QDBusConnection &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  118. #endif
  119. QDBusConnection &operator=(const QDBusConnection &other);
  120. ~QDBusConnection();
  121. void swap(QDBusConnection &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  122. bool isConnected() const;
  123. QString baseService() const;
  124. QDBusError lastError() const;
  125. QString name() const;
  126. ConnectionCapabilities connectionCapabilities() const;
  127. bool send(const QDBusMessage &message) const;
  128. bool callWithCallback(const QDBusMessage &message, QObject *receiver,
  129. const char *returnMethod, const char *errorMethod,
  130. int timeout = -1) const;
  131. bool callWithCallback(const QDBusMessage &message, QObject *receiver,
  132. const char *slot, int timeout = -1) const;
  133. QDBusMessage call(const QDBusMessage &message, QDBus::CallMode mode = QDBus::Block,
  134. int timeout = -1) const;
  135. QDBusPendingCall asyncCall(const QDBusMessage &message, int timeout = -1) const;
  136. bool connect(const QString &service, const QString &path, const QString &interface,
  137. const QString &name, QObject *receiver, const char *slot);
  138. bool connect(const QString &service, const QString &path, const QString &interface,
  139. const QString &name, const QString& signature,
  140. QObject *receiver, const char *slot);
  141. bool connect(const QString &service, const QString &path, const QString &interface,
  142. const QString &name, const QStringList &argumentMatch, const QString& signature,
  143. QObject *receiver, const char *slot);
  144. bool disconnect(const QString &service, const QString &path, const QString &interface,
  145. const QString &name, QObject *receiver, const char *slot);
  146. bool disconnect(const QString &service, const QString &path, const QString &interface,
  147. const QString &name, const QString& signature,
  148. QObject *receiver, const char *slot);
  149. bool disconnect(const QString &service, const QString &path, const QString &interface,
  150. const QString &name, const QStringList &argumentMatch, const QString& signature,
  151. QObject *receiver, const char *slot);
  152. bool registerObject(const QString &path, QObject *object,
  153. RegisterOptions options = ExportAdaptors);
  154. bool registerObject(const QString &path, const QString &interface, QObject *object,
  155. RegisterOptions options = ExportAdaptors);
  156. void unregisterObject(const QString &path, UnregisterMode mode = UnregisterNode);
  157. QObject *objectRegisteredAt(const QString &path) const;
  158. bool registerVirtualObject(const QString &path, QDBusVirtualObject *object,
  159. VirtualObjectRegisterOption options = SingleNode);
  160. bool registerService(const QString &serviceName);
  161. bool unregisterService(const QString &serviceName);
  162. QDBusConnectionInterface *interface() const;
  163. void *internalPointer() const;
  164. static QDBusConnection connectToBus(BusType type, const QString &name);
  165. static QDBusConnection connectToBus(const QString &address, const QString &name);
  166. static QDBusConnection connectToPeer(const QString &address, const QString &name);
  167. static void disconnectFromBus(const QString &name);
  168. static void disconnectFromPeer(const QString &name);
  169. static QByteArray localMachineId();
  170. static QDBusConnection sessionBus();
  171. static QDBusConnection systemBus();
  172. #if QT_DEPRECATED_SINCE(5,5)
  173. static QT_DEPRECATED_X("This function no longer works, use QDBusContext instead")
  174. QDBusConnection sender();
  175. #endif
  176. protected:
  177. explicit QDBusConnection(QDBusConnectionPrivate *dd);
  178. private:
  179. friend class QDBusConnectionPrivate;
  180. QDBusConnectionPrivate *d;
  181. };
  182. Q_DECLARE_SHARED_NOT_MOVABLE_UNTIL_QT6(QDBusConnection)
  183. Q_DECLARE_OPERATORS_FOR_FLAGS(QDBusConnection::RegisterOptions)
  184. Q_DECLARE_OPERATORS_FOR_FLAGS(QDBusConnection::VirtualObjectRegisterOptions)
  185. Q_DECLARE_OPERATORS_FOR_FLAGS(QDBusConnection::ConnectionCapabilities)
  186. QT_END_NAMESPACE
  187. #endif // QT_NO_DBUS
  188. #endif