Skip to content

Commit

Permalink
Rework ZramMeter and remove MeterClass.comprisedValues
Browse files Browse the repository at this point in the history
The 'comprisedValues' boolean property unnecessarily complicates the
drawing algorithms of Bar meters and Graph meters. Since the only user
of 'comprisedValues' is ZramMeter, it is better to rework the meter so
that it no longer needs 'comprisedValues'.

The 'values[ZRAM_METER_UNCOMPRESSED]' now stores the difference between
uncompressed and compressed data size.

Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
  • Loading branch information
Explorer09 committed Aug 26, 2023
1 parent dcab856 commit db74c68
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 19 deletions.
13 changes: 1 addition & 12 deletions Meter.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ static void BarMeterMode_draw(Meter* this, int x, int y, int w) {
assert(startPos + w <= RichString_sizeVal(bar));

int blockSizes[10];
int blockSizeSum = 0;

// First draw in the bar[] buffer...
int offset = 0;
Expand All @@ -231,12 +230,6 @@ static void BarMeterMode_draw(Meter* this, int x, int y, int w) {
} else {
blockSizes[i] = 0;
}

if (Meter_comprisedValues(this)) {
blockSizes[i] = MAXIMUM(blockSizes[i] - blockSizeSum, 0);
blockSizeSum += blockSizes[i];
}

int nextOffset = offset + blockSizes[i];
// (Control against invalid values)
nextOffset = CLAMP(nextOffset, 0, w);
Expand Down Expand Up @@ -330,11 +323,7 @@ static void GraphMeterMode_draw(Meter* this, int x, int y, int w) {
for (int i = 0; i < nValues - 1; i++)
data->values[i] = data->values[i + 1];

if (Meter_comprisedValues(this)) {
data->values[nValues - 1] = (this->curItems > 0) ? this->values[this->curItems - 1] : 0.0;
} else {
data->values[nValues - 1] = sumPositiveValues(this->values, this->curItems);
}
data->values[nValues - 1] = sumPositiveValues(this->values, this->curItems);
}

int i = nValues - (w * 2), k = 0;
Expand Down
2 changes: 0 additions & 2 deletions Meter.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ typedef struct MeterClass_ {
const char* const description; /* optional meter description in header setup menu */
const uint8_t maxItems;
const bool isMultiColumn; /* whether the meter draws multiple sub-columns (defaults to false) */
const bool comprisedValues; /* whether latter values comprise previous ones (defaults to false) */
} MeterClass;

#define As_Meter(this_) ((const MeterClass*)((this_)->super.klass))
Expand All @@ -95,7 +94,6 @@ typedef struct MeterClass_ {
#define Meter_name(this_) As_Meter(this_)->name
#define Meter_uiName(this_) As_Meter(this_)->uiName
#define Meter_isMultiColumn(this_) As_Meter(this_)->isMultiColumn
#define Meter_comprisedValues(this_) As_Meter(this_)->comprisedValues

typedef struct GraphData_ {
struct timeval time;
Expand Down
3 changes: 3 additions & 0 deletions linux/LinuxMachine.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,9 @@ static void LinuxMachine_scanZramInfo(LinuxMachine* this) {
this->zram.totalZram = totalZram / 1024;
this->zram.usedZramComp = usedZramComp / 1024;
this->zram.usedZramOrig = usedZramOrig / 1024;
if (this->zram.usedZramComp > this->zram.usedZramOrig) {
this->zram.usedZramComp = this->zram.usedZramOrig;
}
}

static void LinuxMachine_scanZfsArcstats(LinuxMachine* this) {
Expand Down
2 changes: 1 addition & 1 deletion linux/Platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ void Platform_setZramValues(Meter* this) {

this->total = lhost->zram.totalZram;
this->values[ZRAM_METER_COMPRESSED] = lhost->zram.usedZramComp;
this->values[ZRAM_METER_UNCOMPRESSED] = lhost->zram.usedZramOrig;
this->values[ZRAM_METER_UNCOMPRESSED] = lhost->zram.usedZramOrig - lhost->zram.usedZramComp;
}

void Platform_setZfsArcValues(Meter* this) {
Expand Down
7 changes: 4 additions & 3 deletions linux/ZramMeter.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ static void ZramMeter_updateValues(Meter* this) {

METER_BUFFER_APPEND_CHR(buffer, size, '(');

written = Meter_humanUnit(buffer, this->values[ZRAM_METER_UNCOMPRESSED], size);
double uncompressed = this->values[ZRAM_METER_COMPRESSED] + this->values[ZRAM_METER_UNCOMPRESSED];
written = Meter_humanUnit(buffer, uncompressed, size);
METER_BUFFER_CHECK(buffer, size, written);

METER_BUFFER_APPEND_CHR(buffer, size, ')');
Expand All @@ -50,7 +51,8 @@ static void ZramMeter_display(const Object* cast, RichString* out) {
RichString_appendAscii(out, CRT_colors[METER_TEXT], " used:");
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);

Meter_humanUnit(buffer, this->values[ZRAM_METER_UNCOMPRESSED], sizeof(buffer));
double uncompressed = this->values[ZRAM_METER_COMPRESSED] + this->values[ZRAM_METER_UNCOMPRESSED];
Meter_humanUnit(buffer, uncompressed, sizeof(buffer));
RichString_appendAscii(out, CRT_colors[METER_TEXT], " uncompressed:");
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);
}
Expand All @@ -64,7 +66,6 @@ const MeterClass ZramMeter_class = {
.updateValues = ZramMeter_updateValues,
.defaultMode = BAR_METERMODE,
.maxItems = ZRAM_METER_ITEMCOUNT,
.comprisedValues = true,
.total = 100.0,
.attributes = ZramMeter_attributes,
.name = "Zram",
Expand Down
6 changes: 5 additions & 1 deletion pcp/Platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,9 +593,13 @@ void Platform_setZramValues(Meter* this) {

free(values);

if (stats.usedZramComp > stats.usedZramOrig) {
stats.usedZramComp = stats.usedZramOrig;
}

this->total = stats.totalZram;
this->values[0] = stats.usedZramComp;
this->values[1] = stats.usedZramOrig;
this->values[1] = stats.usedZramOrig - stats.usedZramComp;
}

void Platform_setZfsArcValues(Meter* this) {
Expand Down

0 comments on commit db74c68

Please sign in to comment.