2006-03-04 18:16:49 +00:00
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - MemoryMeter.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 "MemoryMeter.h"
|
|
|
|
|
2021-01-06 17:11:24 +00:00
|
|
|
#include <math.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 MemoryMeter_attributes[] = {
|
|
|
|
MEMORY_USED,
|
|
|
|
MEMORY_BUFFERS,
|
|
|
|
MEMORY_CACHE
|
2006-06-06 20:41:01 +00:00
|
|
|
};
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-11-24 17:31:03 +00:00
|
|
|
static void MemoryMeter_updateValues(Meter* this, char* buffer, size_t size) {
|
2015-06-12 07:50:55 +00:00
|
|
|
int written;
|
2021-01-06 17:11:24 +00:00
|
|
|
|
|
|
|
/* available memory is not supported on all platforms */
|
|
|
|
this->values[3] = NAN;
|
2015-01-22 01:27:31 +00:00
|
|
|
Platform_setMemoryValues(this);
|
2015-06-12 07:50:55 +00:00
|
|
|
|
2021-01-06 17:11:24 +00:00
|
|
|
/* Do not print available memory in bar mode */
|
|
|
|
this->curItems = 3;
|
|
|
|
|
|
|
|
written = Meter_humanUnit(buffer, isnan(this->values[3]) ? this->values[0] : this->total - this->values[3], 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 MemoryMeter_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;
|
2021-01-06 17:11:24 +00:00
|
|
|
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_writeAscii(out, CRT_colors[METER_TEXT], ":");
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->total, sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);
|
2021-01-06 17:11:24 +00:00
|
|
|
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[0], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " used:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[MEMORY_USED], buffer);
|
2021-01-06 17:11:24 +00:00
|
|
|
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[1], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " buffers:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[MEMORY_BUFFERS_TEXT], buffer);
|
2021-01-06 17:11:24 +00:00
|
|
|
|
2020-12-08 15:36:00 +00:00
|
|
|
Meter_humanUnit(buffer, this->values[2], sizeof(buffer));
|
2020-12-04 13:44:57 +00:00
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " cache:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[MEMORY_CACHE], buffer);
|
2021-01-06 17:11:24 +00:00
|
|
|
|
|
|
|
/* available memory is not supported on all platforms */
|
|
|
|
if (!isnan(this->values[3])) {
|
|
|
|
Meter_humanUnit(buffer, this->values[3], sizeof(buffer));
|
|
|
|
RichString_appendAscii(out, CRT_colors[METER_TEXT], " available:");
|
|
|
|
RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
const MeterClass MemoryMeter_class = {
|
2012-12-05 15:12:20 +00:00
|
|
|
.super = {
|
|
|
|
.extends = Class(Meter),
|
|
|
|
.delete = Meter_delete,
|
|
|
|
.display = MemoryMeter_display,
|
|
|
|
},
|
2019-10-31 16:39:12 +00:00
|
|
|
.updateValues = MemoryMeter_updateValues,
|
2012-12-05 15:12:20 +00:00
|
|
|
.defaultMode = BAR_METERMODE,
|
2021-01-06 17:11:24 +00:00
|
|
|
.maxItems = 4,
|
2008-03-09 08:58:38 +00:00
|
|
|
.total = 100.0,
|
|
|
|
.attributes = MemoryMeter_attributes,
|
2015-02-03 21:31:44 +00:00
|
|
|
.name = "Memory",
|
|
|
|
.uiName = "Memory",
|
|
|
|
.caption = "Mem"
|
2008-03-09 08:58:38 +00:00
|
|
|
};
|