htop/ClockMeter.c

47 lines
1.0 KiB
C
Raw Normal View History

2006-03-04 21:16:49 +03:00
/*
2011-12-27 01:35:57 +04:00
htop - ClockMeter.c
2011-05-26 20:35:07 +04:00
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
2006-03-04 21:16:49 +03:00
in the source distribution for its full text.
*/
#include "config.h" // IWYU pragma: keep
2011-12-27 01:35:57 +04:00
#include "ClockMeter.h"
2006-03-04 21:16:49 +03:00
#include <time.h>
2021-04-29 18:12:43 +03:00
#include <sys/time.h>
2006-03-04 21:16:49 +03:00
#include "CRT.h"
#include "Object.h"
2021-04-29 18:12:43 +03:00
#include "ProcessList.h"
2006-03-04 21:16:49 +03:00
static const int ClockMeter_attributes[] = {
CLOCK
};
2020-10-06 14:13:16 +03:00
static void ClockMeter_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_hour * 60 + lt->tm_min;
2020-10-06 14:13:16 +03:00
strftime(this->txtBuffer, sizeof(this->txtBuffer), "%H:%M:%S", lt);
}
2020-10-05 14:19:50 +03:00
const MeterClass ClockMeter_class = {
.super = {
.extends = Class(Meter),
.delete = Meter_delete
},
.updateValues = ClockMeter_updateValues,
.defaultMode = TEXT_METERMODE,
.maxItems = 1,
2015-08-28 11:13:11 +03:00
.total = 1440, /* 24*60 */
.attributes = ClockMeter_attributes,
.name = "Clock",
.uiName = "Clock",
.caption = "Time: ",
2006-03-04 21:16:49 +03:00
};