qdbusargument.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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 QtDBus 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 QDBUSARGUMENT_H
  40. #define QDBUSARGUMENT_H
  41. #include <QtCore/qbytearray.h>
  42. #include <QtCore/qhash.h>
  43. #include <QtCore/qglobal.h>
  44. #include <QtCore/qlist.h>
  45. #include <QtCore/qmap.h>
  46. #include <QtCore/qstring.h>
  47. #include <QtCore/qstringlist.h>
  48. #include <QtCore/qvariant.h>
  49. #include <QtDBus/qdbusextratypes.h>
  50. #include <QtDBus/qdbusmacros.h>
  51. #ifndef QT_NO_DBUS
  52. QT_BEGIN_NAMESPACE
  53. class QDBusUnixFileDescriptor;
  54. class QDBusArgumentPrivate;
  55. class QDBusDemarshaller;
  56. class QDBusMarshaller;
  57. class Q_DBUS_EXPORT QDBusArgument
  58. {
  59. public:
  60. enum ElementType {
  61. BasicType,
  62. VariantType,
  63. ArrayType,
  64. StructureType,
  65. MapType,
  66. MapEntryType,
  67. UnknownType = -1
  68. };
  69. QDBusArgument();
  70. QDBusArgument(const QDBusArgument &other);
  71. #ifdef Q_COMPILER_RVALUE_REFS
  72. QDBusArgument(QDBusArgument &&other) Q_DECL_NOTHROW : d(other.d) { other.d = Q_NULLPTR; }
  73. QDBusArgument &operator=(QDBusArgument &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  74. #endif
  75. QDBusArgument &operator=(const QDBusArgument &other);
  76. ~QDBusArgument();
  77. void swap(QDBusArgument &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  78. // used for marshalling (Qt -> D-BUS)
  79. QDBusArgument &operator<<(uchar arg);
  80. QDBusArgument &operator<<(bool arg);
  81. QDBusArgument &operator<<(short arg);
  82. QDBusArgument &operator<<(ushort arg);
  83. QDBusArgument &operator<<(int arg);
  84. QDBusArgument &operator<<(uint arg);
  85. QDBusArgument &operator<<(qlonglong arg);
  86. QDBusArgument &operator<<(qulonglong arg);
  87. QDBusArgument &operator<<(double arg);
  88. QDBusArgument &operator<<(const QString &arg);
  89. QDBusArgument &operator<<(const QDBusVariant &arg);
  90. QDBusArgument &operator<<(const QDBusObjectPath &arg);
  91. QDBusArgument &operator<<(const QDBusSignature &arg);
  92. QDBusArgument &operator<<(const QDBusUnixFileDescriptor &arg);
  93. QDBusArgument &operator<<(const QStringList &arg);
  94. QDBusArgument &operator<<(const QByteArray &arg);
  95. void beginStructure();
  96. void endStructure();
  97. void beginArray(int elementMetaTypeId);
  98. void endArray();
  99. void beginMap(int keyMetaTypeId, int valueMetaTypeId);
  100. void endMap();
  101. void beginMapEntry();
  102. void endMapEntry();
  103. void appendVariant(const QVariant &v);
  104. // used for de-marshalling (D-BUS -> Qt)
  105. QString currentSignature() const;
  106. ElementType currentType() const;
  107. const QDBusArgument &operator>>(uchar &arg) const;
  108. const QDBusArgument &operator>>(bool &arg) const;
  109. const QDBusArgument &operator>>(short &arg) const;
  110. const QDBusArgument &operator>>(ushort &arg) const;
  111. const QDBusArgument &operator>>(int &arg) const;
  112. const QDBusArgument &operator>>(uint &arg) const;
  113. const QDBusArgument &operator>>(qlonglong &arg) const;
  114. const QDBusArgument &operator>>(qulonglong &arg) const;
  115. const QDBusArgument &operator>>(double &arg) const;
  116. const QDBusArgument &operator>>(QString &arg) const;
  117. const QDBusArgument &operator>>(QDBusVariant &arg) const;
  118. const QDBusArgument &operator>>(QDBusObjectPath &arg) const;
  119. const QDBusArgument &operator>>(QDBusSignature &arg) const;
  120. const QDBusArgument &operator>>(QDBusUnixFileDescriptor &arg) const;
  121. const QDBusArgument &operator>>(QStringList &arg) const;
  122. const QDBusArgument &operator>>(QByteArray &arg) const;
  123. void beginStructure() const;
  124. void endStructure() const;
  125. void beginArray() const;
  126. void endArray() const;
  127. void beginMap() const;
  128. void endMap() const;
  129. void beginMapEntry() const;
  130. void endMapEntry() const;
  131. bool atEnd() const;
  132. QVariant asVariant() const;
  133. protected:
  134. QDBusArgument(QDBusArgumentPrivate *d);
  135. friend class QDBusArgumentPrivate;
  136. mutable QDBusArgumentPrivate *d;
  137. };
  138. Q_DECLARE_SHARED_NOT_MOVABLE_UNTIL_QT6(QDBusArgument)
  139. QT_END_NAMESPACE
  140. Q_DECLARE_METATYPE(QDBusArgument)
  141. QT_BEGIN_NAMESPACE
  142. template<typename T> inline T qdbus_cast(const QDBusArgument &arg
  143. #ifndef Q_QDOC
  144. , T * = Q_NULLPTR
  145. #endif
  146. )
  147. {
  148. T item;
  149. arg >> item;
  150. return item;
  151. }
  152. template<typename T> inline T qdbus_cast(const QVariant &v
  153. #ifndef Q_QDOC
  154. , T * = Q_NULLPTR
  155. #endif
  156. )
  157. {
  158. int id = v.userType();
  159. if (id == qMetaTypeId<QDBusArgument>())
  160. return qdbus_cast<T>(qvariant_cast<QDBusArgument>(v));
  161. else
  162. return qvariant_cast<T>(v);
  163. }
  164. // specialize for QVariant, allowing it to be used in place of QDBusVariant
  165. template<> inline QVariant qdbus_cast<QVariant>(const QDBusArgument &arg, QVariant *)
  166. {
  167. QDBusVariant item;
  168. arg >> item;
  169. return item.variant();
  170. }
  171. template<> inline QVariant qdbus_cast<QVariant>(const QVariant &v, QVariant *)
  172. {
  173. return qdbus_cast<QDBusVariant>(v).variant();
  174. }
  175. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QVariant &v);
  176. // QVariant types
  177. #ifndef QDBUS_NO_SPECIALTYPES
  178. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QDate &date);
  179. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QDate &date);
  180. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QTime &time);
  181. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QTime &time);
  182. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QDateTime &dt);
  183. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QDateTime &dt);
  184. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QRect &rect);
  185. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QRect &rect);
  186. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QRectF &rect);
  187. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QRectF &rect);
  188. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QSize &size);
  189. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QSize &size);
  190. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QSizeF &size);
  191. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QSizeF &size);
  192. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QPoint &pt);
  193. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QPoint &pt);
  194. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QPointF &pt);
  195. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QPointF &pt);
  196. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QLine &line);
  197. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QLine &line);
  198. Q_DBUS_EXPORT const QDBusArgument &operator>>(const QDBusArgument &a, QLineF &line);
  199. Q_DBUS_EXPORT QDBusArgument &operator<<(QDBusArgument &a, const QLineF &line);
  200. #endif
  201. template<template <typename> class Container, typename T>
  202. inline QDBusArgument &operator<<(QDBusArgument &arg, const Container<T> &list)
  203. {
  204. int id = qMetaTypeId<T>();
  205. arg.beginArray(id);
  206. typename Container<T>::const_iterator it = list.begin();
  207. typename Container<T>::const_iterator end = list.end();
  208. for ( ; it != end; ++it)
  209. arg << *it;
  210. arg.endArray();
  211. return arg;
  212. }
  213. template<template <typename> class Container, typename T>
  214. inline const QDBusArgument &operator>>(const QDBusArgument &arg, Container<T> &list)
  215. {
  216. arg.beginArray();
  217. list.clear();
  218. while (!arg.atEnd()) {
  219. T item;
  220. arg >> item;
  221. list.push_back(item);
  222. }
  223. arg.endArray();
  224. return arg;
  225. }
  226. // QList specializations
  227. template<typename T>
  228. inline QDBusArgument &operator<<(QDBusArgument &arg, const QList<T> &list)
  229. {
  230. int id = qMetaTypeId<T>();
  231. arg.beginArray(id);
  232. typename QList<T>::ConstIterator it = list.constBegin();
  233. typename QList<T>::ConstIterator end = list.constEnd();
  234. for ( ; it != end; ++it)
  235. arg << *it;
  236. arg.endArray();
  237. return arg;
  238. }
  239. template<typename T>
  240. inline const QDBusArgument &operator>>(const QDBusArgument &arg, QList<T> &list)
  241. {
  242. arg.beginArray();
  243. list.clear();
  244. while (!arg.atEnd()) {
  245. T item;
  246. arg >> item;
  247. list.push_back(item);
  248. }
  249. arg.endArray();
  250. return arg;
  251. }
  252. inline QDBusArgument &operator<<(QDBusArgument &arg, const QVariantList &list)
  253. {
  254. int id = qMetaTypeId<QDBusVariant>();
  255. arg.beginArray(id);
  256. QVariantList::ConstIterator it = list.constBegin();
  257. QVariantList::ConstIterator end = list.constEnd();
  258. for ( ; it != end; ++it)
  259. arg << QDBusVariant(*it);
  260. arg.endArray();
  261. return arg;
  262. }
  263. // QMap specializations
  264. template<typename Key, typename T>
  265. inline QDBusArgument &operator<<(QDBusArgument &arg, const QMap<Key, T> &map)
  266. {
  267. int kid = qMetaTypeId<Key>();
  268. int vid = qMetaTypeId<T>();
  269. arg.beginMap(kid, vid);
  270. typename QMap<Key, T>::ConstIterator it = map.constBegin();
  271. typename QMap<Key, T>::ConstIterator end = map.constEnd();
  272. for ( ; it != end; ++it) {
  273. arg.beginMapEntry();
  274. arg << it.key() << it.value();
  275. arg.endMapEntry();
  276. }
  277. arg.endMap();
  278. return arg;
  279. }
  280. template<typename Key, typename T>
  281. inline const QDBusArgument &operator>>(const QDBusArgument &arg, QMap<Key, T> &map)
  282. {
  283. arg.beginMap();
  284. map.clear();
  285. while (!arg.atEnd()) {
  286. Key key;
  287. T value;
  288. arg.beginMapEntry();
  289. arg >> key >> value;
  290. map.insertMulti(key, value);
  291. arg.endMapEntry();
  292. }
  293. arg.endMap();
  294. return arg;
  295. }
  296. inline QDBusArgument &operator<<(QDBusArgument &arg, const QVariantMap &map)
  297. {
  298. arg.beginMap(QVariant::String, qMetaTypeId<QDBusVariant>());
  299. QVariantMap::ConstIterator it = map.constBegin();
  300. QVariantMap::ConstIterator end = map.constEnd();
  301. for ( ; it != end; ++it) {
  302. arg.beginMapEntry();
  303. arg << it.key() << QDBusVariant(it.value());
  304. arg.endMapEntry();
  305. }
  306. arg.endMap();
  307. return arg;
  308. }
  309. // QHash specializations
  310. template<typename Key, typename T>
  311. inline QDBusArgument &operator<<(QDBusArgument &arg, const QHash<Key, T> &map)
  312. {
  313. int kid = qMetaTypeId<Key>();
  314. int vid = qMetaTypeId<T>();
  315. arg.beginMap(kid, vid);
  316. typename QHash<Key, T>::ConstIterator it = map.constBegin();
  317. typename QHash<Key, T>::ConstIterator end = map.constEnd();
  318. for ( ; it != end; ++it) {
  319. arg.beginMapEntry();
  320. arg << it.key() << it.value();
  321. arg.endMapEntry();
  322. }
  323. arg.endMap();
  324. return arg;
  325. }
  326. template<typename Key, typename T>
  327. inline const QDBusArgument &operator>>(const QDBusArgument &arg, QHash<Key, T> &map)
  328. {
  329. arg.beginMap();
  330. map.clear();
  331. while (!arg.atEnd()) {
  332. Key key;
  333. T value;
  334. arg.beginMapEntry();
  335. arg >> key >> value;
  336. map.insertMulti(key, value);
  337. arg.endMapEntry();
  338. }
  339. arg.endMap();
  340. return arg;
  341. }
  342. inline QDBusArgument &operator<<(QDBusArgument &arg, const QVariantHash &map)
  343. {
  344. arg.beginMap(QVariant::String, qMetaTypeId<QDBusVariant>());
  345. QVariantHash::ConstIterator it = map.constBegin();
  346. QVariantHash::ConstIterator end = map.constEnd();
  347. for ( ; it != end; ++it) {
  348. arg.beginMapEntry();
  349. arg << it.key() << QDBusVariant(it.value());
  350. arg.endMapEntry();
  351. }
  352. arg.endMap();
  353. return arg;
  354. }
  355. template <typename T1, typename T2>
  356. inline QDBusArgument &operator<<(QDBusArgument &arg, const QPair<T1, T2> &pair)
  357. {
  358. arg.beginStructure();
  359. arg << pair.first << pair.second;
  360. arg.endStructure();
  361. return arg;
  362. }
  363. template <typename T1, typename T2>
  364. inline const QDBusArgument &operator>>(const QDBusArgument &arg, QPair<T1, T2> &pair)
  365. {
  366. arg.beginStructure();
  367. arg >> pair.first >> pair.second;
  368. arg.endStructure();
  369. return arg;
  370. }
  371. QT_END_NAMESPACE
  372. #endif // QT_NO_DBUS
  373. #endif