htop/htop.c

293 lines
8.4 KiB
C
Raw Normal View History

2006-03-04 18:16:49 +00:00
/*
htop - htop.c
(C) 2004-2011 Hisham H. Muhammad
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 "config.h"
2011-12-26 21:35:57 +00:00
2006-03-04 18:16:49 +00:00
#include "FunctionBar.h"
#include "Hashtable.h"
2011-12-26 21:35:57 +00:00
#include "ColumnsPanel.h"
#include "CRT.h"
#include "MainPanel.h"
2020-09-11 18:14:56 +00:00
#include "MetersPanel.h"
#include "ProcessList.h"
#include "ScreenManager.h"
#include "Settings.h"
#include "UsersTable.h"
#include "Platform.h"
2006-03-04 18:16:49 +00:00
2011-12-26 21:35:57 +00:00
#include <getopt.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
2011-12-26 21:35:57 +00:00
#include <string.h>
2014-04-22 21:19:24 +00:00
#include <time.h>
#include <unistd.h>
2011-12-26 21:35:57 +00:00
2006-03-04 18:16:49 +00:00
//#link m
static void printVersionFlag(void) {
fputs("htop " VERSION "\n", stdout);
2006-03-04 18:16:49 +00:00
}
2019-10-31 16:39:12 +00:00
static void printHelpFlag(void) {
fputs("htop " VERSION "\n"
COPYRIGHT "\n"
"Released under the GNU GPLv2.\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"
2020-09-17 20:39:06 +00:00
"-M --no-mouse Disable the mouse\n"
"-p --pid=PID,[,PID,PID...] Show only the given PIDs\n"
2012-08-10 21:54:41 +00:00
"-s --sort-key=COLUMN Sort by COLUMN (try --sort-key=help for a list)\n"
2018-04-05 22:45:55 +00:00
"-t --tree Show the tree view by default\n"
2020-08-20 03:57:09 +00:00
"-u --user[=USERNAME] Show only processes for a given user (or $USER)\n"
"-U --no-unicode Do not use unicode but plain ASCII\n"
"-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
}
// ----------------------------------------
typedef struct CommandLineSettings_ {
Hashtable* pidMatchList;
uid_t userId;
int sortKey;
int delay;
bool useColors;
2019-07-12 19:41:09 +00:00
bool enableMouse;
2018-04-05 22:45:55 +00:00
bool treeView;
bool allowUnicode;
} CommandLineSettings;
static CommandLineSettings parseArguments(int argc, char** argv) {
CommandLineSettings flags = {
.pidMatchList = NULL,
.userId = -1, // -1 is guaranteed to be an invalid uid_t (see setreuid(2))
.sortKey = 0,
.delay = -1,
.useColors = true,
2019-07-12 19:41:09 +00:00
.enableMouse = true,
2018-04-05 22:45:55 +00:00
.treeView = false,
.allowUnicode = true,
};
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", optional_argument, 0, 'u'},
{"no-color", no_argument, 0, 'C'},
{"no-colour", no_argument, 0, 'C'},
{"no-mouse", no_argument, 0, 'M'},
{"no-unicode", no_argument, 0, 'U'},
{"tree", no_argument, 0, 't'},
{"pid", required_argument, 0, 'p'},
{0,0,0,0}
};
int opt, opti=0;
/* Parse arguments */
while ((opt = getopt_long(argc, argv, "hVMCs:td:u::Up:", long_opts, &opti))) {
if (opt == EOF) break;
switch (opt) {
case 'h':
printHelpFlag();
exit(0);
case 'V':
printVersionFlag();
exit(0);
case 's':
2020-09-21 13:06:19 +00:00
assert(optarg); /* please clang analyzer, cause optarg can be NULL in the 'u' case */
2011-09-08 04:47:48 +00:00
if (strcmp(optarg, "help") == 0) {
for (int j = 1; j < Platform_numberOfFields; j++) {
const char* name = Process_fields[j].name;
if (name) printf ("%s\n", name);
}
exit(0);
}
flags.sortKey = ColumnsPanel_fieldNameToIndex(optarg);
if (flags.sortKey == -1) {
2015-10-05 14:27:44 +00:00
fprintf(stderr, "Error: invalid column \"%s\".\n", optarg);
exit(1);
2015-09-19 16:21:22 +00:00
}
break;
case 'd':
if (sscanf(optarg, "%16d", &(flags.delay)) == 1) {
if (flags.delay < 1) flags.delay = 1;
if (flags.delay > 100) flags.delay = 100;
} else {
2015-10-05 14:27:44 +00:00
fprintf(stderr, "Error: invalid delay value \"%s\".\n", optarg);
exit(1);
}
break;
case 'u':
{
const char *username = optarg;
if (!username && optind < argc && argv[optind] != NULL &&
2020-08-20 03:57:09 +00:00
(argv[optind][0] != '\0' && argv[optind][0] != '-')) {
username = argv[optind++];
2019-01-30 23:25:08 +00:00
}
if (!username) {
2019-01-30 23:25:08 +00:00
flags.userId = geteuid();
} else if (!Action_setUserOnly(username, &(flags.userId))) {
fprintf(stderr, "Error: invalid user \"%s\".\n", username);
exit(1);
2015-09-19 16:21:22 +00:00
}
break;
}
case 'C':
flags.useColors = false;
2012-08-10 21:54:41 +00:00
break;
case 'M':
2019-07-12 19:41:09 +00:00
flags.enableMouse = false;
break;
case 'U':
flags.allowUnicode = false;
break;
2018-04-05 22:45:55 +00:00
case 't':
flags.treeView = true;
break;
case 'p': {
2020-09-21 13:06:19 +00:00
assert(optarg); /* please clang analyzer, cause optarg can be NULL in the 'u' case */
2016-02-02 14:53:02 +00:00
char* argCopy = xStrdup(optarg);
char* saveptr;
char* pid = strtok_r(argCopy, ",", &saveptr);
2012-08-10 21:54:41 +00:00
if(!flags.pidMatchList) {
flags.pidMatchList = Hashtable_new(8, false);
2012-08-10 21:54:41 +00:00
}
while(pid) {
2012-08-10 21:54:41 +00:00
unsigned int num_pid = atoi(pid);
// deepcode ignore CastIntegerToAddress: we just want a non-NUll pointer here
Hashtable_put(flags.pidMatchList, num_pid, (void *) 1);
pid = strtok_r(NULL, ",", &saveptr);
2012-08-10 21:54:41 +00:00
}
free(argCopy);
break;
}
default:
exit(1);
2006-03-04 18:16:49 +00:00
}
}
return flags;
}
static void millisleep(unsigned long millisec) {
struct timespec req = {
.tv_sec = 0,
.tv_nsec = millisec * 1000000L
};
while(nanosleep(&req,&req)==-1) {
continue;
}
}
int main(int argc, char** argv) {
char *lc_ctype = getenv("LC_CTYPE");
if(lc_ctype != NULL)
setlocale(LC_CTYPE, lc_ctype);
else if ((lc_ctype = getenv("LC_ALL")))
setlocale(LC_CTYPE, lc_ctype);
else
setlocale(LC_CTYPE, "");
CommandLineSettings flags = parseArguments(argc, argv); // may exit()
#ifdef HTOP_LINUX
if (access(PROCDIR, R_OK) != 0) {
fprintf(stderr, "Error: could not read procfs (compiled to look in %s).\n", PROCDIR);
exit(1);
}
2014-11-27 22:04:53 +00:00
#endif
2019-10-31 16:39:12 +00:00
Process_setupColumnWidths();
2019-10-31 16:39:12 +00:00
UsersTable* ut = UsersTable_new();
ProcessList* pl = ProcessList_new(ut, flags.pidMatchList, flags.userId);
2019-10-31 16:39:12 +00:00
Settings* settings = Settings_new(pl->cpuCount);
pl->settings = settings;
Header* header = Header_new(pl, settings, 2);
Header_populateFromSettings(header);
if (flags.delay != -1)
settings->delay = flags.delay;
2019-10-31 16:39:12 +00:00
if (!flags.useColors)
settings->colorScheme = COLORSCHEME_MONOCHROME;
2019-07-12 19:41:09 +00:00
if (!flags.enableMouse)
settings->enableMouse = false;
2018-04-05 22:45:55 +00:00
if (flags.treeView)
settings->treeView = true;
CRT_init(settings->delay, settings->colorScheme, flags.allowUnicode);
2019-10-31 16:39:12 +00:00
2015-03-23 18:26:56 +00:00
MainPanel* panel = MainPanel_new();
ProcessList_setPanel(pl, (Panel*) panel);
2015-03-23 18:26:56 +00:00
MainPanel_updateTreeFunctions(panel, settings->treeView);
2019-10-31 16:39:12 +00:00
if (flags.sortKey > 0) {
settings->sortKey = flags.sortKey;
settings->treeView = false;
settings->direction = 1;
}
ProcessList_printHeader(pl, Panel_getHeader((Panel*)panel));
2006-03-04 18:16:49 +00:00
State state = {
.settings = settings,
.ut = ut,
.pl = pl,
.panel = (Panel*) panel,
.header = header,
};
MainPanel_setState(panel, &state);
2019-10-31 16:39:12 +00:00
ScreenManager* scr = ScreenManager_new(0, header->height, 0, -1, HORIZONTAL, header, settings, true);
2015-03-23 18:26:56 +00:00
ScreenManager_add(scr, (Panel*) panel, -1);
2006-03-04 18:16:49 +00:00
ProcessList_scan(pl);
millisleep(75);
ProcessList_scan(pl);
2019-10-31 16:39:12 +00:00
ScreenManager_run(scr, NULL, NULL);
2006-03-04 18:16:49 +00:00
attron(CRT_colors[RESET_COLOR]);
mvhline(LINES-1, 0, ' ', COLS);
attroff(CRT_colors[RESET_COLOR]);
refresh();
2019-10-31 16:39:12 +00:00
2006-03-04 18:16:49 +00:00
CRT_done();
if (settings->changed)
Settings_write(settings);
Header_delete(header);
ProcessList_delete(pl);
ScreenManager_delete(scr);
2020-09-11 18:14:56 +00:00
MetersPanel_cleanup();
2019-10-31 16:39:12 +00:00
2006-03-04 18:16:49 +00:00
UsersTable_delete(ut);
Settings_delete(settings);
2019-10-31 16:39:12 +00:00
if(flags.pidMatchList) {
Hashtable_delete(flags.pidMatchList);
2012-08-10 21:54:41 +00:00
}
2006-03-04 18:16:49 +00:00
return 0;
}