2019-07-06 04:27:49 +00:00
|
|
|
/*
|
|
|
|
htop - ZfsArcMeter.c
|
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ZfsArcMeter.h"
|
2019-09-03 18:21:33 +00:00
|
|
|
#include "ZfsArcStats.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
|
|
|
|
|
|
|
|
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-11-24 17:31:03 +00:00
|
|
|
static void ZfsArcMeter_updateValues(Meter* this, char* buffer, size_t size) {
|
2019-07-06 04:27:49 +00:00
|
|
|
int written;
|
|
|
|
Platform_setZfsArcValues(this);
|
|
|
|
|
|
|
|
written = Meter_humanUnit(buffer, this->values[5], size);
|
|
|
|
buffer += written;
|
|
|
|
if ((size -= written) > 0) {
|
|
|
|
*buffer++ = '/';
|
|
|
|
size--;
|
|
|
|
Meter_humanUnit(buffer, this->total, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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];
|
2019-07-07 02:37:02 +00:00
|
|
|
Meter_humanUnit(buffer, this->total, 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
Meter_humanUnit(buffer, this->values[5], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " Used:");
|
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
Meter_humanUnit(buffer, this->values[0], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " MFU:");
|
|
|
|
RichString_append(out, CRT_colors[ZFS_MFU], buffer);
|
|
|
|
Meter_humanUnit(buffer, this->values[1], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " MRU:");
|
|
|
|
RichString_append(out, CRT_colors[ZFS_MRU], buffer);
|
|
|
|
Meter_humanUnit(buffer, this->values[2], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " Anon:");
|
|
|
|
RichString_append(out, CRT_colors[ZFS_ANON], buffer);
|
|
|
|
Meter_humanUnit(buffer, this->values[3], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " Hdr:");
|
|
|
|
RichString_append(out, CRT_colors[ZFS_HEADER], buffer);
|
|
|
|
Meter_humanUnit(buffer, this->values[4], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " Oth:");
|
|
|
|
RichString_append(out, CRT_colors[ZFS_OTHER], buffer);
|
|
|
|
} else {
|
|
|
|
RichString_write(out, CRT_colors[METER_TEXT], " ");
|
|
|
|
RichString_append(out, CRT_colors[FAILED_SEARCH], "Unavailable");
|
|
|
|
}
|
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
|
|
|
};
|