2019-09-03 18:26:02 +00:00
|
|
|
/*
|
|
|
|
htop - ZfsCompressedArcMeter.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-09-03 18:26:02 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ZfsCompressedArcMeter.h"
|
|
|
|
|
|
|
|
#include "CRT.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Meter.h"
|
|
|
|
#include "Object.h"
|
2019-09-03 18:26:02 +00:00
|
|
|
#include "Platform.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "RichString.h"
|
2020-10-14 18:21:09 +00:00
|
|
|
#include "XUtils.h"
|
2019-09-03 18:26:02 +00:00
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "zfs/ZfsArcStats.h"
|
2019-09-03 18:26:02 +00:00
|
|
|
|
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
static const int ZfsCompressedArcMeter_attributes[] = {
|
2019-09-03 18:26:02 +00:00
|
|
|
ZFS_COMPRESSED
|
|
|
|
};
|
|
|
|
|
2020-10-21 19:25:50 +00:00
|
|
|
void ZfsCompressedArcMeter_readStats(Meter* this, const ZfsArcStats* stats) {
|
2019-09-03 18:26:02 +00:00
|
|
|
if ( stats->isCompressed ) {
|
|
|
|
this->total = stats->uncompressed;
|
|
|
|
this->values[0] = stats->compressed;
|
|
|
|
} else {
|
|
|
|
// For uncompressed ARC, report 1:1 ratio
|
|
|
|
this->total = stats->size;
|
|
|
|
this->values[0] = stats->size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-06 10:28:11 +00:00
|
|
|
static void ZfsCompressedArcMeter_printRatioString(const Meter* this, char* buffer, int size) {
|
2019-09-03 18:26:02 +00:00
|
|
|
xSnprintf(buffer, size, "%.2f:1", this->total/this->values[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ZfsCompressedArcMeter_updateValues(Meter* this, char* buffer, int size) {
|
|
|
|
Platform_setZfsCompressedArcValues(this);
|
|
|
|
|
|
|
|
ZfsCompressedArcMeter_printRatioString(this, buffer, size);
|
|
|
|
}
|
|
|
|
|
2020-10-06 10:28:11 +00:00
|
|
|
static void ZfsCompressedArcMeter_display(const Object* cast, RichString* out) {
|
2019-09-03 18:26:02 +00:00
|
|
|
char buffer[50];
|
2020-10-06 10:28:11 +00:00
|
|
|
const Meter* this = (const Meter*)cast;
|
2019-09-03 18:26:02 +00:00
|
|
|
|
|
|
|
if (this->values[0] > 0) {
|
|
|
|
Meter_humanUnit(buffer, this->total, 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " Uncompressed, ");
|
|
|
|
Meter_humanUnit(buffer, this->values[0], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " Compressed, ");
|
|
|
|
ZfsCompressedArcMeter_printRatioString(this, buffer, 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " Ratio");
|
|
|
|
} else {
|
|
|
|
RichString_write(out, CRT_colors[METER_TEXT], " ");
|
|
|
|
RichString_append(out, CRT_colors[FAILED_SEARCH], "Compression Unavailable");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
const MeterClass ZfsCompressedArcMeter_class = {
|
2019-09-03 18:26:02 +00:00
|
|
|
.super = {
|
|
|
|
.extends = Class(Meter),
|
|
|
|
.delete = Meter_delete,
|
|
|
|
.display = ZfsCompressedArcMeter_display,
|
|
|
|
},
|
|
|
|
.updateValues = ZfsCompressedArcMeter_updateValues,
|
|
|
|
.defaultMode = TEXT_METERMODE,
|
|
|
|
.maxItems = 1,
|
|
|
|
.total = 100.0,
|
|
|
|
.attributes = ZfsCompressedArcMeter_attributes,
|
|
|
|
.name = "ZFSCARC",
|
|
|
|
.uiName = "ZFS CARC",
|
|
|
|
.description = "ZFS CARC: Compressed ARC statistics",
|
|
|
|
.caption = "ARC: "
|
|
|
|
};
|