QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
metacomponent.h
1 #ifndef QTRESTCLIENT_METACOMPONENT_H
2 #define QTRESTCLIENT_METACOMPONENT_H
3 
4 #include "QtRestClient/qtrestclient_global.h"
5 #include "QtRestClient/qtrestclient_helpertypes.h"
6 
7 #include <QtCore/qobject.h>
8 
9 #include <QtJsonSerializer/qtjsonserializer_helpertypes.h>
10 
11 namespace QtRestClient::__private {
12 
13 template <typename T>
14 using EnableGadgetType = typename std::enable_if<QtJsonSerializer::__private::gadget_helper<T>::value>::type;
15 
16 template <typename T>
17 using EnableObjectType = typename std::enable_if<std::is_base_of<QObject, T>::value>::type;
18 
19 template <typename T, typename Enable = void>
20 class MetaComponent : public std::false_type
21 {
22 public:
23  static inline void deleteLater(T) {}
24  static inline void deleteAllLater(const QList<T> &) {}
25 };
26 
27 template <typename T>
28 class MetaComponent<T, EnableGadgetType<T>> : public std::true_type
29 {
30 public:
31  static inline void deleteLater(T) {}
32  static inline void deleteAllLater(const QList<T> &) {}
33 };
34 
35 template <typename T>
36 class MetaComponent<T*, EnableObjectType<T>> : public std::true_type
37 {
38 public:
39  static inline void deleteLater(T *obj) {
40  if (obj)
41  obj->deleteLater();
42  }
43  static inline void deleteAllLater(const QList<T*> &list) {
44  for (T *obj : list) {
45  if (obj)
46  obj->deleteLater();
47  }
48  }
49 };
50 
51 template <typename T>
52 class MetaComponent<T*, EnableGadgetType<T>> : public std::true_type
53 {
54 public:
55  static inline void deleteLater(T *gad) {
56  delete gad;
57  }
58  static inline void deleteAllLater(const QList<T*> &list) {
59  qDeleteAll(list);
60  }
61 };
62 
63 }
64 
65 #endif // QTRESTCLIENT_METACOMPONENT_H
QList