qthreadstorage.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:4k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtCore module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QTHREADSTORAGE_H
  38. #define QTHREADSTORAGE_H
  39. #include <QtCore/qglobal.h>
  40. #ifndef QT_NO_THREAD
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Core)
  44. class Q_CORE_EXPORT QThreadStorageData
  45. {
  46. public:
  47.     explicit QThreadStorageData(void (*func)(void *));
  48.     ~QThreadStorageData();
  49.     void** get() const;
  50.     void** set(void* p);
  51.     static void finish(void**);
  52.     int id;
  53. };
  54. #if !defined(QT_MOC_CPP)
  55. // MOC_SKIP_BEGIN
  56. // pointer specialization
  57. template <typename T>
  58. inline
  59. T *&qThreadStorage_localData(QThreadStorageData &d, T **)
  60. {
  61.     void **v = d.get();
  62.     if (!v) v = d.set(0);
  63.     return *(reinterpret_cast<T**>(v));
  64. }
  65. template <typename T>
  66. inline
  67. T *qThreadStorage_localData_const(const QThreadStorageData &d, T **)
  68. {
  69.     void **v = d.get();
  70.     return v ? *(reinterpret_cast<T**>(v)) : 0;
  71. }
  72. template <typename T>
  73. inline
  74. void qThreadStorage_setLocalData(QThreadStorageData &d, T **t)
  75. { (void) d.set(*t); }
  76. #ifndef QT_NO_PARTIAL_TEMPLATE_SPECIALIZATION
  77. // value-based specialization
  78. template <typename T>
  79. inline
  80. T &qThreadStorage_localData(QThreadStorageData &d, T *)
  81. {
  82.     void **v = d.get();
  83.     if (!v) v = d.set(new T());
  84.     return *(reinterpret_cast<T*>(*v));
  85. }
  86. template <typename T>
  87. inline
  88. T qThreadStorage_localData_const(const QThreadStorageData &d, T *)
  89. {
  90.     void **v = d.get();
  91.     return v ? *(reinterpret_cast<T*>(*v)) : T();
  92. }
  93. template <typename T>
  94. inline
  95. void qThreadStorage_setLocalData(QThreadStorageData &d, T *t)
  96. { (void) d.set(new T(*t)); }
  97. #endif // QT_NO_PARTIAL_TEMPLATE_SPECIALIZATION
  98. // MOC_SKIP_END
  99. #endif
  100. template <class T>
  101. class QThreadStorage
  102. {
  103. private:
  104.     QThreadStorageData d;
  105.     Q_DISABLE_COPY(QThreadStorage)
  106.     static inline void deleteData(void *x)
  107.     { delete static_cast<T>(x); }
  108. public:
  109.     inline QThreadStorage() : d(deleteData) { }
  110.     inline ~QThreadStorage() { }
  111.     inline bool hasLocalData() const
  112.     { return d.get() != 0; }
  113.     inline T& localData()
  114.     { return qThreadStorage_localData(d, reinterpret_cast<T*>(0)); }
  115.     inline T localData() const
  116.     { return qThreadStorage_localData_const(d, reinterpret_cast<T*>(0)); }
  117.     inline void setLocalData(T t)
  118.     { qThreadStorage_setLocalData(d, &t); }
  119. };
  120. QT_END_NAMESPACE
  121. QT_END_HEADER
  122. #endif // QT_NO_THREAD
  123. #endif // QTHREADSTORAGE_H