2006-03-04 18:16:49 +00:00
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - SwapMeter.c
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-03-04 18:16:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SwapMeter.h"
|
|
|
|
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "CRT.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
2015-01-22 01:27:31 +00:00
|
|
|
#include "Platform.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "RichString.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2020-09-28 10:23:07 +00:00
|
|
|
static const int SwapMeter_attributes[] = {
|
2006-06-06 20:41:01 +00:00
|
|
|
SWAP
|
|
|
|
};
|
2006-04-10 20:40:38 +00:00
|
|
|
|
2020-11-24 17:31:03 +00:00
|
|
|
static void SwapMeter_updateValues(Meter* this, char* buffer, size_t size) {
|
2015-06-12 07:50:55 +00:00
|
|
|
int written;
|
2015-01-22 01:27:31 +00:00
|
|
|
Platform_setSwapValues(this);
|
2015-06-12 07:50:55 +00:00
|
|
|
|
|
|
|
written = Meter_humanUnit(buffer, this->values[0], 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);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2020-10-06 10:28:11 +00:00
|
|
|
static void SwapMeter_display(const Object* cast, RichString* out) {
|
2006-03-04 18:16:49 +00:00
|
|
|
char buffer[50];
|
2020-10-06 10:28:11 +00:00
|
|
|
const Meter* this = (const Meter*)cast;
|
2010-11-22 12:40:20 +00:00
|
|
|
RichString_write(out, CRT_colors[METER_TEXT], ":");
|
2015-06-12 07:53:18 +00:00
|
|
|
Meter_humanUnit(buffer, this->total, 50);
|
2006-03-04 18:16:49 +00:00
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
2015-06-12 07:53:18 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[0], 50);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " used:");
|
2006-03-04 18:16:49 +00:00
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
const MeterClass SwapMeter_class = {
|
2012-12-05 15:12:20 +00:00
|
|
|
.super = {
|
|
|
|
.extends = Class(Meter),
|
|
|
|
.delete = Meter_delete,
|
|
|
|
.display = SwapMeter_display,
|
|
|
|
},
|
2016-05-04 05:39:26 +00:00
|
|
|
.updateValues = SwapMeter_updateValues,
|
2012-12-05 15:12:20 +00:00
|
|
|
.defaultMode = BAR_METERMODE,
|
2016-03-11 02:54:34 +00:00
|
|
|
.maxItems = 1,
|
2008-03-09 08:58:38 +00:00
|
|
|
.total = 100.0,
|
|
|
|
.attributes = SwapMeter_attributes,
|
|
|
|
.name = "Swap",
|
|
|
|
.uiName = "Swap",
|
|
|
|
.caption = "Swp"
|
|
|
|
};
|