123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- /*
- htop - Meter.c
- (C) 2004-2011 Hisham H. Muhammad
- Released under the GNU GPLv2+, see the COPYING file
- in the source distribution for its full text.
- */
- #include "config.h" // IWYU pragma: keep
- #include "Meter.h"
- #include <assert.h>
- #include <math.h>
- #include <stdlib.h>
- #include <string.h>
- #include "CRT.h"
- #include "Macros.h"
- #include "Object.h"
- #include "ProvideCurses.h"
- #include "RichString.h"
- #include "Row.h"
- #include "Settings.h"
- #include "XUtils.h"
- #ifndef UINT32_WIDTH
- #define UINT32_WIDTH 32
- #endif
- #define GRAPH_HEIGHT 4 /* Unit: rows (lines) */
- typedef struct MeterMode_ {
- Meter_Draw draw;
- const char* uiName;
- int h;
- } MeterMode;
- /* Meter drawing modes */
- static inline void Meter_displayBuffer(const Meter* this, RichString* out) {
- if (Object_displayFn(this)) {
- Object_display(this, out);
- } else {
- RichString_writeWide(out, CRT_colors[Meter_attributes(this)[0]], this->txtBuffer);
- }
- }
- /* ---------- TextMeterMode ---------- */
- static void TextMeterMode_draw(Meter* this, int x, int y, int w) {
- const char* caption = Meter_getCaption(this);
- attrset(CRT_colors[METER_TEXT]);
- mvaddnstr(y, x, caption, w);
- attrset(CRT_colors[RESET_COLOR]);
- int captionLen = strlen(caption);
- x += captionLen;
- w -= captionLen;
- if (w <= 0)
- return;
- RichString_begin(out);
- Meter_displayBuffer(this, &out);
- RichString_printoffnVal(out, y, x, 0, w);
- RichString_delete(&out);
- }
- /* ---------- BarMeterMode ---------- */
- static const char BarMeterMode_characters[] = "|#*@$%&.";
- static void BarMeterMode_draw(Meter* this, int x, int y, int w) {
- // Draw the caption
- const char* caption = Meter_getCaption(this);
- attrset(CRT_colors[METER_TEXT]);
- int captionLen = 3;
- mvaddnstr(y, x, caption, captionLen);
- x += captionLen;
- w -= captionLen;
- // Draw the bar borders
- attrset(CRT_colors[BAR_BORDER]);
- mvaddch(y, x, '[');
- w--;
- mvaddch(y, x + MAXIMUM(w, 0), ']');
- w--;
- attrset(CRT_colors[RESET_COLOR]);
- x++;
- if (w < 1) {
- return;
- }
- // The text in the bar is right aligned;
- // Pad with maximal spaces and then calculate needed starting position offset
- RichString_begin(bar);
- RichString_appendChr(&bar, 0, ' ', w);
- RichString_appendWide(&bar, 0, this->txtBuffer);
- int startPos = RichString_sizeVal(bar) - w;
- if (startPos > w) {
- // Text is too large for bar
- // Truncate meter text at a space character
- for (int pos = 2 * w; pos > w; pos--) {
- if (RichString_getCharVal(bar, pos) == ' ') {
- while (pos > w && RichString_getCharVal(bar, pos - 1) == ' ')
- pos--;
- startPos = pos - w;
- break;
- }
- }
- // If still too large, print the start not the end
- startPos = MINIMUM(startPos, w);
- }
- assert(startPos >= 0);
- assert(startPos <= w);
- assert(startPos + w <= RichString_sizeVal(bar));
- int blockSizes[10];
- // First draw in the bar[] buffer...
- int offset = 0;
- for (uint8_t i = 0; i < this->curItems; i++) {
- double value = this->values[i];
- if (isPositive(value) && this->total > 0.0) {
- value = MINIMUM(value, this->total);
- blockSizes[i] = ceil((value / this->total) * w);
- } else {
- blockSizes[i] = 0;
- }
- int nextOffset = offset + blockSizes[i];
- // (Control against invalid values)
- nextOffset = CLAMP(nextOffset, 0, w);
- for (int j = offset; j < nextOffset; j++)
- if (RichString_getCharVal(bar, startPos + j) == ' ') {
- if (CRT_colorScheme == COLORSCHEME_MONOCHROME) {
- assert(i < strlen(BarMeterMode_characters));
- RichString_setChar(&bar, startPos + j, BarMeterMode_characters[i]);
- } else {
- RichString_setChar(&bar, startPos + j, '|');
- }
- }
- offset = nextOffset;
- }
- // ...then print the buffer.
- offset = 0;
- for (uint8_t i = 0; i < this->curItems; i++) {
- int attr = this->curAttributes ? this->curAttributes[i] : Meter_attributes(this)[i];
- RichString_setAttrn(&bar, CRT_colors[attr], startPos + offset, blockSizes[i]);
- RichString_printoffnVal(bar, y, x + offset, startPos + offset, MINIMUM(blockSizes[i], w - offset));
- offset += blockSizes[i];
- offset = CLAMP(offset, 0, w);
- }
- if (offset < w) {
- RichString_setAttrn(&bar, CRT_colors[BAR_SHADOW], startPos + offset, w - offset);
- RichString_printoffnVal(bar, y, x + offset, startPos + offset, w - offset);
- }
- RichString_delete(&bar);
- move(y, x + w + 1);
- attrset(CRT_colors[RESET_COLOR]);
- }
- /* ---------- GraphMeterMode ---------- */
- #ifdef HAVE_LIBNCURSESW
- #define PIXPERROW_UTF8 4
- static const char* const GraphMeterMode_dotsUtf8[] = {
- /*00*/" ", /*01*/"⢀", /*02*/"⢠", /*03*/"⢰", /*04*/ "⢸",
- /*10*/"⡀", /*11*/"⣀", /*12*/"⣠", /*13*/"⣰", /*14*/ "⣸",
- /*20*/"⡄", /*21*/"⣄", /*22*/"⣤", /*23*/"⣴", /*24*/ "⣼",
- /*30*/"⡆", /*31*/"⣆", /*32*/"⣦", /*33*/"⣶", /*34*/ "⣾",
- /*40*/"⡇", /*41*/"⣇", /*42*/"⣧", /*43*/"⣷", /*44*/ "⣿"
- };
- #endif
- #define PIXPERROW_ASCII 2
- static const char* const GraphMeterMode_dotsAscii[] = {
- /*00*/" ", /*01*/".", /*02*/":",
- /*10*/".", /*11*/".", /*12*/":",
- /*20*/":", /*21*/":", /*22*/":"
- };
- static void GraphMeterMode_draw(Meter* this, int x, int y, int w) {
- // Draw the caption
- const char* caption = Meter_getCaption(this);
- attrset(CRT_colors[METER_TEXT]);
- const int captionLen = 3;
- mvaddnstr(y, x, caption, captionLen);
- x += captionLen;
- w -= captionLen;
- GraphData* data = &this->drawData;
- // Expand the graph data buffer if necessary
- assert(data->nValues / 2 <= INT_MAX);
- if (w > (int)(data->nValues / 2) && MAX_METER_GRAPHDATA_VALUES > data->nValues) {
- size_t oldNValues = data->nValues;
- data->nValues = MAXIMUM(oldNValues + oldNValues / 2, (size_t)w * 2);
- data->nValues = MINIMUM(data->nValues, MAX_METER_GRAPHDATA_VALUES);
- data->values = xReallocArray(data->values, data->nValues, sizeof(*data->values));
- memmove(data->values + (data->nValues - oldNValues), data->values, oldNValues * sizeof(*data->values));
- memset(data->values, 0, (data->nValues - oldNValues) * sizeof(*data->values));
- }
- const size_t nValues = data->nValues;
- if (nValues < 1)
- return;
- // Record new value if necessary
- const Machine* host = this->host;
- if (!timercmp(&host->realtime, &(data->time), <)) {
- int globalDelay = host->settings->delay;
- struct timeval delay = { .tv_sec = globalDelay / 10, .tv_usec = (globalDelay % 10) * 100000L };
- timeradd(&host->realtime, &delay, &(data->time));
- memmove(&data->values[0], &data->values[1], (nValues - 1) * sizeof(*data->values));
- data->values[nValues - 1] = 0.0;
- if (this->curItems > 0) {
- assert(this->values);
- data->values[nValues - 1] = sumPositiveValues(this->values, this->curItems);
- }
- }
- if (w <= 0)
- return;
- // Graph drawing style (character set, etc.)
- const char* const* GraphMeterMode_dots;
- int GraphMeterMode_pixPerRow;
- #ifdef HAVE_LIBNCURSESW
- if (CRT_utf8) {
- GraphMeterMode_dots = GraphMeterMode_dotsUtf8;
- GraphMeterMode_pixPerRow = PIXPERROW_UTF8;
- } else
- #endif
- {
- GraphMeterMode_dots = GraphMeterMode_dotsAscii;
- GraphMeterMode_pixPerRow = PIXPERROW_ASCII;
- }
- // Starting positions of graph data and terminal column
- if ((size_t)w > nValues / 2) {
- x += w - nValues / 2;
- w = nValues / 2;
- }
- size_t i = nValues - (size_t)w * 2;
- // Draw the actual graph
- for (int col = 0; i < nValues - 1; i += 2, col++) {
- int pix = GraphMeterMode_pixPerRow * GRAPH_HEIGHT;
- double total = MAXIMUM(this->total, 1);
- int v1 = (int) lround(CLAMP(data->values[i] / total * pix, 1.0, pix));
- int v2 = (int) lround(CLAMP(data->values[i + 1] / total * pix, 1.0, pix));
- int colorIdx = GRAPH_1;
- for (int line = 0; line < GRAPH_HEIGHT; line++) {
- int line1 = CLAMP(v1 - (GraphMeterMode_pixPerRow * (GRAPH_HEIGHT - 1 - line)), 0, GraphMeterMode_pixPerRow);
- int line2 = CLAMP(v2 - (GraphMeterMode_pixPerRow * (GRAPH_HEIGHT - 1 - line)), 0, GraphMeterMode_pixPerRow);
- attrset(CRT_colors[colorIdx]);
- mvaddstr(y + line, x + col, GraphMeterMode_dots[line1 * (GraphMeterMode_pixPerRow + 1) + line2]);
- colorIdx = GRAPH_2;
- }
- }
- attrset(CRT_colors[RESET_COLOR]);
- }
- /* ---------- LEDMeterMode ---------- */
- static const char* const LEDMeterMode_digitsAscii[] = {
- " __ ", " ", " __ ", " __ ", " ", " __ ", " __ ", " __ ", " __ ", " __ ",
- "| |", " |", " __|", " __|", "|__|", "|__ ", "|__ ", " |", "|__|", "|__|",
- "|__|", " |", "|__ ", " __|", " |", " __|", "|__|", " |", "|__|", " __|"
- };
- #ifdef HAVE_LIBNCURSESW
- static const char* const LEDMeterMode_digitsUtf8[] = {
- "┌──┐", " ┐ ", "╶──┐", "╶──┐", "╷ ╷", "┌──╴", "┌──╴", "╶──┐", "┌──┐", "┌──┐",
- "│ │", " │ ", "┌──┘", " ──┤", "└──┤", "└──┐", "├──┐", " │", "├──┤", "└──┤",
- "└──┘", " ╵ ", "└──╴", "╶──┘", " ╵", "╶──┘", "└──┘", " ╵", "└──┘", "╶──┘"
- };
- #endif
- static const char* const* LEDMeterMode_digits;
- static void LEDMeterMode_drawDigit(int x, int y, int n) {
- for (int i = 0; i < 3; i++)
- mvaddstr(y + i, x, LEDMeterMode_digits[i * 10 + n]);
- }
- static void LEDMeterMode_draw(Meter* this, int x, int y, int w) {
- #ifdef HAVE_LIBNCURSESW
- if (CRT_utf8)
- LEDMeterMode_digits = LEDMeterMode_digitsUtf8;
- else
- #endif
- LEDMeterMode_digits = LEDMeterMode_digitsAscii;
- RichString_begin(out);
- Meter_displayBuffer(this, &out);
- int yText =
- #ifdef HAVE_LIBNCURSESW
- CRT_utf8 ? y + 1 :
- #endif
- y + 2;
- attrset(CRT_colors[LED_COLOR]);
- const char* caption = Meter_getCaption(this);
- mvaddstr(yText, x, caption);
- int xx = x + strlen(caption);
- int len = RichString_sizeVal(out);
- for (int i = 0; i < len; i++) {
- int c = RichString_getCharVal(out, i);
- if (c >= '0' && c <= '9') {
- if (xx - x + 4 > w)
- break;
- LEDMeterMode_drawDigit(xx, y, c - '0');
- xx += 4;
- } else {
- if (xx - x + 1 > w)
- break;
- #ifdef HAVE_LIBNCURSESW
- const cchar_t wc = { .chars = { c, '\0' }, .attr = 0 }; /* use LED_COLOR from attrset() */
- mvadd_wch(yText, xx, &wc);
- #else
- mvaddch(yText, xx, c);
- #endif
- xx += 1;
- }
- }
- attrset(CRT_colors[RESET_COLOR]);
- RichString_delete(&out);
- }
- static const MeterMode Meter_modes[] = {
- [0] = {
- .uiName = NULL,
- .h = 0,
- .draw = NULL,
- },
- [BAR_METERMODE] = {
- .uiName = "Bar",
- .h = 1,
- .draw = BarMeterMode_draw,
- },
- [TEXT_METERMODE] = {
- .uiName = "Text",
- .h = 1,
- .draw = TextMeterMode_draw,
- },
- [GRAPH_METERMODE] = {
- .uiName = "Graph",
- .h = GRAPH_HEIGHT,
- .draw = GraphMeterMode_draw,
- },
- [LED_METERMODE] = {
- .uiName = "LED",
- .h = 3,
- .draw = LEDMeterMode_draw,
- },
- };
- /* Meter class and methods */
- const MeterClass Meter_class = {
- .super = {
- .extends = Class(Object)
- }
- };
- Meter* Meter_new(const Machine* host, unsigned int param, const MeterClass* type) {
- Meter* this = xCalloc(1, sizeof(Meter));
- Object_setClass(this, type);
- this->h = 1;
- this->param = param;
- this->host = host;
- this->curItems = type->maxItems;
- this->curAttributes = NULL;
- this->values = type->maxItems ? xCalloc(type->maxItems, sizeof(double)) : NULL;
- this->total = type->total;
- this->caption = xStrdup(type->caption);
- if (Meter_initFn(this)) {
- Meter_init(this);
- }
- Meter_setMode(this, type->defaultMode);
- assert(this->mode > 0);
- return this;
- }
- /* Converts 'value' in kibibytes into a human readable string.
- Example output strings: "0K", "1023K", "98.7M" and "1.23G" */
- int Meter_humanUnit(char* buffer, double value, size_t size) {
- size_t i = 0;
- assert(value >= 0.0);
- while (value >= ONE_K) {
- if (i >= ARRAYSIZE(unitPrefixes) - 1) {
- if (value > 9999.0) {
- return xSnprintf(buffer, size, "inf");
- }
- break;
- }
- value /= ONE_K;
- ++i;
- }
- int precision = 0;
- if (i > 0) {
- // Fraction digits for mebibytes and above
- precision = value <= 99.9 ? (value <= 9.99 ? 2 : 1) : 0;
- // Round up if 'value' is in range (99.9, 100) or (9.99, 10)
- if (precision < 2) {
- double limit = precision == 1 ? 10.0 : 100.0;
- if (value < limit) {
- value = limit;
- }
- }
- }
- return xSnprintf(buffer, size, "%.*f%c", precision, value, unitPrefixes[i]);
- }
- void Meter_delete(Object* cast) {
- if (!cast)
- return;
- Meter* this = (Meter*) cast;
- if (Meter_doneFn(this)) {
- Meter_done(this);
- }
- free(this->drawData.values);
- free(this->caption);
- free(this->values);
- free(this);
- }
- void Meter_setCaption(Meter* this, const char* caption) {
- free_and_xStrdup(&this->caption, caption);
- }
- void Meter_setMode(Meter* this, MeterModeId modeIndex) {
- if (modeIndex == this->mode) {
- assert(this->mode > 0);
- return;
- }
- uint32_t supportedModes = Meter_supportedModes(this);
- assert(supportedModes);
- assert(!(supportedModes & (1 << 0)));
- assert(LAST_METERMODE <= UINT32_WIDTH);
- if (modeIndex >= LAST_METERMODE || !(supportedModes & (1UL << modeIndex)))
- return;
- assert(modeIndex >= 1);
- if (Meter_updateModeFn(this)) {
- assert(Meter_drawFn(this));
- this->draw = Meter_drawFn(this);
- Meter_updateMode(this, modeIndex);
- } else {
- free(this->drawData.values);
- this->drawData.values = NULL;
- this->drawData.nValues = 0;
- const MeterMode* mode = &Meter_modes[modeIndex];
- this->draw = mode->draw;
- this->h = mode->h;
- }
- this->mode = modeIndex;
- }
- MeterModeId Meter_nextSupportedMode(const Meter* this) {
- uint32_t supportedModes = Meter_supportedModes(this);
- assert(supportedModes);
- assert(this->mode < UINT32_WIDTH);
- uint32_t modeMask = ((uint32_t)-1 << 1) << this->mode;
- uint32_t nextModes = supportedModes & modeMask;
- if (!nextModes) {
- nextModes = supportedModes;
- }
- return (MeterModeId)countTrailingZeros(nextModes);
- }
- ListItem* Meter_toListItem(const Meter* this, bool moving) {
- char mode[20];
- if (this->mode > 0) {
- xSnprintf(mode, sizeof(mode), " [%s]", Meter_modes[this->mode].uiName);
- } else {
- mode[0] = '\0';
- }
- char name[32];
- if (Meter_getUiNameFn(this))
- Meter_getUiName(this, name, sizeof(name));
- else
- xSnprintf(name, sizeof(name), "%s", Meter_uiName(this));
- char buffer[50];
- xSnprintf(buffer, sizeof(buffer), "%s%s", name, mode);
- ListItem* li = ListItem_new(buffer, 0);
- li->moving = moving;
- return li;
- }
- /* Blank meter */
- static void BlankMeter_updateValues(Meter* this) {
- this->txtBuffer[0] = '\0';
- }
- static void BlankMeter_display(ATTR_UNUSED const Object* cast, ATTR_UNUSED RichString* out) {
- }
- static const int BlankMeter_attributes[] = {
- DEFAULT_COLOR
- };
- const MeterClass BlankMeter_class = {
- .super = {
- .extends = Class(Meter),
- .delete = Meter_delete,
- .display = BlankMeter_display,
- },
- .updateValues = BlankMeter_updateValues,
- .defaultMode = TEXT_METERMODE,
- .supportedModes = (1 << TEXT_METERMODE),
- .maxItems = 0,
- .total = 0.0,
- .attributes = BlankMeter_attributes,
- .name = "Blank",
- .uiName = "Blank",
- .caption = ""
- };
|