2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop - htop.c
|
2011-05-26 16:32:50 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2006-03-04 18:16:49 +00:00
|
|
|
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
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "CRT.h"
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "Panel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "UsersTable.h"
|
|
|
|
#include "RichString.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
#include "ScreenManager.h"
|
|
|
|
#include "FunctionBar.h"
|
|
|
|
#include "ListItem.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "String.h"
|
|
|
|
#include "ColumnsPanel.h"
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "CategoriesPanel.h"
|
|
|
|
#include "SignalsPanel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "TraceScreen.h"
|
2009-06-02 04:51:23 +00:00
|
|
|
#include "OpenFilesScreen.h"
|
2007-11-08 23:23:01 +00:00
|
|
|
#include "AffinityPanel.h"
|
2012-10-04 23:59:45 +00:00
|
|
|
#include "IOPriorityPanel.h"
|
2012-11-10 00:31:37 +00:00
|
|
|
#include "IncSet.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2011-12-26 21:35:57 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
//#link m
|
|
|
|
|
2012-11-10 00:31:37 +00:00
|
|
|
#define COPYRIGHT "(C) 2004-2012 Hisham Muhammad"
|
2010-02-25 02:04:24 +00:00
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void printVersionFlag() {
|
2010-02-25 02:04:24 +00:00
|
|
|
fputs("htop " VERSION " - " COPYRIGHT "\n"
|
|
|
|
"Released under the GNU GPL.\n\n",
|
|
|
|
stdout);
|
2006-03-04 18:16:49 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void printHelpFlag() {
|
2010-02-25 02:04:24 +00:00
|
|
|
fputs("htop " VERSION " - " COPYRIGHT "\n"
|
|
|
|
"Released under the GNU GPL.\n\n"
|
2012-08-10 21:54:41 +00:00
|
|
|
"-C --no-color Use a monochrome color scheme\n"
|
|
|
|
"-d --delay=DELAY Set the delay between updates, in tenths of seconds\n"
|
|
|
|
"-h --help Print this help screen\n"
|
|
|
|
"-s --sort-key=COLUMN Sort by COLUMN (try --sort-key=help for a list)\n"
|
|
|
|
"-u --user=USERNAME Show only processes of a given user\n"
|
|
|
|
"-p --pid=PID,[,PID,PID...] Show only the given PIDs\n"
|
2010-02-25 02:04:24 +00:00
|
|
|
"-v --version Print version info\n"
|
|
|
|
"\n"
|
|
|
|
"Long options may be passed with a single dash.\n\n"
|
|
|
|
"Press F1 inside htop for online help.\n"
|
|
|
|
"See 'man htop' for more information.\n",
|
|
|
|
stdout);
|
2006-03-04 18:16:49 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void showHelp(ProcessList* pl) {
|
2006-03-04 18:16:49 +00:00
|
|
|
clear();
|
|
|
|
attrset(CRT_colors[HELP_BOLD]);
|
2008-03-08 23:30:35 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < LINES-1; i++)
|
|
|
|
mvhline(i, 0, ' ', COLS);
|
|
|
|
|
2010-02-25 02:04:24 +00:00
|
|
|
mvaddstr(0, 0, "htop " VERSION " - " COPYRIGHT);
|
2006-03-04 18:16:49 +00:00
|
|
|
mvaddstr(1, 0, "Released under the GNU GPL. See 'man' page for more info.");
|
|
|
|
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
mvaddstr(3, 0, "CPU usage bar: ");
|
|
|
|
#define addattrstr(a,s) attrset(a);addstr(s)
|
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "[");
|
2007-11-09 00:40:59 +00:00
|
|
|
if (pl->detailedCPUTime) {
|
2006-10-04 14:21:27 +00:00
|
|
|
addattrstr(CRT_colors[CPU_NICE], "low"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_NORMAL], "normal"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_KERNEL], "kernel"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_IRQ], "irq"); addstr("/");
|
2007-11-09 00:40:59 +00:00
|
|
|
addattrstr(CRT_colors[CPU_SOFTIRQ], "soft-irq"); addstr("/");
|
2010-08-24 23:20:38 +00:00
|
|
|
addattrstr(CRT_colors[CPU_IOWAIT], "io-wait"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_STEAL], "steal"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_GUEST], "guest");
|
2006-10-04 14:21:27 +00:00
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used%");
|
|
|
|
} else {
|
|
|
|
addattrstr(CRT_colors[CPU_NICE], "low-priority"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_NORMAL], "normal"); addstr("/");
|
2010-08-24 23:20:38 +00:00
|
|
|
addattrstr(CRT_colors[CPU_KERNEL], "kernel"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[CPU_STEAL], "virtualiz");
|
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used%");
|
2006-10-04 14:21:27 +00:00
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "]");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
mvaddstr(4, 0, "Memory bar: ");
|
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "[");
|
|
|
|
addattrstr(CRT_colors[MEMORY_USED], "used"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[MEMORY_BUFFERS], "buffers"); addstr("/");
|
|
|
|
addattrstr(CRT_colors[MEMORY_CACHE], "cache");
|
2010-08-24 23:20:38 +00:00
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used/total");
|
2006-03-04 18:16:49 +00:00
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "]");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
mvaddstr(5, 0, "Swap bar: ");
|
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "[");
|
|
|
|
addattrstr(CRT_colors[SWAP], "used");
|
2010-08-24 23:20:38 +00:00
|
|
|
addattrstr(CRT_colors[BAR_SHADOW], " used/total");
|
2006-03-04 18:16:49 +00:00
|
|
|
addattrstr(CRT_colors[BAR_BORDER], "]");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
2006-10-04 14:21:27 +00:00
|
|
|
mvaddstr(6,0, "Type and layout of header meters are configurable in the setup screen.");
|
2009-02-18 00:34:18 +00:00
|
|
|
if (CRT_colorScheme == COLORSCHEME_MONOCHROME) {
|
|
|
|
mvaddstr(7, 0, "In monochrome, meters are displayed through different chars, in order: |#*@$%&");
|
|
|
|
}
|
|
|
|
mvaddstr( 8, 0, " Status: R: running; S: sleeping; T: traced/stopped; Z: zombie; D: disk sleep");
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr( 9, 0, " Arrows: scroll process list F5 t: tree view");
|
|
|
|
mvaddstr(10, 0, " Digits: incremental PID search u: show processes of a single user");
|
|
|
|
mvaddstr(11, 0, " F3 /: incremental name search H: hide/show user threads");
|
2011-09-08 01:17:26 +00:00
|
|
|
mvaddstr(12, 0, " F4 \\: incremental name filtering K: hide/show kernel threads");
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr(13, 0, " Space: tag processes F: cursor follows process");
|
2010-06-17 19:02:03 +00:00
|
|
|
mvaddstr(14, 0, " U: untag all processes + -: expand/collapse tree");
|
2012-10-04 23:59:45 +00:00
|
|
|
mvaddstr(15, 0, " F9 k: kill process/tagged processes P M T: sort by CPU%, MEM% or TIME");
|
|
|
|
mvaddstr(16, 0, " ] F7: higher priority (root only) i: set IO priority");
|
|
|
|
mvaddstr(17, 0, " [ F8: lower priority (+ nice) I: invert sort order");
|
2011-11-21 02:52:41 +00:00
|
|
|
#if (HAVE_LIBHWLOC || HAVE_NATIVE_AFFINITY)
|
2010-08-24 23:20:38 +00:00
|
|
|
if (pl->cpuCount > 1)
|
2012-10-04 23:59:45 +00:00
|
|
|
mvaddstr(18, 0, " a: set CPU affinity F6 >: select sort column");
|
2007-11-08 23:23:01 +00:00
|
|
|
else
|
2009-03-11 13:15:43 +00:00
|
|
|
#endif
|
2012-10-04 23:59:45 +00:00
|
|
|
mvaddstr(18, 0, " F6 >: select sort column");
|
|
|
|
mvaddstr(19, 0, " F2 S: setup l: list open files with lsof");
|
|
|
|
mvaddstr(20, 0, " F1 h: show this help screen s: trace syscalls with strace");
|
|
|
|
mvaddstr(21, 0, " F10 q: quit");
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
attrset(CRT_colors[HELP_BOLD]);
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr( 9, 0, " Arrows"); mvaddstr( 9,40, " F5 t");
|
|
|
|
mvaddstr(10, 0, " Digits"); mvaddstr(10,40, " u");
|
|
|
|
mvaddstr(11, 0, " F3 /"); mvaddstr(11,40, " H");
|
2011-09-08 01:17:26 +00:00
|
|
|
mvaddstr(12, 0, " F4 \\"); mvaddstr(12,40, " K");
|
2006-11-16 15:20:44 +00:00
|
|
|
mvaddstr(13, 0, " Space"); mvaddstr(13,40, " F");
|
2010-11-24 18:43:31 +00:00
|
|
|
mvaddstr(14, 0, " U"); mvaddstr(14,40, " + -");
|
2012-10-04 23:59:45 +00:00
|
|
|
mvaddstr(15, 0, " F9 k"); mvaddstr(15,40, "P M T");
|
|
|
|
mvaddstr(16, 0, " ] F7"); mvaddstr(16,40, " i");
|
|
|
|
mvaddstr(17, 0, " [ F8"); mvaddstr(17,40, " I");
|
|
|
|
mvaddstr(18,40, " F6 >");
|
2011-11-21 02:52:41 +00:00
|
|
|
#if (HAVE_LIBHWLOC || HAVE_NATIVE_AFFINITY)
|
2010-08-24 23:20:38 +00:00
|
|
|
if (pl->cpuCount > 1)
|
2007-11-08 23:23:01 +00:00
|
|
|
mvaddstr(18, 0, " a:");
|
2009-03-11 13:15:43 +00:00
|
|
|
#endif
|
2012-10-04 23:59:45 +00:00
|
|
|
mvaddstr(19, 0, " F2 S"); mvaddstr(19,40, " l");
|
|
|
|
mvaddstr(20, 0, " ? F1 h"); mvaddstr(20,40, " s");
|
|
|
|
mvaddstr(21, 0, " F10 q");
|
2006-03-04 18:16:49 +00:00
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
|
|
|
|
attrset(CRT_colors[HELP_BOLD]);
|
|
|
|
mvaddstr(23,0, "Press any key to return.");
|
|
|
|
attrset(CRT_colors[DEFAULT_COLOR]);
|
|
|
|
refresh();
|
|
|
|
CRT_readKey();
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
static const char* CategoriesFunctions[] = {" ", " ", " ", " ", " ", " ", " ", " ", " ", "Done ", NULL};
|
2008-04-23 07:24:27 +00:00
|
|
|
|
2011-03-22 20:37:08 +00:00
|
|
|
static void Setup_run(Settings* settings, const Header* header) {
|
|
|
|
ScreenManager* scr = ScreenManager_new(0, header->height, 0, -1, HORIZONTAL, header, true);
|
2006-05-30 14:00:18 +00:00
|
|
|
CategoriesPanel* panelCategories = CategoriesPanel_new(settings, scr);
|
2009-06-02 04:51:23 +00:00
|
|
|
ScreenManager_add(scr, (Panel*) panelCategories, FunctionBar_new(CategoriesFunctions, NULL, NULL), 16);
|
2006-05-30 14:00:18 +00:00
|
|
|
CategoriesPanel_makeMetersPage(panelCategories);
|
|
|
|
Panel* panelFocus;
|
2006-03-04 18:16:49 +00:00
|
|
|
int ch;
|
2006-05-30 14:00:18 +00:00
|
|
|
ScreenManager_run(scr, &panelFocus, &ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
ScreenManager_delete(scr);
|
|
|
|
}
|
|
|
|
|
2012-10-04 23:59:45 +00:00
|
|
|
typedef bool(*ForeachProcessFn)(Process*, size_t);
|
|
|
|
|
|
|
|
static bool foreachProcess(Panel* panel, ForeachProcessFn fn, int arg, bool* wasAnyTagged) {
|
2007-12-17 05:57:28 +00:00
|
|
|
bool ok = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
bool anyTagged = false;
|
2009-06-02 04:51:23 +00:00
|
|
|
for (int i = 0; i < Panel_size(panel); i++) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Process* p = (Process*) Panel_get(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (p->tag) {
|
2012-10-04 23:59:45 +00:00
|
|
|
ok = fn(p, arg) && ok;
|
2006-03-04 18:16:49 +00:00
|
|
|
anyTagged = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!anyTagged) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
2012-10-04 23:59:45 +00:00
|
|
|
if (p) ok = fn(p, arg) && ok;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2012-10-04 23:59:45 +00:00
|
|
|
if (wasAnyTagged)
|
|
|
|
*wasAnyTagged = anyTagged;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool changePriority(Panel* panel, int delta) {
|
|
|
|
bool anyTagged;
|
|
|
|
bool ok = foreachProcess(panel, (ForeachProcessFn) Process_changePriorityBy, delta, &anyTagged);
|
2007-12-17 05:57:28 +00:00
|
|
|
if (!ok)
|
|
|
|
beep();
|
2006-03-04 18:16:49 +00:00
|
|
|
return anyTagged;
|
|
|
|
}
|
|
|
|
|
2011-03-22 20:37:08 +00:00
|
|
|
static Object* pickFromVector(Panel* panel, Panel* list, int x, int y, const char** keyLabels, FunctionBar* prevBar, Header* header) {
|
2010-02-25 01:43:18 +00:00
|
|
|
const char* fuKeys[] = {"Enter", "Esc", NULL};
|
2009-06-23 13:51:36 +00:00
|
|
|
int fuEvents[] = {13, 27};
|
2007-11-08 23:23:01 +00:00
|
|
|
if (!list->eventHandler)
|
2011-11-18 06:08:56 +00:00
|
|
|
Panel_setEventHandler(list, Panel_selectByTyping);
|
2011-03-22 20:37:08 +00:00
|
|
|
ScreenManager* scr = ScreenManager_new(0, y, 0, -1, HORIZONTAL, header, false);
|
2011-12-01 12:31:57 +00:00
|
|
|
scr->allowFocusChange = false;
|
2009-06-02 04:51:23 +00:00
|
|
|
ScreenManager_add(scr, list, FunctionBar_new(keyLabels, fuKeys, fuEvents), x - 1);
|
2006-05-30 14:00:18 +00:00
|
|
|
ScreenManager_add(scr, panel, NULL, -1);
|
|
|
|
Panel* panelFocus;
|
2006-03-04 18:16:49 +00:00
|
|
|
int ch;
|
2012-03-30 01:20:32 +00:00
|
|
|
bool unfollow = false;
|
|
|
|
if (header->pl->following == -1) {
|
|
|
|
Process* p = (Process*)Panel_getSelected(panel);
|
|
|
|
header->pl->following = p ? p->pid : -1;
|
|
|
|
unfollow = true;
|
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
ScreenManager_run(scr, &panelFocus, &ch);
|
2012-03-30 01:20:32 +00:00
|
|
|
if (unfollow) {
|
|
|
|
header->pl->following = -1;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
ScreenManager_delete(scr);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_move(panel, 0, y);
|
|
|
|
Panel_resize(panel, COLS, LINES-y-1);
|
2006-03-04 18:16:49 +00:00
|
|
|
FunctionBar_draw(prevBar, NULL);
|
2006-05-30 14:00:18 +00:00
|
|
|
if (panelFocus == list && ch == 13) {
|
2006-05-30 13:47:28 +00:00
|
|
|
return Panel_getSelected(list);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-02 04:51:23 +00:00
|
|
|
static void addUserToVector(int key, void* userCast, void* panelCast) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char* user = (char*) userCast;
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* panel = (Panel*) panelCast;
|
|
|
|
Panel_add(panel, (Object*) ListItem_new(user, key));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2011-08-26 21:04:26 +00:00
|
|
|
static bool setUserOnly(const char* userName, bool* userOnly, uid_t* userId) {
|
2006-03-04 18:16:49 +00:00
|
|
|
struct passwd* user = getpwnam(userName);
|
|
|
|
if (user) {
|
|
|
|
*userOnly = true;
|
|
|
|
*userId = user->pw_uid;
|
2011-08-26 21:04:26 +00:00
|
|
|
return true;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2011-08-26 21:04:26 +00:00
|
|
|
return false;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2008-03-14 18:50:49 +00:00
|
|
|
static inline void setSortKey(ProcessList* pl, ProcessField sortKey, Panel* panel, Settings* settings) {
|
|
|
|
pl->sortKey = sortKey;
|
|
|
|
pl->direction = 1;
|
|
|
|
pl->treeView = false;
|
|
|
|
settings->changed = true;
|
2010-11-22 12:40:20 +00:00
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
2008-03-14 18:50:49 +00:00
|
|
|
}
|
|
|
|
|
2012-11-10 00:31:37 +00:00
|
|
|
static const char* getMainPanelValue(Panel* panel, int i) {
|
|
|
|
Process* p = (Process*) Panel_get(panel, i);
|
|
|
|
if (p)
|
|
|
|
return p->comm;
|
|
|
|
return "";
|
2011-09-08 01:17:26 +00:00
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
|
|
|
|
int delay = -1;
|
|
|
|
bool userOnly = false;
|
|
|
|
uid_t userId = 0;
|
2010-02-25 02:04:24 +00:00
|
|
|
int usecolors = 1;
|
2011-11-03 22:12:12 +00:00
|
|
|
TreeType treeType = TREE_TYPE_AUTO;
|
2012-08-10 21:54:41 +00:00
|
|
|
char *argCopy;
|
|
|
|
char *pid;
|
|
|
|
Hashtable *pidWhiteList = NULL;
|
2010-02-25 02:04:24 +00:00
|
|
|
|
|
|
|
int opt, opti=0;
|
|
|
|
static struct option long_opts[] =
|
|
|
|
{
|
|
|
|
{"help", no_argument, 0, 'h'},
|
|
|
|
{"version", no_argument, 0, 'v'},
|
|
|
|
{"delay", required_argument, 0, 'd'},
|
|
|
|
{"sort-key", required_argument, 0, 's'},
|
|
|
|
{"user", required_argument, 0, 'u'},
|
|
|
|
{"no-color", no_argument, 0, 'C'},
|
|
|
|
{"no-colour",no_argument, 0, 'C'},
|
2012-08-10 21:54:41 +00:00
|
|
|
{"pid", required_argument, 0, 'p'},
|
2010-02-25 02:04:24 +00:00
|
|
|
{0,0,0,0}
|
|
|
|
};
|
2006-08-04 20:54:37 +00:00
|
|
|
int sortKey = 0;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2008-03-09 02:33:23 +00:00
|
|
|
char *lc_ctype = getenv("LC_CTYPE");
|
|
|
|
if(lc_ctype != NULL)
|
|
|
|
setlocale(LC_CTYPE, lc_ctype);
|
2011-11-03 22:12:12 +00:00
|
|
|
else if ((lc_ctype = getenv("LC_ALL")))
|
|
|
|
setlocale(LC_CTYPE, lc_ctype);
|
2008-03-09 02:33:23 +00:00
|
|
|
else
|
2011-11-03 22:12:12 +00:00
|
|
|
setlocale(LC_CTYPE, "");
|
2008-03-09 02:33:23 +00:00
|
|
|
|
2010-02-25 02:04:24 +00:00
|
|
|
/* Parse arguments */
|
2012-08-10 21:54:41 +00:00
|
|
|
while ((opt = getopt_long(argc, argv, "hvCs:d:u:p:", long_opts, &opti))) {
|
2010-02-25 02:04:24 +00:00
|
|
|
if (opt == EOF) break;
|
|
|
|
switch (opt) {
|
|
|
|
case 'h':
|
|
|
|
printHelpFlag();
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
printVersionFlag();
|
|
|
|
break;
|
|
|
|
case 's':
|
2011-09-08 04:47:48 +00:00
|
|
|
if (strcmp(optarg, "help") == 0) {
|
2010-02-25 02:04:24 +00:00
|
|
|
for (int j = 1; j < LAST_PROCESSFIELD; j++)
|
|
|
|
printf ("%s\n", Process_fieldNames[j]);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
sortKey = ColumnsPanel_fieldNameToIndex(optarg);
|
|
|
|
if (sortKey == -1) {
|
|
|
|
fprintf(stderr, "Error: invalid column \"%s\".\n", optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'd':
|
2011-08-26 21:04:26 +00:00
|
|
|
if (sscanf(optarg, "%d", &delay) == 1) {
|
|
|
|
if (delay < 1) delay = 1;
|
|
|
|
if (delay > 100) delay = 100;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Error: invalid delay value \"%s\".\n", optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-02-25 02:04:24 +00:00
|
|
|
break;
|
|
|
|
case 'u':
|
2011-08-26 21:04:26 +00:00
|
|
|
if (!setUserOnly(optarg, &userOnly, &userId)) {
|
|
|
|
fprintf(stderr, "Error: invalid user \"%s\".\n", optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-02-25 02:04:24 +00:00
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
usecolors=0;
|
2012-08-10 21:54:41 +00:00
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
argCopy = strdup(optarg);
|
|
|
|
pid = strtok(argCopy, ",");
|
|
|
|
|
|
|
|
if( !pidWhiteList ) {
|
|
|
|
pidWhiteList = Hashtable_new(8, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
while( pid ) {
|
|
|
|
unsigned int num_pid = atoi(pid);
|
|
|
|
Hashtable_put(pidWhiteList, num_pid, (void *) 1);
|
|
|
|
pid = strtok(NULL, ",");
|
|
|
|
}
|
|
|
|
free(argCopy);
|
|
|
|
|
2010-02-25 02:04:24 +00:00
|
|
|
break;
|
2011-08-26 21:04:26 +00:00
|
|
|
default:
|
|
|
|
exit(1);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
2010-02-25 02:04:24 +00:00
|
|
|
|
|
|
|
|
2006-03-13 17:29:18 +00:00
|
|
|
if (access(PROCDIR, R_OK) != 0) {
|
|
|
|
fprintf(stderr, "Error: could not read procfs (compiled to look in %s).\n", PROCDIR);
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
int quit = 0;
|
|
|
|
int refreshTimeout = 0;
|
|
|
|
int resetRefreshTimeout = 5;
|
|
|
|
bool doRefresh = true;
|
2009-02-17 18:13:25 +00:00
|
|
|
bool doRecalculate = false;
|
2006-03-04 18:16:49 +00:00
|
|
|
Settings* settings;
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel* killPanel = NULL;
|
2011-09-08 01:17:26 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessList* pl = NULL;
|
|
|
|
UsersTable* ut = UsersTable_new();
|
|
|
|
|
2012-08-10 21:54:41 +00:00
|
|
|
pl = ProcessList_new(ut, pidWhiteList);
|
2011-09-29 18:40:23 +00:00
|
|
|
Process_getMaxPid();
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
Header* header = Header_new(pl);
|
2011-11-18 06:08:56 +00:00
|
|
|
settings = Settings_new(pl, header, pl->cpuCount);
|
2006-03-04 18:16:49 +00:00
|
|
|
int headerHeight = Header_calculateHeight(header);
|
|
|
|
|
|
|
|
// FIXME: move delay code to settings
|
|
|
|
if (delay != -1)
|
|
|
|
settings->delay = delay;
|
2010-02-25 02:04:24 +00:00
|
|
|
if (!usecolors)
|
|
|
|
settings->colorScheme = COLORSCHEME_MONOCHROME;
|
2011-11-03 22:12:12 +00:00
|
|
|
|
|
|
|
if (treeType == TREE_TYPE_AUTO) {
|
|
|
|
#ifdef HAVE_LIBNCURSESW
|
|
|
|
char *locale = setlocale(LC_ALL, NULL);
|
|
|
|
if (locale == NULL || locale[0] == '\0')
|
|
|
|
locale = setlocale(LC_CTYPE, NULL);
|
|
|
|
if (locale != NULL &&
|
|
|
|
(strstr(locale, "UTF-8") ||
|
|
|
|
strstr(locale, "utf-8") ||
|
|
|
|
strstr(locale, "UTF8") ||
|
|
|
|
strstr(locale, "utf8")))
|
|
|
|
treeType = TREE_TYPE_UTF8;
|
|
|
|
else
|
|
|
|
treeType = TREE_TYPE_ASCII;
|
|
|
|
#else
|
|
|
|
treeType = TREE_TYPE_ASCII;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
switch (treeType) {
|
|
|
|
default:
|
|
|
|
case TREE_TYPE_ASCII:
|
|
|
|
pl->treeStr = ProcessList_treeStrAscii;
|
|
|
|
break;
|
|
|
|
case TREE_TYPE_UTF8:
|
|
|
|
pl->treeStr = ProcessList_treeStrUtf8;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
CRT_init(settings->delay, settings->colorScheme);
|
2011-12-01 12:31:57 +00:00
|
|
|
|
|
|
|
Panel* panel = Panel_new(0, headerHeight, COLS, LINES - headerHeight - 2, PROCESS_CLASS, false, NULL);
|
|
|
|
ProcessList_setPanel(pl, panel);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2008-03-14 18:50:49 +00:00
|
|
|
if (sortKey > 0) {
|
|
|
|
pl->sortKey = sortKey;
|
|
|
|
pl->treeView = false;
|
|
|
|
pl->direction = 1;
|
|
|
|
}
|
2010-11-22 12:40:20 +00:00
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
2011-09-08 01:17:26 +00:00
|
|
|
|
|
|
|
const char* defaultFunctions[] = {"Help ", "Setup ", "Search", "Filter", "Tree ",
|
2009-06-02 04:51:23 +00:00
|
|
|
"SortBy", "Nice -", "Nice +", "Kill ", "Quit ", NULL};
|
|
|
|
FunctionBar* defaultBar = FunctionBar_new(defaultFunctions, NULL, NULL);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2012-11-10 00:31:37 +00:00
|
|
|
IncSet* inc = IncSet_new(defaultBar);
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessList_scan(pl);
|
|
|
|
usleep(75000);
|
|
|
|
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
|
|
|
|
int acc = 0;
|
|
|
|
bool follow = false;
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
double newTime = 0.0;
|
|
|
|
double oldTime = 0.0;
|
|
|
|
bool recalculate;
|
|
|
|
|
2011-03-22 20:37:08 +00:00
|
|
|
int ch = ERR;
|
2006-03-04 18:16:49 +00:00
|
|
|
int closeTimeout = 0;
|
|
|
|
|
|
|
|
while (!quit) {
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
newTime = ((double)tv.tv_sec * 10) + ((double)tv.tv_usec / 100000);
|
|
|
|
recalculate = (newTime - oldTime > CRT_delay);
|
2012-03-05 11:18:27 +00:00
|
|
|
Process* p = (Process*)Panel_getSelected(panel);
|
|
|
|
int following = (follow && p) ? p->pid : -1;
|
2006-03-04 18:16:49 +00:00
|
|
|
if (recalculate)
|
|
|
|
oldTime = newTime;
|
|
|
|
if (doRefresh) {
|
2009-02-17 18:13:25 +00:00
|
|
|
if (recalculate || doRecalculate) {
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessList_scan(pl);
|
2009-02-17 18:13:25 +00:00
|
|
|
doRecalculate = false;
|
|
|
|
}
|
2010-11-22 12:40:20 +00:00
|
|
|
if (refreshTimeout == 0 || pl->treeView) {
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessList_sort(pl);
|
|
|
|
refreshTimeout = 1;
|
|
|
|
}
|
2012-11-10 00:31:37 +00:00
|
|
|
ProcessList_rebuildPanel(pl, true, following, userOnly, userId, IncSet_filter(inc));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
doRefresh = true;
|
|
|
|
|
|
|
|
Header_draw(header);
|
|
|
|
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_draw(panel, true);
|
2006-03-04 18:16:49 +00:00
|
|
|
int prev = ch;
|
2012-11-10 00:31:37 +00:00
|
|
|
if (inc->active)
|
2011-09-24 00:30:47 +00:00
|
|
|
move(LINES-1, CRT_cursorX);
|
2006-03-04 18:16:49 +00:00
|
|
|
ch = getch();
|
|
|
|
|
|
|
|
if (ch == ERR) {
|
2012-11-10 00:31:37 +00:00
|
|
|
if (!inc->active)
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout--;
|
|
|
|
if (prev == ch && !recalculate) {
|
|
|
|
closeTimeout++;
|
2011-03-28 19:06:06 +00:00
|
|
|
if (closeTimeout == 100) {
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
2011-03-28 19:06:06 +00:00
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
} else
|
|
|
|
closeTimeout = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch == KEY_MOUSE) {
|
|
|
|
MEVENT mevent;
|
|
|
|
int ok = getmouse(&mevent);
|
|
|
|
if (ok == OK) {
|
2011-05-26 16:32:50 +00:00
|
|
|
if (mevent.bstate & BUTTON1_CLICKED) {
|
|
|
|
if (mevent.y == panel->y) {
|
|
|
|
int x = panel->scrollH + mevent.x + 1;
|
|
|
|
ProcessField field = ProcessList_keyAt(pl, x);
|
|
|
|
if (field == pl->sortKey) {
|
|
|
|
ProcessList_invertSortOrder(pl);
|
|
|
|
pl->treeView = false;
|
|
|
|
} else {
|
|
|
|
setSortKey(pl, field, panel, settings);
|
|
|
|
}
|
|
|
|
refreshTimeout = 0;
|
|
|
|
continue;
|
|
|
|
} else if (mevent.y >= panel->y + 1 && mevent.y < LINES - 1) {
|
|
|
|
Panel_setSelected(panel, mevent.y - panel->y + panel->scrollV - 1);
|
|
|
|
doRefresh = false;
|
|
|
|
refreshTimeout = resetRefreshTimeout;
|
|
|
|
follow = true;
|
|
|
|
continue;
|
|
|
|
} if (mevent.y == LINES - 1) {
|
2012-11-10 00:31:37 +00:00
|
|
|
ch = FunctionBar_synthesizeEvent(inc->bar, mevent.x);
|
2008-03-14 18:50:49 +00:00
|
|
|
}
|
2011-05-26 16:32:50 +00:00
|
|
|
} else if (mevent.bstate & BUTTON4_CLICKED) {
|
|
|
|
ch = KEY_UP;
|
|
|
|
#if NCURSES_MOUSE_VERSION > 1
|
|
|
|
} else if (mevent.bstate & BUTTON5_CLICKED) {
|
|
|
|
ch = KEY_DOWN;
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-10 00:31:37 +00:00
|
|
|
if (inc->active) {
|
|
|
|
doRefresh = IncSet_handleKey(inc, ch, panel, getMainPanelValue, NULL);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isdigit((char)ch)) {
|
|
|
|
if (Panel_size(panel) == 0) continue;
|
|
|
|
pid_t pid = ch-48 + acc;
|
|
|
|
for (int i = 0; i < ProcessList_size(pl) && ((Process*) Panel_getSelected(panel))->pid != pid; i++)
|
|
|
|
Panel_setSelected(panel, i);
|
|
|
|
acc = pid * 10;
|
|
|
|
if (acc > 10000000)
|
|
|
|
acc = 0;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
acc = 0;
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
switch (ch) {
|
|
|
|
case KEY_RESIZE:
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_resize(panel, COLS, LINES-headerHeight-1);
|
2012-11-10 00:31:37 +00:00
|
|
|
IncSet_drawBar(inc);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, PERCENT_MEM, panel, settings);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'T':
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, TIME, panel, settings);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'U':
|
|
|
|
{
|
2009-06-02 04:51:23 +00:00
|
|
|
for (int i = 0; i < Panel_size(panel); i++) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Process* p = (Process*) Panel_get(panel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
p->tag = false;
|
|
|
|
}
|
|
|
|
doRefresh = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'P':
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, PERCENT_CPU, panel, settings);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(1):
|
|
|
|
case 'h':
|
2010-02-25 02:04:24 +00:00
|
|
|
case '?':
|
2006-03-04 18:16:49 +00:00
|
|
|
{
|
2006-10-04 14:21:27 +00:00
|
|
|
showHelp(pl);
|
2006-03-04 18:16:49 +00:00
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case '\014': // Ctrl+L
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ' ':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
2012-03-05 11:18:27 +00:00
|
|
|
if (!p) break;
|
2006-03-04 18:16:49 +00:00
|
|
|
Process_toggleTag(p);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_onKey(panel, KEY_DOWN);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 's':
|
|
|
|
{
|
2012-03-05 11:18:27 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
|
|
|
if (!p) break;
|
|
|
|
TraceScreen* ts = TraceScreen_new(p);
|
2006-03-04 18:16:49 +00:00
|
|
|
TraceScreen_run(ts);
|
|
|
|
TraceScreen_delete(ts);
|
|
|
|
clear();
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
CRT_enableDelay();
|
|
|
|
break;
|
|
|
|
}
|
2009-06-02 04:51:23 +00:00
|
|
|
case 'l':
|
|
|
|
{
|
2012-03-05 11:18:27 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
|
|
|
if (!p) break;
|
|
|
|
OpenFilesScreen* ts = OpenFilesScreen_new(p);
|
2009-06-02 04:51:23 +00:00
|
|
|
OpenFilesScreen_run(ts);
|
|
|
|
OpenFilesScreen_delete(ts);
|
|
|
|
clear();
|
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
CRT_enableDelay();
|
|
|
|
break;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
case 'S':
|
|
|
|
case 'C':
|
|
|
|
case KEY_F(2):
|
|
|
|
{
|
2011-03-22 20:37:08 +00:00
|
|
|
Setup_run(settings, header);
|
2006-03-04 18:16:49 +00:00
|
|
|
// TODO: shouldn't need this, colors should be dynamic
|
2010-11-22 12:40:20 +00:00
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
2006-03-04 18:16:49 +00:00
|
|
|
headerHeight = Header_calculateHeight(header);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_move(panel, 0, headerHeight);
|
|
|
|
Panel_resize(panel, COLS, LINES-headerHeight-1);
|
2006-03-04 18:16:49 +00:00
|
|
|
FunctionBar_draw(defaultBar, NULL);
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'F':
|
|
|
|
{
|
|
|
|
follow = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case 'u':
|
|
|
|
{
|
2006-07-11 06:13:32 +00:00
|
|
|
Panel* usersPanel = Panel_new(0, 0, 0, 0, LISTITEM_CLASS, true, ListItem_compare);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setHeader(usersPanel, "Show processes of:");
|
2009-06-02 04:51:23 +00:00
|
|
|
UsersTable_foreach(ut, addUserToVector, usersPanel);
|
2011-11-18 06:08:56 +00:00
|
|
|
Vector_insertionSort(usersPanel->items);
|
2006-03-04 18:16:49 +00:00
|
|
|
ListItem* allUsers = ListItem_new("All users", -1);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_insert(usersPanel, 0, (Object*) allUsers);
|
2010-02-25 01:43:18 +00:00
|
|
|
const char* fuFunctions[] = {"Show ", "Cancel ", NULL};
|
2011-03-22 20:37:08 +00:00
|
|
|
ListItem* picked = (ListItem*) pickFromVector(panel, usersPanel, 20, headerHeight, fuFunctions, defaultBar, header);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (picked) {
|
|
|
|
if (picked == allUsers) {
|
|
|
|
userOnly = false;
|
|
|
|
} else {
|
|
|
|
setUserOnly(ListItem_getRef(picked), &userOnly, &userId);
|
|
|
|
}
|
|
|
|
}
|
2011-09-08 01:17:26 +00:00
|
|
|
Panel_delete((Object*)usersPanel);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-06-17 19:02:03 +00:00
|
|
|
case '+':
|
|
|
|
case '=':
|
|
|
|
case '-':
|
|
|
|
{
|
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
2012-03-05 11:18:27 +00:00
|
|
|
if (!p) break;
|
2010-06-17 19:02:03 +00:00
|
|
|
p->showChildren = !p->showChildren;
|
|
|
|
refreshTimeout = 0;
|
|
|
|
doRecalculate = true;
|
|
|
|
break;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
case KEY_F(9):
|
|
|
|
case 'k':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
if (!killPanel) {
|
|
|
|
killPanel = (Panel*) SignalsPanel_new(0, 0, 0, 0);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
SignalsPanel_reset((SignalsPanel*) killPanel);
|
2010-02-25 01:43:18 +00:00
|
|
|
const char* fuFunctions[] = {"Send ", "Cancel ", NULL};
|
2011-11-05 04:42:35 +00:00
|
|
|
ListItem* sgn = (ListItem*) pickFromVector(panel, killPanel, 15, headerHeight, fuFunctions, defaultBar, header);
|
2010-02-25 01:43:18 +00:00
|
|
|
if (sgn) {
|
2011-11-05 04:42:35 +00:00
|
|
|
if (sgn->key != 0) {
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setHeader(panel, "Sending...");
|
|
|
|
Panel_draw(panel, true);
|
2006-03-04 18:16:49 +00:00
|
|
|
refresh();
|
2012-10-04 23:59:45 +00:00
|
|
|
foreachProcess(panel, (ForeachProcessFn) Process_sendSignal, (size_t) sgn->key, NULL);
|
2006-03-04 18:16:49 +00:00
|
|
|
napms(500);
|
|
|
|
}
|
|
|
|
}
|
2010-11-22 12:40:20 +00:00
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-21 02:52:41 +00:00
|
|
|
#if (HAVE_LIBHWLOC || HAVE_NATIVE_AFFINITY)
|
2007-11-08 23:23:01 +00:00
|
|
|
case 'a':
|
|
|
|
{
|
2010-08-24 23:20:38 +00:00
|
|
|
if (pl->cpuCount == 1)
|
2007-11-08 23:23:01 +00:00
|
|
|
break;
|
|
|
|
|
2012-03-05 11:18:27 +00:00
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
|
|
|
if (!p) break;
|
|
|
|
Affinity* affinity = Process_getAffinity(p);
|
2012-01-29 23:51:36 +00:00
|
|
|
if (!affinity) break;
|
2011-09-24 00:30:47 +00:00
|
|
|
Panel* affinityPanel = AffinityPanel_new(pl, affinity);
|
|
|
|
Affinity_delete(affinity);
|
2007-11-08 23:23:01 +00:00
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
const char* fuFunctions[] = {"Set ", "Cancel ", NULL};
|
2011-03-22 20:37:08 +00:00
|
|
|
void* set = pickFromVector(panel, affinityPanel, 15, headerHeight, fuFunctions, defaultBar, header);
|
2007-12-17 05:57:28 +00:00
|
|
|
if (set) {
|
2011-09-24 00:30:47 +00:00
|
|
|
Affinity* affinity = AffinityPanel_getAffinity(affinityPanel);
|
2012-10-04 23:59:45 +00:00
|
|
|
bool ok = foreachProcess(panel, (ForeachProcessFn) Process_setAffinity, (size_t) affinity, NULL);
|
|
|
|
if (!ok) beep();
|
2011-09-24 00:30:47 +00:00
|
|
|
Affinity_delete(affinity);
|
2007-11-08 23:23:01 +00:00
|
|
|
}
|
2011-09-08 02:48:53 +00:00
|
|
|
Panel_delete((Object*)affinityPanel);
|
2010-11-22 12:40:20 +00:00
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
2007-11-08 23:23:01 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
2009-03-11 13:15:43 +00:00
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
case KEY_F(10):
|
|
|
|
case 'q':
|
|
|
|
quit = 1;
|
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
case ',':
|
|
|
|
case KEY_F(18):
|
|
|
|
case '>':
|
|
|
|
case '.':
|
|
|
|
case KEY_F(6):
|
|
|
|
{
|
2006-07-11 06:13:32 +00:00
|
|
|
Panel* sortPanel = Panel_new(0, 0, 0, 0, LISTITEM_CLASS, true, ListItem_compare);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setHeader(sortPanel, "Sort by");
|
2010-02-25 01:43:18 +00:00
|
|
|
const char* fuFunctions[] = {"Sort ", "Cancel ", NULL};
|
2006-03-04 18:16:49 +00:00
|
|
|
ProcessField* fields = pl->fields;
|
|
|
|
for (int i = 0; fields[i]; i++) {
|
2012-11-10 00:31:37 +00:00
|
|
|
char* name = String_trim(Process_fieldNames[fields[i]]);
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_add(sortPanel, (Object*) ListItem_new(name, fields[i]));
|
2006-03-04 18:16:49 +00:00
|
|
|
if (fields[i] == pl->sortKey)
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_setSelected(sortPanel, i);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(name);
|
|
|
|
}
|
2011-03-22 20:37:08 +00:00
|
|
|
ListItem* field = (ListItem*) pickFromVector(panel, sortPanel, 15, headerHeight, fuFunctions, defaultBar, header);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (field) {
|
|
|
|
settings->changed = true;
|
2008-03-14 18:50:49 +00:00
|
|
|
setSortKey(pl, field->key, panel, settings);
|
|
|
|
} else {
|
2010-11-22 12:40:20 +00:00
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 14:00:18 +00:00
|
|
|
((Object*)sortPanel)->delete((Object*)sortPanel);
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
2012-10-04 23:59:45 +00:00
|
|
|
case 'i':
|
|
|
|
{
|
|
|
|
Process* p = (Process*) Panel_getSelected(panel);
|
|
|
|
if (!p) break;
|
|
|
|
IOPriority ioprio = p->ioPriority;
|
|
|
|
Panel* ioprioPanel = IOPriorityPanel_new(ioprio);
|
|
|
|
const char* fuFunctions[] = {"Set ", "Cancel ", NULL};
|
|
|
|
void* set = pickFromVector(panel, ioprioPanel, 21, headerHeight, fuFunctions, defaultBar, header);
|
|
|
|
if (set) {
|
|
|
|
IOPriority ioprio = IOPriorityPanel_getIOPriority(ioprioPanel);
|
|
|
|
bool ok = foreachProcess(panel, (ForeachProcessFn) Process_setIOPriority, (size_t) ioprio, NULL);
|
|
|
|
if (!ok)
|
|
|
|
beep();
|
|
|
|
}
|
|
|
|
Panel_delete((Object*)ioprioPanel);
|
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
|
|
|
refreshTimeout = 0;
|
|
|
|
break;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
case 'I':
|
|
|
|
{
|
|
|
|
refreshTimeout = 0;
|
|
|
|
settings->changed = true;
|
|
|
|
ProcessList_invertSortOrder(pl);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(8):
|
|
|
|
case '[':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
doRefresh = changePriority(panel, 1);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(7):
|
|
|
|
case ']':
|
|
|
|
{
|
2006-05-30 14:00:18 +00:00
|
|
|
doRefresh = changePriority(panel, -1);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(3):
|
|
|
|
case '/':
|
2012-11-10 00:31:37 +00:00
|
|
|
IncSet_activate(inc, INC_SEARCH);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
2011-09-08 01:17:26 +00:00
|
|
|
case KEY_F(4):
|
|
|
|
case '\\':
|
2012-11-10 00:31:37 +00:00
|
|
|
IncSet_activate(inc, INC_FILTER);
|
2011-09-08 01:17:26 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
doRefresh = true;
|
|
|
|
continue;
|
2006-03-04 18:16:49 +00:00
|
|
|
case 't':
|
|
|
|
case KEY_F(5):
|
|
|
|
refreshTimeout = 0;
|
|
|
|
pl->treeView = !pl->treeView;
|
2012-10-04 23:59:45 +00:00
|
|
|
if (pl->treeView) pl->direction = 1;
|
|
|
|
ProcessList_printHeader(pl, Panel_getHeader(panel));
|
2010-08-24 23:20:38 +00:00
|
|
|
ProcessList_expandTree(pl);
|
2006-03-04 18:16:49 +00:00
|
|
|
settings->changed = true;
|
2012-05-28 20:42:40 +00:00
|
|
|
if (following != -1) continue;
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
case 'H':
|
2009-02-17 18:13:25 +00:00
|
|
|
doRecalculate = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
2008-03-08 23:30:35 +00:00
|
|
|
pl->hideUserlandThreads = !pl->hideUserlandThreads;
|
|
|
|
pl->hideThreads = pl->hideUserlandThreads;
|
2006-03-04 18:16:49 +00:00
|
|
|
settings->changed = true;
|
|
|
|
break;
|
|
|
|
case 'K':
|
2009-02-17 18:13:25 +00:00
|
|
|
doRecalculate = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
refreshTimeout = 0;
|
|
|
|
pl->hideKernelThreads = !pl->hideKernelThreads;
|
|
|
|
settings->changed = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
doRefresh = false;
|
|
|
|
refreshTimeout = resetRefreshTimeout;
|
2006-05-30 14:00:18 +00:00
|
|
|
Panel_onKey(panel, ch);
|
2006-03-04 18:16:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
follow = false;
|
|
|
|
}
|
|
|
|
attron(CRT_colors[RESET_COLOR]);
|
|
|
|
mvhline(LINES-1, 0, ' ', COLS);
|
|
|
|
attroff(CRT_colors[RESET_COLOR]);
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
CRT_done();
|
|
|
|
if (settings->changed)
|
|
|
|
Settings_write(settings);
|
|
|
|
Header_delete(header);
|
|
|
|
ProcessList_delete(pl);
|
2012-11-10 00:31:37 +00:00
|
|
|
IncSet_delete(inc);
|
2006-03-04 18:16:49 +00:00
|
|
|
FunctionBar_delete((Object*)defaultBar);
|
2011-09-08 01:17:26 +00:00
|
|
|
Panel_delete((Object*)panel);
|
2006-05-30 14:00:18 +00:00
|
|
|
if (killPanel)
|
|
|
|
((Object*)killPanel)->delete((Object*)killPanel);
|
2006-03-04 18:16:49 +00:00
|
|
|
UsersTable_delete(ut);
|
|
|
|
Settings_delete(settings);
|
2012-08-10 21:54:41 +00:00
|
|
|
if(pidWhiteList) {
|
|
|
|
Hashtable_delete(pidWhiteList);
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|