summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/processinfo.cpp
authorbipolar <bipolar>2002-03-04 00:46:40 (UTC)
committer bipolar <bipolar>2002-03-04 00:46:40 (UTC)
commit01a9c4693d590ee210c5d6747c9fe7d982fb09df (patch) (unidiff)
treead54d3f7cf506a8e61b7ce80ccaefd81e645051a /noncore/settings/sysinfo/processinfo.cpp
parentdd1c6dda8ac16a1e506f441d6fa447930dffe9ee (diff)
downloadopie-01a9c4693d590ee210c5d6747c9fe7d982fb09df.zip
opie-01a9c4693d590ee210c5d6747c9fe7d982fb09df.tar.gz
opie-01a9c4693d590ee210c5d6747c9fe7d982fb09df.tar.bz2
committed by ljp (llornkcor): improvements by Dan Williams, and and alignment by me
Diffstat (limited to 'noncore/settings/sysinfo/processinfo.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sysinfo/processinfo.cpp119
1 files changed, 119 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/processinfo.cpp b/noncore/settings/sysinfo/processinfo.cpp
new file mode 100644
index 0000000..bd954c8
--- a/dev/null
+++ b/noncore/settings/sysinfo/processinfo.cpp
@@ -0,0 +1,119 @@
1/**********************************************************************
2** ProcessInfo
3**
4** Display process information
5**
6** Copyright (C) 2002, Dan Williams
7** williamsdr@acm.org
8** http://draknor.net
9**
10** This file may be distributed and/or modified under the terms of the
11** GNU General Public License version 2 as published by the Free Software
12** Foundation and appearing in the file LICENSE.GPL included in the
13** packaging of this file.
14**
15** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17**
18**********************************************************************/
19
20#include <qheader.h>
21#include <qlistview.h>
22#include <qlayout.h>
23#include <qtimer.h>
24#include <qfile.h>
25#include <qdir.h>
26
27#include "processinfo.h"
28
29ProcessInfo::ProcessInfo( QWidget* parent, const char* name, WFlags fl )
30 : QWidget( parent, name, fl )
31{
32 QVBoxLayout *vb = new QVBoxLayout( this, 5 );
33
34 ProcessView = new QListView( this, "ProcessView" );
35 int colnum = ProcessView->addColumn( tr( "PID" ) );
36 ProcessView->setColumnAlignment( colnum, Qt::AlignRight );
37 colnum = ProcessView->addColumn( tr( "Command" ),90 );
38 ProcessView->setColumnAlignment( colnum, Qt::AlignRight );
39 colnum = ProcessView->addColumn( tr( "Status" ) );
40 ProcessView->setColumnAlignment( colnum, Qt::AlignRight );
41 colnum = ProcessView->addColumn( tr( "Time" ) );
42 ProcessView->setColumnAlignment( colnum, Qt::AlignRight );
43 ProcessView->setAllColumnsShowFocus( TRUE );
44 connect( ProcessView, SIGNAL( doubleClicked(QListViewItem *) ), this, SLOT( viewProcess(QListViewItem *) ) );
45
46 vb->addWidget( ProcessView );
47
48 QTimer *t = new QTimer( this );
49 connect( t, SIGNAL( timeout() ), this, SLOT( updateData() ) );
50 t->start( 5000 );
51
52 updateData();
53}
54
55ProcessInfo::~ProcessInfo()
56{
57}
58
59void ProcessInfo::updateData()
60{
61 QString processnum("");
62 QString processcmd("");
63 QString processstatus("");
64 QString processtime("");
65 int pid, ppid, pgrp, session, tty, tpgid, utime, stime, cutime, cstime, counter, priority, starttime,
66 signal, blocked, sigignore, sigcatch;
67 uint flags, minflt, cminflt, majflt, cmajflt, timeout, itrealvalue, vsize, rss, rlim, startcode,
68 endcode, startstack, kstkesp, kstkeip, wchan;
69 char state;
70 char comm[255];
71
72 ProcessView->clear();
73
74 QDir *procdir = new QDir("/proc");
75 procdir->setFilter(QDir::Dirs);
76 procdir->setSorting(QDir::Name);
77 QFileInfoList *proclist = new QFileInfoList(*(procdir->entryInfoList()));
78 if ( proclist )
79 {
80 QFileInfoListIterator it(*proclist);
81 QFileInfo *f;
82 while ( ( f = it.current() ) != 0 )
83 {
84 ++it;
85 processnum = f->fileName();
86 if ( processnum >= "0" && processnum <= "99999" )
87 {
88 FILE *procfile = fopen( ( QString ) ( "/proc/" + processnum + "/stat"), "r");
89
90 if ( procfile )
91 {
92 fscanf( procfile,
93 "%d %s %c %d %d %d %d %d %u %u %u %u %u %d %d %d %d %d %d %u %u %d %u %u %u %u %u %u %u %u %d %d %d %d %u",
94 &pid, comm, &state, &ppid, &pgrp, &session,&tty, &tpgid, &flags, &minflt, &cminflt,
95 &majflt, &cmajflt, &utime, &stime, &cutime, &cstime, &counter, &priority, &timeout,
96 &itrealvalue, &starttime, &vsize, &rss, &rlim, &startcode, &endcode, &startstack,
97 &kstkesp, &kstkeip, &signal, &blocked, &sigignore, &sigcatch, &wchan );
98 processnum = processnum.rightJustify( 5, ' ' );
99 processcmd = QString( comm ).replace( QRegExp( "(" ), "" );
100 processcmd = processcmd.replace( QRegExp( ")" ), "" );
101 processstatus = state;
102 processtime.setNum( ( utime + stime ) / 100 );
103 processtime = processtime.rightJustify( 9, ' ' );
104 fclose( procfile );
105
106 ( void ) new QListViewItem( ProcessView, processnum, processcmd, processstatus, processtime );
107 }
108 }
109 }
110 }
111
112 delete proclist;
113 delete procdir;
114}
115
116void ProcessInfo::viewProcess(QListViewItem *process)
117{
118//printf("Double click for PID: %s\n", process->text(0).stripWhiteSpace().latin1());
119}