2006-03-04 18:16:49 +00:00
|
|
|
/*
|
|
|
|
htop
|
|
|
|
(C) 2004-2006 Hisham H. Muhammad
|
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "TasksMeter.h"
|
|
|
|
#include "Meter.h"
|
|
|
|
|
|
|
|
#include "ProcessList.h"
|
|
|
|
|
|
|
|
#include "CRT.h"
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
2006-06-06 20:41:01 +00:00
|
|
|
int TasksMeter_attributes[] = {
|
|
|
|
TASKS_RUNNING
|
|
|
|
};
|
2006-04-10 20:40:38 +00:00
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void TasksMeter_setValues(Meter* this, char* buffer, int len) {
|
2006-04-10 20:40:38 +00:00
|
|
|
this->total = this->pl->totalTasks;
|
|
|
|
this->values[0] = this->pl->runningTasks;
|
|
|
|
snprintf(buffer, len, "%d/%d", (int) this->values[0], (int) this->total);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void TasksMeter_display(Object* cast, RichString* out) {
|
2006-03-04 18:16:49 +00:00
|
|
|
Meter* this = (Meter*)cast;
|
2006-07-12 01:16:03 +00:00
|
|
|
RichString_init(out);
|
2006-03-04 18:16:49 +00:00
|
|
|
char buffer[20];
|
|
|
|
sprintf(buffer, "%d", (int)this->total);
|
|
|
|
RichString_append(out, CRT_colors[METER_VALUE], buffer);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " total, ");
|
|
|
|
sprintf(buffer, "%d", (int)this->values[0]);
|
|
|
|
RichString_append(out, CRT_colors[TASKS_RUNNING], buffer);
|
|
|
|
RichString_append(out, CRT_colors[METER_TEXT], " running");
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
|
|
|
|
MeterType TasksMeter = {
|
|
|
|
.setValues = TasksMeter_setValues,
|
|
|
|
.display = TasksMeter_display,
|
|
|
|
.mode = TEXT_METERMODE,
|
|
|
|
.items = 1,
|
|
|
|
.total = 100.0,
|
|
|
|
.attributes = TasksMeter_attributes,
|
|
|
|
.name = "Tasks",
|
|
|
|
.uiName = "Task counter",
|
|
|
|
.caption = "Tasks: "
|
|
|
|
};
|