top: introduced new focus toggle ('F'), program source
Sometimes, it might be useful to isolate a parent task and its forked children from other system activity. As an example, a user might want to examine workload in a specific lxc container. Or maybe there is some need to question what's happening under the same tmux session. Since forest view mode tends to be a relatively stable display, it will sometimes satisfy the above need. But that mode can't currently guarantee the target process always remains as the topmost task or even is visible. So, this patch will enable focusing on any parent task and keeping it as the topmost process while displaying it and its forked children only. It then appears as if there is no other activity in that system by virtue of the blank lines which follow that final child process. To implement this new feature, top's redundant 'F' key has been repurposed. It made little sense devoting two keys to the Fields Management screen (especially since the key we've taken required two separate keystrokes). [ and while we're at it, i also added punctuation to ] [ the prologue for that renamed 'forest_display' guy ] [ since all other forest functions used punctuation. ] Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
8c2622aea8
commit
3e922e671d
90
top/top.c
90
top/top.c
@ -4035,9 +4035,9 @@ static void win_names (WIN_t *q, const char *name) {
|
|||||||
static void win_reset (WIN_t *q) {
|
static void win_reset (WIN_t *q) {
|
||||||
SETw(q, Show_IDLEPS | Show_TASKON);
|
SETw(q, Show_IDLEPS | Show_TASKON);
|
||||||
#ifndef SCROLLVAR_NO
|
#ifndef SCROLLVAR_NO
|
||||||
q->rc.maxtasks = q->usrseltyp = q->begpflg = q->begtask = q->begnext = q->varcolbeg = 0;
|
q->rc.maxtasks = q->usrseltyp = q->begpflg = q->begtask = q->begnext = q->varcolbeg = q->focus_pid = 0;
|
||||||
#else
|
#else
|
||||||
q->rc.maxtasks = q->usrseltyp = q->begpflg = q->begtask = q->begnext = 0;
|
q->rc.maxtasks = q->usrseltyp = q->begpflg = q->begtask = q->begnext = q->focus_pid = 0;
|
||||||
#endif
|
#endif
|
||||||
Monpidsidx = 0;
|
Monpidsidx = 0;
|
||||||
osel_clear(q);
|
osel_clear(q);
|
||||||
@ -4347,7 +4347,7 @@ static inline int wins_usrselect (const WIN_t *q, struct pids_stack *p) {
|
|||||||
/*
|
/*
|
||||||
* We try keeping most existing code unaware of these activities |
|
* We try keeping most existing code unaware of these activities |
|
||||||
* ( plus, maintain alphabetical order within carefully chosen ) |
|
* ( plus, maintain alphabetical order within carefully chosen ) |
|
||||||
* ( names having the prefixes forest_a, forest_b and forest_c ) |
|
* ( names beginning forest_a, forest_b, forest_c and forest_d ) |
|
||||||
* ( with each name exactly 1 letter more than its predecessor ) | */
|
* ( with each name exactly 1 letter more than its predecessor ) | */
|
||||||
static struct pids_stack **Seed_ppt; // temporary win ppt pointer |
|
static struct pids_stack **Seed_ppt; // temporary win ppt pointer |
|
||||||
static struct pids_stack **Tree_ppt; // forest_begin resizes this |
|
static struct pids_stack **Tree_ppt; // forest_begin resizes this |
|
||||||
@ -4472,10 +4472,37 @@ static void forest_begin (WIN_t *q) {
|
|||||||
} // end: forest_begin
|
} // end: forest_begin
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When there's a 'focus_pid' established for a window, this guy |
|
||||||
|
* determines that window's 'focus_beg' plus 'focus_end' values. |
|
||||||
|
* But, if the pid can no longer be found, he'll turn off focus! | */
|
||||||
|
static void forest_config (WIN_t *q) {
|
||||||
|
// tailored 'results stack value' extractor macro
|
||||||
|
#define rSv(x) PID_VAL(eu_TREE_LVL, s_int, q->ppt[(x)])
|
||||||
|
int i, level;
|
||||||
|
|
||||||
|
for (i = 0; i < PIDSmaxt; i++) {
|
||||||
|
if (q->focus_pid == PID_VAL(EU_PID, s_int, q->ppt[i])) {
|
||||||
|
level = rSv(i);
|
||||||
|
q->focus_beg = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (i == PIDSmaxt)
|
||||||
|
q->focus_pid = q->begtask = 0;
|
||||||
|
else {
|
||||||
|
while (i+1 < PIDSmaxt && rSv(i+1) > level)
|
||||||
|
++i;
|
||||||
|
q->focus_end = i + 1; // make 'focus_end' a proper fencpost
|
||||||
|
}
|
||||||
|
#undef rSv
|
||||||
|
} // end: forest_config
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This guy adds the artwork to either 'cmd' or 'cmdline' values |
|
* This guy adds the artwork to either 'cmd' or 'cmdline' values |
|
||||||
* when we're in forest view mode otherwise he just returns them | */
|
* if we are in forest view mode otherwise he just returns them. | */
|
||||||
static inline const char *forest_colour (const WIN_t *q, struct pids_stack *p) {
|
static inline const char *forest_display (const WIN_t *q, struct pids_stack *p) {
|
||||||
// tailored 'results stack value' extractor macros
|
// tailored 'results stack value' extractor macros
|
||||||
#define rSv(E) PID_VAL(E, str, p)
|
#define rSv(E) PID_VAL(E, str, p)
|
||||||
#define rSv_Lvl PID_VAL(eu_TREE_LVL, s_int, p)
|
#define rSv_Lvl PID_VAL(eu_TREE_LVL, s_int, p)
|
||||||
@ -4505,7 +4532,7 @@ static inline const char *forest_colour (const WIN_t *q, struct pids_stack *p) {
|
|||||||
#undef rSv
|
#undef rSv
|
||||||
#undef rSv_Lvl
|
#undef rSv_Lvl
|
||||||
#undef rSv_Hid
|
#undef rSv_Hid
|
||||||
} // end: forest_colour
|
} // end: forest_display
|
||||||
|
|
||||||
/*###### Interactive Input Tertiary support ############################*/
|
/*###### Interactive Input Tertiary support ############################*/
|
||||||
|
|
||||||
@ -4772,7 +4799,6 @@ static void keys_global (int ch) {
|
|||||||
case 'e':
|
case 'e':
|
||||||
if (++Rc.task_mscale > SK_Pb) Rc.task_mscale = SK_Kb;
|
if (++Rc.task_mscale > SK_Pb) Rc.task_mscale = SK_Kb;
|
||||||
break;
|
break;
|
||||||
case 'F':
|
|
||||||
case 'f':
|
case 'f':
|
||||||
fields_utility();
|
fields_utility();
|
||||||
break;
|
break;
|
||||||
@ -5025,6 +5051,15 @@ static void keys_task (int ch) {
|
|||||||
case 'c':
|
case 'c':
|
||||||
VIZTOGw(w, Show_CMDLIN);
|
VIZTOGw(w, Show_CMDLIN);
|
||||||
break;
|
break;
|
||||||
|
case 'F':
|
||||||
|
if (VIZCHKw(w)) {
|
||||||
|
if (CHKw(w, Show_FOREST)) {
|
||||||
|
int n = PID_VAL(EU_PID, s_int, w->ppt[w->begtask]);
|
||||||
|
if (w->focus_pid == n) w->focus_pid = 0;
|
||||||
|
else w->focus_pid = n;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
case 'i':
|
case 'i':
|
||||||
{ static WIN_t *w_sav;
|
{ static WIN_t *w_sav;
|
||||||
static int beg_sav;
|
static int beg_sav;
|
||||||
@ -5081,6 +5116,7 @@ static void keys_task (int ch) {
|
|||||||
if (!ENUviz(w, EU_CMD))
|
if (!ENUviz(w, EU_CMD))
|
||||||
show_msg(fmtmk(N_fmt(FOREST_modes_fmt) , CHKw(w, Show_FOREST)
|
show_msg(fmtmk(N_fmt(FOREST_modes_fmt) , CHKw(w, Show_FOREST)
|
||||||
? N_txt(ON_word_only_txt) : N_txt(OFF_one_word_txt)));
|
? N_txt(ON_word_only_txt) : N_txt(OFF_one_word_txt)));
|
||||||
|
if (!CHKw(w, Show_FOREST)) w->focus_pid = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
@ -5475,13 +5511,13 @@ static void do_key (int ch) {
|
|||||||
char keys[SMLBUFSIZ];
|
char keys[SMLBUFSIZ];
|
||||||
} key_tab[] = {
|
} key_tab[] = {
|
||||||
{ keys_global,
|
{ keys_global,
|
||||||
{ '?', 'B', 'd', 'E', 'e', 'F', 'f', 'g', 'H', 'h'
|
{ '?', 'B', 'd', 'E', 'e', 'f', 'g', 'H', 'h'
|
||||||
, 'I', 'k', 'r', 's', 'X', 'Y', 'Z', '0'
|
, 'I', 'k', 'r', 's', 'X', 'Y', 'Z', '0'
|
||||||
, kbd_ENTER, kbd_SPACE, '\0' } },
|
, kbd_ENTER, kbd_SPACE, '\0' } },
|
||||||
{ keys_summary,
|
{ keys_summary,
|
||||||
{ '!', '1', '2', '3', '4', 'C', 'l', 'm', 't', '\0' } },
|
{ '!', '1', '2', '3', '4', 'C', 'l', 'm', 't', '\0' } },
|
||||||
{ keys_task,
|
{ keys_task,
|
||||||
{ '#', '<', '>', 'b', 'c', 'i', 'J', 'j', 'n', 'O', 'o'
|
{ '#', '<', '>', 'b', 'c', 'F', 'i', 'J', 'j', 'n', 'O', 'o'
|
||||||
, 'R', 'S', 'U', 'u', 'V', 'v', 'x', 'y', 'z'
|
, 'R', 'S', 'U', 'u', 'V', 'v', 'x', 'y', 'z'
|
||||||
, kbd_CtrlO, '\0' } },
|
, kbd_CtrlO, '\0' } },
|
||||||
{ keys_window,
|
{ keys_window,
|
||||||
@ -5970,7 +6006,7 @@ static const char *task_show (const WIN_t *q, struct pids_stack *p) {
|
|||||||
break;
|
break;
|
||||||
/* str, make_str with varialbe width + additional decoration */
|
/* str, make_str with varialbe width + additional decoration */
|
||||||
case EU_CMD: // PIDS_CMD or PIDS_CMDLINE
|
case EU_CMD: // PIDS_CMD or PIDS_CMDLINE
|
||||||
varUTF8(forest_colour(q, p));
|
varUTF8(forest_display(q, p));
|
||||||
break;
|
break;
|
||||||
default: // keep gcc happy
|
default: // keep gcc happy
|
||||||
continue;
|
continue;
|
||||||
@ -6029,32 +6065,34 @@ static const char *task_show (const WIN_t *q, struct pids_stack *p) {
|
|||||||
static void window_hlp (void) {
|
static void window_hlp (void) {
|
||||||
WIN_t *w = Curwin; // avoid gcc bloat with a local copy
|
WIN_t *w = Curwin; // avoid gcc bloat with a local copy
|
||||||
int i, reversed;
|
int i, reversed;
|
||||||
|
int beg = w->focus_pid ? w->focus_beg : 0;
|
||||||
|
int end = w->focus_pid ? w->focus_end : PIDSmaxt;
|
||||||
|
|
||||||
SETw(w, NOPRINT_xxx);
|
SETw(w, NOPRINT_xxx);
|
||||||
w->begtask += w->begnext;
|
w->begtask += w->begnext;
|
||||||
// next 'if' will force a forward scan ...
|
// next 'if' will force a forward scan ...
|
||||||
if (w->begtask <= 0) { w->begtask = 0; w->begnext = +1; }
|
if (w->begtask <= beg) { w->begtask = beg; w->begnext = +1; }
|
||||||
else if (w->begtask >= PIDSmaxt) w->begtask = PIDSmaxt - 1;
|
else if (w->begtask >= end) w->begtask = end - 1;
|
||||||
|
|
||||||
reversed = 0;
|
reversed = 0;
|
||||||
// potentially scroll forward ...
|
// potentially scroll forward ...
|
||||||
if (w->begnext > 0) {
|
if (w->begnext > beg) {
|
||||||
fwd_redux:
|
fwd_redux:
|
||||||
for (i = w->begtask; i < PIDSmaxt; i++) {
|
for (i = w->begtask; i < end; i++) {
|
||||||
if (wins_usrselect(w, w->ppt[i])
|
if (wins_usrselect(w, w->ppt[i])
|
||||||
&& (*task_show(w, w->ppt[i])))
|
&& (*task_show(w, w->ppt[i])))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (i < PIDSmaxt) {
|
if (i < end) {
|
||||||
w->begtask = i;
|
w->begtask = i;
|
||||||
goto wrap_up;
|
goto wrap_up;
|
||||||
}
|
}
|
||||||
// no luck forward, so let's try backward
|
// no luck forward, so let's try backward
|
||||||
w->begtask = PIDSmaxt - 1;
|
w->begtask = end - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// potentially scroll backward ...
|
// potentially scroll backward ...
|
||||||
for (i = w->begtask; i > 0; i--) {
|
for (i = w->begtask; i > beg; i--) {
|
||||||
if (wins_usrselect(w, w->ppt[i])
|
if (wins_usrselect(w, w->ppt[i])
|
||||||
&& (*task_show(w, w->ppt[i])))
|
&& (*task_show(w, w->ppt[i])))
|
||||||
break;
|
break;
|
||||||
@ -6062,9 +6100,9 @@ fwd_redux:
|
|||||||
w->begtask = i;
|
w->begtask = i;
|
||||||
|
|
||||||
// reached the top, but maybe this guy ain't visible
|
// reached the top, but maybe this guy ain't visible
|
||||||
if (!w->begtask && !reversed) {
|
if (w->begtask == beg && !reversed) {
|
||||||
if (!(wins_usrselect(w, w->ppt[0]))
|
if (!(wins_usrselect(w, w->ppt[beg]))
|
||||||
|| (!(*task_show(w, w->ppt[0])))) {
|
|| (!(*task_show(w, w->ppt[beg])))) {
|
||||||
reversed = 1;
|
reversed = 1;
|
||||||
goto fwd_redux;
|
goto fwd_redux;
|
||||||
}
|
}
|
||||||
@ -6083,16 +6121,17 @@ static int window_show (WIN_t *q, int wmax) {
|
|||||||
( actual 'running' tasks will be a subset of those selected ) */
|
( actual 'running' tasks will be a subset of those selected ) */
|
||||||
#define isBUSY(x) (0 < PID_VAL(EU_CPU, u_int, (x)))
|
#define isBUSY(x) (0 < PID_VAL(EU_CPU, u_int, (x)))
|
||||||
#define winMIN(a,b) (((a) < (b)) ? (a) : (b))
|
#define winMIN(a,b) (((a) < (b)) ? (a) : (b))
|
||||||
int i, lwin;
|
int i, lwin, numtasks;
|
||||||
|
|
||||||
// Display Column Headings -- and distract 'em while we sort (maybe)
|
// Display Column Headings -- and distract 'em while we sort (maybe)
|
||||||
PUFF("\n%s%s%s", q->capclr_hdr, q->columnhdr, Caps_endline);
|
PUFF("\n%s%s%s", q->capclr_hdr, q->columnhdr, Caps_endline);
|
||||||
// and just in case 'Monpids' is active but matched no processes ...
|
// and just in case 'Monpids' is active but matched no processes ...
|
||||||
if (!PIDSmaxt) return 1; // 1 for the column header
|
if (!PIDSmaxt) return 1; // 1 for the column header
|
||||||
|
|
||||||
if (CHKw(q, Show_FOREST))
|
if (CHKw(q, Show_FOREST)) {
|
||||||
forest_begin(q);
|
forest_begin(q);
|
||||||
else {
|
if (q->focus_pid) forest_config(q);
|
||||||
|
} else {
|
||||||
enum pids_item item = Fieldstab[q->rc.sortindx].item;
|
enum pids_item item = Fieldstab[q->rc.sortindx].item;
|
||||||
if (item == PIDS_CMD && CHKw(q, Show_CMDLIN))
|
if (item == PIDS_CMD && CHKw(q, Show_CMDLIN))
|
||||||
item = PIDS_CMDLINE;
|
item = PIDS_CMDLINE;
|
||||||
@ -6108,16 +6147,17 @@ static int window_show (WIN_t *q, int wmax) {
|
|||||||
i = q->begtask;
|
i = q->begtask;
|
||||||
lwin = 1; // 1 for the column header
|
lwin = 1; // 1 for the column header
|
||||||
wmax = winMIN(wmax, q->winlines + 1); // ditto for winlines, too
|
wmax = winMIN(wmax, q->winlines + 1); // ditto for winlines, too
|
||||||
|
numtasks = q->focus_pid ? winMIN(q->focus_end, PIDSmaxt) : PIDSmaxt;
|
||||||
|
|
||||||
/* the least likely scenario is also the most costly, so we'll try to avoid
|
/* the least likely scenario is also the most costly, so we'll try to avoid
|
||||||
checking some stuff with each iteration and check it just once... */
|
checking some stuff with each iteration and check it just once... */
|
||||||
if (CHKw(q, Show_IDLEPS) && !q->usrseltyp)
|
if (CHKw(q, Show_IDLEPS) && !q->usrseltyp)
|
||||||
while (i < PIDSmaxt && lwin < wmax) {
|
while (i < numtasks && lwin < wmax) {
|
||||||
if (*task_show(q, q->ppt[i++]))
|
if (*task_show(q, q->ppt[i++]))
|
||||||
++lwin;
|
++lwin;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
while (i < PIDSmaxt && lwin < wmax) {
|
while (i < numtasks && lwin < wmax) {
|
||||||
if ((CHKw(q, Show_IDLEPS) || isBUSY(q->ppt[i]))
|
if ((CHKw(q, Show_IDLEPS) || isBUSY(q->ppt[i]))
|
||||||
&& wins_usrselect(q, q->ppt[i])
|
&& wins_usrselect(q, q->ppt[i])
|
||||||
&& *task_show(q, q->ppt[i]))
|
&& *task_show(q, q->ppt[i]))
|
||||||
|
@ -362,6 +362,9 @@ typedef struct WIN_t {
|
|||||||
int osel_tot; // total of other selection criteria
|
int osel_tot; // total of other selection criteria
|
||||||
char *findstr; // window's current/active search string
|
char *findstr; // window's current/active search string
|
||||||
int findlen; // above's strlen, without call overhead
|
int findlen; // above's strlen, without call overhead
|
||||||
|
int focus_pid; // target pid when 'F' toggle is active
|
||||||
|
int focus_beg; // ppt index where 'F' toggle has begun
|
||||||
|
int focus_end; // ppt index where 'F' toggle has ended
|
||||||
struct pids_stack **ppt; // this window's stacks ptr array
|
struct pids_stack **ppt; // this window's stacks ptr array
|
||||||
struct WIN_t *next, // next window in window stack
|
struct WIN_t *next, // next window in window stack
|
||||||
*prev; // prior window in window stack
|
*prev; // prior window in window stack
|
||||||
@ -662,7 +665,8 @@ typedef struct WIN_t {
|
|||||||
/*------ Forest View support -------------------------------------------*/
|
/*------ Forest View support -------------------------------------------*/
|
||||||
//atic void forest_adds (const int self, unsigned level);
|
//atic void forest_adds (const int self, unsigned level);
|
||||||
//atic void forest_begin (WIN_t *q);
|
//atic void forest_begin (WIN_t *q);
|
||||||
//atic inline const char *forest_colour (const WIN_t *q, struct pids_stack *p);
|
//atic void forest_config (WIN_t *q);
|
||||||
|
//atic inline const char *forest_display (const WIN_t *q, struct pids_stack *p);
|
||||||
/*------ Interactive Input Tertiary support ----------------------------*/
|
/*------ Interactive Input Tertiary support ----------------------------*/
|
||||||
//atic inline int find_ofs (const WIN_t *q, const char *buf);
|
//atic inline int find_ofs (const WIN_t *q, const char *buf);
|
||||||
//atic void find_string (int ch);
|
//atic void find_string (int ch);
|
||||||
|
@ -594,7 +594,7 @@ static void build_uniq_nlstab (void) {
|
|||||||
" Z~5,~1B~5,E,e Global: '~1Z~2' colors; '~1B~2' bold; '~1E~2'/'~1e~2' summary/task memory scale\n"
|
" Z~5,~1B~5,E,e Global: '~1Z~2' colors; '~1B~2' bold; '~1E~2'/'~1e~2' summary/task memory scale\n"
|
||||||
" l,t,m,I Toggle: '~1l~2' load avg; '~1t~2' task/cpu; '~1m~2' memory; '~1I~2' Irix mode\n"
|
" l,t,m,I Toggle: '~1l~2' load avg; '~1t~2' task/cpu; '~1m~2' memory; '~1I~2' Irix mode\n"
|
||||||
" 0,1,2,3,4 Toggle: '~10~2' zeros; '~11~2/~12~2/~13~2' cpu/numa views; '~14~2' cpus two abreast\n"
|
" 0,1,2,3,4 Toggle: '~10~2' zeros; '~11~2/~12~2/~13~2' cpu/numa views; '~14~2' cpus two abreast\n"
|
||||||
" f,F,X Fields: '~1f~2'/'~1F~2' add/remove/order/sort; '~1X~2' increase fixed-width\n"
|
" f,X Fields: '~1f~2' add/remove/order/sort; '~1X~2' increase fixed-width fields\n"
|
||||||
"\n"
|
"\n"
|
||||||
" L,&,<,> . Locate: '~1L~2'/'~1&~2' find/again; Move sort column: '~1<~2'/'~1>~2' left/right\n"
|
" L,&,<,> . Locate: '~1L~2'/'~1&~2' find/again; Move sort column: '~1<~2'/'~1>~2' left/right\n"
|
||||||
" R,H,J,C . Toggle: '~1R~2' Sort; '~1H~2' Threads; '~1J~2' Num justify; '~1C~2' Coordinates\n"
|
" R,H,J,C . Toggle: '~1R~2' Sort; '~1H~2' Threads; '~1J~2' Num justify; '~1C~2' Coordinates\n"
|
||||||
@ -603,7 +603,7 @@ static void build_uniq_nlstab (void) {
|
|||||||
" z~5,~1b~5 . Toggle: '~1z~2' color/mono; '~1b~2' bold/reverse (only if 'x' or 'y')\n"
|
" z~5,~1b~5 . Toggle: '~1z~2' color/mono; '~1b~2' bold/reverse (only if 'x' or 'y')\n"
|
||||||
" u,U,o,O . Filter by: '~1u~2'/'~1U~2' effective/any user; '~1o~2'/'~1O~2' other criteria\n"
|
" u,U,o,O . Filter by: '~1u~2'/'~1U~2' effective/any user; '~1o~2'/'~1O~2' other criteria\n"
|
||||||
" n,#,^O . Set: '~1n~2'/'~1#~2' max tasks displayed; Show: ~1Ctrl~2+'~1O~2' other filter(s)\n"
|
" n,#,^O . Set: '~1n~2'/'~1#~2' max tasks displayed; Show: ~1Ctrl~2+'~1O~2' other filter(s)\n"
|
||||||
" V,v . Toggle: '~1V~2' forest view; '~1v~2' hide/show forest view children\n"
|
" V,v,F . Toggle: '~1V~2' forest view; '~1v~2' hide/show children; '~1F~2' keep focused\n"
|
||||||
"\n"
|
"\n"
|
||||||
"%s"
|
"%s"
|
||||||
" W,Y,! Write config file '~1W~2'; Inspect other output '~1Y~2'; Combine Cpus '~1!~2'\n"
|
" W,Y,! Write config file '~1W~2'; Inspect other output '~1Y~2'; Combine Cpus '~1!~2'\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user