2019-07-06 04:27:49 +00:00
|
|
|
/*
|
|
|
|
htop - ZfsArcMeter.c
|
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2021-09-22 09:33:00 +00:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2019-07-06 04:27:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2021-04-29 18:13:36 +00:00
|
|
|
#include "zfs/ZfsArcMeter.h"
|
2019-07-06 04:27:49 +00:00
|
|
|
|
2021-04-29 15:12:43 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2019-07-06 04:27:49 +00:00
|
|
|
#include "CRT.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
2019-07-06 04:27:49 +00:00
|
|
|
#include "Platform.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "RichString.h"
|
2019-07-06 04:27:49 +00:00
|
|
|
|
2021-04-29 18:13:36 +00:00
|
|
|
#include "zfs/ZfsArcStats.h"
|
|
|
|
|
2019-07-06 04:27:49 +00:00
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
static const int ZfsArcMeter_attributes[] = {
|
2019-07-06 04:27:49 +00:00
|
|
|
ZFS_MFU, ZFS_MRU, ZFS_ANON, ZFS_HEADER, ZFS_OTHER
|
|
|
|
};
|
|
|
|
|
2020-10-21 19:25:50 +00:00
|
|
|
void ZfsArcMeter_readStats(Meter* this, const ZfsArcStats* stats) {
|
2019-09-03 18:21:33 +00:00
|
|
|
this->total = stats->max;
|
|
|
|
this->values[0] = stats->MFU;
|
|
|
|
this->values[1] = stats->MRU;
|
|
|
|
this->values[2] = stats->anon;
|
|
|
|
this->values[3] = stats->header;
|
|
|
|
this->values[4] = stats->other;
|
|
|
|
|
|
|
|
// "Hide" the last value so it can
|
|
|
|
// only be accessed by index and is not
|
|
|
|
// displayed by the Bar or Graph style
|
2020-10-04 15:55:08 +00:00
|
|
|
this->curItems = 5;
|
2019-09-03 18:21:33 +00:00
|
|
|
this->values[5] = stats->size;
|
|
|
|
}
|
|
|
|
|
2020-10-06 11:13:16 +00:00
|
|
|
static void ZfsArcMeter_updateValues(Meter* this) {
|
|
|
|
char* buffer = this->txtBuffer;
|
|
|
|
size_t size = sizeof(this->txtBuffer);
|
2019-07-06 04:27:49 +00:00
|
|
|
int written;
|
|
|
|
Platform_setZfsArcValues(this);
|
|
|
|
|
|
|
|
written = Meter_humanUnit(buffer, this->values[5], size);
|
2020-11-24 18:34:27 +00:00
|
|
|
METER_BUFFER_CHECK(buffer, size, written);
|
|
|
|
|
|
|
|
METER_BUFFER_APPEND_CHR(buffer, size, '/');
|
|
|
|
|
|
|
|
Meter_humanUnit(buffer, this->total, size);
|
2019-07-06 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2020-10-06 10:28:11 +00:00
|
|
|
static void ZfsArcMeter_display(const Object* cast, RichString* out) {
|
|
|
|
const Meter* this = (const Meter*)cast;
|
2019-07-06 04:27:49 +00:00
|
|
|
|
2019-07-07 02:37:02 +00:00
|
|
|
if (this->values[5] > 0) {
|
2020-11-21 23:59:00 +00:00
|
|
|
char buffer[50];
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->total, sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[5], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " Used:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[0], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " MFU:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[ZFS_MFU], buffer);
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[1], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " MRU:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[ZFS_MRU], buffer);
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[2], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " Anon:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[ZFS_ANON], buffer);
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[3], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " Hdr:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[ZFS_HEADER], buffer);
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[4], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " Oth:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[ZFS_OTHER], buffer);
|
2019-07-07 02:37:02 +00:00
|
|
|
} else {
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_writeAscii(out, CRT_colors[METER_TEXT], " ");
|
2021-02-09 19:25:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[FAILED_READ], "Unavailable");
|
2019-07-07 02:37:02 +00:00
|
|
|
}
|
2019-07-06 04:27:49 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
const MeterClass ZfsArcMeter_class = {
|
2019-07-06 04:27:49 +00:00
|
|
|
.super = {
|
|
|
|
.extends = Class(Meter),
|
|
|
|
.delete = Meter_delete,
|
|
|
|
.display = ZfsArcMeter_display,
|
|
|
|
},
|
2020-08-21 08:37:33 +00:00
|
|
|
.updateValues = ZfsArcMeter_updateValues,
|
2019-07-06 04:27:49 +00:00
|
|
|
.defaultMode = TEXT_METERMODE,
|
|
|
|
.maxItems = 6,
|
|
|
|
.total = 100.0,
|
|
|
|
.attributes = ZfsArcMeter_attributes,
|
|
|
|
.name = "ZFSARC",
|
|
|
|
.uiName = "ZFS ARC",
|
2020-08-28 05:02:35 +00:00
|
|
|
.caption = "ARC: "
|
2019-07-06 04:27:49 +00:00
|
|
|
};
|