2021-01-27 12:45:48 +03:00
|
|
|
/*
|
|
|
|
htop - SysArchMeter.c
|
|
|
|
(C) 2021 htop dev team
|
2021-09-22 12:33:00 +03:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2021-01-27 12:45:48 +03:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
2021-04-29 18:12:43 +03:00
|
|
|
|
2021-01-27 12:45:48 +03:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include "SysArchMeter.h"
|
|
|
|
|
2021-04-29 18:12:43 +03:00
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "CRT.h"
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Platform.h"
|
2021-01-27 12:45:48 +03:00
|
|
|
#include "XUtils.h"
|
|
|
|
|
|
|
|
|
|
|
|
static const int SysArchMeter_attributes[] = {HOSTNAME};
|
|
|
|
|
2020-10-06 14:13:16 +03:00
|
|
|
static void SysArchMeter_updateValues(Meter* this) {
|
2021-03-02 07:58:11 +03:00
|
|
|
static char* string;
|
2021-02-16 14:15:04 +03:00
|
|
|
|
2021-03-02 07:58:11 +03:00
|
|
|
if (string == NULL)
|
|
|
|
Platform_getRelease(&string);
|
2021-01-27 12:45:48 +03:00
|
|
|
|
2020-10-06 14:13:16 +03:00
|
|
|
String_safeStrncpy(this->txtBuffer, string, sizeof(this->txtBuffer));
|
2021-01-27 12:45:48 +03: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: ",
|
|
|
|
};
|