Branch data Line data Source code
1 : : // Copyright (c) 2014-2022 The Bitcoin Core developers 2 : : // Distributed under the MIT software license, see the accompanying 3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php. 4 : : 5 : : #ifndef BITCOIN_TIMEDATA_H 6 : : #define BITCOIN_TIMEDATA_H 7 : : 8 : : #include <util/time.h> 9 : : 10 : : #include <algorithm> 11 : : #include <cassert> 12 : : #include <chrono> 13 : : #include <cstdint> 14 : : #include <vector> 15 : : 16 : : static const int64_t DEFAULT_MAX_TIME_ADJUSTMENT = 70 * 60; 17 : : 18 : : class CNetAddr; 19 : : 20 : : /** 21 : : * Median filter over a stream of values. 22 : : * Returns the median of the last N numbers 23 : : */ 24 : : template <typename T> 25 : : class CMedianFilter 26 : : { 27 : : private: 28 : : std::vector<T> vValues; 29 : : std::vector<T> vSorted; 30 : : unsigned int nSize; 31 : : 32 : : public: 33 : 322 : CMedianFilter(unsigned int _size, T initial_value) : nSize(_size) 34 : : { 35 [ + - ]: 322 : vValues.reserve(_size); 36 [ + - ]: 322 : vValues.push_back(initial_value); 37 [ + - ]: 322 : vSorted = vValues; 38 : 322 : } 39 : : 40 : 20990 : void input(T value) 41 : : { 42 [ + + ]: 20990 : if (vValues.size() == nSize) { 43 : 5775 : vValues.erase(vValues.begin()); 44 : 5775 : } 45 : 20990 : vValues.push_back(value); 46 : : 47 : 20990 : vSorted.resize(vValues.size()); 48 : 20990 : std::copy(vValues.begin(), vValues.end(), vSorted.begin()); 49 : 20990 : std::sort(vSorted.begin(), vSorted.end()); 50 : 20990 : } 51 : : 52 : 20786 : T median() const 53 : : { 54 : 20786 : int vSortedSize = vSorted.size(); 55 [ + - ]: 20786 : assert(vSortedSize > 0); 56 [ + + ]: 20786 : if (vSortedSize & 1) // Odd number of elements 57 : : { 58 : 9059 : return vSorted[vSortedSize / 2]; 59 : : } else // Even number of elements 60 : : { 61 : 11727 : return (vSorted[vSortedSize / 2 - 1] + vSorted[vSortedSize / 2]) / 2; 62 : : } 63 : 20786 : } 64 : : 65 : 62564 : int size() const 66 : : { 67 : 62564 : return vValues.size(); 68 : : } 69 : : 70 : 20786 : std::vector<T> sorted() const 71 : : { 72 : 20786 : return vSorted; 73 : : } 74 : : }; 75 : : 76 : : /** Functions to keep track of adjusted P2P time */ 77 : : int64_t GetTimeOffset(); 78 : : NodeClock::time_point GetAdjustedTime(); 79 : : void AddTimeData(const CNetAddr& ip, int64_t nTime); 80 : : 81 : : /** 82 : : * Reset the internal state of GetTimeOffset(), GetAdjustedTime() and AddTimeData(). 83 : : */ 84 : : void TestOnlyResetTimeData(); 85 : : 86 : : #endif // BITCOIN_TIMEDATA_H