2014-11-27 18:27:34 +00:00
|
|
|
/*
|
2014-11-27 21:33:37 +00:00
|
|
|
htop - freebsd/Platform.c
|
2014-11-27 18:27:34 +00:00
|
|
|
(C) 2014 Hisham H. Muhammad
|
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Platform.h"
|
2014-11-27 21:33:37 +00:00
|
|
|
#include "Meter.h"
|
|
|
|
#include "CPUMeter.h"
|
|
|
|
#include "MemoryMeter.h"
|
|
|
|
#include "SwapMeter.h"
|
|
|
|
#include "TasksMeter.h"
|
|
|
|
#include "LoadAverageMeter.h"
|
|
|
|
#include "UptimeMeter.h"
|
|
|
|
#include "ClockMeter.h"
|
|
|
|
#include "HostnameMeter.h"
|
2019-07-06 04:27:49 +00:00
|
|
|
#include "zfs/ZfsArcMeter.h"
|
2019-09-03 18:26:02 +00:00
|
|
|
#include "zfs/ZfsCompressedArcMeter.h"
|
2015-03-16 06:13:42 +00:00
|
|
|
#include "FreeBSDProcess.h"
|
2015-12-12 23:21:02 +00:00
|
|
|
#include "FreeBSDProcessList.h"
|
2014-11-27 18:27:34 +00:00
|
|
|
|
2014-11-27 21:44:20 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/time.h>
|
2014-11-27 22:03:29 +00:00
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <vm/vm_param.h>
|
2014-11-27 21:44:20 +00:00
|
|
|
#include <time.h>
|
2016-02-12 13:37:24 +00:00
|
|
|
#include <math.h>
|
2014-11-27 21:44:20 +00:00
|
|
|
|
2014-11-27 18:27:34 +00:00
|
|
|
/*{
|
|
|
|
#include "Action.h"
|
2014-11-27 23:07:42 +00:00
|
|
|
#include "BatteryMeter.h"
|
2015-10-06 06:02:49 +00:00
|
|
|
#include "SignalsPanel.h"
|
2015-03-16 06:13:42 +00:00
|
|
|
|
|
|
|
extern ProcessFieldData Process_fields[];
|
|
|
|
|
2014-11-27 18:27:34 +00:00
|
|
|
}*/
|
|
|
|
|
Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses.
With the CLAMP macro replacing the combination of MIN and MAX, we will
have at least two advantages:
1. It's more obvious semantically.
2. There are no more mixes of confusing uses like MIN(MAX(a,b),c) and
MAX(MIN(a,b),c) and MIN(a,MAX(b,c)) appearing everywhere. We unify
the 'clamping' with a single macro.
Note that the behavior of this CLAMP macro is different from
the combination `MAX(low,MIN(x,high))`.
* This CLAMP macro expands to two comparisons instead of three from
MAX and MIN combination. In theory, this makes the code slightly
smaller, in case that (low) or (high) or both are computed at
runtime, so that compilers cannot optimize them. (The third
comparison will matter if (low)>(high); see below.)
* CLAMP has a side effect, that if (low)>(high) it will produce weird
results. Unlike MIN & MAX which will force either (low) or (high) to
win. No assertion of ((low)<=(high)) is done in this macro, for now.
This CLAMP macro is implemented like described in glib
<http://developer.gnome.org/glib/stable/glib-Standard-Macros.html>
and does not handle weird uses like CLAMP(a++, low++, high--) .
2016-01-15 12:26:01 +00:00
|
|
|
#ifndef CLAMP
|
|
|
|
#define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
|
|
|
|
#endif
|
|
|
|
|
2015-03-16 06:13:42 +00:00
|
|
|
ProcessField Platform_defaultFields[] = { PID, USER, PRIORITY, NICE, M_SIZE, M_RESIDENT, STATE, PERCENT_CPU, PERCENT_MEM, TIME, COMM, 0 };
|
|
|
|
|
|
|
|
int Platform_numberOfFields = LAST_PROCESSFIELD;
|
|
|
|
|
2016-08-30 12:41:17 +00:00
|
|
|
const SignalItem Platform_signals[] = {
|
2015-10-06 06:02:49 +00:00
|
|
|
{ .name = " 0 Cancel", .number = 0 },
|
|
|
|
{ .name = " 1 SIGHUP", .number = 1 },
|
|
|
|
{ .name = " 2 SIGINT", .number = 2 },
|
|
|
|
{ .name = " 3 SIGQUIT", .number = 3 },
|
|
|
|
{ .name = " 4 SIGILL", .number = 4 },
|
|
|
|
{ .name = " 5 SIGTRAP", .number = 5 },
|
|
|
|
{ .name = " 6 SIGABRT", .number = 6 },
|
|
|
|
{ .name = " 7 SIGEMT", .number = 7 },
|
|
|
|
{ .name = " 8 SIGFPE", .number = 8 },
|
|
|
|
{ .name = " 9 SIGKILL", .number = 9 },
|
|
|
|
{ .name = "10 SIGBUS", .number = 10 },
|
|
|
|
{ .name = "11 SIGSEGV", .number = 11 },
|
|
|
|
{ .name = "12 SIGSYS", .number = 12 },
|
|
|
|
{ .name = "13 SIGPIPE", .number = 13 },
|
|
|
|
{ .name = "14 SIGALRM", .number = 14 },
|
|
|
|
{ .name = "15 SIGTERM", .number = 15 },
|
|
|
|
{ .name = "16 SIGURG", .number = 16 },
|
|
|
|
{ .name = "17 SIGSTOP", .number = 17 },
|
|
|
|
{ .name = "18 SIGTSTP", .number = 18 },
|
|
|
|
{ .name = "19 SIGCONT", .number = 19 },
|
|
|
|
{ .name = "20 SIGCHLD", .number = 20 },
|
|
|
|
{ .name = "21 SIGTTIN", .number = 21 },
|
|
|
|
{ .name = "22 SIGTTOU", .number = 22 },
|
|
|
|
{ .name = "23 SIGIO", .number = 23 },
|
|
|
|
{ .name = "24 SIGXCPU", .number = 24 },
|
|
|
|
{ .name = "25 SIGXFSZ", .number = 25 },
|
|
|
|
{ .name = "26 SIGVTALRM", .number = 26 },
|
|
|
|
{ .name = "27 SIGPROF", .number = 27 },
|
|
|
|
{ .name = "28 SIGWINCH", .number = 28 },
|
|
|
|
{ .name = "29 SIGINFO", .number = 29 },
|
|
|
|
{ .name = "30 SIGUSR1", .number = 30 },
|
|
|
|
{ .name = "31 SIGUSR2", .number = 31 },
|
|
|
|
{ .name = "32 SIGTHR", .number = 32 },
|
|
|
|
{ .name = "33 SIGLIBRT", .number = 33 },
|
|
|
|
};
|
|
|
|
|
2016-08-30 12:41:17 +00:00
|
|
|
const unsigned int Platform_numberOfSignals = sizeof(Platform_signals)/sizeof(SignalItem);
|
2015-10-06 06:02:49 +00:00
|
|
|
|
2014-11-27 18:27:34 +00:00
|
|
|
void Platform_setBindings(Htop_Action* keys) {
|
|
|
|
(void) keys;
|
|
|
|
}
|
|
|
|
|
2014-11-27 21:33:37 +00:00
|
|
|
MeterClass* Platform_meterTypes[] = {
|
|
|
|
&CPUMeter_class,
|
|
|
|
&ClockMeter_class,
|
|
|
|
&LoadAverageMeter_class,
|
|
|
|
&LoadMeter_class,
|
|
|
|
&MemoryMeter_class,
|
|
|
|
&SwapMeter_class,
|
|
|
|
&TasksMeter_class,
|
|
|
|
&UptimeMeter_class,
|
|
|
|
&BatteryMeter_class,
|
|
|
|
&HostnameMeter_class,
|
|
|
|
&AllCPUsMeter_class,
|
|
|
|
&AllCPUs2Meter_class,
|
|
|
|
&LeftCPUsMeter_class,
|
|
|
|
&RightCPUsMeter_class,
|
|
|
|
&LeftCPUs2Meter_class,
|
|
|
|
&RightCPUs2Meter_class,
|
|
|
|
&BlankMeter_class,
|
2019-07-06 04:27:49 +00:00
|
|
|
&ZfsArcMeter_class,
|
2019-09-03 18:26:02 +00:00
|
|
|
&ZfsCompressedArcMeter_class,
|
2014-11-27 21:33:37 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2014-11-27 21:44:20 +00:00
|
|
|
int Platform_getUptime() {
|
|
|
|
struct timeval bootTime, currTime;
|
|
|
|
int mib[2] = { CTL_KERN, KERN_BOOTTIME };
|
|
|
|
size_t size = sizeof(bootTime);
|
2015-12-12 23:21:02 +00:00
|
|
|
|
2014-11-27 21:44:20 +00:00
|
|
|
int err = sysctl(mib, 2, &bootTime, &size, NULL, 0);
|
|
|
|
if (err) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
gettimeofday(&currTime, NULL);
|
|
|
|
|
|
|
|
return (int) difftime(currTime.tv_sec, bootTime.tv_sec);
|
|
|
|
}
|
2014-11-27 22:03:29 +00:00
|
|
|
|
|
|
|
void Platform_getLoadAverage(double* one, double* five, double* fifteen) {
|
|
|
|
struct loadavg loadAverage;
|
|
|
|
int mib[2] = { CTL_VM, VM_LOADAVG };
|
|
|
|
size_t size = sizeof(loadAverage);
|
2015-12-12 23:21:02 +00:00
|
|
|
|
2014-11-27 22:03:29 +00:00
|
|
|
int err = sysctl(mib, 2, &loadAverage, &size, NULL, 0);
|
|
|
|
if (err) {
|
|
|
|
*one = 0;
|
|
|
|
*five = 0;
|
|
|
|
*fifteen = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
*one = (double) loadAverage.ldavg[0] / loadAverage.fscale;
|
|
|
|
*five = (double) loadAverage.ldavg[1] / loadAverage.fscale;
|
|
|
|
*fifteen = (double) loadAverage.ldavg[2] / loadAverage.fscale;
|
|
|
|
}
|
2014-11-27 22:18:01 +00:00
|
|
|
|
|
|
|
int Platform_getMaxPid() {
|
|
|
|
int maxPid;
|
|
|
|
size_t size = sizeof(maxPid);
|
|
|
|
int err = sysctlbyname("kern.pid_max", &maxPid, &size, NULL, 0);
|
|
|
|
if (err) {
|
|
|
|
return 99999;
|
|
|
|
}
|
|
|
|
return maxPid;
|
|
|
|
}
|
2014-11-27 23:07:42 +00:00
|
|
|
|
2015-03-16 06:13:42 +00:00
|
|
|
double Platform_setCPUValues(Meter* this, int cpu) {
|
2015-12-12 23:21:02 +00:00
|
|
|
FreeBSDProcessList* fpl = (FreeBSDProcessList*) this->pl;
|
|
|
|
int cpus = this->pl->cpuCount;
|
|
|
|
CPUData* cpuData;
|
|
|
|
|
|
|
|
if (cpus == 1) {
|
|
|
|
// single CPU box has everything in fpl->cpus[0]
|
|
|
|
cpuData = &(fpl->cpus[0]);
|
|
|
|
} else {
|
|
|
|
cpuData = &(fpl->cpus[cpu]);
|
|
|
|
}
|
|
|
|
|
|
|
|
double percent;
|
|
|
|
double* v = this->values;
|
|
|
|
|
2016-04-28 19:42:18 +00:00
|
|
|
v[CPU_METER_NICE] = cpuData->nicePercent;
|
|
|
|
v[CPU_METER_NORMAL] = cpuData->userPercent;
|
2015-12-12 23:21:02 +00:00
|
|
|
if (this->pl->settings->detailedCPUTime) {
|
2016-04-28 19:42:18 +00:00
|
|
|
v[CPU_METER_KERNEL] = cpuData->systemPercent;
|
|
|
|
v[CPU_METER_IRQ] = cpuData->irqPercent;
|
2015-12-12 23:21:02 +00:00
|
|
|
Meter_setItems(this, 4);
|
|
|
|
percent = v[0]+v[1]+v[2]+v[3];
|
|
|
|
} else {
|
2016-04-28 19:42:18 +00:00
|
|
|
v[2] = cpuData->systemAllPercent;
|
2015-12-12 23:21:02 +00:00
|
|
|
Meter_setItems(this, 3);
|
|
|
|
percent = v[0]+v[1]+v[2];
|
|
|
|
}
|
|
|
|
|
Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses.
With the CLAMP macro replacing the combination of MIN and MAX, we will
have at least two advantages:
1. It's more obvious semantically.
2. There are no more mixes of confusing uses like MIN(MAX(a,b),c) and
MAX(MIN(a,b),c) and MIN(a,MAX(b,c)) appearing everywhere. We unify
the 'clamping' with a single macro.
Note that the behavior of this CLAMP macro is different from
the combination `MAX(low,MIN(x,high))`.
* This CLAMP macro expands to two comparisons instead of three from
MAX and MIN combination. In theory, this makes the code slightly
smaller, in case that (low) or (high) or both are computed at
runtime, so that compilers cannot optimize them. (The third
comparison will matter if (low)>(high); see below.)
* CLAMP has a side effect, that if (low)>(high) it will produce weird
results. Unlike MIN & MAX which will force either (low) or (high) to
win. No assertion of ((low)<=(high)) is done in this macro, for now.
This CLAMP macro is implemented like described in glib
<http://developer.gnome.org/glib/stable/glib-Standard-Macros.html>
and does not handle weird uses like CLAMP(a++, low++, high--) .
2016-01-15 12:26:01 +00:00
|
|
|
percent = CLAMP(percent, 0.0, 100.0);
|
2015-12-12 23:21:02 +00:00
|
|
|
if (isnan(percent)) percent = 0.0;
|
2019-08-11 00:17:45 +00:00
|
|
|
|
|
|
|
v[CPU_METER_FREQUENCY] = -1;
|
|
|
|
|
2015-12-12 23:21:02 +00:00
|
|
|
return percent;
|
2015-03-16 06:13:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Platform_setMemoryValues(Meter* this) {
|
|
|
|
// TODO
|
2015-12-13 03:11:35 +00:00
|
|
|
ProcessList* pl = (ProcessList*) this->pl;
|
|
|
|
|
|
|
|
this->total = pl->totalMem;
|
|
|
|
this->values[0] = pl->usedMem;
|
|
|
|
this->values[1] = pl->buffersMem;
|
|
|
|
this->values[2] = pl->cachedMem;
|
2015-03-16 06:13:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Platform_setSwapValues(Meter* this) {
|
2015-12-13 03:16:06 +00:00
|
|
|
ProcessList* pl = (ProcessList*) this->pl;
|
|
|
|
this->total = pl->totalSwap;
|
|
|
|
this->values[0] = pl->usedSwap;
|
2014-11-27 23:07:42 +00:00
|
|
|
}
|
|
|
|
|
2019-07-06 04:27:49 +00:00
|
|
|
void Platform_setZfsArcValues(Meter* this) {
|
|
|
|
FreeBSDProcessList* fpl = (FreeBSDProcessList*) this->pl;
|
|
|
|
|
2019-09-03 18:21:33 +00:00
|
|
|
ZfsArcMeter_readStats(this, &(fpl->zfs));
|
2019-07-06 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2019-09-03 18:26:02 +00:00
|
|
|
void Platform_setZfsCompressedArcValues(Meter* this) {
|
|
|
|
FreeBSDProcessList* fpl = (FreeBSDProcessList*) this->pl;
|
|
|
|
|
|
|
|
ZfsCompressedArcMeter_readStats(this, &(fpl->zfs));
|
|
|
|
}
|
|
|
|
|
2015-03-16 06:13:42 +00:00
|
|
|
void Platform_setTasksValues(Meter* this) {
|
|
|
|
// TODO
|
|
|
|
}
|
2015-12-03 21:16:10 +00:00
|
|
|
|
|
|
|
char* Platform_getProcessEnv(pid_t pid) {
|
|
|
|
// TODO
|
|
|
|
return NULL;
|
|
|
|
}
|