qtconcurrentfunctionwrappers.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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 QtCore 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 QTCONCURRENT_FUNCTIONWRAPPERS_H
  40. #define QTCONCURRENT_FUNCTIONWRAPPERS_H
  41. #include <QtConcurrent/qtconcurrentcompilertest.h>
  42. #include <QtCore/QStringList>
  43. #ifndef QT_NO_CONCURRENT
  44. QT_BEGIN_NAMESPACE
  45. #ifndef Q_QDOC
  46. namespace QtConcurrent {
  47. template <typename T>
  48. class FunctionWrapper0
  49. {
  50. public:
  51. typedef T (*FunctionPointerType)();
  52. typedef T result_type;
  53. inline FunctionWrapper0(FunctionPointerType _functionPointer)
  54. :functionPointer(_functionPointer) { }
  55. inline T operator()()
  56. {
  57. return functionPointer();
  58. }
  59. private:
  60. FunctionPointerType functionPointer;
  61. };
  62. template <typename T, typename U>
  63. class FunctionWrapper1
  64. {
  65. public:
  66. typedef T (*FunctionPointerType)(U u);
  67. typedef T result_type;
  68. inline FunctionWrapper1(FunctionPointerType _functionPointer)
  69. :functionPointer(_functionPointer) { }
  70. inline T operator()(U u)
  71. {
  72. return functionPointer(u);
  73. }
  74. private:
  75. FunctionPointerType functionPointer;
  76. };
  77. template <typename T, typename U, typename V>
  78. class FunctionWrapper2
  79. {
  80. public:
  81. typedef T (*FunctionPointerType)(U u, V v);
  82. typedef T result_type;
  83. inline FunctionWrapper2(FunctionPointerType _functionPointer)
  84. :functionPointer(_functionPointer) { }
  85. inline T operator()(U u, V v)
  86. {
  87. return functionPointer(u, v);
  88. }
  89. private:
  90. FunctionPointerType functionPointer;
  91. };
  92. template <typename T, typename C>
  93. class MemberFunctionWrapper
  94. {
  95. public:
  96. typedef T (C::*FunctionPointerType)();
  97. typedef T result_type;
  98. inline MemberFunctionWrapper(FunctionPointerType _functionPointer)
  99. :functionPointer(_functionPointer) { }
  100. inline T operator()(C &c)
  101. {
  102. return (c.*functionPointer)();
  103. }
  104. private:
  105. FunctionPointerType functionPointer;
  106. };
  107. template <typename T, typename C, typename U>
  108. class MemberFunctionWrapper1
  109. {
  110. public:
  111. typedef T (C::*FunctionPointerType)(U);
  112. typedef T result_type;
  113. inline MemberFunctionWrapper1(FunctionPointerType _functionPointer)
  114. : functionPointer(_functionPointer)
  115. { }
  116. inline T operator()(C &c, U u)
  117. {
  118. return (c.*functionPointer)(u);
  119. }
  120. private:
  121. FunctionPointerType functionPointer;
  122. };
  123. template <typename T, typename C>
  124. class ConstMemberFunctionWrapper
  125. {
  126. public:
  127. typedef T (C::*FunctionPointerType)() const;
  128. typedef T result_type;
  129. inline ConstMemberFunctionWrapper(FunctionPointerType _functionPointer)
  130. :functionPointer(_functionPointer) { }
  131. inline T operator()(const C &c) const
  132. {
  133. return (c.*functionPointer)();
  134. }
  135. private:
  136. FunctionPointerType functionPointer;
  137. };
  138. } // namespace QtConcurrent.
  139. namespace QtPrivate {
  140. template <typename T>
  141. const T& createFunctionWrapper(const T& t)
  142. {
  143. return t;
  144. }
  145. template <typename T, typename U>
  146. QtConcurrent::FunctionWrapper1<T, U> createFunctionWrapper(T (*func)(U))
  147. {
  148. return QtConcurrent::FunctionWrapper1<T, U>(func);
  149. }
  150. template <typename T, typename C>
  151. QtConcurrent::MemberFunctionWrapper<T, C> createFunctionWrapper(T (C::*func)())
  152. {
  153. return QtConcurrent::MemberFunctionWrapper<T, C>(func);
  154. }
  155. template <typename T, typename C, typename U>
  156. QtConcurrent::MemberFunctionWrapper1<T, C, U> createFunctionWrapper(T (C::*func)(U))
  157. {
  158. return QtConcurrent::MemberFunctionWrapper1<T, C, U>(func);
  159. }
  160. template <typename T, typename C>
  161. QtConcurrent::ConstMemberFunctionWrapper<T, C> createFunctionWrapper(T (C::*func)() const)
  162. {
  163. return QtConcurrent::ConstMemberFunctionWrapper<T, C>(func);
  164. }
  165. struct PushBackWrapper
  166. {
  167. typedef void result_type;
  168. template <class C, class U>
  169. inline void operator()(C &c, const U &u) const
  170. {
  171. return c.push_back(u);
  172. }
  173. #ifdef Q_COMPILER_RVALUE_REFS
  174. template <class C, class U>
  175. inline void operator()(C &c, U &&u) const
  176. {
  177. return c.push_back(u);
  178. }
  179. #endif
  180. };
  181. template <typename Functor, bool foo = HasResultType<Functor>::Value>
  182. struct LazyResultType { typedef typename Functor::result_type Type; };
  183. template <typename Functor>
  184. struct LazyResultType<Functor, false> { typedef void Type; };
  185. template <class T>
  186. struct ReduceResultType;
  187. template <class U, class V>
  188. struct ReduceResultType<void(*)(U&,V)>
  189. {
  190. typedef U ResultType;
  191. };
  192. template <class T, class C, class U>
  193. struct ReduceResultType<T(C::*)(U)>
  194. {
  195. typedef C ResultType;
  196. };
  197. template <class InputSequence, class MapFunctor>
  198. struct MapResultType
  199. {
  200. typedef typename LazyResultType<MapFunctor>::Type ResultType;
  201. };
  202. template <class U, class V>
  203. struct MapResultType<void, U (*)(V)>
  204. {
  205. typedef U ResultType;
  206. };
  207. template <class T, class C>
  208. struct MapResultType<void, T(C::*)() const>
  209. {
  210. typedef T ResultType;
  211. };
  212. #ifndef QT_NO_TEMPLATE_TEMPLATE_PARAMETERS
  213. template <template <typename> class InputSequence, typename MapFunctor, typename T>
  214. struct MapResultType<InputSequence<T>, MapFunctor>
  215. {
  216. typedef InputSequence<typename LazyResultType<MapFunctor>::Type> ResultType;
  217. };
  218. template <template <typename> class InputSequence, class T, class U, class V>
  219. struct MapResultType<InputSequence<T>, U (*)(V)>
  220. {
  221. typedef InputSequence<U> ResultType;
  222. };
  223. template <template <typename> class InputSequence, class T, class U, class C>
  224. struct MapResultType<InputSequence<T>, U(C::*)() const>
  225. {
  226. typedef InputSequence<U> ResultType;
  227. };
  228. #endif // QT_NO_TEMPLATE_TEMPLATE_PARAMETER
  229. template <class MapFunctor>
  230. struct MapResultType<QStringList, MapFunctor>
  231. {
  232. typedef QList<typename LazyResultType<MapFunctor>::Type> ResultType;
  233. };
  234. template <class U, class V>
  235. struct MapResultType<QStringList, U (*)(V)>
  236. {
  237. typedef QList<U> ResultType;
  238. };
  239. template <class U, class C>
  240. struct MapResultType<QStringList, U(C::*)() const>
  241. {
  242. typedef QList<U> ResultType;
  243. };
  244. } // namespace QtPrivate.
  245. #endif //Q_QDOC
  246. QT_END_NAMESPACE
  247. #endif // QT_NO_CONCURRENT
  248. #endif