htop/DateMeter.c

53 lines
1.2 KiB
C
Raw Normal View History

/*
htop - DateMeter.c
(C) 2004-2020 Hisham H. Muhammad, Michael Schönitzer
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/
#include "config.h" // IWYU pragma: keep
#include "DateMeter.h"
#include <time.h>
2021-04-29 15:12:43 +00:00
#include <sys/time.h>
#include "CRT.h"
#include "Object.h"
2021-04-29 15:12:43 +00:00
#include "ProcessList.h"
2020-10-05 11:54:33 +00:00
static const int DateMeter_attributes[] = {
DATE
};
2020-10-06 11:13:16 +00:00
static void DateMeter_updateValues(Meter* this) {
const ProcessList* pl = this->pl;
struct tm result;
const struct tm* lt = localtime_r(&pl->realtime.tv_sec, &result);
this->values[0] = lt->tm_yday;
int year = lt->tm_year + 1900;
2020-10-31 22:28:02 +00:00
if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) {
this->total = 366;
2021-02-28 21:47:45 +00:00
} else {
this->total = 365;
}
2020-10-06 11:13:16 +00:00
strftime(this->txtBuffer, sizeof(this->txtBuffer), "%F", lt);
}
2020-10-05 11:19:50 +00:00
const MeterClass DateMeter_class = {
.super = {
.extends = Class(Meter),
.delete = Meter_delete
},
.updateValues = DateMeter_updateValues,
.defaultMode = TEXT_METERMODE,
.maxItems = 1,
.total = 365,
.attributes = DateMeter_attributes,
.name = "Date",
.uiName = "Date",
.caption = "Date: ",
};