2006-03-04 21:16:49 +03:00
|
|
|
/*
|
2011-12-27 01:35:57 +04:00
|
|
|
htop - SwapMeter.c
|
2011-05-26 20:35:07 +04:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2021-09-22 12:33:00 +03:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2006-03-04 21:16:49 +03:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2021-04-29 18:12:43 +03:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2006-03-04 21:16:49 +03:00
|
|
|
#include "SwapMeter.h"
|
|
|
|
|
2021-07-07 07:24:32 +03:00
|
|
|
#include <math.h>
|
2021-04-29 18:12:43 +03:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2011-12-27 01:35:57 +04:00
|
|
|
#include "CRT.h"
|
2020-09-19 14:55:23 +03:00
|
|
|
#include "Object.h"
|
2015-01-22 04:27:31 +03:00
|
|
|
#include "Platform.h"
|
2020-09-19 14:55:23 +03:00
|
|
|
#include "RichString.h"
|
2006-03-04 21:16:49 +03:00
|
|
|
|
2011-12-27 01:35:57 +04:00
|
|
|
|
2020-09-28 13:23:07 +03:00
|
|
|
static const int SwapMeter_attributes[] = {
|
2021-01-07 16:38:18 +03:00
|
|
|
SWAP,
|
|
|
|
SWAP_CACHE
|
2006-06-07 00:41:01 +04:00
|
|
|
};
|
2006-04-11 00:40:38 +04:00
|
|
|
|
2020-10-06 14:13:16 +03:00
|
|
|
static void SwapMeter_updateValues(Meter* this) {
|
|
|
|
char* buffer = this->txtBuffer;
|
|
|
|
size_t size = sizeof(this->txtBuffer);
|
2015-06-12 10:50:55 +03:00
|
|
|
int written;
|
2021-07-07 07:24:32 +03:00
|
|
|
|
|
|
|
this->values[1] = NAN; /* 'cached' not present on all platforms */
|
2015-01-22 04:27:31 +03:00
|
|
|
Platform_setSwapValues(this);
|
2015-06-12 10:50:55 +03:00
|
|
|
|
|
|
|
written = Meter_humanUnit(buffer, this->values[0], size);
|
2020-11-24 21:34:27 +03:00
|
|
|
METER_BUFFER_CHECK(buffer, size, written);
|
|
|
|
|
|
|
|
METER_BUFFER_APPEND_CHR(buffer, size, '/');
|
|
|
|
|
|
|
|
Meter_humanUnit(buffer, this->total, size);
|
2006-03-04 21:16:49 +03:00
|
|
|
}
|
|
|
|
|
2020-10-06 13:28:11 +03:00
|
|
|
static void SwapMeter_display(const Object* cast, RichString* out) {
|
2006-03-04 21:16:49 +03:00
|
|
|
char buffer[50];
|
2020-10-06 13:28:11 +03:00
|
|
|
const Meter* this = (const Meter*)cast;
|
2020-12-04 16:44:57 +03:00
|
|
|
RichString_writeAscii(out, CRT_colors[METER_TEXT], ":");
|
2020-12-08 18:36:00 +03:00
|
|
|
Meter_humanUnit(buffer, this->total, sizeof(buffer));
|
2020-12-04 16:44:57 +03:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);
|
2020-12-08 18:36:00 +03:00
|
|
|
Meter_humanUnit(buffer, this->values[0], sizeof(buffer));
|
2020-12-04 16:44:57 +03:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " used:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);
|
2021-01-07 16:38:18 +03:00
|
|
|
|
2021-07-07 07:24:32 +03:00
|
|
|
if (!isnan(this->values[1])) {
|
|
|
|
Meter_humanUnit(buffer, this->values[1], sizeof(buffer));
|
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " cache:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[SWAP_CACHE], buffer);
|
|
|
|
}
|
2006-03-04 21:16:49 +03:00
|
|
|
}
|
2008-03-09 11:58:38 +03:00
|
|
|
|
2020-10-05 14:19:50 +03:00
|
|
|
const MeterClass SwapMeter_class = {
|
2012-12-05 19:12:20 +04:00
|
|
|
.super = {
|
|
|
|
.extends = Class(Meter),
|
|
|
|
.delete = Meter_delete,
|
|
|
|
.display = SwapMeter_display,
|
|
|
|
},
|
2016-05-04 08:39:26 +03:00
|
|
|
.updateValues = SwapMeter_updateValues,
|
2012-12-05 19:12:20 +04:00
|
|
|
.defaultMode = BAR_METERMODE,
|
2021-01-07 16:38:18 +03:00
|
|
|
.maxItems = 2,
|
2008-03-09 11:58:38 +03:00
|
|
|
.total = 100.0,
|
|
|
|
.attributes = SwapMeter_attributes,
|
|
|
|
.name = "Swap",
|
|
|
|
.uiName = "Swap",
|
|
|
|
.caption = "Swp"
|
|
|
|
};
|