2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop - Settings.c
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 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 "Settings.h"
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2015-04-09 18:19:31 +00:00
|
|
|
#include "CRT.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Macros.h"
|
|
|
|
#include "Meter.h"
|
2020-10-14 18:21:09 +00:00
|
|
|
#include "Platform.h"
|
|
|
|
#include "XUtils.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
void Settings_delete(Settings* this) {
|
2015-01-22 01:27:31 +00:00
|
|
|
free(this->filename);
|
|
|
|
free(this->fields);
|
2020-09-28 19:14:50 +00:00
|
|
|
for (unsigned int i = 0; i < ARRAYSIZE(this->columns); i++) {
|
2015-01-22 01:27:31 +00:00
|
|
|
String_freeArray(this->columns[i].names);
|
|
|
|
free(this->columns[i].modes);
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2021-01-05 22:42:55 +00:00
|
|
|
static void Settings_readMeters(Settings* this, const char* line, int column) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char* trim = String_trim(line);
|
2020-10-03 19:20:43 +00:00
|
|
|
char** ids = String_split(trim, ' ', NULL);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(trim);
|
2015-01-22 01:27:31 +00:00
|
|
|
this->columns[column].names = ids;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2021-01-05 22:42:55 +00:00
|
|
|
static void Settings_readMeterModes(Settings* this, const char* line, int column) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char* trim = String_trim(line);
|
2020-10-03 19:20:43 +00:00
|
|
|
char** ids = String_split(trim, ' ', NULL);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(trim);
|
2015-01-22 01:27:31 +00:00
|
|
|
int len = 0;
|
2011-08-29 20:45:29 +00:00
|
|
|
for (int i = 0; ids[i]; i++) {
|
2015-01-22 01:27:31 +00:00
|
|
|
len++;
|
|
|
|
}
|
|
|
|
this->columns[column].len = len;
|
2016-02-02 14:53:02 +00:00
|
|
|
int* modes = xCalloc(len, sizeof(int));
|
2015-01-22 01:27:31 +00:00
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
modes[i] = atoi(ids[i]);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
String_freeArray(ids);
|
2015-01-22 01:27:31 +00:00
|
|
|
this->columns[column].modes = modes;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 09:52:57 +00:00
|
|
|
static void Settings_defaultMeters(Settings* this, int initialCpuCount) {
|
2015-01-22 01:27:31 +00:00
|
|
|
int sizes[] = { 3, 3 };
|
2020-09-23 09:52:57 +00:00
|
|
|
if (initialCpuCount > 4) {
|
2015-01-22 01:27:31 +00:00
|
|
|
sizes[1]++;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < 2; i++) {
|
2016-02-02 14:53:02 +00:00
|
|
|
this->columns[i].names = xCalloc(sizes[i] + 1, sizeof(char*));
|
|
|
|
this->columns[i].modes = xCalloc(sizes[i], sizeof(int));
|
2015-03-17 02:01:21 +00:00
|
|
|
this->columns[i].len = sizes[i];
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|
|
|
|
int r = 0;
|
2020-09-23 09:52:57 +00:00
|
|
|
if (initialCpuCount > 8) {
|
2016-02-02 14:53:02 +00:00
|
|
|
this->columns[0].names[0] = xStrdup("LeftCPUs2");
|
2016-02-02 15:15:07 +00:00
|
|
|
this->columns[0].modes[0] = BAR_METERMODE;
|
|
|
|
this->columns[1].names[r] = xStrdup("RightCPUs2");
|
|
|
|
this->columns[1].modes[r++] = BAR_METERMODE;
|
2020-09-23 09:52:57 +00:00
|
|
|
} else if (initialCpuCount > 4) {
|
2016-02-02 14:53:02 +00:00
|
|
|
this->columns[0].names[0] = xStrdup("LeftCPUs");
|
2016-02-02 15:15:07 +00:00
|
|
|
this->columns[0].modes[0] = BAR_METERMODE;
|
|
|
|
this->columns[1].names[r] = xStrdup("RightCPUs");
|
|
|
|
this->columns[1].modes[r++] = BAR_METERMODE;
|
2014-11-27 20:38:52 +00:00
|
|
|
} else {
|
2016-02-02 14:53:02 +00:00
|
|
|
this->columns[0].names[0] = xStrdup("AllCPUs");
|
2016-02-02 15:15:07 +00:00
|
|
|
this->columns[0].modes[0] = BAR_METERMODE;
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|
2016-02-02 14:53:02 +00:00
|
|
|
this->columns[0].names[1] = xStrdup("Memory");
|
2016-02-02 15:15:07 +00:00
|
|
|
this->columns[0].modes[1] = BAR_METERMODE;
|
2016-02-02 14:53:02 +00:00
|
|
|
this->columns[0].names[2] = xStrdup("Swap");
|
2016-02-02 15:15:07 +00:00
|
|
|
this->columns[0].modes[2] = BAR_METERMODE;
|
|
|
|
this->columns[1].names[r] = xStrdup("Tasks");
|
|
|
|
this->columns[1].modes[r++] = TEXT_METERMODE;
|
|
|
|
this->columns[1].names[r] = xStrdup("LoadAverage");
|
|
|
|
this->columns[1].modes[r++] = TEXT_METERMODE;
|
|
|
|
this->columns[1].names[r] = xStrdup("Uptime");
|
|
|
|
this->columns[1].modes[r++] = TEXT_METERMODE;
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 13:13:06 +00:00
|
|
|
static void readFields(ProcessField* fields, uint32_t* flags, const char* line) {
|
2015-01-22 01:27:31 +00:00
|
|
|
char* trim = String_trim(line);
|
2020-10-03 19:20:43 +00:00
|
|
|
char** ids = String_split(trim, ' ', NULL);
|
2015-01-22 01:27:31 +00:00
|
|
|
free(trim);
|
|
|
|
int i, j;
|
|
|
|
*flags = 0;
|
2020-12-15 18:44:48 +00:00
|
|
|
for (j = 0, i = 0; i < LAST_PROCESSFIELD && ids[i]; i++) {
|
2015-01-22 01:27:31 +00:00
|
|
|
// This "+1" is for compatibility with the older enum format.
|
|
|
|
int id = atoi(ids[i]) + 1;
|
2020-12-15 18:44:48 +00:00
|
|
|
if (id > 0 && id < LAST_PROCESSFIELD && Process_fields[id].name) {
|
2015-01-22 01:27:31 +00:00
|
|
|
fields[j] = id;
|
|
|
|
*flags |= Process_fields[id].flags;
|
|
|
|
j++;
|
|
|
|
}
|
2014-11-27 20:38:52 +00:00
|
|
|
}
|
2016-05-30 15:22:07 +00:00
|
|
|
fields[j] = NULL_PROCESSFIELD;
|
2015-01-22 01:27:31 +00:00
|
|
|
String_freeArray(ids);
|
2014-11-27 20:38:52 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 09:52:57 +00:00
|
|
|
static bool Settings_read(Settings* this, const char* fileName, int initialCpuCount) {
|
2015-12-02 22:42:10 +00:00
|
|
|
FILE* fd;
|
2017-07-26 18:40:55 +00:00
|
|
|
CRT_dropPrivileges();
|
2015-12-09 19:34:11 +00:00
|
|
|
fd = fopen(fileName, "r");
|
2017-07-26 18:40:55 +00:00
|
|
|
CRT_restorePrivileges();
|
2011-12-25 20:22:41 +00:00
|
|
|
if (!fd)
|
2006-03-04 18:16:49 +00:00
|
|
|
return false;
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2018-02-18 23:35:23 +00:00
|
|
|
bool didReadMeters = false;
|
|
|
|
bool didReadFields = false;
|
2016-06-19 21:55:35 +00:00
|
|
|
for (;;) {
|
|
|
|
char* line = String_readLine(fd);
|
|
|
|
if (!line) {
|
|
|
|
break;
|
|
|
|
}
|
2020-10-03 19:20:43 +00:00
|
|
|
size_t nOptions;
|
2016-06-19 21:55:35 +00:00
|
|
|
char** option = String_split(line, '=', &nOptions);
|
|
|
|
free (line);
|
2011-08-29 20:45:29 +00:00
|
|
|
if (nOptions < 2) {
|
|
|
|
String_freeArray(option);
|
|
|
|
continue;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
if (String_eq(option[0], "fields")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
readFields(this->fields, &(this->flags), option[1]);
|
2018-02-18 23:35:23 +00:00
|
|
|
didReadFields = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "sort_key")) {
|
|
|
|
// This "+1" is for compatibility with the older enum format.
|
2015-01-22 01:27:31 +00:00
|
|
|
this->sortKey = atoi(option[1]) + 1;
|
2020-12-18 14:03:31 +00:00
|
|
|
} else if (String_eq(option[0], "tree_sort_key")) {
|
|
|
|
// This "+1" is for compatibility with the older enum format.
|
|
|
|
this->treeSortKey = atoi(option[1]) + 1;
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "sort_direction")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->direction = atoi(option[1]);
|
2020-12-18 14:03:31 +00:00
|
|
|
} else if (String_eq(option[0], "tree_sort_direction")) {
|
|
|
|
this->treeDirection = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "tree_view")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->treeView = atoi(option[1]);
|
2020-12-17 22:08:56 +00:00
|
|
|
} else if (String_eq(option[0], "tree_view_always_by_pid")) {
|
|
|
|
this->treeViewAlwaysByPID = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "hide_kernel_threads")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->hideKernelThreads = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "hide_userland_threads")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->hideUserlandThreads = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "shadow_other_users")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->shadowOtherUsers = atoi(option[1]);
|
2010-02-25 01:37:31 +00:00
|
|
|
} else if (String_eq(option[0], "show_thread_names")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->showThreadNames = atoi(option[1]);
|
2015-07-29 19:14:29 +00:00
|
|
|
} else if (String_eq(option[0], "show_program_path")) {
|
|
|
|
this->showProgramPath = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "highlight_base_name")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->highlightBaseName = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "highlight_megabytes")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->highlightMegabytes = atoi(option[1]);
|
2008-03-08 23:39:48 +00:00
|
|
|
} else if (String_eq(option[0], "highlight_threads")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->highlightThreads = atoi(option[1]);
|
2020-10-31 01:56:16 +00:00
|
|
|
} else if (String_eq(option[0], "highlight_changes")) {
|
|
|
|
this->highlightChanges = atoi(option[1]);
|
|
|
|
} else if (String_eq(option[0], "highlight_changes_delay_secs")) {
|
2020-11-21 20:40:08 +00:00
|
|
|
this->highlightDelaySecs = CLAMP(atoi(option[1]), 1, 24*60*60);
|
2020-10-17 10:54:45 +00:00
|
|
|
} else if (String_eq(option[0], "find_comm_in_cmdline")) {
|
|
|
|
this->findCommInCmdline = atoi(option[1]);
|
|
|
|
} else if (String_eq(option[0], "strip_exe_from_cmdline")) {
|
|
|
|
this->stripExeFromCmdline = atoi(option[1]);
|
|
|
|
} else if (String_eq(option[0], "show_merged_command")) {
|
|
|
|
this->showMergedCommand = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "header_margin")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->headerMargin = atoi(option[1]);
|
2006-10-04 14:21:27 +00:00
|
|
|
} else if (String_eq(option[0], "expand_system_time")) {
|
2007-11-09 00:40:59 +00:00
|
|
|
// Compatibility option.
|
2015-01-22 01:27:31 +00:00
|
|
|
this->detailedCPUTime = atoi(option[1]);
|
2007-11-09 00:40:59 +00:00
|
|
|
} else if (String_eq(option[0], "detailed_cpu_time")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->detailedCPUTime = atoi(option[1]);
|
2019-12-19 22:30:45 +00:00
|
|
|
} else if (String_eq(option[0], "cpu_count_from_one")) {
|
|
|
|
this->countCPUsFromOne = atoi(option[1]);
|
2011-03-22 20:37:08 +00:00
|
|
|
} else if (String_eq(option[0], "cpu_count_from_zero")) {
|
2019-12-19 22:30:45 +00:00
|
|
|
// old (inverted) naming also supported for backwards compatibility
|
|
|
|
this->countCPUsFromOne = !atoi(option[1]);
|
2019-08-10 18:20:21 +00:00
|
|
|
} else if (String_eq(option[0], "show_cpu_usage")) {
|
|
|
|
this->showCPUUsage = atoi(option[1]);
|
2019-08-10 04:34:48 +00:00
|
|
|
} else if (String_eq(option[0], "show_cpu_frequency")) {
|
|
|
|
this->showCPUFrequency = atoi(option[1]);
|
2020-12-01 12:59:19 +00:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
2020-09-10 17:56:33 +00:00
|
|
|
} else if (String_eq(option[0], "show_cpu_temperature")) {
|
|
|
|
this->showCPUTemperature = atoi(option[1]);
|
|
|
|
} else if (String_eq(option[0], "degree_fahrenheit")) {
|
|
|
|
this->degreeFahrenheit = atoi(option[1]);
|
|
|
|
#endif
|
2012-10-20 00:43:25 +00:00
|
|
|
} else if (String_eq(option[0], "update_process_names")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->updateProcessNames = atoi(option[1]);
|
2013-12-18 02:58:34 +00:00
|
|
|
} else if (String_eq(option[0], "account_guest_in_cpu_meter")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->accountGuestInCPUMeter = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "delay")) {
|
2020-11-21 20:40:08 +00:00
|
|
|
this->delay = CLAMP(atoi(option[1]), 1, 255);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "color_scheme")) {
|
|
|
|
this->colorScheme = atoi(option[1]);
|
2020-11-01 00:09:51 +00:00
|
|
|
if (this->colorScheme < 0 || this->colorScheme >= LAST_COLORSCHEME) {
|
2020-10-31 21:14:27 +00:00
|
|
|
this->colorScheme = 0;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2020-10-31 21:14:27 +00:00
|
|
|
} else if (String_eq(option[0], "enable_mouse")) {
|
2019-07-12 19:41:09 +00:00
|
|
|
this->enableMouse = atoi(option[1]);
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "left_meters")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
Settings_readMeters(this, option[1], 0);
|
2018-02-18 23:35:23 +00:00
|
|
|
didReadMeters = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "right_meters")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
Settings_readMeters(this, option[1], 1);
|
2018-02-18 23:35:23 +00:00
|
|
|
didReadMeters = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "left_meter_modes")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
Settings_readMeterModes(this, option[1], 0);
|
2018-02-18 23:35:23 +00:00
|
|
|
didReadMeters = true;
|
2006-03-04 18:16:49 +00:00
|
|
|
} else if (String_eq(option[0], "right_meter_modes")) {
|
2015-01-22 01:27:31 +00:00
|
|
|
Settings_readMeterModes(this, option[1], 1);
|
2018-02-18 23:35:23 +00:00
|
|
|
didReadMeters = true;
|
2020-12-28 22:26:14 +00:00
|
|
|
} else if (String_eq(option[0], "hide_function_bar")) {
|
|
|
|
this->hideFunctionBar = atoi(option[1]);
|
2020-08-26 00:15:00 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
|
|
|
} else if (String_eq(option[0], "topology_affinity")) {
|
|
|
|
this->topologyAffinity = !!atoi(option[1]);
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
String_freeArray(option);
|
|
|
|
}
|
|
|
|
fclose(fd);
|
2018-02-18 23:35:23 +00:00
|
|
|
if (!didReadMeters) {
|
2020-09-23 09:52:57 +00:00
|
|
|
Settings_defaultMeters(this, initialCpuCount);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2018-02-18 23:35:23 +00:00
|
|
|
return didReadFields;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2021-01-05 22:42:55 +00:00
|
|
|
static void writeFields(FILE* fd, const ProcessField* fields, const char* name) {
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "%s=", name);
|
2017-07-24 23:36:27 +00:00
|
|
|
const char* sep = "";
|
2015-01-22 01:27:31 +00:00
|
|
|
for (int i = 0; fields[i]; i++) {
|
|
|
|
// This "-1" is for compatibility with the older enum format.
|
2020-10-31 22:28:02 +00:00
|
|
|
fprintf(fd, "%s%d", sep, (int) fields[i] - 1);
|
2017-07-24 23:36:27 +00:00
|
|
|
sep = " ";
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|
|
|
|
fprintf(fd, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void writeMeters(Settings* this, FILE* fd, int column) {
|
2017-07-24 23:36:27 +00:00
|
|
|
const char* sep = "";
|
2015-01-22 01:27:31 +00:00
|
|
|
for (int i = 0; i < this->columns[column].len; i++) {
|
2017-07-24 23:36:27 +00:00
|
|
|
fprintf(fd, "%s%s", sep, this->columns[column].names[i]);
|
|
|
|
sep = " ";
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|
|
|
|
fprintf(fd, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void writeMeterModes(Settings* this, FILE* fd, int column) {
|
2017-07-24 23:36:27 +00:00
|
|
|
const char* sep = "";
|
2015-01-22 01:27:31 +00:00
|
|
|
for (int i = 0; i < this->columns[column].len; i++) {
|
2017-07-24 23:36:27 +00:00
|
|
|
fprintf(fd, "%s%d", sep, this->columns[column].modes[i]);
|
|
|
|
sep = " ";
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|
|
|
|
fprintf(fd, "\n");
|
|
|
|
}
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
bool Settings_write(Settings* this) {
|
|
|
|
FILE* fd;
|
2015-12-02 22:42:10 +00:00
|
|
|
|
2017-07-26 18:40:55 +00:00
|
|
|
CRT_dropPrivileges();
|
2015-01-22 01:27:31 +00:00
|
|
|
fd = fopen(this->filename, "w");
|
2017-07-26 18:40:55 +00:00
|
|
|
CRT_restorePrivileges();
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
if (fd == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-12 16:37:27 +00:00
|
|
|
fprintf(fd, "# Beware! This file is rewritten by htop when settings are changed in the interface.\n");
|
2006-03-04 18:16:49 +00:00
|
|
|
fprintf(fd, "# The parser is also very primitive, and not human-friendly.\n");
|
2015-01-22 01:27:31 +00:00
|
|
|
writeFields(fd, this->fields, "fields");
|
2006-03-04 18:16:49 +00:00
|
|
|
// This "-1" is for compatibility with the older enum format.
|
2020-10-31 22:28:02 +00:00
|
|
|
fprintf(fd, "sort_key=%d\n", (int) this->sortKey - 1);
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "sort_direction=%d\n", (int) this->direction);
|
2020-12-18 14:03:31 +00:00
|
|
|
fprintf(fd, "tree_sort_key=%d\n", (int) this->treeSortKey - 1);
|
|
|
|
fprintf(fd, "tree_sort_direction=%d\n", (int) this->treeDirection);
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "hide_kernel_threads=%d\n", (int) this->hideKernelThreads);
|
|
|
|
fprintf(fd, "hide_userland_threads=%d\n", (int) this->hideUserlandThreads);
|
|
|
|
fprintf(fd, "shadow_other_users=%d\n", (int) this->shadowOtherUsers);
|
|
|
|
fprintf(fd, "show_thread_names=%d\n", (int) this->showThreadNames);
|
2015-07-29 19:14:29 +00:00
|
|
|
fprintf(fd, "show_program_path=%d\n", (int) this->showProgramPath);
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "highlight_base_name=%d\n", (int) this->highlightBaseName);
|
|
|
|
fprintf(fd, "highlight_megabytes=%d\n", (int) this->highlightMegabytes);
|
|
|
|
fprintf(fd, "highlight_threads=%d\n", (int) this->highlightThreads);
|
2020-10-31 01:56:16 +00:00
|
|
|
fprintf(fd, "highlight_changes=%d\n", (int) this->highlightChanges);
|
|
|
|
fprintf(fd, "highlight_changes_delay_secs=%d\n", (int) this->highlightDelaySecs);
|
2020-10-17 10:54:45 +00:00
|
|
|
fprintf(fd, "find_comm_in_cmdline=%d\n", (int) this->findCommInCmdline);
|
|
|
|
fprintf(fd, "strip_exe_from_cmdline=%d\n", (int) this->stripExeFromCmdline);
|
|
|
|
fprintf(fd, "show_merged_command=%d\n", (int) this->showMergedCommand);
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "tree_view=%d\n", (int) this->treeView);
|
2020-12-17 22:08:56 +00:00
|
|
|
fprintf(fd, "tree_view_always_by_pid=%d\n", (int) this->treeViewAlwaysByPID);
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "header_margin=%d\n", (int) this->headerMargin);
|
|
|
|
fprintf(fd, "detailed_cpu_time=%d\n", (int) this->detailedCPUTime);
|
2019-12-19 22:30:45 +00:00
|
|
|
fprintf(fd, "cpu_count_from_one=%d\n", (int) this->countCPUsFromOne);
|
2019-08-10 18:20:21 +00:00
|
|
|
fprintf(fd, "show_cpu_usage=%d\n", (int) this->showCPUUsage);
|
2019-08-10 04:34:48 +00:00
|
|
|
fprintf(fd, "show_cpu_frequency=%d\n", (int) this->showCPUFrequency);
|
2020-12-01 12:59:19 +00:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
2020-09-10 17:56:33 +00:00
|
|
|
fprintf(fd, "show_cpu_temperature=%d\n", (int) this->showCPUTemperature);
|
|
|
|
fprintf(fd, "degree_fahrenheit=%d\n", (int) this->degreeFahrenheit);
|
|
|
|
#endif
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "update_process_names=%d\n", (int) this->updateProcessNames);
|
|
|
|
fprintf(fd, "account_guest_in_cpu_meter=%d\n", (int) this->accountGuestInCPUMeter);
|
2006-03-04 18:16:49 +00:00
|
|
|
fprintf(fd, "color_scheme=%d\n", (int) this->colorScheme);
|
2019-07-12 19:41:09 +00:00
|
|
|
fprintf(fd, "enable_mouse=%d\n", (int) this->enableMouse);
|
2006-03-04 18:16:49 +00:00
|
|
|
fprintf(fd, "delay=%d\n", (int) this->delay);
|
2015-01-22 01:27:31 +00:00
|
|
|
fprintf(fd, "left_meters="); writeMeters(this, fd, 0);
|
|
|
|
fprintf(fd, "left_meter_modes="); writeMeterModes(this, fd, 0);
|
|
|
|
fprintf(fd, "right_meters="); writeMeters(this, fd, 1);
|
|
|
|
fprintf(fd, "right_meter_modes="); writeMeterModes(this, fd, 1);
|
2020-12-28 22:26:14 +00:00
|
|
|
fprintf(fd, "hide_function_bar=%d\n", (int) this->hideFunctionBar);
|
2020-08-26 00:15:00 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
|
|
|
fprintf(fd, "topology_affinity=%d\n", (int) this->topologyAffinity);
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
fclose(fd);
|
|
|
|
return true;
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2020-09-23 09:52:57 +00:00
|
|
|
Settings* Settings_new(int initialCpuCount) {
|
2016-02-02 14:53:02 +00:00
|
|
|
Settings* this = xCalloc(1, sizeof(Settings));
|
2015-01-22 01:27:31 +00:00
|
|
|
|
|
|
|
this->sortKey = PERCENT_CPU;
|
2020-12-18 14:03:31 +00:00
|
|
|
this->treeSortKey = PID;
|
2015-01-22 01:27:31 +00:00
|
|
|
this->direction = 1;
|
2020-12-18 14:03:31 +00:00
|
|
|
this->treeDirection = 1;
|
2015-01-22 01:27:31 +00:00
|
|
|
this->shadowOtherUsers = false;
|
|
|
|
this->showThreadNames = false;
|
|
|
|
this->hideKernelThreads = false;
|
|
|
|
this->hideUserlandThreads = false;
|
|
|
|
this->treeView = false;
|
|
|
|
this->highlightBaseName = false;
|
|
|
|
this->highlightMegabytes = false;
|
|
|
|
this->detailedCPUTime = false;
|
2019-12-19 22:30:45 +00:00
|
|
|
this->countCPUsFromOne = false;
|
2019-08-10 18:20:21 +00:00
|
|
|
this->showCPUUsage = true;
|
2019-08-10 04:34:48 +00:00
|
|
|
this->showCPUFrequency = false;
|
2020-12-01 12:59:19 +00:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
2020-09-10 17:56:33 +00:00
|
|
|
this->showCPUTemperature = false;
|
|
|
|
this->degreeFahrenheit = false;
|
|
|
|
#endif
|
2015-01-22 01:27:31 +00:00
|
|
|
this->updateProcessNames = false;
|
2015-08-12 20:24:41 +00:00
|
|
|
this->showProgramPath = true;
|
2016-01-31 11:07:48 +00:00
|
|
|
this->highlightThreads = true;
|
2020-11-01 00:36:53 +00:00
|
|
|
this->highlightChanges = false;
|
2020-10-31 01:56:16 +00:00
|
|
|
this->highlightDelaySecs = DEFAULT_HIGHLIGHT_SECS;
|
2020-10-17 10:54:45 +00:00
|
|
|
this->findCommInCmdline = true;
|
|
|
|
this->stripExeFromCmdline = true;
|
|
|
|
this->showMergedCommand = false;
|
2020-12-28 22:26:14 +00:00
|
|
|
this->hideFunctionBar = 0;
|
2020-08-26 00:15:00 +00:00
|
|
|
#ifdef HAVE_LIBHWLOC
|
|
|
|
this->topologyAffinity = false;
|
|
|
|
#endif
|
2020-12-15 18:44:48 +00:00
|
|
|
this->fields = xCalloc(LAST_PROCESSFIELD + 1, sizeof(ProcessField));
|
2015-01-22 01:27:31 +00:00
|
|
|
// TODO: turn 'fields' into a Vector,
|
|
|
|
// (and ProcessFields into proper objects).
|
|
|
|
this->flags = 0;
|
2020-12-19 17:10:03 +00:00
|
|
|
const ProcessField* defaults = Platform_defaultFields;
|
2015-01-22 01:27:31 +00:00
|
|
|
for (int i = 0; defaults[i]; i++) {
|
|
|
|
this->fields[i] = defaults[i];
|
|
|
|
this->flags |= Process_fields[defaults[i]].flags;
|
|
|
|
}
|
|
|
|
|
2011-12-25 20:22:41 +00:00
|
|
|
char* legacyDotfile = NULL;
|
2021-01-05 22:42:55 +00:00
|
|
|
const char* rcfile = getenv("HTOPRC");
|
2011-12-25 20:22:41 +00:00
|
|
|
if (rcfile) {
|
2016-02-02 14:53:02 +00:00
|
|
|
this->filename = xStrdup(rcfile);
|
2011-12-25 20:22:41 +00:00
|
|
|
} else {
|
|
|
|
const char* home = getenv("HOME");
|
2020-11-01 00:09:51 +00:00
|
|
|
if (!home)
|
|
|
|
home = "";
|
|
|
|
|
2011-12-25 20:22:41 +00:00
|
|
|
const char* xdgConfigHome = getenv("XDG_CONFIG_HOME");
|
|
|
|
char* configDir = NULL;
|
|
|
|
char* htopDir = NULL;
|
|
|
|
if (xdgConfigHome) {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->filename = String_cat(xdgConfigHome, "/htop/htoprc");
|
2016-02-02 14:53:02 +00:00
|
|
|
configDir = xStrdup(xdgConfigHome);
|
2011-12-25 20:22:41 +00:00
|
|
|
htopDir = String_cat(xdgConfigHome, "/htop");
|
|
|
|
} else {
|
2015-01-22 01:27:31 +00:00
|
|
|
this->filename = String_cat(home, "/.config/htop/htoprc");
|
2011-12-25 20:22:41 +00:00
|
|
|
configDir = String_cat(home, "/.config");
|
|
|
|
htopDir = String_cat(home, "/.config/htop");
|
|
|
|
}
|
|
|
|
legacyDotfile = String_cat(home, "/.htoprc");
|
2017-07-26 18:40:55 +00:00
|
|
|
CRT_dropPrivileges();
|
2014-04-22 23:35:57 +00:00
|
|
|
(void) mkdir(configDir, 0700);
|
|
|
|
(void) mkdir(htopDir, 0700);
|
2011-12-25 20:22:41 +00:00
|
|
|
free(htopDir);
|
|
|
|
free(configDir);
|
2012-03-05 11:12:58 +00:00
|
|
|
struct stat st;
|
2018-02-18 23:42:17 +00:00
|
|
|
int err = lstat(legacyDotfile, &st);
|
|
|
|
if (err || S_ISLNK(st.st_mode)) {
|
2011-12-25 20:22:41 +00:00
|
|
|
free(legacyDotfile);
|
|
|
|
legacyDotfile = NULL;
|
|
|
|
}
|
2017-07-26 18:40:55 +00:00
|
|
|
CRT_restorePrivileges();
|
2011-12-25 20:22:41 +00:00
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
this->colorScheme = 0;
|
2019-07-12 19:41:09 +00:00
|
|
|
this->enableMouse = true;
|
2008-03-09 08:58:38 +00:00
|
|
|
this->changed = false;
|
|
|
|
this->delay = DEFAULT_DELAY;
|
2018-02-18 23:42:17 +00:00
|
|
|
bool ok = false;
|
|
|
|
if (legacyDotfile) {
|
2020-09-23 09:52:57 +00:00
|
|
|
ok = Settings_read(this, legacyDotfile, initialCpuCount);
|
2018-02-18 23:42:17 +00:00
|
|
|
if (ok) {
|
2011-12-25 20:22:41 +00:00
|
|
|
// Transition to new location and delete old configuration file
|
2020-11-01 00:09:51 +00:00
|
|
|
if (Settings_write(this)) {
|
2011-12-25 20:22:41 +00:00
|
|
|
unlink(legacyDotfile);
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2011-12-25 20:22:41 +00:00
|
|
|
}
|
2018-02-18 23:42:17 +00:00
|
|
|
free(legacyDotfile);
|
|
|
|
}
|
|
|
|
if (!ok) {
|
2020-09-23 09:52:57 +00:00
|
|
|
ok = Settings_read(this, this->filename, initialCpuCount);
|
2018-02-18 23:42:17 +00:00
|
|
|
}
|
|
|
|
if (!ok) {
|
2008-03-09 08:58:38 +00:00
|
|
|
this->changed = true;
|
|
|
|
// TODO: how to get SYSCONFDIR correctly through Autoconf?
|
|
|
|
char* systemSettings = String_cat(SYSCONFDIR, "/htoprc");
|
2020-09-23 09:52:57 +00:00
|
|
|
ok = Settings_read(this, systemSettings, initialCpuCount);
|
2008-03-09 08:58:38 +00:00
|
|
|
free(systemSettings);
|
|
|
|
}
|
2018-02-18 23:42:17 +00:00
|
|
|
if (!ok) {
|
2020-09-23 09:52:57 +00:00
|
|
|
Settings_defaultMeters(this, initialCpuCount);
|
2018-02-18 23:42:17 +00:00
|
|
|
this->hideKernelThreads = true;
|
|
|
|
this->highlightMegabytes = true;
|
|
|
|
this->highlightThreads = true;
|
2020-10-17 10:54:45 +00:00
|
|
|
this->findCommInCmdline = true;
|
|
|
|
this->stripExeFromCmdline = true;
|
|
|
|
this->showMergedCommand = false;
|
2018-02-18 23:42:17 +00:00
|
|
|
this->headerMargin = true;
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
return this;
|
|
|
|
}
|
2015-01-22 01:27:31 +00:00
|
|
|
|
|
|
|
void Settings_invertSortOrder(Settings* this) {
|
2020-12-18 14:03:31 +00:00
|
|
|
int* attr = (this->treeView) ? &(this->treeDirection) : &(this->direction);
|
|
|
|
*attr = (*attr == 1) ? -1 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Settings_setSortKey(Settings* this, ProcessField sortKey) {
|
|
|
|
if (this->treeViewAlwaysByPID || !this->treeView) {
|
|
|
|
this->sortKey = sortKey;
|
2015-01-22 01:27:31 +00:00
|
|
|
this->direction = 1;
|
2020-12-18 14:03:31 +00:00
|
|
|
this->treeView = false;
|
|
|
|
} else {
|
|
|
|
this->treeSortKey = sortKey;
|
|
|
|
this->treeDirection = 1;
|
2020-11-01 00:09:51 +00:00
|
|
|
}
|
2015-01-22 01:27:31 +00:00
|
|
|
}
|