htop/UptimeMeter.c

61 lines
1.5 KiB
C
Raw Normal View History

2006-03-04 18:16:49 +00:00
/*
2011-12-26 21:35:57 +00:00
htop - UptimeMeter.c
2011-05-26 16:35:07 +00:00
(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 "UptimeMeter.h"
2006-03-04 18:16:49 +00:00
#include "CRT.h"
#include "Object.h"
#include "Platform.h"
2020-10-14 18:21:09 +00:00
#include "XUtils.h"
2006-03-04 18:16:49 +00:00
2011-12-26 21:35:57 +00:00
static const int UptimeMeter_attributes[] = {
UPTIME
};
2020-10-06 11:13:16 +00:00
static void UptimeMeter_updateValues(Meter* this) {
2014-11-27 21:41:14 +00:00
int totalseconds = Platform_getUptime();
if (totalseconds <= 0) {
2020-10-06 11:13:16 +00:00
xSnprintf(this->txtBuffer, sizeof(this->txtBuffer), "(unknown)");
2014-11-27 21:41:14 +00:00
return;
2011-09-08 02:54:02 +00:00
}
int seconds = totalseconds % 60;
2020-10-31 22:28:02 +00:00
int minutes = (totalseconds / 60) % 60;
int hours = (totalseconds / 3600) % 24;
int days = (totalseconds / 86400);
this->values[0] = days;
if (days > this->total) {
this->total = days;
2006-03-04 18:16:49 +00:00
}
char daysbuf[32];
if (days > 100) {
xSnprintf(daysbuf, sizeof(daysbuf), "%d days(!), ", days);
} else if (days > 1) {
xSnprintf(daysbuf, sizeof(daysbuf), "%d days, ", days);
} else if (days == 1) {
xSnprintf(daysbuf, sizeof(daysbuf), "1 day, ");
} else {
daysbuf[0] = '\0';
2006-03-04 18:16:49 +00:00
}
2020-10-06 11:13:16 +00:00
xSnprintf(this->txtBuffer, sizeof(this->txtBuffer), "%s%02d:%02d:%02d", daysbuf, hours, minutes, seconds);
2006-03-04 18:16:49 +00:00
}
2020-10-05 11:19:50 +00:00
const MeterClass UptimeMeter_class = {
.super = {
.extends = Class(Meter),
.delete = Meter_delete
},
.updateValues = UptimeMeter_updateValues,
.defaultMode = TEXT_METERMODE,
.maxItems = 1,
.total = 100.0,
.attributes = UptimeMeter_attributes,
.name = "Uptime",
.uiName = "Uptime",
.caption = "Uptime: "
};