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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ProcessList.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
|
|
|
#include "CRT.h"
|
2006-07-11 06:13:32 +00:00
|
|
|
#include "String.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2011-12-26 21:35:57 +00:00
|
|
|
#include <string.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
/*{
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "Vector.h"
|
|
|
|
#include "Hashtable.h"
|
|
|
|
#include "UsersTable.h"
|
|
|
|
#include "Panel.h"
|
|
|
|
#include "Process.h"
|
2010-08-24 23:20:38 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#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
|
|
|
|
|
2011-03-22 20:37:08 +00:00
|
|
|
#ifndef ProcessList_cpuId
|
2011-09-08 02:48:53 +00:00
|
|
|
#define ProcessList_cpuId(pl, cpu) ((pl)->countCPUsFromZero ? (cpu) : (cpu)+1)
|
2011-03-22 20:37:08 +00:00
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2011-11-03 22:12:12 +00:00
|
|
|
typedef enum TreeStr_ {
|
|
|
|
TREE_STR_HORZ,
|
|
|
|
TREE_STR_VERT,
|
|
|
|
TREE_STR_RTEE,
|
|
|
|
TREE_STR_BEND,
|
|
|
|
TREE_STR_TEND,
|
|
|
|
TREE_STR_OPEN,
|
|
|
|
TREE_STR_SHUT,
|
|
|
|
TREE_STR_COUNT
|
|
|
|
} TreeStr;
|
|
|
|
|
2010-08-24 23:20:38 +00:00
|
|
|
typedef struct CPUData_ {
|
|
|
|
unsigned long long int totalTime;
|
|
|
|
unsigned long long int userTime;
|
|
|
|
unsigned long long int systemTime;
|
|
|
|
unsigned long long int systemAllTime;
|
|
|
|
unsigned long long int idleAllTime;
|
|
|
|
unsigned long long int idleTime;
|
|
|
|
unsigned long long int niceTime;
|
|
|
|
unsigned long long int ioWaitTime;
|
|
|
|
unsigned long long int irqTime;
|
|
|
|
unsigned long long int softIrqTime;
|
|
|
|
unsigned long long int stealTime;
|
|
|
|
unsigned long long int guestTime;
|
|
|
|
|
|
|
|
unsigned long long int totalPeriod;
|
|
|
|
unsigned long long int userPeriod;
|
|
|
|
unsigned long long int systemPeriod;
|
|
|
|
unsigned long long int systemAllPeriod;
|
|
|
|
unsigned long long int idleAllPeriod;
|
|
|
|
unsigned long long int idlePeriod;
|
|
|
|
unsigned long long int nicePeriod;
|
|
|
|
unsigned long long int ioWaitPeriod;
|
|
|
|
unsigned long long int irqPeriod;
|
|
|
|
unsigned long long int softIrqPeriod;
|
|
|
|
unsigned long long int stealPeriod;
|
|
|
|
unsigned long long int guestPeriod;
|
|
|
|
} CPUData;
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct ProcessList_ {
|
2014-02-27 19:35:22 +00:00
|
|
|
const char **treeStr;
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector* processes;
|
|
|
|
Vector* processes2;
|
2006-03-04 18:16:49 +00:00
|
|
|
Hashtable* processTable;
|
|
|
|
UsersTable* usersTable;
|
|
|
|
|
2011-12-01 12:31:57 +00:00
|
|
|
Panel* panel;
|
2012-02-02 23:45:40 +00:00
|
|
|
int following;
|
2011-12-01 12:31:57 +00:00
|
|
|
uid_t userId;
|
|
|
|
const char* incFilter;
|
2012-08-10 21:54:41 +00:00
|
|
|
Hashtable* pidWhiteList;
|
2011-12-01 12:31:57 +00:00
|
|
|
|
2010-08-24 23:20:38 +00:00
|
|
|
int cpuCount;
|
2006-03-04 18:16:49 +00:00
|
|
|
int totalTasks;
|
2010-11-23 13:28:47 +00:00
|
|
|
int userlandThreads;
|
|
|
|
int kernelThreads;
|
2006-03-04 18:16:49 +00:00
|
|
|
int runningTasks;
|
|
|
|
|
2011-11-21 02:52:41 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
2011-09-24 00:30:47 +00:00
|
|
|
hwloc_topology_t topology;
|
|
|
|
bool topologyOk;
|
|
|
|
#endif
|
2010-08-24 23:20:38 +00:00
|
|
|
CPUData* cpus;
|
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
|
|
|
|
2013-05-24 22:46:01 +00:00
|
|
|
int flags;
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessField* fields;
|
|
|
|
ProcessField sortKey;
|
|
|
|
int direction;
|
|
|
|
bool hideThreads;
|
|
|
|
bool shadowOtherUsers;
|
2010-02-25 01:37:31 +00:00
|
|
|
bool showThreadNames;
|
|
|
|
bool showingThreadNames;
|
2006-03-04 18:16:49 +00:00
|
|
|
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;
|
2011-03-22 20:37:08 +00:00
|
|
|
bool countCPUsFromZero;
|
2012-10-20 00:43:25 +00:00
|
|
|
bool updateProcessNames;
|
2013-12-18 02:58:34 +00:00
|
|
|
bool accountGuestInCPUMeter;
|
2014-02-27 19:35:22 +00:00
|
|
|
bool userOnly;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
} ProcessList;
|
2011-11-03 22:12:12 +00:00
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* ut, Hashtable* pidWhiteList);
|
2014-11-27 19:48:38 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl);
|
2014-11-24 20:55:03 +00:00
|
|
|
void ProcessList_scan(ProcessList* pl);
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
}*/
|
|
|
|
|
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
|
|
|
|
2011-11-03 22:12:12 +00:00
|
|
|
const char *ProcessList_treeStrAscii[TREE_STR_COUNT] = {
|
|
|
|
"-", // TREE_STR_HORZ
|
|
|
|
"|", // TREE_STR_VERT
|
|
|
|
"`", // TREE_STR_RTEE
|
|
|
|
"`", // TREE_STR_BEND
|
|
|
|
",", // TREE_STR_TEND
|
|
|
|
"+", // TREE_STR_OPEN
|
|
|
|
"-", // TREE_STR_SHUT
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *ProcessList_treeStrUtf8[TREE_STR_COUNT] = {
|
|
|
|
"\xe2\x94\x80", // TREE_STR_HORZ ─
|
|
|
|
"\xe2\x94\x82", // TREE_STR_VERT │
|
|
|
|
"\xe2\x94\x9c", // TREE_STR_RTEE ├
|
|
|
|
"\xe2\x94\x94", // TREE_STR_BEND └
|
|
|
|
"\xe2\x94\x8c", // TREE_STR_TEND ┌
|
|
|
|
"+", // TREE_STR_OPEN +
|
|
|
|
"\xe2\x94\x80", // TREE_STR_SHUT ─
|
|
|
|
};
|
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
ProcessList* ProcessList_init(ProcessList* this, UsersTable* usersTable, Hashtable* pidWhiteList) {
|
2012-12-05 15:12:20 +00:00
|
|
|
this->processes = Vector_new(Class(Process), true, DEFAULT_SIZE);
|
2011-11-18 06:08:56 +00:00
|
|
|
this->processTable = Hashtable_new(140, false);
|
2006-03-04 18:16:49 +00:00
|
|
|
this->usersTable = usersTable;
|
2012-08-10 21:54:41 +00:00
|
|
|
this->pidWhiteList = pidWhiteList;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
// tree-view auxiliary buffers
|
2012-12-05 15:12:20 +00:00
|
|
|
this->processes2 = Vector_new(Class(Process), true, DEFAULT_SIZE);
|
2006-03-24 03:39:04 +00:00
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
// set later by platform-specific code
|
|
|
|
this->cpuCount = 0;
|
|
|
|
this->cpus = NULL;
|
2011-09-24 00:30:47 +00:00
|
|
|
|
2011-11-21 02:52:41 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
2011-09-24 00:30:47 +00:00
|
|
|
this->topologyOk = false;
|
|
|
|
int topoErr = hwloc_topology_init(&this->topology);
|
|
|
|
if (topoErr == 0) {
|
|
|
|
topoErr = hwloc_topology_load(this->topology);
|
2014-04-21 22:17:46 +00:00
|
|
|
}
|
|
|
|
if (topoErr == 0) {
|
2011-09-24 00:30:47 +00:00
|
|
|
this->topologyOk = true;
|
|
|
|
}
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2014-01-16 20:51:16 +00:00
|
|
|
this->fields = calloc(LAST_PROCESSFIELD+1, sizeof(ProcessField));
|
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).
|
2013-05-24 22:46:01 +00:00
|
|
|
this->flags = 0;
|
2006-03-04 18:16:49 +00:00
|
|
|
for (int i = 0; defaultHeaders[i]; i++) {
|
|
|
|
this->fields[i] = defaultHeaders[i];
|
2014-05-03 20:49:05 +00:00
|
|
|
this->flags |= Process_fieldFlags[defaultHeaders[i]];
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2014-05-03 20:49:05 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
this->sortKey = PERCENT_CPU;
|
|
|
|
this->direction = 1;
|
|
|
|
this->hideThreads = false;
|
|
|
|
this->shadowOtherUsers = false;
|
2010-11-22 12:40:20 +00:00
|
|
|
this->showThreadNames = false;
|
|
|
|
this->showingThreadNames = false;
|
2006-03-04 18:16:49 +00:00
|
|
|
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;
|
2011-03-22 20:37:08 +00:00
|
|
|
this->countCPUsFromZero = false;
|
2012-10-20 00:43:25 +00:00
|
|
|
this->updateProcessNames = false;
|
2011-11-03 22:12:12 +00:00
|
|
|
this->treeStr = NULL;
|
2012-03-30 01:20:32 +00:00
|
|
|
this->following = -1;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
if (CRT_utf8)
|
|
|
|
this->treeStr = CRT_utf8 ? ProcessList_treeStrUtf8 : ProcessList_treeStrAscii;
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2014-11-27 19:48:38 +00:00
|
|
|
void ProcessList_done(ProcessList* this) {
|
2006-03-04 18:16:49 +00:00
|
|
|
Hashtable_delete(this->processTable);
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_delete(this->processes);
|
|
|
|
Vector_delete(this->processes2);
|
2010-08-24 23:20:38 +00:00
|
|
|
free(this->cpus);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this->fields);
|
|
|
|
}
|
|
|
|
|
2011-12-01 12:31:57 +00:00
|
|
|
void ProcessList_setPanel(ProcessList* this, Panel* panel) {
|
|
|
|
this->panel = panel;
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
void ProcessList_invertSortOrder(ProcessList* this) {
|
|
|
|
if (this->direction == 1)
|
|
|
|
this->direction = -1;
|
|
|
|
else
|
|
|
|
this->direction = 1;
|
|
|
|
}
|
|
|
|
|
2010-11-22 12:40:20 +00:00
|
|
|
void ProcessList_printHeader(ProcessList* this, RichString* header) {
|
|
|
|
RichString_prune(header);
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessField* fields = this->fields;
|
|
|
|
for (int i = 0; fields[i]; i++) {
|
2010-02-25 01:37:31 +00:00
|
|
|
const char* field = Process_fieldTitles[fields[i]];
|
2012-10-04 23:59:45 +00:00
|
|
|
if (!this->treeView && this->sortKey == fields[i])
|
2010-11-22 12:40:20 +00:00
|
|
|
RichString_append(header, CRT_colors[PANEL_HIGHLIGHT_FOCUS], field);
|
2006-03-04 18:16:49 +00:00
|
|
|
else
|
2010-11-22 12:40:20 +00:00
|
|
|
RichString_append(header, CRT_colors[PANEL_HEADER_FOCUS], field);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
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);
|
2010-08-24 23:20:38 +00:00
|
|
|
|
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);
|
2010-08-24 23:20:38 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
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;
|
2010-02-25 01:37:31 +00:00
|
|
|
int idx = Vector_indexOf(this->processes, p, Process_pidCompare);
|
|
|
|
assert(idx != -1);
|
|
|
|
if (idx >= 0) Vector_remove(this->processes, idx);
|
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
|
|
|
}
|
|
|
|
|
2010-02-25 01:37:31 +00:00
|
|
|
Process* ProcessList_get(ProcessList* this, int idx) {
|
|
|
|
return (Process*) (Vector_get(this->processes, idx));
|
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
|
|
|
}
|
|
|
|
|
2010-06-17 19:02:03 +00:00
|
|
|
static void ProcessList_buildTree(ProcessList* this, pid_t pid, int level, int indent, int direction, bool show) {
|
2012-12-05 15:12:20 +00:00
|
|
|
Vector* children = Vector_new(Class(Process), false, DEFAULT_SIZE);
|
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)) {
|
2010-02-25 01:37:31 +00:00
|
|
|
process = (Process*) (Vector_take(this->processes, i));
|
2006-05-30 13:45:40 +00:00
|
|
|
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));
|
2010-11-22 12:40:20 +00:00
|
|
|
if (!show)
|
|
|
|
process->show = false;
|
|
|
|
int s = this->processes2->items;
|
|
|
|
if (direction == 1)
|
|
|
|
Vector_add(this->processes2, process);
|
|
|
|
else
|
|
|
|
Vector_insert(this->processes2, 0, process);
|
|
|
|
assert(this->processes2->items == s+1); (void)s;
|
|
|
|
int nextIndent = indent | (1 << level);
|
2010-11-24 12:00:34 +00:00
|
|
|
ProcessList_buildTree(this, process->pid, level+1, (i < size - 1) ? nextIndent : indent, direction, show ? process->showChildren : false);
|
2011-11-03 22:12:12 +00:00
|
|
|
if (i == size - 1)
|
|
|
|
process->indent = -nextIndent;
|
|
|
|
else
|
|
|
|
process->indent = nextIndent;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
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) {
|
2011-11-18 06:08:56 +00:00
|
|
|
Vector_insertionSort(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;
|
2011-11-18 06:08:56 +00:00
|
|
|
Vector_quickSort(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));
|
2014-11-24 20:55:03 +00:00
|
|
|
if (!init) return;
|
2008-09-23 06:29:03 +00:00
|
|
|
// This assertion crashes on hardened kernels.
|
|
|
|
// I wonder how well tree view works on those systems.
|
|
|
|
// assert(init->pid == 1);
|
2006-03-04 18:16:49 +00:00
|
|
|
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
|
2010-06-17 19:02:03 +00:00
|
|
|
ProcessList_buildTree(this, init->pid, 0, 0, direction, true);
|
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);
|
2010-06-17 19:02:03 +00:00
|
|
|
ProcessList_buildTree(this, p->pid, 0, 0, direction, p->showChildren);
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2010-08-24 23:20:38 +00:00
|
|
|
|
|
|
|
void ProcessList_expandTree(ProcessList* this) {
|
|
|
|
int size = Vector_size(this->processes);
|
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
Process* process = (Process*) Vector_get(this->processes, i);
|
|
|
|
process->showChildren = true;
|
|
|
|
}
|
|
|
|
}
|
2011-12-01 12:31:57 +00:00
|
|
|
|
2014-11-20 01:17:52 +00:00
|
|
|
void ProcessList_rebuildPanel(ProcessList* this, bool flags, int following, const char* incFilter) {
|
2011-12-01 12:31:57 +00:00
|
|
|
if (!flags) {
|
2012-02-02 23:45:40 +00:00
|
|
|
following = this->following;
|
2011-12-01 12:31:57 +00:00
|
|
|
incFilter = this->incFilter;
|
|
|
|
} else {
|
2012-02-02 23:45:40 +00:00
|
|
|
this->following = following;
|
2011-12-01 12:31:57 +00:00
|
|
|
this->incFilter = incFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
int currPos = Panel_getSelectedIndex(this->panel);
|
2012-03-30 01:20:32 +00:00
|
|
|
pid_t currPid = following != -1 ? following : 0;
|
2011-12-01 12:31:57 +00:00
|
|
|
int currScrollV = this->panel->scrollV;
|
|
|
|
|
|
|
|
Panel_prune(this->panel);
|
|
|
|
int size = ProcessList_size(this);
|
|
|
|
int idx = 0;
|
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
bool hidden = false;
|
|
|
|
Process* p = ProcessList_get(this, i);
|
|
|
|
|
|
|
|
if ( (!p->show)
|
2014-11-20 01:17:52 +00:00
|
|
|
|| (this->userOnly && (p->st_uid != this->userId))
|
2012-11-10 00:31:37 +00:00
|
|
|
|| (incFilter && !(String_contains_i(p->comm, incFilter)))
|
2012-08-10 21:54:41 +00:00
|
|
|
|| (this->pidWhiteList && !Hashtable_get(this->pidWhiteList, p->pid)) )
|
2011-12-01 12:31:57 +00:00
|
|
|
hidden = true;
|
|
|
|
|
|
|
|
if (!hidden) {
|
|
|
|
Panel_set(this->panel, idx, (Object*)p);
|
2012-02-02 23:45:40 +00:00
|
|
|
if ((following == -1 && idx == currPos) || (following != -1 && p->pid == currPid)) {
|
2011-12-01 12:31:57 +00:00
|
|
|
Panel_setSelected(this->panel, idx);
|
|
|
|
this->panel->scrollV = currScrollV;
|
|
|
|
}
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-24 20:55:03 +00:00
|
|
|
|