-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocgui.cpp
360 lines (313 loc) · 10.5 KB
/
procgui.cpp
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#include <QStandardItemModel>
#include <QVectorIterator>
#include "procgui.h"
#include "ui_procgui.h"
#include "src/data/processinfolist.h"
#include "src/base/linklist.h"
#include "src/gui/fieldconfig.h"
#include "src/base/config.h"
#include "src/base/os.h"
#include <QString>
#include <QMapIterator>
#include <iostream>
#include <limits.h>
#include <unistd.h>
#include <sys/types.h>
#include <QModelIndex>
#include "procinfodialog.h"
#include <QListIterator>
#include <sys/types.h>
#include <signal.h>
#include <QMessageBox>
#include <QHash>
#include <QHashIterator>
#include "hyfiller.h"
#include <QStyledItemDelegate>
#include <QPainter>
#include <QTableView>
#include <klocalizedstring.h>
#include <QAbstractItemModel>
#include <QMessageBox>
#include "sortproxy.h"
#include "about.h"
#include "src/base/utils.h"
#include "priority.h"
/**
* Main windows. This window displays the processList.
*/
/**
* A Treeview doesn't have grid lines.
* This class is for painting grid lines in the tree.
*
*/
class TGridDelegate : public QStyledItemDelegate
{
public:
TGridDelegate(QObject* p_parent ) : QStyledItemDelegate(p_parent) { }
/**
* Paint grid line in a TreeView
*
* \param p_painter Painter used for drawing grid lines
* \param p_option Option used for drawing grid lines
* \param p_index Current model index.
*/
void paint(QPainter* p_painter, const QStyleOptionViewItem& p_option, const QModelIndex& p_index ) const
{
p_painter->save();
p_painter->setPen(QColor(Qt::lightGray));
p_painter->drawRect(p_option.rect);
p_painter->restore();
QStyledItemDelegate::paint(p_painter, p_option, p_index);
}
};
/**
* Constructor
* Setup windows and initialize all events
*
* \param parent Parent window
*/
TProcGui::TProcGui(QWidget *parent) : QMainWindow(parent), ui(new Ui::procgui)
{
ui->setupUi(this);
int l_width= g_config.getMainWindowWidth();
int l_height=g_config.getMainWindowHeight();
if((l_width>0) && (l_height>0)){
resize(l_width,l_height);
}
TSortProxy *sortProxy=new TSortProxy(g_config.getFields(),this);
ui->processList->setModel(sortProxy);
ui->autoRefresh->setCheckState(Qt::Checked);
connect(ui->action_Exit,SIGNAL(triggered()),qApp,SLOT(quit()));
connect(ui->actionFields,SIGNAL(triggered()),this,SLOT(fieldsDialog()));
connect(ui->actionAbout,SIGNAL(triggered()), this,SLOT(about()));
connect(&refresh,SIGNAL(timeout()),this,SLOT(refreshTimeout()));
connect(ui->userFilter,SIGNAL(currentIndexChanged(int)),this,SLOT(userFilterChange(int)));
connect(ui->processList,SIGNAL(doubleClicked(const QModelIndex &)),this,SLOT(doubleClickedGrid(const QModelIndex &)));
connect(ui->killButton,SIGNAL(clicked()),this,SLOT(killProcess()));
connect(ui->detailsButton,SIGNAL(clicked()),this,SLOT(showDetails()));
connect(ui->displayAsTree,SIGNAL(clicked()),this,SLOT(checkDisplayAsTree()));
connect(ui->priority,SIGNAL(clicked()),this,SLOT(showPriorityDialog()));
connect(ui->autoRefresh,SIGNAL(clicked()),this,SLOT(clickAutoRefresh()));
ui->displayAsTree->setCheckState(g_config.getDisplayAsTree()?Qt::Checked:Qt::Unchecked);
ui->processList->setItemDelegate(new TGridDelegate(ui->processList));
userSelection=new QTableView(this);
ui->userFilter->setView(userSelection);
userSelection->setSelectionBehavior(QAbstractItemView::SelectRows);
userSelection->setSelectionMode(QAbstractItemView::SingleSelection);
userSelection->verticalHeader()->setVisible(false);
refreshTimeout();
refresh.setInterval(1000);
refresh.start();
}
TProcGui::~TProcGui()
{
delete ui;
if(processInfo!=nullptr)delete processInfo;
}
/**
* Display about GUI
*/
void TProcGui::about()
{
TAbout l_about;
l_about.exec();
}
/**
* Event fired when user clicks the autorefresh checkbox.
* This method togles autorefresh
*/
void TProcGui::clickAutoRefresh()
{
if(ui->autoRefresh->checkState()==Qt::Checked){
refresh.start();
} else {
refresh.stop();
}
}
/**
* Show the PropertyDialog for changing the proces priority
*/
void TProcGui::showPriorityDialog()
{
if(ui->processList->selectionModel()->selectedRows().count()>0){
refresh.stop();
pid_t l_pid=ui->processList->selectionModel()->selectedRows().first().data(Qt::UserRole+1).toUInt();
TProcessInfo *l_info=processInfo->getByPid(l_pid);
PriorityDialog l_dialog(l_info);
l_dialog.exec();
refresh.start();
refreshTimeout();
}
}
/**
* Fills/refresh the list with users. Before the refresh, the current selection is saved and restored after the refresh.
* The list is sorted on the description. The associated data item is the user id.
* When the id=UINT_MAX this means display processes from all users
*
* \param p_processList - process list, this information is used for marking users with a running proces.
*/
void TProcGui::fillUserFilter(TProcessInfoList *p_processList)
{
QMap<uint,QString> l_list;
QSet<int> l_uids;
getAllUsers(l_list);
p_processList->uidWithProcess(l_uids);
QMapIterator<uint,QString> l_iter(l_list);
uint l_selectedUid;
QStandardItemModel *l_model=new QStandardItemModel(0,2,this);
l_model->setHorizontalHeaderItem(0,new QStandardItem(i18n("User")));
l_model->setHorizontalHeaderItem(1,new QStandardItem(i18n("Process owner?")));
/**
* If nothing is selected, use current user as selection
* If current user=root, than select "All users" as default.
*/
if(ui->userFilter->currentIndex() ==-1){
l_selectedUid=getuid();
if(l_selectedUid==0)l_selectedUid=UINT_MAX;
} else {
l_selectedUid=ui->userFilter->itemData(ui->userFilter->currentIndex(),Qt::UserRole+1).toUInt();
}
ui->userFilter->blockSignals(true);
int l_index=1;
int l_selectedIndex=0;
QStandardItem *l_item;
l_item=new QStandardItem("All users");
l_item->setData(UINT_MAX);
l_model->setItem(0,0,l_item);
l_model->setItem(0,1,new QStandardItem(""));
while(l_iter.hasNext()){
l_iter.next();
if(l_iter.key()==l_selectedUid) l_selectedIndex=l_index;
l_item=new QStandardItem(l_iter.value());
l_item->setData(l_iter.key());
l_model->setItem(l_index,0,l_item);
l_model->setItem(l_index,1,new QStandardItem(l_uids.contains(l_iter.key())?"X":""));
l_index++;
}
ui->userFilter->setModelColumn(0);
ui->userFilter->setModel(l_model);
ui->userFilter->setCurrentIndex(l_selectedIndex);
userSelection->resizeRowsToContents();
userSelection->resizeColumnsToContents();
ui->userFilter->blockSignals(false);
l_model->sort(0);
}
/**
* There is a check box "Display as tree" on the main Gui. When this check box is checked ' unchecked this routine is called
* The check state is save in the configuration file and the process list is refreshed.
*/
void TProcGui::checkDisplayAsTree()
{
g_config.setDisplayAsTree(ui->displayAsTree->checkState()==Qt::Checked);
g_config.sync();
fillProcessList(processInfo);
}
/**
* This methods fills the process list with data from p_processList.
* The data is filterd by the exe name and the user filter.
*
* \param p_processList Data in this list is used to fill the process list/tree
*/
void TProcGui::fillProcessList(TProcessInfoList* p_processList)
{
THyrFiller l_filler(this,ui->processList,p_processList);
l_filler.setExeFilter(ui->exeFilter->text());
l_filler.setUserFilter(ui->userFilter->itemData(ui->userFilter->currentIndex(),Qt::UserRole+1).toUInt());
l_filler.fillProcessList(g_config.getDisplayAsTree());
}
/**
* Event handler for double clicking the process list
* When double clicking the process list, the details dialog with information about the selected process is shown.
*
* \param p_index Index on the gird where the user double clicked.
*/
void TProcGui::doubleClickedGrid(const QModelIndex &p_index)
{
uint l_pid;
l_pid=p_index.sibling(p_index.row() ,0).data(Qt::UserRole+1).toUInt();//get selected pid
if(processInfo!=nullptr){
TProcessInfo *l_info=processInfo->getByPid(l_pid);
if(l_info != nullptr){
refresh.stop();
TProcInfoDialog l_dialog(l_info);
l_dialog.exec();
refresh.start();
}
}
}
/***
* When selected the "fields" it is possible to selected the column displayed in the main window.
* This method display the dialog
*/
void TProcGui::fieldsDialog()
{
TFieldsConfig l_fieldConfig;
l_fieldConfig.exec();
fillProcessList(processInfo);
}
/**
* When the main window is re-sized the new size is stored in the configuration file.
* After restarting the program the previous size of the main window is restored.
*/
void TProcGui::resizeEvent(QResizeEvent *p_event)
{
g_config.setMainWindowSize(p_event->size().width() ,p_event->size().height());
g_config.sync();
}
/**
* This is an time out event of the "refresh" QTimer.
* Periodically (by default 1s) the process data is refreshed in this routine.
*/
void TProcGui::refreshTimeout()
{
TProcessInfoList *l_info=new TProcessInfoList();
l_info->readInfo();
if(processInfo != nullptr) l_info->diff(processInfo);
fillUserFilter(l_info);
fillProcessList(l_info);
if(processInfo != nullptr) delete processInfo;
processInfo=l_info;
}
/**
* On the main window there is a user selection combobox. Only the processes with has the selected owner is displayed
* After changing the selected user, the event is called. In this function the list is refreshed
*/
void TProcGui::userFilterChange(int p_index PAR_UNUSED)
{
fillProcessList(processInfo);
}
/**
* This slot is called when the use selects a process and clicks the "kill process" button.
* First the selected process is determined and then the process is killed.
*/
void TProcGui::killProcess()
{
QMessageBox l_mb(QMessageBox::Question ,i18n("Kill process?"),i18n("Kill selected processes?"),QMessageBox::Ok | QMessageBox::Cancel);
if(l_mb.exec()==QMessageBox::Ok){
QModelIndexList l_list=ui->processList->selectionModel()->selectedRows();
QListIterator<QModelIndex> l_iter(l_list);
QModelIndex l_index;
while(l_iter.hasNext()){
l_index=l_iter.next();
int l_pid=l_index.data(Qt::UserRole + 1).toInt();
kill(l_pid,SIGKILL);
}
}
}
/**
* This slot is called when the show details button is pressed. When no process is
* selected a warning is displayed, otherwise
* the details dialog is displayed (same dialog when double clicking the process)
*/
void TProcGui::showDetails()
{
QModelIndexList l_list=ui->processList->selectionModel()->selectedRows();
if(l_list.size()>0){
doubleClickedGrid(l_list.first());
} else{
QMessageBox l_box;
l_box.setText(i18n("Please select a process first"));
l_box.setStandardButtons(QMessageBox::Ok);
l_box.exec();
}
}