-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDynamicStatisticsChartView.qml
139 lines (121 loc) · 5.66 KB
/
DynamicStatisticsChartView.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Copyright 2021 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// This file is part of eProsima Fast DDS Monitor.
//
// eProsima Fast DDS Monitor is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// eProsima Fast DDS Monitor is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with eProsima Fast DDS Monitor. If not, see <https://www.gnu.org/licenses/>.
import QtQuick 2.0
import QtCharts 2.1
import QtQuick.Controls 2.15
StatisticsChartView {
id: chartView
// There is an issue if the time that is used in the axis is the current time, as the data for current
// time may has not arrived yet.
// Thus, a delay_time is used in order to delay the chart regarding the actual moment.
// For now, use delay_time to subsctract to xaxis every time this value changes
// TODO if the backend changes and uses max time_frame as time in any point, this delay could be applied
// to the time_to get_data call and not to the axis.
// Meanwhile doing that would leave the chart too shifted to the left
property int delay_time: 5000
property int axis_refresh_time: 100
property bool running: false
function addDynamicSeries(
seriesLabel,
sourceEntityId,
targetEntityId,
statisticKind,
cumulative,
cumulative_interval,
maxPoints) {
// Call DynamicChartBox add_series that creates a series and a related mapper and returns the mapper
mapper.push(dynamicData.add_series(chartboxId, statisticKind, cumulative, cumulative_interval, sourceEntityId, targetEntityId, maxPoints))
// Create a new QAbstractSeries with index chartView.count (this index varies with deletion of series)
var new_series = chartView.createSeries(ChartView.SeriesTypeLine, seriesLabel, dateTimeAxisXItem, axisYItem);
// See each of the points and not just the line
new_series.pointsVisible = true
// Stores a mapper array with every series in order to hjavascript not indiscriminately destroy the C++ mapper
mapper[mapper.length-1].series = new_series
// Set timer that moves the axis to running
running = true
// Connect to see points when passing with the mouse through the chart
new_series.clicked.connect(
function (point){
var p = chartView.mapToPosition(point)
var text = qsTr("x: %1 \ny: %2").arg(
new Date(point.x).toLocaleString(Qt.locale(), "dd.MM.yyyy HH:mm:ss")).arg(point.y)
tooltipItem.x = p.x
tooltipItem.y = p.y - tooltipItem.height
tooltipItem.text = text
tooltipItem.seriesColor = new_series.color
tooltipItem.visible = true
})
}
function clearChart() {
running = false
chartView.removeAllSeries();
clearedChart()
dynamicData.clear_charts(chartboxId);
resetChartViewZoom();
mapper = []
}
function resetChartViewZoom(){
manuallySetAxes = false
dynamicData.recalculate_y_axis(chartboxId);
chartView.zoomReset()
setYAxis(dynamicData.axisYMin(chartboxId), dynamicData.axisYMax(chartboxId))
var current_date = toMsecsSinceEpoch(new Date())
setXAxis(
statisticsChartBox.fromMsecsSinceEpoch(current_date - timeWindow - delay_time),
statisticsChartBox.fromMsecsSinceEpoch(current_date - delay_time))
}
function customRemoveSeries(seriesIndex){
mapper.splice(seriesIndex, 1)
if (mapper.length == 0){
running = false
}
}
// This timer calls update_dynamic_chartbox so it calls get_data and update the series with new data from backend
// It runs constantly so the timer in the DynamicChartBox(C++) is updated constantly.
// If not extra logic will be needed or the first point will be an accumulation from the begin of the chartbox
// till the current moment
Timer {
id: refreshTimer
interval: updatePeriod
running: true
repeat: true
onTriggered: {
var time_to = Math.round(statisticsChartBox.fromMsecsSinceEpoch(toMsecsSinceEpoch(new Date()) - delay_time))
controller.update_dynamic_chartbox(chartboxId, time_to);
if (running) {
setYAxis(dynamicData.axisYMin(chartboxId), dynamicData.axisYMax(chartboxId))
}
}
}
// This timer refresh the X axis and Y axis in case it has changed by new data in refreshTimer
// It starts pressing Continue/Play(Button) or creating a series
// It stops pressing pause/Pause(Button) or clearing chartbox (not erasing all series)
Timer {
id: refreshAxisTimer
interval: axis_refresh_time
running: parent.running
repeat: true
onTriggered: {
// update X by current time
var current_date = toMsecsSinceEpoch(new Date())
setXAxis(
statisticsChartBox.fromMsecsSinceEpoch(current_date - timeWindow - delay_time),
statisticsChartBox.fromMsecsSinceEpoch(current_date - delay_time),
true)
}
}
}