2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop - ProcessList.c
|
|
|
|
(C) 2004,2005 Hisham H. Muhammad
|
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2006-03-13 17:29:18 +00:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "Process.h"
|
2006-05-30 13:45:40 +00:00
|
|
|
#include "Vector.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "UsersTable.h"
|
|
|
|
#include "Hashtable.h"
|
2006-07-11 06:13:32 +00:00
|
|
|
#include "String.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/utsname.h>
|
2006-03-24 03:39:04 +00:00
|
|
|
#include <stdarg.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
/*{
|
|
|
|
#ifndef PROCDIR
|
|
|
|
#define PROCDIR "/proc"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PROCSTATFILE
|
2007-05-17 18:29:30 +00:00
|
|
|
#define PROCSTATFILE PROCDIR "/stat"
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PROCMEMINFOFILE
|
2007-05-17 18:29:30 +00:00
|
|
|
#define PROCMEMINFOFILE PROCDIR "/meminfo"
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX_NAME
|
2006-03-24 03:39:04 +00:00
|
|
|
#define MAX_NAME 128
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX_READ
|
2006-07-11 06:13:32 +00:00
|
|
|
#define MAX_READ 2048
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|
|
|
|
|
2006-10-04 16:25:41 +00:00
|
|
|
#ifndef PER_PROCESSOR_FIELDS
|
2007-11-09 00:40:59 +00:00
|
|
|
#define PER_PROCESSOR_FIELDS 22
|
2006-10-04 16:25:41 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
}*/
|
|
|
|
|
|
|
|
/*{
|
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
#ifdef DEBUG_PROC
|
2006-07-11 06:13:32 +00:00
|
|
|
typedef int(*vxscanf)(void*, const char*, va_list);
|
|
|
|
#endif
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct ProcessList_ {
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector* processes;
|
|
|
|
Vector* processes2;
|
2006-03-04 18:16:49 +00:00
|
|
|
Hashtable* processTable;
|
|
|
|
Process* prototype;
|
|
|
|
UsersTable* usersTable;
|
|
|
|
|
|
|
|
int processorCount;
|
|
|
|
int totalTasks;
|
|
|
|
int runningTasks;
|
|
|
|
|
2006-10-04 16:25:41 +00:00
|
|
|
// Must match number of PER_PROCESSOR_FIELDS constant
|
2006-06-05 21:28:54 +00:00
|
|
|
unsigned long long int* totalTime;
|
|
|
|
unsigned long long int* userTime;
|
|
|
|
unsigned long long int* systemTime;
|
2006-10-04 14:21:27 +00:00
|
|
|
unsigned long long int* systemAllTime;
|
2007-11-09 00:40:59 +00:00
|
|
|
unsigned long long int* idleAllTime;
|
2006-06-05 21:28:54 +00:00
|
|
|
unsigned long long int* idleTime;
|
|
|
|
unsigned long long int* niceTime;
|
2006-10-04 14:21:27 +00:00
|
|
|
unsigned long long int* ioWaitTime;
|
|
|
|
unsigned long long int* irqTime;
|
|
|
|
unsigned long long int* softIrqTime;
|
|
|
|
unsigned long long int* stealTime;
|
2006-06-05 21:28:54 +00:00
|
|
|
unsigned long long int* totalPeriod;
|
|
|
|
unsigned long long int* userPeriod;
|
|
|
|
unsigned long long int* systemPeriod;
|
2006-10-04 14:21:27 +00:00
|
|
|
unsigned long long int* systemAllPeriod;
|
2007-11-09 00:40:59 +00:00
|
|
|
unsigned long long int* idleAllPeriod;
|
2006-06-05 21:28:54 +00:00
|
|
|
unsigned long long int* idlePeriod;
|
|
|
|
unsigned long long int* nicePeriod;
|
2006-10-04 14:21:27 +00:00
|
|
|
unsigned long long int* ioWaitPeriod;
|
|
|
|
unsigned long long int* irqPeriod;
|
|
|
|
unsigned long long int* softIrqPeriod;
|
|
|
|
unsigned long long int* stealPeriod;
|
2006-06-05 21:28:54 +00:00
|
|
|
|
|
|
|
unsigned long long int totalMem;
|
|
|
|
unsigned long long int usedMem;
|
|
|
|
unsigned long long int freeMem;
|
|
|
|
unsigned long long int sharedMem;
|
|
|
|
unsigned long long int buffersMem;
|
|
|
|
unsigned long long int cachedMem;
|
|
|
|
unsigned long long int totalSwap;
|
|
|
|
unsigned long long int usedSwap;
|
|
|
|
unsigned long long int freeSwap;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
ProcessField* fields;
|
|
|
|
ProcessField sortKey;
|
|
|
|
int direction;
|
|
|
|
bool hideThreads;
|
|
|
|
bool shadowOtherUsers;
|
|
|
|
bool hideKernelThreads;
|
|
|
|
bool hideUserlandThreads;
|
|
|
|
bool treeView;
|
|
|
|
bool highlightBaseName;
|
|
|
|
bool highlightMegabytes;
|
2008-03-08 23:39:48 +00:00
|
|
|
bool highlightThreads;
|
2007-11-09 00:40:59 +00:00
|
|
|
bool detailedCPUTime;
|
2006-11-08 20:12:57 +00:00
|
|
|
#ifdef DEBUG_PROC
|
2006-03-24 03:39:04 +00:00
|
|
|
FILE* traceFile;
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
} ProcessList;
|
|
|
|
}*/
|
|
|
|
|
2006-06-06 20:41:01 +00:00
|
|
|
static ProcessField defaultHeaders[] = { PID, USER, PRIORITY, NICE, M_SIZE, M_RESIDENT, M_SHARE, STATE, PERCENT_CPU, PERCENT_MEM, TIME, COMM, 0 };
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
#ifdef DEBUG_PROC
|
2006-03-24 03:39:04 +00:00
|
|
|
|
|
|
|
#define ProcessList_read(this, buffer, format, ...) ProcessList_xread(this, (vxscanf) vsscanf, buffer, format, ## __VA_ARGS__ )
|
|
|
|
#define ProcessList_fread(this, file, format, ...) ProcessList_xread(this, (vxscanf) vfscanf, file, format, ## __VA_ARGS__ )
|
|
|
|
|
2006-06-06 20:41:01 +00:00
|
|
|
static FILE* ProcessList_fopen(ProcessList* this, const char* path, const char* mode) {
|
2006-03-24 03:39:04 +00:00
|
|
|
fprintf(this->traceFile, "[%s]\n", path);
|
|
|
|
return fopen(path, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int ProcessList_xread(ProcessList* this, vxscanf fn, void* buffer, char* format, ...) {
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
int num = fn(buffer, format, ap);
|
|
|
|
va_end(format);
|
|
|
|
va_start(ap, format);
|
|
|
|
while (*format) {
|
|
|
|
char ch = *format;
|
2006-06-05 21:28:54 +00:00
|
|
|
char* c; int* d;
|
|
|
|
long int* ld; unsigned long int* lu;
|
|
|
|
long long int* lld; unsigned long long int* llu;
|
|
|
|
char** s;
|
2006-03-24 03:39:04 +00:00
|
|
|
if (ch != '%') {
|
|
|
|
fprintf(this->traceFile, "%c", ch);
|
|
|
|
format++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
format++;
|
|
|
|
switch(*format) {
|
|
|
|
case 'c': c = va_arg(ap, char*); fprintf(this->traceFile, "%c", *c); break;
|
|
|
|
case 'd': d = va_arg(ap, int*); fprintf(this->traceFile, "%d", *d); break;
|
|
|
|
case 's': s = va_arg(ap, char**); fprintf(this->traceFile, "%s", *s); break;
|
|
|
|
case 'l':
|
|
|
|
format++;
|
|
|
|
switch (*format) {
|
|
|
|
case 'd': ld = va_arg(ap, long int*); fprintf(this->traceFile, "%ld", *ld); break;
|
|
|
|
case 'u': lu = va_arg(ap, unsigned long int*); fprintf(this->traceFile, "%lu", *lu); break;
|
2006-06-05 21:28:54 +00:00
|
|
|
case 'l':
|
|
|
|
format++;
|
|
|
|
switch (*format) {
|
|
|
|
case 'd': lld = va_arg(ap, long long int*); fprintf(this->traceFile, "%lld", *lld); break;
|
|
|
|
case 'u': llu = va_arg(ap, unsigned long long int*); fprintf(this->traceFile, "%llu", *llu); break;
|
|
|
|
}
|
2006-03-24 03:39:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
format++;
|
|
|
|
}
|
|
|
|
fprintf(this->traceFile, "\n");
|
|
|
|
va_end(format);
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifndef ProcessList_read
|
|
|
|
#define ProcessList_fopen(this, path, mode) fopen(path, mode)
|
|
|
|
#define ProcessList_read(this, buffer, format, ...) sscanf(buffer, format, ## __VA_ARGS__ )
|
|
|
|
#define ProcessList_fread(this, file, format, ...) fscanf(file, format, ## __VA_ARGS__ )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2006-10-04 16:25:41 +00:00
|
|
|
static inline void ProcessList_allocatePerProcessorBuffers(ProcessList* this, int procs) {
|
|
|
|
unsigned long long int** bufferPtr = &(this->totalTime);
|
|
|
|
unsigned long long int* buffer = calloc(procs * PER_PROCESSOR_FIELDS, sizeof(unsigned long long int));
|
|
|
|
for (int i = 0; i < PER_PROCESSOR_FIELDS; i++) {
|
|
|
|
*bufferPtr = buffer;
|
|
|
|
bufferPtr++;
|
|
|
|
buffer += procs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable) {
|
|
|
|
ProcessList* this;
|
|
|
|
this = malloc(sizeof(ProcessList));
|
2006-07-11 06:13:32 +00:00
|
|
|
this->processes = Vector_new(PROCESS_CLASS, true, DEFAULT_SIZE, Process_compare);
|
2006-07-12 01:16:03 +00:00
|
|
|
this->processTable = Hashtable_new(70, false);
|
2006-11-12 21:53:56 +00:00
|
|
|
assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
|
2006-03-04 18:16:49 +00:00
|
|
|
this->prototype = Process_new(this);
|
|
|
|
this->usersTable = usersTable;
|
|
|
|
|
|
|
|
/* tree-view auxiliary buffers */
|
2006-07-11 06:13:32 +00:00
|
|
|
this->processes2 = Vector_new(PROCESS_CLASS, true, DEFAULT_SIZE, Process_compare);
|
2006-03-24 03:39:04 +00:00
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
#ifdef DEBUG_PROC
|
2006-03-24 03:39:04 +00:00
|
|
|
this->traceFile = fopen("/tmp/htop-proc-trace", "w");
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
FILE* status = fopen(PROCSTATFILE, "r");
|
|
|
|
assert(status != NULL);
|
|
|
|
char buffer[256];
|
|
|
|
int procs = -1;
|
|
|
|
do {
|
|
|
|
procs++;
|
|
|
|
fgets(buffer, 255, status);
|
|
|
|
} while (String_startsWith(buffer, "cpu"));
|
|
|
|
fclose(status);
|
|
|
|
this->processorCount = procs - 1;
|
2006-10-04 16:25:41 +00:00
|
|
|
|
|
|
|
ProcessList_allocatePerProcessorBuffers(this, procs);
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
for (int i = 0; i < procs; i++) {
|
|
|
|
this->totalTime[i] = 1;
|
|
|
|
this->totalPeriod[i] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->fields = calloc(sizeof(ProcessField), LAST_PROCESSFIELD+1);
|
2006-05-30 13:45:40 +00:00
|
|
|
// TODO: turn 'fields' into a Vector,
|
2006-03-04 18:16:49 +00:00
|
|
|
// (and ProcessFields into proper objects).
|
|
|
|
for (int i = 0; defaultHeaders[i]; i++) {
|
|
|
|
this->fields[i] = defaultHeaders[i];
|
|
|
|
}
|
|
|
|
this->sortKey = PERCENT_CPU;
|
|
|
|
this->direction = 1;
|
|
|
|
this->hideThreads = false;
|
|
|
|
this->shadowOtherUsers = false;
|
|
|
|
this->hideKernelThreads = false;
|
|
|
|
this->hideUserlandThreads = false;
|
|
|
|
this->treeView = false;
|
|
|
|
this->highlightBaseName = false;
|
|
|
|
this->highlightMegabytes = false;
|
2007-11-09 00:40:59 +00:00
|
|
|
this->detailedCPUTime = false;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessList_delete(ProcessList* this) {
|
|
|
|
Hashtable_delete(this->processTable);
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_delete(this->processes);
|
|
|
|
Vector_delete(this->processes2);
|
2006-03-04 18:16:49 +00:00
|
|
|
Process_delete((Object*)this->prototype);
|
|
|
|
|
2006-10-04 16:25:41 +00:00
|
|
|
// Free first entry only;
|
|
|
|
// other fields are offsets of the same buffer
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this->totalTime);
|
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
#ifdef DEBUG_PROC
|
2006-03-24 03:39:04 +00:00
|
|
|
fclose(this->traceFile);
|
|
|
|
#endif
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this->fields);
|
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessList_invertSortOrder(ProcessList* this) {
|
|
|
|
if (this->direction == 1)
|
|
|
|
this->direction = -1;
|
|
|
|
else
|
|
|
|
this->direction = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
RichString ProcessList_printHeader(ProcessList* this) {
|
2006-07-12 01:16:03 +00:00
|
|
|
RichString out;
|
2008-03-09 02:33:23 +00:00
|
|
|
RichString_initVal(out);
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessField* fields = this->fields;
|
|
|
|
for (int i = 0; fields[i]; i++) {
|
2008-03-14 18:50:49 +00:00
|
|
|
char* field = Process_fieldTitles[fields[i]];
|
2006-03-04 18:16:49 +00:00
|
|
|
if (this->sortKey == fields[i])
|
|
|
|
RichString_append(&out, CRT_colors[PANEL_HIGHLIGHT_FOCUS], field);
|
|
|
|
else
|
|
|
|
RichString_append(&out, CRT_colors[PANEL_HEADER_FOCUS], field);
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void ProcessList_add(ProcessList* this, Process* p) {
|
2006-11-08 20:12:57 +00:00
|
|
|
assert(Vector_indexOf(this->processes, p, Process_pidCompare) == -1);
|
|
|
|
assert(Hashtable_get(this->processTable, p->pid) == NULL);
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_add(this->processes, p);
|
2006-03-04 18:16:49 +00:00
|
|
|
Hashtable_put(this->processTable, p->pid, p);
|
2006-11-08 20:12:57 +00:00
|
|
|
assert(Vector_indexOf(this->processes, p, Process_pidCompare) != -1);
|
|
|
|
assert(Hashtable_get(this->processTable, p->pid) != NULL);
|
2006-11-12 21:53:56 +00:00
|
|
|
assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void ProcessList_remove(ProcessList* this, Process* p) {
|
2006-11-08 20:12:57 +00:00
|
|
|
assert(Vector_indexOf(this->processes, p, Process_pidCompare) != -1);
|
|
|
|
assert(Hashtable_get(this->processTable, p->pid) != NULL);
|
|
|
|
Process* pp = Hashtable_remove(this->processTable, p->pid);
|
2006-11-08 21:49:52 +00:00
|
|
|
assert(pp == p); (void)pp;
|
2007-04-05 19:53:23 +00:00
|
|
|
unsigned int pid = p->pid;
|
2006-07-11 06:13:32 +00:00
|
|
|
int index = Vector_indexOf(this->processes, p, Process_pidCompare);
|
2006-11-08 20:12:57 +00:00
|
|
|
assert(index != -1);
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_remove(this->processes, index);
|
2006-11-08 21:49:52 +00:00
|
|
|
assert(Hashtable_get(this->processTable, pid) == NULL); (void)pid;
|
2006-11-12 21:53:56 +00:00
|
|
|
assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Process* ProcessList_get(ProcessList* this, int index) {
|
2006-05-30 13:45:40 +00:00
|
|
|
return (Process*) (Vector_get(this->processes, index));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ProcessList_size(ProcessList* this) {
|
2006-05-30 13:45:40 +00:00
|
|
|
return (Vector_size(this->processes));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2006-06-06 20:41:01 +00:00
|
|
|
static void ProcessList_buildTree(ProcessList* this, int pid, int level, int indent, int direction) {
|
2006-07-11 06:13:32 +00:00
|
|
|
Vector* children = Vector_new(PROCESS_CLASS, false, DEFAULT_SIZE, Process_compare);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
for (int i = Vector_size(this->processes) - 1; i >= 0; i--) {
|
2006-05-30 13:45:40 +00:00
|
|
|
Process* process = (Process*) (Vector_get(this->processes, i));
|
2007-11-08 23:23:01 +00:00
|
|
|
if (process->tgid == pid || (process->tgid == process->pid && process->ppid == pid)) {
|
2006-05-30 13:45:40 +00:00
|
|
|
Process* process = (Process*) (Vector_take(this->processes, i));
|
|
|
|
Vector_add(children, process);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
2006-05-30 13:45:40 +00:00
|
|
|
int size = Vector_size(children);
|
2006-03-04 18:16:49 +00:00
|
|
|
for (int i = 0; i < size; i++) {
|
2006-05-30 13:45:40 +00:00
|
|
|
Process* process = (Process*) (Vector_get(children, i));
|
2006-11-12 21:53:56 +00:00
|
|
|
int s = this->processes2->items;
|
2006-03-04 18:16:49 +00:00
|
|
|
if (direction == 1)
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_add(this->processes2, process);
|
2006-03-04 18:16:49 +00:00
|
|
|
else
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_insert(this->processes2, 0, process);
|
2006-11-12 21:53:56 +00:00
|
|
|
assert(this->processes2->items == s+1); (void)s;
|
2006-03-04 18:16:49 +00:00
|
|
|
int nextIndent = indent;
|
|
|
|
if (i < size - 1)
|
|
|
|
nextIndent = indent | (1 << level);
|
|
|
|
ProcessList_buildTree(this, process->pid, level+1, nextIndent, direction);
|
|
|
|
process->indent = indent | (1 << level);
|
|
|
|
}
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_delete(children);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessList_sort(ProcessList* this) {
|
|
|
|
if (!this->treeView) {
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_sort(this->processes);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else {
|
2007-11-08 23:23:01 +00:00
|
|
|
// Save settings
|
2006-03-04 18:16:49 +00:00
|
|
|
int direction = this->direction;
|
|
|
|
int sortKey = this->sortKey;
|
2007-11-08 23:23:01 +00:00
|
|
|
// Sort by PID
|
2006-03-04 18:16:49 +00:00
|
|
|
this->sortKey = PID;
|
|
|
|
this->direction = 1;
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_sort(this->processes);
|
2007-11-08 23:23:01 +00:00
|
|
|
// Restore settings
|
2006-03-04 18:16:49 +00:00
|
|
|
this->sortKey = sortKey;
|
|
|
|
this->direction = direction;
|
2007-11-08 23:23:01 +00:00
|
|
|
// Take PID 1 as root and add to the new listing
|
2006-11-12 21:53:56 +00:00
|
|
|
int vsize = Vector_size(this->processes);
|
2006-05-30 13:45:40 +00:00
|
|
|
Process* init = (Process*) (Vector_take(this->processes, 0));
|
2006-03-04 18:16:49 +00:00
|
|
|
assert(init->pid == 1);
|
|
|
|
init->indent = 0;
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_add(this->processes2, init);
|
2007-11-08 23:23:01 +00:00
|
|
|
// Recursively empty list
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessList_buildTree(this, init->pid, 0, 0, direction);
|
2007-11-08 23:23:01 +00:00
|
|
|
// Add leftovers
|
2006-11-12 21:53:56 +00:00
|
|
|
while (Vector_size(this->processes)) {
|
|
|
|
Process* p = (Process*) (Vector_take(this->processes, 0));
|
|
|
|
p->indent = 0;
|
|
|
|
Vector_add(this->processes2, p);
|
2007-11-08 23:23:01 +00:00
|
|
|
ProcessList_buildTree(this, p->pid, 0, 0, direction);
|
2006-11-12 21:53:56 +00:00
|
|
|
}
|
|
|
|
assert(Vector_size(this->processes2) == vsize); (void)vsize;
|
|
|
|
assert(Vector_size(this->processes) == 0);
|
2007-11-08 23:23:01 +00:00
|
|
|
// Swap listings around
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector* t = this->processes;
|
2006-03-04 18:16:49 +00:00
|
|
|
this->processes = this->processes2;
|
|
|
|
this->processes2 = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-06 20:41:01 +00:00
|
|
|
static int ProcessList_readStatFile(ProcessList* this, Process *proc, FILE *f, char *command) {
|
2006-03-04 18:16:49 +00:00
|
|
|
static char buf[MAX_READ];
|
2006-07-11 06:13:32 +00:00
|
|
|
unsigned long int zero;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
int size = fread(buf, 1, MAX_READ, f);
|
|
|
|
if(!size) return 0;
|
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
assert(proc->pid == atoi(buf));
|
2006-03-04 18:16:49 +00:00
|
|
|
char *location = strchr(buf, ' ');
|
|
|
|
if(!location) return 0;
|
|
|
|
|
|
|
|
location += 2;
|
|
|
|
char *end = strrchr(location, ')');
|
|
|
|
if(!end) return 0;
|
|
|
|
|
|
|
|
int commsize = end - location;
|
|
|
|
memcpy(command, location, commsize);
|
|
|
|
command[commsize] = '\0';
|
|
|
|
location = end + 2;
|
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
#ifdef DEBUG_PROC
|
2006-03-24 03:39:04 +00:00
|
|
|
int num = ProcessList_read(this, location,
|
2007-11-08 23:23:01 +00:00
|
|
|
"%c %u %u %u %u %d %lu %lu %lu %lu "
|
2006-03-04 18:16:49 +00:00
|
|
|
"%lu %lu %lu %ld %ld %ld %ld %ld %ld "
|
|
|
|
"%lu %lu %ld %lu %lu %lu %lu %lu "
|
|
|
|
"%lu %lu %lu %lu %lu %lu %lu %lu "
|
|
|
|
"%d %d",
|
|
|
|
&proc->state, &proc->ppid, &proc->pgrp, &proc->session, &proc->tty_nr,
|
2006-07-11 06:13:32 +00:00
|
|
|
&proc->tpgid, &proc->flags,
|
|
|
|
&proc->minflt, &proc->cminflt, &proc->majflt, &proc->cmajflt,
|
|
|
|
&proc->utime, &proc->stime, &proc->cutime, &proc->cstime,
|
2007-05-21 19:10:53 +00:00
|
|
|
&proc->priority, &proc->nice, &proc->nlwp, &proc->itrealvalue,
|
2006-03-04 18:16:49 +00:00
|
|
|
&proc->starttime, &proc->vsize, &proc->rss, &proc->rlim,
|
|
|
|
&proc->startcode, &proc->endcode, &proc->startstack, &proc->kstkesp,
|
|
|
|
&proc->kstkeip, &proc->signal, &proc->blocked, &proc->sigignore,
|
|
|
|
&proc->sigcatch, &proc->wchan, &proc->nswap, &proc->cnswap,
|
|
|
|
&proc->exit_signal, &proc->processor);
|
2006-07-11 06:13:32 +00:00
|
|
|
#else
|
|
|
|
long int uzero;
|
|
|
|
int num = ProcessList_read(this, location,
|
2007-11-08 23:23:01 +00:00
|
|
|
"%c %u %u %u %u %d %lu %lu %lu %lu "
|
2006-07-11 06:13:32 +00:00
|
|
|
"%lu %lu %lu %ld %ld %ld %ld %ld %ld "
|
|
|
|
"%lu %lu %ld %lu %lu %lu %lu %lu "
|
|
|
|
"%lu %lu %lu %lu %lu %lu %lu %lu "
|
|
|
|
"%d %d",
|
|
|
|
&proc->state, &proc->ppid, &proc->pgrp, &proc->session, &proc->tty_nr,
|
|
|
|
&proc->tpgid, &proc->flags,
|
|
|
|
&zero, &zero, &zero, &zero,
|
|
|
|
&proc->utime, &proc->stime, &proc->cutime, &proc->cstime,
|
2007-05-21 19:10:53 +00:00
|
|
|
&proc->priority, &proc->nice, &proc->nlwp, &uzero,
|
2006-07-11 06:13:32 +00:00
|
|
|
&zero, &zero, &uzero, &zero,
|
|
|
|
&zero, &zero, &zero, &zero,
|
|
|
|
&zero, &zero, &zero, &zero,
|
|
|
|
&zero, &zero, &zero, &zero,
|
|
|
|
&proc->exit_signal, &proc->processor);
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
// This assert is always valid on 2.4, but reportedly not always valid on 2.6.
|
|
|
|
// TODO: Check if the semantics of this field has changed.
|
|
|
|
// assert(zero == 0);
|
|
|
|
|
|
|
|
if(num != 37) return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static bool ProcessList_readStatusFile(ProcessList* this, Process* proc, char* dirname, char* name) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char statusfilename[MAX_NAME+1];
|
|
|
|
statusfilename[MAX_NAME] = '\0';
|
2007-11-08 23:23:01 +00:00
|
|
|
|
|
|
|
snprintf(statusfilename, MAX_NAME, "%s/%s", dirname, name);
|
|
|
|
struct stat sstat;
|
|
|
|
int statok = stat(statusfilename, &sstat);
|
|
|
|
if (statok == -1)
|
|
|
|
return false;
|
|
|
|
proc->st_uid = sstat.st_uid;
|
|
|
|
return true;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2008-03-09 08:02:22 +00:00
|
|
|
#ifdef HAVE_TASKSTATS
|
2008-03-09 08:58:38 +00:00
|
|
|
|
|
|
|
static void ProcessList_readIoFile(ProcessList* this, Process* proc, char* dirname, char* name) {
|
2008-03-09 08:02:22 +00:00
|
|
|
char iofilename[MAX_NAME+1];
|
|
|
|
iofilename[MAX_NAME] = '\0';
|
|
|
|
|
|
|
|
snprintf(iofilename, MAX_NAME, "%s/%s/io", dirname, name);
|
|
|
|
FILE* io = ProcessList_fopen(this, iofilename, "r");
|
|
|
|
if (io) {
|
2008-03-09 08:58:38 +00:00
|
|
|
char buffer[256];
|
|
|
|
buffer[255] = '\0';
|
2008-03-09 08:02:22 +00:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv,NULL);
|
|
|
|
unsigned long long now = tv.tv_sec*1000+tv.tv_usec/1000;
|
|
|
|
unsigned long long last_read = proc->io_read_bytes;
|
|
|
|
unsigned long long last_write = proc->io_write_bytes;
|
|
|
|
while (!feof(io)) {
|
|
|
|
char* ok = fgets(buffer, 255, io);
|
|
|
|
if (!ok)
|
|
|
|
break;
|
|
|
|
if (ProcessList_read(this, buffer, "rchar: %llu", &proc->io_rchar)) continue;
|
|
|
|
if (ProcessList_read(this, buffer, "wchar: %llu", &proc->io_wchar)) continue;
|
|
|
|
if (ProcessList_read(this, buffer, "syscr: %llu", &proc->io_syscr)) continue;
|
|
|
|
if (ProcessList_read(this, buffer, "syscw: %llu", &proc->io_syscw)) continue;
|
|
|
|
if (ProcessList_read(this, buffer, "read_bytes: %llu", &proc->io_read_bytes)) {
|
|
|
|
proc->io_rate_read_bps =
|
|
|
|
((double)(proc->io_read_bytes - last_read))/(((double)(now - proc->io_rate_read_time))/1000);
|
|
|
|
proc->io_rate_read_time = now;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ProcessList_read(this, buffer, "write_bytes: %llu", &proc->io_write_bytes)) {
|
|
|
|
proc->io_rate_write_bps =
|
|
|
|
((double)(proc->io_write_bytes - last_write))/(((double)(now - proc->io_rate_write_time))/1000);
|
|
|
|
proc->io_rate_write_time = now;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ProcessList_read(this, buffer, "cancelled_write_bytes: %llu", &proc->io_cancelled_write_bytes);
|
|
|
|
}
|
|
|
|
fclose(io);
|
|
|
|
}
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2008-03-09 08:02:22 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static bool ProcessList_processEntries(ProcessList* this, char* dirname, Process* parent, float period) {
|
2006-03-04 18:16:49 +00:00
|
|
|
DIR* dir;
|
|
|
|
struct dirent* entry;
|
|
|
|
Process* prototype = this->prototype;
|
|
|
|
|
|
|
|
dir = opendir(dirname);
|
2008-03-08 23:39:48 +00:00
|
|
|
if (!dir) return false;
|
|
|
|
int processors = this->processorCount;
|
|
|
|
bool showUserlandThreads = !this->hideUserlandThreads;
|
2006-03-04 18:16:49 +00:00
|
|
|
while ((entry = readdir(dir)) != NULL) {
|
|
|
|
char* name = entry->d_name;
|
|
|
|
int pid;
|
|
|
|
// filename is a number: process directory
|
|
|
|
pid = atoi(name);
|
|
|
|
|
|
|
|
// The RedHat kernel hides threads with a dot.
|
|
|
|
// I believe this is non-standard.
|
|
|
|
bool isThread = false;
|
|
|
|
if ((!this->hideThreads) && pid == 0 && name[0] == '.') {
|
|
|
|
char* tname = name + 1;
|
|
|
|
pid = atoi(tname);
|
|
|
|
if (pid > 0)
|
|
|
|
isThread = true;
|
|
|
|
}
|
|
|
|
|
2008-03-08 23:39:48 +00:00
|
|
|
if (pid > 0) {
|
2006-03-24 03:39:04 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
FILE* status;
|
|
|
|
char statusfilename[MAX_NAME+1];
|
|
|
|
char command[PROCESS_COMM_LEN + 1];
|
|
|
|
|
2006-11-08 20:12:57 +00:00
|
|
|
Process* process = NULL;
|
2006-03-04 18:16:49 +00:00
|
|
|
Process* existingProcess = (Process*) Hashtable_get(this->processTable, pid);
|
2008-03-08 23:39:48 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
if (existingProcess) {
|
2006-11-08 20:12:57 +00:00
|
|
|
assert(Vector_indexOf(this->processes, existingProcess, Process_pidCompare) != -1);
|
2006-07-11 06:13:32 +00:00
|
|
|
process = existingProcess;
|
2006-11-08 20:12:57 +00:00
|
|
|
assert(process->pid == pid);
|
2006-07-11 06:13:32 +00:00
|
|
|
} else {
|
2008-03-08 23:39:48 +00:00
|
|
|
if (parent && parent->pid == pid) {
|
|
|
|
process = parent;
|
|
|
|
} else {
|
|
|
|
process = prototype;
|
|
|
|
assert(process->comm == NULL);
|
|
|
|
process->pid = pid;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
if (parent) {
|
|
|
|
process->tgid = parent->pid;
|
|
|
|
}
|
2008-03-08 23:39:48 +00:00
|
|
|
|
2008-03-09 08:02:22 +00:00
|
|
|
#ifdef HAVE_TASKSTATS
|
|
|
|
ProcessList_readIoFile(this, process, dirname, name);
|
|
|
|
#endif
|
|
|
|
|
2008-03-08 23:39:48 +00:00
|
|
|
if (showUserlandThreads && (!parent || pid != parent->pid)) {
|
|
|
|
char subdirname[MAX_NAME+1];
|
|
|
|
snprintf(subdirname, MAX_NAME, "%s/%s/task", dirname, name);
|
|
|
|
|
|
|
|
if (ProcessList_processEntries(this, subdirname, process, period))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
process->updated = true;
|
|
|
|
|
2008-03-08 23:39:48 +00:00
|
|
|
if (!existingProcess)
|
|
|
|
if (! ProcessList_readStatusFile(this, process, dirname, name))
|
|
|
|
goto errorReadingProcess;
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
snprintf(statusfilename, MAX_NAME, "%s/%s/statm", dirname, name);
|
|
|
|
status = ProcessList_fopen(this, statusfilename, "r");
|
|
|
|
|
|
|
|
if(!status) {
|
|
|
|
goto errorReadingProcess;
|
|
|
|
}
|
|
|
|
int num = ProcessList_fread(this, status, "%d %d %d %d %d %d %d",
|
|
|
|
&process->m_size, &process->m_resident, &process->m_share,
|
2007-04-05 20:13:32 +00:00
|
|
|
&process->m_trs, &process->m_lrs, &process->m_drs,
|
2006-07-11 06:13:32 +00:00
|
|
|
&process->m_dt);
|
|
|
|
|
|
|
|
fclose(status);
|
|
|
|
if(num != 7)
|
|
|
|
goto errorReadingProcess;
|
|
|
|
|
|
|
|
if (this->hideKernelThreads && process->m_size == 0)
|
|
|
|
goto errorReadingProcess;
|
|
|
|
|
2006-07-12 01:16:03 +00:00
|
|
|
int lasttimes = (process->utime + process->stime);
|
|
|
|
|
|
|
|
snprintf(statusfilename, MAX_NAME, "%s/%s/stat", dirname, name);
|
|
|
|
|
|
|
|
status = ProcessList_fopen(this, statusfilename, "r");
|
2008-03-08 23:39:48 +00:00
|
|
|
if (status == NULL)
|
2006-07-12 01:16:03 +00:00
|
|
|
goto errorReadingProcess;
|
|
|
|
|
|
|
|
int success = ProcessList_readStatFile(this, process, status, command);
|
|
|
|
fclose(status);
|
2008-03-08 23:39:48 +00:00
|
|
|
if(!success) {
|
2006-07-12 01:16:03 +00:00
|
|
|
goto errorReadingProcess;
|
2008-03-08 23:39:48 +00:00
|
|
|
}
|
2006-07-12 01:16:03 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
if(!existingProcess) {
|
2006-07-12 01:35:59 +00:00
|
|
|
process->user = UsersTable_getRef(this->usersTable, process->st_uid);
|
2007-08-10 05:07:14 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_OPENVZ
|
|
|
|
if (access("/proc/vz", R_OK) != 0) {
|
|
|
|
process->vpid = process->pid;
|
|
|
|
process->veid = 0;
|
|
|
|
} else {
|
|
|
|
snprintf(statusfilename, MAX_NAME, "%s/%s/stat", dirname, name);
|
|
|
|
status = ProcessList_fopen(this, statusfilename, "r");
|
|
|
|
if (status == NULL)
|
|
|
|
goto errorReadingProcess;
|
|
|
|
num = ProcessList_fread(this, status,
|
|
|
|
"%*u %*s %*c %*u %*u %*u %*u %*u %*u %*u "
|
|
|
|
"%*u %*u %*u %*u %*u %*u %*u %*u "
|
|
|
|
"%*u %*u %*u %*u %*u %*u %*u %*u "
|
|
|
|
"%*u %*u %*u %*u %*u %*u %*u %*u "
|
|
|
|
"%*u %*u %*u %*u %*u %*u %*u %*u "
|
|
|
|
"%*u %*u %*u %*u %*u %*u %*u "
|
|
|
|
"%u %u",
|
|
|
|
&process->vpid, &process->veid);
|
|
|
|
fclose(status);
|
|
|
|
}
|
|
|
|
#endif
|
2006-07-12 01:16:03 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
snprintf(statusfilename, MAX_NAME, "%s/%s/cmdline", dirname, name);
|
2006-03-24 03:39:04 +00:00
|
|
|
status = ProcessList_fopen(this, statusfilename, "r");
|
2006-03-04 18:16:49 +00:00
|
|
|
if (!status) {
|
|
|
|
goto errorReadingProcess;
|
|
|
|
}
|
|
|
|
|
|
|
|
int amtRead = fread(command, 1, PROCESS_COMM_LEN - 1, status);
|
|
|
|
if (amtRead > 0) {
|
|
|
|
for (int i = 0; i < amtRead; i++)
|
|
|
|
if (command[i] == '\0' || command[i] == '\n')
|
|
|
|
command[i] = ' ';
|
|
|
|
command[amtRead] = '\0';
|
|
|
|
}
|
|
|
|
command[PROCESS_COMM_LEN] = '\0';
|
|
|
|
process->comm = String_copy(command);
|
|
|
|
fclose(status);
|
|
|
|
}
|
|
|
|
|
2008-03-08 23:39:48 +00:00
|
|
|
int percent_cpu = (process->utime + process->stime - lasttimes) /
|
2006-07-12 01:16:03 +00:00
|
|
|
period * 100.0;
|
2008-03-08 23:39:48 +00:00
|
|
|
process->percent_cpu = MAX(MIN(percent_cpu, processors*100.0), 0.0);
|
2006-07-12 01:16:03 +00:00
|
|
|
|
2007-04-10 16:27:12 +00:00
|
|
|
process->percent_mem = (process->m_resident * PAGE_SIZE) /
|
|
|
|
(float)(this->totalMem) *
|
2006-03-04 18:16:49 +00:00
|
|
|
100.0;
|
|
|
|
|
|
|
|
this->totalTasks++;
|
2006-03-24 03:39:04 +00:00
|
|
|
if (process->state == 'R') {
|
|
|
|
this->runningTasks++;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
if (!existingProcess) {
|
2008-03-08 23:39:48 +00:00
|
|
|
process = Process_clone(process);
|
|
|
|
ProcessList_add(this, process);
|
2006-07-11 06:13:32 +00:00
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Exception handler.
|
|
|
|
errorReadingProcess: {
|
2006-11-08 22:16:46 +00:00
|
|
|
if (process->comm) {
|
|
|
|
free(process->comm);
|
|
|
|
process->comm = NULL;
|
|
|
|
}
|
2006-11-09 01:44:20 +00:00
|
|
|
if (existingProcess)
|
|
|
|
ProcessList_remove(this, process);
|
2006-11-12 21:53:56 +00:00
|
|
|
assert(Hashtable_count(this->processTable) == Vector_count(this->processes));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
2008-03-08 23:39:48 +00:00
|
|
|
return true;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessList_scan(ProcessList* this) {
|
2007-11-09 00:40:59 +00:00
|
|
|
unsigned long long int usertime, nicetime, systemtime, systemalltime, idlealltime, idletime, totaltime;
|
2006-06-05 21:28:54 +00:00
|
|
|
unsigned long long int swapFree;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
FILE* status;
|
|
|
|
char buffer[128];
|
2006-03-24 03:39:04 +00:00
|
|
|
status = ProcessList_fopen(this, PROCMEMINFOFILE, "r");
|
2006-03-04 18:16:49 +00:00
|
|
|
assert(status != NULL);
|
2008-03-08 23:39:48 +00:00
|
|
|
int processors = this->processorCount;
|
2006-03-04 18:16:49 +00:00
|
|
|
while (!feof(status)) {
|
|
|
|
fgets(buffer, 128, status);
|
|
|
|
|
|
|
|
switch (buffer[0]) {
|
|
|
|
case 'M':
|
|
|
|
if (String_startsWith(buffer, "MemTotal:"))
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "MemTotal: %llu kB", &this->totalMem);
|
2006-03-04 18:16:49 +00:00
|
|
|
else if (String_startsWith(buffer, "MemFree:"))
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "MemFree: %llu kB", &this->freeMem);
|
2006-03-04 18:16:49 +00:00
|
|
|
else if (String_startsWith(buffer, "MemShared:"))
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "MemShared: %llu kB", &this->sharedMem);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
case 'B':
|
|
|
|
if (String_startsWith(buffer, "Buffers:"))
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "Buffers: %llu kB", &this->buffersMem);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
if (String_startsWith(buffer, "Cached:"))
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "Cached: %llu kB", &this->cachedMem);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
if (String_startsWith(buffer, "SwapTotal:"))
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "SwapTotal: %llu kB", &this->totalSwap);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (String_startsWith(buffer, "SwapFree:"))
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "SwapFree: %llu kB", &swapFree);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-03-24 03:39:04 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
this->usedMem = this->totalMem - this->freeMem;
|
|
|
|
this->usedSwap = this->totalSwap - swapFree;
|
|
|
|
fclose(status);
|
|
|
|
|
2006-03-24 03:39:04 +00:00
|
|
|
status = ProcessList_fopen(this, PROCSTATFILE, "r");
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
assert(status != NULL);
|
2008-03-08 23:39:48 +00:00
|
|
|
for (int i = 0; i <= processors; i++) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char buffer[256];
|
|
|
|
int cpuid;
|
2006-06-05 21:28:54 +00:00
|
|
|
unsigned long long int ioWait, irq, softIrq, steal;
|
2006-03-04 18:16:49 +00:00
|
|
|
ioWait = irq = softIrq = steal = 0;
|
|
|
|
// Dependending on your kernel version,
|
|
|
|
// 5, 7 or 8 of these fields will be set.
|
|
|
|
// The rest will remain at zero.
|
|
|
|
fgets(buffer, 255, status);
|
|
|
|
if (i == 0)
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "cpu %llu %llu %llu %llu %llu %llu %llu %llu", &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal);
|
2006-03-04 18:16:49 +00:00
|
|
|
else {
|
2006-06-05 21:28:54 +00:00
|
|
|
ProcessList_read(this, buffer, "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu", &cpuid, &usertime, &nicetime, &systemtime, &idletime, &ioWait, &irq, &softIrq, &steal);
|
2006-03-04 18:16:49 +00:00
|
|
|
assert(cpuid == i - 1);
|
|
|
|
}
|
|
|
|
// Fields existing on kernels >= 2.6
|
|
|
|
// (and RHEL's patched kernel 2.4...)
|
2007-11-09 00:40:59 +00:00
|
|
|
idlealltime = idletime + ioWait;
|
|
|
|
systemalltime = systemtime + irq + softIrq + steal;
|
|
|
|
totaltime = usertime + nicetime + systemalltime + idlealltime;
|
2006-03-04 18:16:49 +00:00
|
|
|
assert (usertime >= this->userTime[i]);
|
|
|
|
assert (nicetime >= this->niceTime[i]);
|
|
|
|
assert (systemtime >= this->systemTime[i]);
|
|
|
|
assert (idletime >= this->idleTime[i]);
|
|
|
|
assert (totaltime >= this->totalTime[i]);
|
2006-10-04 14:21:27 +00:00
|
|
|
assert (systemalltime >= this->systemAllTime[i]);
|
2007-11-09 00:40:59 +00:00
|
|
|
assert (idlealltime >= this->idleAllTime[i]);
|
2006-10-04 14:21:27 +00:00
|
|
|
assert (ioWait >= this->ioWaitTime[i]);
|
2006-10-04 16:25:41 +00:00
|
|
|
assert (irq >= this->irqTime[i]);
|
|
|
|
assert (softIrq >= this->softIrqTime[i]);
|
|
|
|
assert (steal >= this->stealTime[i]);
|
2006-03-04 18:16:49 +00:00
|
|
|
this->userPeriod[i] = usertime - this->userTime[i];
|
|
|
|
this->nicePeriod[i] = nicetime - this->niceTime[i];
|
|
|
|
this->systemPeriod[i] = systemtime - this->systemTime[i];
|
2006-10-04 14:21:27 +00:00
|
|
|
this->systemAllPeriod[i] = systemalltime - this->systemAllTime[i];
|
2007-11-09 00:40:59 +00:00
|
|
|
this->idleAllPeriod[i] = idlealltime - this->idleAllTime[i];
|
2006-03-04 18:16:49 +00:00
|
|
|
this->idlePeriod[i] = idletime - this->idleTime[i];
|
2006-10-04 14:21:27 +00:00
|
|
|
this->ioWaitPeriod[i] = ioWait - this->ioWaitTime[i];
|
|
|
|
this->irqPeriod[i] = irq - this->irqTime[i];
|
|
|
|
this->softIrqPeriod[i] = softIrq - this->softIrqTime[i];
|
|
|
|
this->stealPeriod[i] = steal - this->stealTime[i];
|
2006-03-04 18:16:49 +00:00
|
|
|
this->totalPeriod[i] = totaltime - this->totalTime[i];
|
|
|
|
this->userTime[i] = usertime;
|
|
|
|
this->niceTime[i] = nicetime;
|
|
|
|
this->systemTime[i] = systemtime;
|
2006-10-04 14:21:27 +00:00
|
|
|
this->systemAllTime[i] = systemalltime;
|
2007-11-09 00:40:59 +00:00
|
|
|
this->idleAllTime[i] = idlealltime;
|
2006-03-04 18:16:49 +00:00
|
|
|
this->idleTime[i] = idletime;
|
2006-10-04 14:21:27 +00:00
|
|
|
this->ioWaitTime[i] = ioWait;
|
|
|
|
this->irqTime[i] = irq;
|
|
|
|
this->softIrqTime[i] = softIrq;
|
|
|
|
this->stealTime[i] = steal;
|
2006-03-04 18:16:49 +00:00
|
|
|
this->totalTime[i] = totaltime;
|
|
|
|
}
|
2008-03-08 23:39:48 +00:00
|
|
|
float period = (float)this->totalPeriod[0] / processors;
|
2006-03-04 18:16:49 +00:00
|
|
|
fclose(status);
|
|
|
|
|
|
|
|
// mark all process as "dirty"
|
2006-05-30 13:45:40 +00:00
|
|
|
for (int i = 0; i < Vector_size(this->processes); i++) {
|
|
|
|
Process* p = (Process*) Vector_get(this->processes, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
p->updated = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->totalTasks = 0;
|
|
|
|
this->runningTasks = 0;
|
2008-03-08 23:39:48 +00:00
|
|
|
|
|
|
|
ProcessList_processEntries(this, PROCDIR, NULL, period);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
for (int i = Vector_size(this->processes) - 1; i >= 0; i--) {
|
|
|
|
Process* p = (Process*) Vector_get(this->processes, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (p->updated == false)
|
|
|
|
ProcessList_remove(this, p);
|
|
|
|
else
|
|
|
|
p->updated = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2008-03-14 18:50:49 +00:00
|
|
|
|
|
|
|
ProcessField ProcessList_keyAt(ProcessList* this, int at) {
|
|
|
|
int x = 0;
|
|
|
|
ProcessField* fields = this->fields;
|
|
|
|
ProcessField field;
|
|
|
|
for (int i = 0; (field = fields[i]); i++) {
|
|
|
|
int len = strlen(Process_fieldTitles[field]);
|
|
|
|
if (at >= x && at <= x + len) {
|
|
|
|
return field;
|
|
|
|
}
|
|
|
|
x += len;
|
|
|
|
}
|
|
|
|
return COMM;
|
|
|
|
}
|