2021-01-27 09:45:48 +00:00
|
|
|
/*
|
|
|
|
htop - SysArchMeter.c
|
|
|
|
(C) 2021 htop dev team
|
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
2021-04-29 15:12:43 +00:00
|
|
|
|
2021-01-27 09:45:48 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include "SysArchMeter.h"
|
|
|
|
|
2021-04-29 15:12:43 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "CRT.h"
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Platform.h"
|
2021-01-27 09:45:48 +00:00
|
|
|
#include "XUtils.h"
|
|
|
|
|
|
|
|
|
|
|
|
static const int SysArchMeter_attributes[] = {HOSTNAME};
|
|
|
|
|
2020-10-06 11:13:16 +00:00
|
|
|
static void SysArchMeter_updateValues(Meter* this) {
|
2021-03-02 04:58:11 +00:00
|
|
|
static char* string;
|
2021-02-16 11:15:04 +00:00
|
|
|
|
2021-03-02 04:58:11 +00:00
|
|
|
if (string == NULL)
|
|
|
|
Platform_getRelease(&string);
|
2021-01-27 09:45:48 +00:00
|
|
|
|
2020-10-06 11:13:16 +00:00
|
|
|
String_safeStrncpy(this->txtBuffer, string, sizeof(this->txtBuffer));
|
2021-01-27 09:45:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const MeterClass SysArchMeter_class = {
|
|
|
|
.super = {
|
|
|
|
.extends = Class(Meter),
|
|
|
|
.delete = Meter_delete
|
|
|
|
},
|
|
|
|
.updateValues = SysArchMeter_updateValues,
|
|
|
|
.defaultMode = TEXT_METERMODE,
|
|
|
|
.maxItems = 0,
|
|
|
|
.total = 100.0,
|
|
|
|
.attributes = SysArchMeter_attributes,
|
|
|
|
.name = "System",
|
|
|
|
.uiName = "System",
|
|
|
|
.caption = "System: ",
|
|
|
|
};
|