2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - ColumnsPanel.c
|
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2011-12-26 21:35:57 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "ColumnsPanel.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2021-08-24 15:27:43 +00:00
|
|
|
#include <assert.h>
|
2011-12-26 21:35:57 +00:00
|
|
|
#include <ctype.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "CRT.h"
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
#include "DynamicColumn.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "FunctionBar.h"
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
#include "Hashtable.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "ListItem.h"
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Process.h"
|
|
|
|
#include "ProvideCurses.h"
|
|
|
|
#include "XUtils.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
|
2017-07-23 02:41:19 +00:00
|
|
|
static const char* const ColumnsFunctions[] = {" ", " ", " ", " ", " ", " ", "MoveUp", "MoveDn", "Remove", "Done ", NULL};
|
2015-03-23 18:26:56 +00:00
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void ColumnsPanel_delete(Object* object) {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel* super = (Panel*) object;
|
|
|
|
ColumnsPanel* this = (ColumnsPanel*) object;
|
|
|
|
Panel_done(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
|
2015-01-22 01:27:31 +00:00
|
|
|
ColumnsPanel* const this = (ColumnsPanel*) super;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
int selected = Panel_getSelectedIndex(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
HandlerResult result = IGNORED;
|
2009-06-02 04:51:23 +00:00
|
|
|
int size = Panel_size(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
switch(ch) {
|
2015-01-22 01:27:31 +00:00
|
|
|
case 0x0a:
|
|
|
|
case 0x0d:
|
|
|
|
case KEY_ENTER:
|
|
|
|
case KEY_MOUSE:
|
2015-08-27 21:42:35 +00:00
|
|
|
case KEY_RECLICK:
|
2015-01-22 01:27:31 +00:00
|
|
|
{
|
|
|
|
if (selected < size - 1) {
|
|
|
|
this->moving = !(this->moving);
|
2020-12-16 20:46:11 +00:00
|
|
|
Panel_setSelectionColor(super, this->moving ? PANEL_SELECTION_FOLLOW : PANEL_SELECTION_FOCUS);
|
2020-10-05 16:27:55 +00:00
|
|
|
ListItem* selectedItem = (ListItem*) Panel_getSelected(super);
|
|
|
|
if (selectedItem)
|
|
|
|
selectedItem->moving = this->moving;
|
2015-01-22 01:27:31 +00:00
|
|
|
result = HANDLED;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_UP:
|
|
|
|
{
|
|
|
|
if (!this->moving) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 07:05:00 +00:00
|
|
|
/* else fallthrough */
|
2006-03-04 18:16:49 +00:00
|
|
|
case KEY_F(7):
|
|
|
|
case '[':
|
|
|
|
case '-':
|
|
|
|
{
|
|
|
|
if (selected < size - 1)
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel_moveSelectedUp(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
result = HANDLED;
|
|
|
|
break;
|
|
|
|
}
|
2015-01-22 01:27:31 +00:00
|
|
|
case KEY_DOWN:
|
|
|
|
{
|
|
|
|
if (!this->moving) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 07:05:00 +00:00
|
|
|
/* else fallthrough */
|
2006-03-04 18:16:49 +00:00
|
|
|
case KEY_F(8):
|
|
|
|
case ']':
|
|
|
|
case '+':
|
|
|
|
{
|
2019-10-31 16:39:12 +00:00
|
|
|
if (selected < size - 2)
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel_moveSelectedDown(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
result = HANDLED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case KEY_F(9):
|
|
|
|
case KEY_DC:
|
|
|
|
{
|
|
|
|
if (selected < size - 1) {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel_remove(super, selected);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
result = HANDLED;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-18 06:08:56 +00:00
|
|
|
default:
|
|
|
|
{
|
2020-11-21 17:02:39 +00:00
|
|
|
if (0 < ch && ch < 255 && isgraph((unsigned char)ch))
|
2011-12-14 23:30:16 +00:00
|
|
|
result = Panel_selectByTyping(super, ch);
|
2011-11-18 06:08:56 +00:00
|
|
|
if (result == BREAK_LOOP)
|
|
|
|
result = IGNORED;
|
|
|
|
break;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
if (result == HANDLED)
|
2006-05-30 13:47:28 +00:00
|
|
|
ColumnsPanel_update(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
return result;
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
const PanelClass ColumnsPanel_class = {
|
2012-12-05 15:12:20 +00:00
|
|
|
.super = {
|
|
|
|
.extends = Class(Panel),
|
|
|
|
.delete = ColumnsPanel_delete
|
|
|
|
},
|
|
|
|
.eventHandler = ColumnsPanel_eventHandler
|
|
|
|
};
|
|
|
|
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
static void ColumnsPanel_add(Panel* super, unsigned int key, Hashtable* columns) {
|
|
|
|
const char* name;
|
|
|
|
if (key < LAST_PROCESSFIELD) {
|
|
|
|
name = Process_fields[key].name;
|
|
|
|
} else {
|
|
|
|
const DynamicColumn* column = Hashtable_get(columns, key);
|
|
|
|
assert(column);
|
|
|
|
if (!column) {
|
|
|
|
name = NULL;
|
|
|
|
} else {
|
|
|
|
name = column->caption ? column->caption : column->heading;
|
|
|
|
if (!name)
|
|
|
|
name = column->name; /* name is a mandatory field */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (name == NULL)
|
|
|
|
name = "- ";
|
|
|
|
Panel_add(super, (Object*) ListItem_new(name, key));
|
|
|
|
}
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
ColumnsPanel* ColumnsPanel_new(Settings* settings) {
|
2012-12-05 15:12:20 +00:00
|
|
|
ColumnsPanel* this = AllocThis(ColumnsPanel);
|
2008-03-09 08:58:38 +00:00
|
|
|
Panel* super = (Panel*) this;
|
2015-03-23 18:26:56 +00:00
|
|
|
FunctionBar* fuBar = FunctionBar_new(ColumnsFunctions, NULL, NULL);
|
|
|
|
Panel_init(super, 1, 1, 1, 1, Class(ListItem), true, fuBar);
|
2008-03-09 08:58:38 +00:00
|
|
|
|
|
|
|
this->settings = settings;
|
2015-01-22 01:27:31 +00:00
|
|
|
this->moving = false;
|
2008-03-09 08:58:38 +00:00
|
|
|
Panel_setHeader(super, "Active Columns");
|
|
|
|
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
Hashtable* dynamicColumns = settings->dynamicColumns;
|
|
|
|
const ProcessField* fields = settings->fields;
|
|
|
|
for (; *fields; fields++)
|
|
|
|
ColumnsPanel_add(super, *fields, dynamicColumns);
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ColumnsPanel_update(Panel* super) {
|
|
|
|
ColumnsPanel* this = (ColumnsPanel*) super;
|
2009-06-02 04:51:23 +00:00
|
|
|
int size = Panel_size(super);
|
2008-03-09 08:58:38 +00:00
|
|
|
this->settings->changed = true;
|
2020-10-31 22:28:02 +00:00
|
|
|
this->settings->fields = xRealloc(this->settings->fields, sizeof(ProcessField) * (size + 1));
|
2015-01-22 01:27:31 +00:00
|
|
|
this->settings->flags = 0;
|
2008-03-09 08:58:38 +00:00
|
|
|
for (int i = 0; i < size; i++) {
|
2015-01-22 01:27:31 +00:00
|
|
|
int key = ((ListItem*) Panel_get(super, i))->key;
|
|
|
|
this->settings->fields[i] = key;
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
if (key < LAST_PROCESSFIELD)
|
|
|
|
this->settings->flags |= Process_fields[key].flags;
|
2008-03-09 08:58:38 +00:00
|
|
|
}
|
2015-01-22 01:27:31 +00:00
|
|
|
this->settings->fields[size] = 0;
|
2008-03-09 08:58:38 +00:00
|
|
|
}
|