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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
import QtQuick 2.6
import QtQuick.Window 2.2
import QtQuick.Controls 1.4
import QtQuick.Controls 2.0 as NewControls
import QtQuick.Layouts 1.1
import TaskManager 1.0
import QtCharts 2.2
Window {
id: root
visible: true
width: 745
height: 480
TaskManager {
id: taskmgr
onUpdateProcess: {
var index = findId(tid_);
libraryModel.set(index, {"cmd": cmd_, "tid": tid_, "user": euid_, "system_cpu": scpu_,
"user_cpu": ucpu_, "resident_memory": resident_memory_, "state": state_});
}
onAddProcess: {
libraryModel.append({"cmd": cmd_, "tid": tid_, "user": euid_, "system_cpu": scpu_,
"user_cpu": ucpu_, "resident_memory": resident_memory_, "state": state_});
}
onRemoveProcess: {
var index = findId(tid_);
libraryModel.remove(index);
}
function findId(tid) {
for(var i = 0; i < libraryModel.count; i++) {
if(tid == libraryModel.get(i).tid) {
return i;
}
}
}
Component.onCompleted: {
taskmgr.open(bindingAddress);
}
onShowProcessInfo: {
mainTabview.getTab(0).item.updateInfo(info_);
}
onUpdateLoadAverage: {
mainTabview.getTab(1).item.tempAdd(value_);
}
}
ListModel {
id: libraryModel
}
TabView {
id: mainTabview
currentIndex: 0
anchors.fill: parent
Tab {
id: processesTab
active: true
anchors.fill: parent
title: "Processes"
Rectangle {
id: procsView
width: parent.width
height: parent.height
function updateInfo(info_)
{
infoPopup.infoText = info_;
}
Row {
id: buttonRow
width: parent.width
anchors.top: mainTabview.top
RowLayout {
id: buttonRowLayout
spacing: 6
NewControls.Popup {
id: infoPopup
x: 200
y: 200
width: 300
height: 200
modal: true
focus: true
closePolicy: NewControls.Popup.CloseOnPressOutsideParent
property var infoText: "Getting extra information for process"
function doOpen(tid) {
taskmgr.getExtraInfo(tid)
infoPopup.open()
}
contentItem: Text {
text: infoPopup.infoText
}
}
Button {
id: infoButton
text: "Info"
enabled: tableView.currentRow != -1
onClicked: infoPopup.doOpen(libraryModel.get(tableView.currentRow).tid)
}
Button {
id: killButton
text: "Kill"
enabled: tableView.currentRow != -1
onClicked: {
tableView.selection.forEach( function(rowIndex) {
taskmgr.kill(libraryModel.get(rowIndex).tid)}
)
tableView.selection.clear()
}
}
}
}
TableView {
id: tableView
height: parent.height - buttonRow.height
width: parent.width
anchors.top: buttonRow.bottom
TableViewColumn {
role: "cmd"
title: "Process"
width: 150
}
TableViewColumn {
role: "tid"
title: "ID"
width: 80
}
TableViewColumn {
role: "user"
title: "User"
width: 80
}
TableViewColumn {
role: "system_cpu"
title: "System %"
width: 100
}
TableViewColumn {
role: "user_cpu"
title: "User %"
width: 100
}
TableViewColumn {
role: "resident_memory"
title: "Memory"
width: 100
}
TableViewColumn {
role: "state"
title: "State"
width: 90
}
model: libraryModel
}
}
}
Tab {
id: systemTab
active: true
anchors.fill: parent
title: "System"
ChartView {
id: chartView
title: "System load average"
width: parent.width
height: parent.height / 2
legend.visible: false
antialiasing: true
LineSeries {
id: loadSeries
axisX: DateTimeAxis {
id: timeAxis
labelsVisible: false
format: "hh:mm"
}
axisY: ValueAxis {
id: valueAxis
max: 2
min: 0
tickCount: 3
}
XYPoint { x: new Date().getTime(); y: 0 }
XYPoint { x: (new Date().getTime()+ 10); y: 0 }
}
function tempAdd(value_)
{
var time_ = new Date();
if (value_ > valueAxis.max)
valueAxis.max = value_;
loadSeries.append(time_.getTime(), value_);
timeAxis.max = time_;
if (loadSeries.count > 1800)
{
loadSeries.remove(0);
time_.setMinutes(time_.getMinutes() - 30);
timeAxis.min = time_;
}
chartView.update();
}
}
}
}
}
|