2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2021 Prince Gupta <guptaprince8832@gmail.com>
4 * Copyright (C) 2015 Anton Lashkov <lenton_91@mail.ru>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * In addition, as a special exception, the copyright holders give permission to
21 * link this program with the OpenSSL project's "OpenSSL" library (or with
22 * modified versions of it that use the same license as the "OpenSSL" library),
23 * and distribute the linked executables. You must obey the GNU General Public
24 * License in all respects for all of the code used other than "OpenSSL". If you
25 * modify file(s), you may extend this exception to your version of the file(s),
26 * but you are not obligated to do so. If you do not wish to do so, delete this
27 * exception statement from your version.
36 #include <boost/circular_buffer.hpp>
39 #include <QElapsedTimer>
40 #include <QGraphicsView>
45 using std::chrono::milliseconds
;
46 using namespace std::chrono_literals
;
48 class SpeedPlotView final
: public QGraphicsView
51 Q_DISABLE_COPY_MOVE(SpeedPlotView
)
81 using SampleData
= std::array
<quint64
, NB_GRAPHS
>;
83 explicit SpeedPlotView(QWidget
*parent
= nullptr);
85 void setGraphEnable(GraphID id
, bool enable
);
86 void setPeriod(TimePeriod period
);
88 void pushPoint(const SampleData
&point
);
91 void paintEvent(QPaintEvent
*event
) override
;
96 milliseconds duration
;
100 using DataCircularBuffer
= boost::circular_buffer
<Sample
>;
105 Averager(milliseconds duration
, milliseconds resolution
);
107 bool push(const SampleData
&sampleData
); // returns true if there is new data to display
109 const DataCircularBuffer
&data() const;
112 const milliseconds m_resolution
;
113 const milliseconds m_maxDuration
;
114 milliseconds m_currentDuration
{0};
116 SampleData m_accumulator
{};
117 DataCircularBuffer m_sink
{};
118 QElapsedTimer m_lastSampleTime
;
121 struct GraphProperties
124 GraphProperties(const QString
&name
, const QPen
&pen
, bool enable
= false);
131 quint64
maxYValue() const;
132 const DataCircularBuffer
¤tData() const;
134 Averager m_averager5Min
{5min
, 1s
};
135 Averager m_averager30Min
{30min
, 6s
};
136 Averager m_averager6Hour
{6h
, 36s
};
137 Averager m_averager12Hour
{12h
, 72s
};
138 Averager m_averager24Hour
{24h
, 144s
};
139 Averager
*m_currentAverager
{&m_averager5Min
};
141 QMap
<GraphID
, GraphProperties
> m_properties
;
142 milliseconds m_currentMaxDuration
{0};