2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop - ProcessList.c
|
|
|
|
(C) 2004,2005 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-03-04 18:16:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ProcessList.h"
|
2015-03-15 23:29:13 +00:00
|
|
|
#include "Platform.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
|
|
|
#include "CRT.h"
|
2015-08-19 16:43:20 +00:00
|
|
|
#include "StringUtils.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
|
|
|
|
|
|
|
|
2020-10-04 15:55:08 +00:00
|
|
|
ProcessList* ProcessList_init(ProcessList* this, const ObjectClass* klass, UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId) {
|
2015-04-09 18:40:27 +00:00
|
|
|
this->processes = Vector_new(klass, 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;
|
2020-09-09 09:38:15 +00:00
|
|
|
this->pidMatchList = pidMatchList;
|
2015-01-22 01:27:31 +00:00
|
|
|
this->userId = userId;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2015-04-09 18:40:27 +00:00
|
|
|
// tree-view auxiliary buffer
|
|
|
|
this->processes2 = Vector_new(klass, true, DEFAULT_SIZE);
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2014-11-24 20:55:03 +00:00
|
|
|
// set later by platform-specific code
|
|
|
|
this->cpuCount = 0;
|
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;
|
2020-08-26 00:15:00 +00:00
|
|
|
if (hwloc_topology_init(&this->topology) == 0) {
|
|
|
|
this->topologyOk =
|
|
|
|
#if HWLOC_API_VERSION < 0x00020000
|
|
|
|
/* try to ignore the top-level machine object type */
|
|
|
|
0 == hwloc_topology_ignore_type_keep_structure(this->topology, HWLOC_OBJ_MACHINE) &&
|
|
|
|
/* ignore caches, which don't add structure */
|
|
|
|
0 == hwloc_topology_ignore_type_keep_structure(this->topology, HWLOC_OBJ_CORE) &&
|
|
|
|
0 == hwloc_topology_ignore_type_keep_structure(this->topology, HWLOC_OBJ_CACHE) &&
|
|
|
|
0 == hwloc_topology_set_flags(this->topology, HWLOC_TOPOLOGY_FLAG_WHOLE_SYSTEM) &&
|
|
|
|
#else
|
|
|
|
0 == hwloc_topology_set_all_types_filter(this->topology, HWLOC_TYPE_FILTER_KEEP_STRUCTURE) &&
|
|
|
|
#endif
|
|
|
|
0 == hwloc_topology_load(this->topology);
|
2011-09-24 00:30:47 +00:00
|
|
|
}
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2012-03-30 01:20:32 +00:00
|
|
|
this->following = -1;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2014-11-27 19:48:38 +00:00
|
|
|
void ProcessList_done(ProcessList* this) {
|
2016-03-01 00:57:27 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
|
|
|
if (this->topologyOk) {
|
|
|
|
hwloc_topology_destroy(this->topology);
|
|
|
|
}
|
|
|
|
#endif
|
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);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2011-12-01 12:31:57 +00:00
|
|
|
void ProcessList_setPanel(ProcessList* this, Panel* panel) {
|
|
|
|
this->panel = panel;
|
|
|
|
}
|
|
|
|
|
2010-11-22 12:40:20 +00:00
|
|
|
void ProcessList_printHeader(ProcessList* this, RichString* header) {
|
|
|
|
RichString_prune(header);
|
2015-01-22 01:27:31 +00:00
|
|
|
ProcessField* fields = this->settings->fields;
|
2006-03-04 18:16:49 +00:00
|
|
|
for (int i = 0; fields[i]; i++) {
|
2015-01-22 01:27:31 +00:00
|
|
|
const char* field = Process_fields[fields[i]].title;
|
|
|
|
if (!field) field = "- ";
|
|
|
|
if (!this->settings->treeView && this->settings->sortKey == fields[i])
|
2015-04-09 18:17:20 +00:00
|
|
|
RichString_append(header, CRT_colors[PANEL_SELECTION_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);
|
2019-10-31 16:39:12 +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);
|
2019-10-31 16:39:12 +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));
|
2017-09-14 20:10:39 +00:00
|
|
|
if (process->show && Process_isChildOf(process, 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) {
|
2015-01-22 01:27:31 +00:00
|
|
|
if (!this->settings->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
|
2015-01-22 01:27:31 +00:00
|
|
|
int direction = this->settings->direction;
|
|
|
|
int sortKey = this->settings->sortKey;
|
2007-11-08 23:23:01 +00:00
|
|
|
// Sort by PID
|
2015-01-22 01:27:31 +00:00
|
|
|
this->settings->sortKey = PID;
|
|
|
|
this->settings->direction = 1;
|
2011-11-18 06:08:56 +00:00
|
|
|
Vector_quickSort(this->processes);
|
2007-11-08 23:23:01 +00:00
|
|
|
// Restore settings
|
2015-01-22 01:27:31 +00:00
|
|
|
this->settings->sortKey = sortKey;
|
|
|
|
this->settings->direction = direction;
|
2006-11-12 21:53:56 +00:00
|
|
|
int vsize = Vector_size(this->processes);
|
2017-09-01 13:27:24 +00:00
|
|
|
// Find all processes whose parent is not visible
|
|
|
|
int size;
|
|
|
|
while ((size = Vector_size(this->processes))) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
Process* process = (Process*)(Vector_get(this->processes, i));
|
|
|
|
// Immediately consume not shown processes
|
|
|
|
if (!process->show) {
|
|
|
|
process = (Process*)(Vector_take(this->processes, i));
|
|
|
|
process->indent = 0;
|
|
|
|
Vector_add(this->processes2, process);
|
|
|
|
ProcessList_buildTree(this, process->pid, 0, 0, direction, false);
|
|
|
|
break;
|
|
|
|
}
|
2018-04-05 22:31:18 +00:00
|
|
|
pid_t ppid = Process_getParentPid(process);
|
2017-09-01 13:27:24 +00:00
|
|
|
// Bisect the process vector to find parent
|
|
|
|
int l = 0, r = size;
|
2018-01-02 14:15:45 +00:00
|
|
|
// If PID corresponds with PPID (e.g. "kernel_task" (PID:0, PPID:0)
|
|
|
|
// on Mac OS X 10.11.6) cancel bisecting and regard this process as
|
|
|
|
// root.
|
|
|
|
if (process->pid == ppid)
|
|
|
|
r = 0;
|
2017-09-01 13:27:24 +00:00
|
|
|
while (l < r) {
|
|
|
|
int c = (l + r) / 2;
|
|
|
|
pid_t pid = ((Process*)(Vector_get(this->processes, c)))->pid;
|
2017-09-04 16:53:03 +00:00
|
|
|
if (ppid == pid) {
|
2017-09-01 13:27:24 +00:00
|
|
|
break;
|
2017-09-04 16:53:03 +00:00
|
|
|
} else if (ppid < pid) {
|
2017-09-01 13:27:24 +00:00
|
|
|
r = c;
|
2017-09-04 16:53:03 +00:00
|
|
|
} else {
|
2017-09-01 13:27:24 +00:00
|
|
|
l = c + 1;
|
2017-09-04 16:53:03 +00:00
|
|
|
}
|
2017-09-01 13:27:24 +00:00
|
|
|
}
|
|
|
|
// If parent not found, then construct the tree with this root
|
|
|
|
if (l >= r) {
|
|
|
|
process = (Process*)(Vector_take(this->processes, i));
|
|
|
|
process->indent = 0;
|
|
|
|
Vector_add(this->processes2, process);
|
|
|
|
ProcessList_buildTree(this, process->pid, 0, 0, direction, process->showChildren);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// There should be no loop in the process tree
|
|
|
|
assert(i < size);
|
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;
|
2015-01-22 01:27:31 +00:00
|
|
|
ProcessField* fields = this->settings->fields;
|
2008-03-14 18:50:49 +00:00
|
|
|
ProcessField field;
|
|
|
|
for (int i = 0; (field = fields[i]); i++) {
|
2015-01-22 01:27:31 +00:00
|
|
|
const char* title = Process_fields[field].title;
|
|
|
|
if (!title) title = "- ";
|
|
|
|
int len = strlen(title);
|
2008-03-14 18:50:49 +00:00
|
|
|
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
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
void ProcessList_rebuildPanel(ProcessList* this) {
|
|
|
|
const char* incFilter = this->incFilter;
|
2011-12-01 12:31:57 +00:00
|
|
|
|
|
|
|
int currPos = Panel_getSelectedIndex(this->panel);
|
2015-01-22 01:27:31 +00:00
|
|
|
pid_t currPid = this->following != -1 ? this->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)
|
2015-01-22 01:27:31 +00:00
|
|
|
|| (this->userId != (uid_t) -1 && (p->st_uid != this->userId))
|
2012-11-10 00:31:37 +00:00
|
|
|
|| (incFilter && !(String_contains_i(p->comm, incFilter)))
|
2020-09-09 09:38:15 +00:00
|
|
|
|| (this->pidMatchList && !Hashtable_get(this->pidMatchList, p->tgid)) )
|
2011-12-01 12:31:57 +00:00
|
|
|
hidden = true;
|
|
|
|
|
|
|
|
if (!hidden) {
|
|
|
|
Panel_set(this->panel, idx, (Object*)p);
|
2015-01-22 01:27:31 +00:00
|
|
|
if ((this->following == -1 && idx == currPos) || (this->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
|
|
|
|
2015-04-02 04:57:37 +00:00
|
|
|
Process* ProcessList_getProcess(ProcessList* this, pid_t pid, bool* preExisting, Process_New constructor) {
|
2015-03-17 02:01:48 +00:00
|
|
|
Process* proc = (Process*) Hashtable_get(this->processTable, pid);
|
|
|
|
*preExisting = proc;
|
|
|
|
if (proc) {
|
|
|
|
assert(Vector_indexOf(this->processes, proc, Process_pidCompare) != -1);
|
|
|
|
assert(proc->pid == pid);
|
|
|
|
} else {
|
|
|
|
proc = constructor(this->settings);
|
|
|
|
assert(proc->comm == NULL);
|
|
|
|
proc->pid = pid;
|
|
|
|
}
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProcessList_scan(ProcessList* this) {
|
|
|
|
|
|
|
|
// mark all process as "dirty"
|
|
|
|
for (int i = 0; i < Vector_size(this->processes); i++) {
|
|
|
|
Process* p = (Process*) Vector_get(this->processes, i);
|
|
|
|
p->updated = false;
|
2016-02-18 16:32:49 +00:00
|
|
|
p->show = true;
|
2015-03-17 02:01:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this->totalTasks = 0;
|
|
|
|
this->userlandThreads = 0;
|
|
|
|
this->kernelThreads = 0;
|
|
|
|
this->runningTasks = 0;
|
|
|
|
|
|
|
|
ProcessList_goThroughEntries(this);
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2015-03-17 02:01:48 +00:00
|
|
|
for (int i = Vector_size(this->processes) - 1; i >= 0; i--) {
|
|
|
|
Process* p = (Process*) Vector_get(this->processes, i);
|
|
|
|
if (p->updated == false)
|
|
|
|
ProcessList_remove(this, p);
|
|
|
|
else
|
|
|
|
p->updated = false;
|
|
|
|
}
|
|
|
|
}
|