qtconcurrentmedian.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 QTCONCURRENT_MEDIAN_H
  38. #define QTCONCURRENT_MEDIAN_H
  39. #include <QtCore/qglobal.h>
  40. #ifndef QT_NO_CONCURRENT
  41. #include <QtCore/qvector.h>
  42. #include <QtCore/qalgorithms.h>
  43. QT_BEGIN_HEADER
  44. QT_BEGIN_NAMESPACE
  45. QT_MODULE(Core)
  46. #ifndef qdoc
  47. namespace QtConcurrent {
  48. template <typename T>
  49. class Median
  50. {
  51. public:
  52.     Median(int _bufferSize)
  53.         : currentMedian(), bufferSize(_bufferSize), currentIndex(0), valid(false), dirty(true)
  54.     {
  55.         values.resize(bufferSize);
  56.     }
  57.     void reset()
  58.     {
  59.         values.fill(0);
  60.         currentIndex = 0;
  61.         valid = false;
  62.         dirty = true;
  63.     }
  64.     void addValue(T value)
  65.     {
  66.         currentIndex = ((currentIndex + 1) % bufferSize);
  67.         if (valid == false && currentIndex % bufferSize == 0)
  68.             valid = true;
  69.         // Only update the cached median value when we have to, that
  70.         // is when the new value is on then other side of the median
  71.         // compared to the current value at the index.
  72.         const T currentIndexValue = values[currentIndex];
  73.         if ((currentIndexValue > currentMedian && currentMedian > value)
  74.             || (currentMedian > currentIndexValue && value > currentMedian)) {
  75.             dirty = true;
  76.         }
  77.         values[currentIndex] = value;
  78.     }
  79.     bool isMedianValid() const
  80.     {
  81.         return valid;
  82.     }
  83.     T median()
  84.     {
  85.         if (dirty) {
  86.             dirty = false;
  87.             QVector<T> sorted = values;
  88.             qSort(sorted);
  89.             currentMedian = sorted.at(bufferSize / 2 + 1);
  90.         }
  91.         return currentMedian;
  92.     }
  93. private:
  94.     QVector<T> values;
  95.     T currentMedian;
  96.     int bufferSize;
  97.     int currentIndex;
  98.     bool valid;
  99.     bool dirty;
  100. };
  101. } // namespace QtConcurrent
  102. #endif //qdoc
  103. QT_END_NAMESPACE
  104. QT_END_HEADER
  105. #endif // QT_NO_CONCURRENT
  106. #endif