blob: 936e641e9f8605d0a2b95cf7cde2779a1d908e4b [file] [log] [blame]
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001#define _GNU_SOURCE
2#include <stdio.h>
3#undef _GNU_SOURCE
4#include "../libslang.h"
5#include <stdlib.h>
6#include <string.h>
7#include <newt.h>
8#include <linux/rbtree.h>
9
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -030010#include "../../evsel.h"
11#include "../../evlist.h"
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -030012#include "../../hist.h"
13#include "../../pstack.h"
14#include "../../sort.h"
15#include "../../util.h"
16
17#include "../browser.h"
18#include "../helpline.h"
19#include "../util.h"
20#include "map.h"
21
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -030022struct hist_browser {
23 struct ui_browser b;
24 struct hists *hists;
25 struct hist_entry *he_selection;
26 struct map_symbol *selection;
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -030027 const struct thread *thread_filter;
28 const struct dso *dso_filter;
Arnaldo Carvalho de Melo724c9c92011-10-06 10:36:35 -030029 bool has_symbols;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -030030};
31
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -030032static int hists__browser_title(struct hists *self, char *bf, size_t size,
33 const char *ev_name, const struct dso *dso,
34 const struct thread *thread);
35
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -030036static void hist_browser__refresh_dimensions(struct hist_browser *self)
37{
38 /* 3 == +/- toggle symbol before actual hist_entry rendering */
39 self->b.width = 3 + (hists__sort_list_width(self->hists) +
40 sizeof("[k]"));
41}
42
43static void hist_browser__reset(struct hist_browser *self)
44{
45 self->b.nr_entries = self->hists->nr_entries;
46 hist_browser__refresh_dimensions(self);
47 ui_browser__reset_index(&self->b);
48}
49
50static char tree__folded_sign(bool unfolded)
51{
52 return unfolded ? '-' : '+';
53}
54
55static char map_symbol__folded(const struct map_symbol *self)
56{
57 return self->has_children ? tree__folded_sign(self->unfolded) : ' ';
58}
59
60static char hist_entry__folded(const struct hist_entry *self)
61{
62 return map_symbol__folded(&self->ms);
63}
64
65static char callchain_list__folded(const struct callchain_list *self)
66{
67 return map_symbol__folded(&self->ms);
68}
69
Arnaldo Carvalho de Melo3c916cc2010-08-25 17:18:35 -030070static void map_symbol__set_folding(struct map_symbol *self, bool unfold)
71{
72 self->unfolded = unfold ? self->has_children : false;
73}
74
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -030075static int callchain_node__count_rows_rb_tree(struct callchain_node *self)
76{
77 int n = 0;
78 struct rb_node *nd;
79
80 for (nd = rb_first(&self->rb_root); nd; nd = rb_next(nd)) {
81 struct callchain_node *child = rb_entry(nd, struct callchain_node, rb_node);
82 struct callchain_list *chain;
83 char folded_sign = ' '; /* No children */
84
85 list_for_each_entry(chain, &child->val, list) {
86 ++n;
87 /* We need this because we may not have children */
88 folded_sign = callchain_list__folded(chain);
89 if (folded_sign == '+')
90 break;
91 }
92
93 if (folded_sign == '-') /* Have children and they're unfolded */
94 n += callchain_node__count_rows_rb_tree(child);
95 }
96
97 return n;
98}
99
100static int callchain_node__count_rows(struct callchain_node *node)
101{
102 struct callchain_list *chain;
103 bool unfolded = false;
104 int n = 0;
105
106 list_for_each_entry(chain, &node->val, list) {
107 ++n;
108 unfolded = chain->ms.unfolded;
109 }
110
111 if (unfolded)
112 n += callchain_node__count_rows_rb_tree(node);
113
114 return n;
115}
116
117static int callchain__count_rows(struct rb_root *chain)
118{
119 struct rb_node *nd;
120 int n = 0;
121
122 for (nd = rb_first(chain); nd; nd = rb_next(nd)) {
123 struct callchain_node *node = rb_entry(nd, struct callchain_node, rb_node);
124 n += callchain_node__count_rows(node);
125 }
126
127 return n;
128}
129
130static bool map_symbol__toggle_fold(struct map_symbol *self)
131{
132 if (!self->has_children)
133 return false;
134
135 self->unfolded = !self->unfolded;
136 return true;
137}
138
139static void callchain_node__init_have_children_rb_tree(struct callchain_node *self)
140{
141 struct rb_node *nd = rb_first(&self->rb_root);
142
143 for (nd = rb_first(&self->rb_root); nd; nd = rb_next(nd)) {
144 struct callchain_node *child = rb_entry(nd, struct callchain_node, rb_node);
145 struct callchain_list *chain;
Arnaldo Carvalho de Melo293db472010-08-25 16:05:36 -0300146 bool first = true;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300147
148 list_for_each_entry(chain, &child->val, list) {
149 if (first) {
150 first = false;
151 chain->ms.has_children = chain->list.next != &child->val ||
Arnaldo Carvalho de Melo293db472010-08-25 16:05:36 -0300152 !RB_EMPTY_ROOT(&child->rb_root);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300153 } else
154 chain->ms.has_children = chain->list.next == &child->val &&
Arnaldo Carvalho de Melo293db472010-08-25 16:05:36 -0300155 !RB_EMPTY_ROOT(&child->rb_root);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300156 }
157
158 callchain_node__init_have_children_rb_tree(child);
159 }
160}
161
162static void callchain_node__init_have_children(struct callchain_node *self)
163{
164 struct callchain_list *chain;
165
166 list_for_each_entry(chain, &self->val, list)
Arnaldo Carvalho de Melo293db472010-08-25 16:05:36 -0300167 chain->ms.has_children = !RB_EMPTY_ROOT(&self->rb_root);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300168
169 callchain_node__init_have_children_rb_tree(self);
170}
171
172static void callchain__init_have_children(struct rb_root *self)
173{
174 struct rb_node *nd;
175
176 for (nd = rb_first(self); nd; nd = rb_next(nd)) {
177 struct callchain_node *node = rb_entry(nd, struct callchain_node, rb_node);
178 callchain_node__init_have_children(node);
179 }
180}
181
182static void hist_entry__init_have_children(struct hist_entry *self)
183{
184 if (!self->init_have_children) {
Arnaldo Carvalho de Melo18b308d2010-08-25 12:47:44 -0300185 self->ms.has_children = !RB_EMPTY_ROOT(&self->sorted_chain);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300186 callchain__init_have_children(&self->sorted_chain);
187 self->init_have_children = true;
188 }
189}
190
191static bool hist_browser__toggle_fold(struct hist_browser *self)
192{
193 if (map_symbol__toggle_fold(self->selection)) {
194 struct hist_entry *he = self->he_selection;
195
196 hist_entry__init_have_children(he);
197 self->hists->nr_entries -= he->nr_rows;
198
199 if (he->ms.unfolded)
200 he->nr_rows = callchain__count_rows(&he->sorted_chain);
201 else
202 he->nr_rows = 0;
203 self->hists->nr_entries += he->nr_rows;
204 self->b.nr_entries = self->hists->nr_entries;
205
206 return true;
207 }
208
209 /* If it doesn't have children, no toggling performed */
210 return false;
211}
212
Arnaldo Carvalho de Melo3c916cc2010-08-25 17:18:35 -0300213static int callchain_node__set_folding_rb_tree(struct callchain_node *self, bool unfold)
214{
215 int n = 0;
216 struct rb_node *nd;
217
218 for (nd = rb_first(&self->rb_root); nd; nd = rb_next(nd)) {
219 struct callchain_node *child = rb_entry(nd, struct callchain_node, rb_node);
220 struct callchain_list *chain;
221 bool has_children = false;
222
223 list_for_each_entry(chain, &child->val, list) {
224 ++n;
225 map_symbol__set_folding(&chain->ms, unfold);
226 has_children = chain->ms.has_children;
227 }
228
229 if (has_children)
230 n += callchain_node__set_folding_rb_tree(child, unfold);
231 }
232
233 return n;
234}
235
236static int callchain_node__set_folding(struct callchain_node *node, bool unfold)
237{
238 struct callchain_list *chain;
239 bool has_children = false;
240 int n = 0;
241
242 list_for_each_entry(chain, &node->val, list) {
243 ++n;
244 map_symbol__set_folding(&chain->ms, unfold);
245 has_children = chain->ms.has_children;
246 }
247
248 if (has_children)
249 n += callchain_node__set_folding_rb_tree(node, unfold);
250
251 return n;
252}
253
254static int callchain__set_folding(struct rb_root *chain, bool unfold)
255{
256 struct rb_node *nd;
257 int n = 0;
258
259 for (nd = rb_first(chain); nd; nd = rb_next(nd)) {
260 struct callchain_node *node = rb_entry(nd, struct callchain_node, rb_node);
261 n += callchain_node__set_folding(node, unfold);
262 }
263
264 return n;
265}
266
267static void hist_entry__set_folding(struct hist_entry *self, bool unfold)
268{
269 hist_entry__init_have_children(self);
270 map_symbol__set_folding(&self->ms, unfold);
271
272 if (self->ms.has_children) {
273 int n = callchain__set_folding(&self->sorted_chain, unfold);
274 self->nr_rows = unfold ? n : 0;
275 } else
276 self->nr_rows = 0;
277}
278
279static void hists__set_folding(struct hists *self, bool unfold)
280{
281 struct rb_node *nd;
282
283 self->nr_entries = 0;
284
285 for (nd = rb_first(&self->entries); nd; nd = rb_next(nd)) {
286 struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node);
287 hist_entry__set_folding(he, unfold);
288 self->nr_entries += 1 + he->nr_rows;
289 }
290}
291
292static void hist_browser__set_folding(struct hist_browser *self, bool unfold)
293{
294 hists__set_folding(self->hists, unfold);
295 self->b.nr_entries = self->hists->nr_entries;
296 /* Go to the start, we may be way after valid entries after a collapse */
297 ui_browser__reset_index(&self->b);
298}
299
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300300static int hist_browser__run(struct hist_browser *self, const char *ev_name,
301 void(*timer)(void *arg), void *arg, int delay_secs)
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300302{
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300303 int key;
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300304 char title[160];
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300305
306 self->b.entries = &self->hists->entries;
307 self->b.nr_entries = self->hists->nr_entries;
308
309 hist_browser__refresh_dimensions(self);
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300310 hists__browser_title(self->hists, title, sizeof(title), ev_name,
311 self->dso_filter, self->thread_filter);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300312
Arnaldo Carvalho de Melo59e8fe32010-08-10 15:44:20 -0300313 if (ui_browser__show(&self->b, title,
314 "Press '?' for help on key bindings") < 0)
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300315 return -1;
316
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300317 while (1) {
Arnaldo Carvalho de Melo3af6e332011-10-13 08:52:46 -0300318 key = ui_browser__run(&self->b, delay_secs);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300319
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300320 switch (key) {
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300321 case -1:
322 /* FIXME we need to check if it was es.reason == NEWT_EXIT_TIMER */
323 timer(arg);
Arnaldo Carvalho de Melo900e14a2011-10-11 16:15:39 -0300324 ui_browser__update_nr_entries(&self->b, self->hists->nr_entries);
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300325 hists__browser_title(self->hists, title, sizeof(title),
326 ev_name, self->dso_filter,
327 self->thread_filter);
328 ui_browser__show_title(&self->b, title);
329 continue;
Arnaldo Carvalho de Melo46941532010-08-10 15:50:07 -0300330 case 'D': { /* Debug */
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300331 static int seq;
332 struct hist_entry *h = rb_entry(self->b.top,
333 struct hist_entry, rb_node);
334 ui_helpline__pop();
335 ui_helpline__fpush("%d: nr_ent=(%d,%d), height=%d, idx=%d, fve: idx=%d, row_off=%d, nrows=%d",
336 seq++, self->b.nr_entries,
337 self->hists->nr_entries,
338 self->b.height,
339 self->b.index,
340 self->b.top_idx,
341 h->row_offset, h->nr_rows);
342 }
Arnaldo Carvalho de Melo3c916cc2010-08-25 17:18:35 -0300343 break;
344 case 'C':
345 /* Collapse the whole world. */
346 hist_browser__set_folding(self, false);
347 break;
348 case 'E':
349 /* Expand the whole world. */
350 hist_browser__set_folding(self, true);
351 break;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300352 case NEWT_KEY_ENTER:
353 if (hist_browser__toggle_fold(self))
354 break;
355 /* fall thru */
356 default:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300357 goto out;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300358 }
359 }
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300360out:
Arnaldo Carvalho de Melo59e8fe32010-08-10 15:44:20 -0300361 ui_browser__hide(&self->b);
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300362 return key;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300363}
364
365static char *callchain_list__sym_name(struct callchain_list *self,
366 char *bf, size_t bfsize)
367{
368 if (self->ms.sym)
369 return self->ms.sym->name;
370
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200371 snprintf(bf, bfsize, "%#" PRIx64, self->ip);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300372 return bf;
373}
374
375#define LEVEL_OFFSET_STEP 3
376
377static int hist_browser__show_callchain_node_rb_tree(struct hist_browser *self,
378 struct callchain_node *chain_node,
379 u64 total, int level,
380 unsigned short row,
381 off_t *row_offset,
382 bool *is_current_entry)
383{
384 struct rb_node *node;
385 int first_row = row, width, offset = level * LEVEL_OFFSET_STEP;
386 u64 new_total, remaining;
387
388 if (callchain_param.mode == CHAIN_GRAPH_REL)
389 new_total = chain_node->children_hit;
390 else
391 new_total = total;
392
393 remaining = new_total;
394 node = rb_first(&chain_node->rb_root);
395 while (node) {
396 struct callchain_node *child = rb_entry(node, struct callchain_node, rb_node);
397 struct rb_node *next = rb_next(node);
Frederic Weisbeckerf08c3152011-01-14 04:51:59 +0100398 u64 cumul = callchain_cumul_hits(child);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300399 struct callchain_list *chain;
400 char folded_sign = ' ';
401 int first = true;
402 int extra_offset = 0;
403
404 remaining -= cumul;
405
406 list_for_each_entry(chain, &child->val, list) {
407 char ipstr[BITS_PER_LONG / 4 + 1], *alloc_str;
408 const char *str;
409 int color;
410 bool was_first = first;
411
Arnaldo Carvalho de Melo163caed2010-08-25 16:30:03 -0300412 if (first)
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300413 first = false;
Arnaldo Carvalho de Melo163caed2010-08-25 16:30:03 -0300414 else
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300415 extra_offset = LEVEL_OFFSET_STEP;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300416
417 folded_sign = callchain_list__folded(chain);
418 if (*row_offset != 0) {
419 --*row_offset;
420 goto do_next;
421 }
422
423 alloc_str = NULL;
424 str = callchain_list__sym_name(chain, ipstr, sizeof(ipstr));
425 if (was_first) {
426 double percent = cumul * 100.0 / new_total;
427
428 if (asprintf(&alloc_str, "%2.2f%% %s", percent, str) < 0)
429 str = "Not enough memory!";
430 else
431 str = alloc_str;
432 }
433
434 color = HE_COLORSET_NORMAL;
435 width = self->b.width - (offset + extra_offset + 2);
436 if (ui_browser__is_current_entry(&self->b, row)) {
437 self->selection = &chain->ms;
438 color = HE_COLORSET_SELECTED;
439 *is_current_entry = true;
440 }
441
Arnaldo Carvalho de Melo8f9bbc42010-08-11 14:51:47 -0300442 ui_browser__set_color(&self->b, color);
443 ui_browser__gotorc(&self->b, row, 0);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300444 slsmg_write_nstring(" ", offset + extra_offset);
445 slsmg_printf("%c ", folded_sign);
446 slsmg_write_nstring(str, width);
447 free(alloc_str);
448
449 if (++row == self->b.height)
450 goto out;
451do_next:
452 if (folded_sign == '+')
453 break;
454 }
455
456 if (folded_sign == '-') {
457 const int new_level = level + (extra_offset ? 2 : 1);
458 row += hist_browser__show_callchain_node_rb_tree(self, child, new_total,
459 new_level, row, row_offset,
460 is_current_entry);
461 }
462 if (row == self->b.height)
463 goto out;
464 node = next;
465 }
466out:
467 return row - first_row;
468}
469
470static int hist_browser__show_callchain_node(struct hist_browser *self,
471 struct callchain_node *node,
472 int level, unsigned short row,
473 off_t *row_offset,
474 bool *is_current_entry)
475{
476 struct callchain_list *chain;
477 int first_row = row,
478 offset = level * LEVEL_OFFSET_STEP,
479 width = self->b.width - offset;
480 char folded_sign = ' ';
481
482 list_for_each_entry(chain, &node->val, list) {
483 char ipstr[BITS_PER_LONG / 4 + 1], *s;
484 int color;
Arnaldo Carvalho de Melo163caed2010-08-25 16:30:03 -0300485
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300486 folded_sign = callchain_list__folded(chain);
487
488 if (*row_offset != 0) {
489 --*row_offset;
490 continue;
491 }
492
493 color = HE_COLORSET_NORMAL;
494 if (ui_browser__is_current_entry(&self->b, row)) {
495 self->selection = &chain->ms;
496 color = HE_COLORSET_SELECTED;
497 *is_current_entry = true;
498 }
499
500 s = callchain_list__sym_name(chain, ipstr, sizeof(ipstr));
Arnaldo Carvalho de Melo8f9bbc42010-08-11 14:51:47 -0300501 ui_browser__gotorc(&self->b, row, 0);
502 ui_browser__set_color(&self->b, color);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300503 slsmg_write_nstring(" ", offset);
504 slsmg_printf("%c ", folded_sign);
505 slsmg_write_nstring(s, width - 2);
506
507 if (++row == self->b.height)
508 goto out;
509 }
510
511 if (folded_sign == '-')
512 row += hist_browser__show_callchain_node_rb_tree(self, node,
513 self->hists->stats.total_period,
514 level + 1, row,
515 row_offset,
516 is_current_entry);
517out:
518 return row - first_row;
519}
520
521static int hist_browser__show_callchain(struct hist_browser *self,
522 struct rb_root *chain,
523 int level, unsigned short row,
524 off_t *row_offset,
525 bool *is_current_entry)
526{
527 struct rb_node *nd;
528 int first_row = row;
529
530 for (nd = rb_first(chain); nd; nd = rb_next(nd)) {
531 struct callchain_node *node = rb_entry(nd, struct callchain_node, rb_node);
532
533 row += hist_browser__show_callchain_node(self, node, level,
534 row, row_offset,
535 is_current_entry);
536 if (row == self->b.height)
537 break;
538 }
539
540 return row - first_row;
541}
542
543static int hist_browser__show_entry(struct hist_browser *self,
544 struct hist_entry *entry,
545 unsigned short row)
546{
547 char s[256];
548 double percent;
549 int printed = 0;
Arnaldo Carvalho de Melof1cf6022011-10-18 14:37:34 -0200550 int width = self->b.width - 6; /* The percentage */
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300551 char folded_sign = ' ';
552 bool current_entry = ui_browser__is_current_entry(&self->b, row);
553 off_t row_offset = entry->row_offset;
554
555 if (current_entry) {
556 self->he_selection = entry;
557 self->selection = &entry->ms;
558 }
559
560 if (symbol_conf.use_callchain) {
Arnaldo Carvalho de Melo163caed2010-08-25 16:30:03 -0300561 hist_entry__init_have_children(entry);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300562 folded_sign = hist_entry__folded(entry);
563 }
564
565 if (row_offset == 0) {
Arnaldo Carvalho de Melof1cf6022011-10-18 14:37:34 -0200566 hist_entry__snprintf(entry, s, sizeof(s), self->hists);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300567 percent = (entry->period * 100.0) / self->hists->stats.total_period;
568
Arnaldo Carvalho de Meloc172f742011-10-18 14:31:35 -0200569 ui_browser__set_percent_color(&self->b, percent, current_entry);
Arnaldo Carvalho de Melo8f9bbc42010-08-11 14:51:47 -0300570 ui_browser__gotorc(&self->b, row, 0);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300571 if (symbol_conf.use_callchain) {
572 slsmg_printf("%c ", folded_sign);
573 width -= 2;
574 }
Arnaldo Carvalho de Meloc172f742011-10-18 14:31:35 -0200575
Arnaldo Carvalho de Melof1cf6022011-10-18 14:37:34 -0200576 slsmg_printf(" %5.2f%%", percent);
577
Arnaldo Carvalho de Meloc172f742011-10-18 14:31:35 -0200578 /* The scroll bar isn't being used */
579 if (!self->b.navkeypressed)
580 width += 1;
581
Arnaldo Carvalho de Melo33f62b32011-10-18 15:54:24 -0200582 if (!current_entry || !self->b.navkeypressed)
583 ui_browser__set_color(&self->b, HE_COLORSET_NORMAL);
584
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300585 slsmg_write_nstring(s, width);
586 ++row;
587 ++printed;
588 } else
589 --row_offset;
590
591 if (folded_sign == '-' && row != self->b.height) {
592 printed += hist_browser__show_callchain(self, &entry->sorted_chain,
593 1, row, &row_offset,
594 &current_entry);
595 if (current_entry)
596 self->he_selection = entry;
597 }
598
599 return printed;
600}
601
Arnaldo Carvalho de Melo437cfe72011-10-14 09:31:53 -0300602static void ui_browser__hists_init_top(struct ui_browser *browser)
603{
604 if (browser->top == NULL) {
605 struct hist_browser *hb;
606
607 hb = container_of(browser, struct hist_browser, b);
608 browser->top = rb_first(&hb->hists->entries);
609 }
610}
611
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300612static unsigned int hist_browser__refresh(struct ui_browser *self)
613{
614 unsigned row = 0;
615 struct rb_node *nd;
616 struct hist_browser *hb = container_of(self, struct hist_browser, b);
617
Arnaldo Carvalho de Melo437cfe72011-10-14 09:31:53 -0300618 ui_browser__hists_init_top(self);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300619
620 for (nd = self->top; nd; nd = rb_next(nd)) {
621 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
622
623 if (h->filtered)
624 continue;
625
626 row += hist_browser__show_entry(hb, h, row);
627 if (row == self->height)
628 break;
629 }
630
631 return row;
632}
633
634static struct rb_node *hists__filter_entries(struct rb_node *nd)
635{
636 while (nd != NULL) {
637 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
638 if (!h->filtered)
639 return nd;
640
641 nd = rb_next(nd);
642 }
643
644 return NULL;
645}
646
647static struct rb_node *hists__filter_prev_entries(struct rb_node *nd)
648{
649 while (nd != NULL) {
650 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
651 if (!h->filtered)
652 return nd;
653
654 nd = rb_prev(nd);
655 }
656
657 return NULL;
658}
659
660static void ui_browser__hists_seek(struct ui_browser *self,
661 off_t offset, int whence)
662{
663 struct hist_entry *h;
664 struct rb_node *nd;
665 bool first = true;
666
Arnaldo Carvalho de Melo60098912011-03-04 21:19:21 -0300667 if (self->nr_entries == 0)
668 return;
669
Arnaldo Carvalho de Melo437cfe72011-10-14 09:31:53 -0300670 ui_browser__hists_init_top(self);
671
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300672 switch (whence) {
673 case SEEK_SET:
674 nd = hists__filter_entries(rb_first(self->entries));
675 break;
676 case SEEK_CUR:
677 nd = self->top;
678 goto do_offset;
679 case SEEK_END:
680 nd = hists__filter_prev_entries(rb_last(self->entries));
681 first = false;
682 break;
683 default:
684 return;
685 }
686
687 /*
688 * Moves not relative to the first visible entry invalidates its
689 * row_offset:
690 */
691 h = rb_entry(self->top, struct hist_entry, rb_node);
692 h->row_offset = 0;
693
694 /*
695 * Here we have to check if nd is expanded (+), if it is we can't go
696 * the next top level hist_entry, instead we must compute an offset of
697 * what _not_ to show and not change the first visible entry.
698 *
699 * This offset increments when we are going from top to bottom and
700 * decreases when we're going from bottom to top.
701 *
702 * As we don't have backpointers to the top level in the callchains
703 * structure, we need to always print the whole hist_entry callchain,
704 * skipping the first ones that are before the first visible entry
705 * and stop when we printed enough lines to fill the screen.
706 */
707do_offset:
708 if (offset > 0) {
709 do {
710 h = rb_entry(nd, struct hist_entry, rb_node);
711 if (h->ms.unfolded) {
712 u16 remaining = h->nr_rows - h->row_offset;
713 if (offset > remaining) {
714 offset -= remaining;
715 h->row_offset = 0;
716 } else {
717 h->row_offset += offset;
718 offset = 0;
719 self->top = nd;
720 break;
721 }
722 }
723 nd = hists__filter_entries(rb_next(nd));
724 if (nd == NULL)
725 break;
726 --offset;
727 self->top = nd;
728 } while (offset != 0);
729 } else if (offset < 0) {
730 while (1) {
731 h = rb_entry(nd, struct hist_entry, rb_node);
732 if (h->ms.unfolded) {
733 if (first) {
734 if (-offset > h->row_offset) {
735 offset += h->row_offset;
736 h->row_offset = 0;
737 } else {
738 h->row_offset += offset;
739 offset = 0;
740 self->top = nd;
741 break;
742 }
743 } else {
744 if (-offset > h->nr_rows) {
745 offset += h->nr_rows;
746 h->row_offset = 0;
747 } else {
748 h->row_offset = h->nr_rows + offset;
749 offset = 0;
750 self->top = nd;
751 break;
752 }
753 }
754 }
755
756 nd = hists__filter_prev_entries(rb_prev(nd));
757 if (nd == NULL)
758 break;
759 ++offset;
760 self->top = nd;
761 if (offset == 0) {
762 /*
763 * Last unfiltered hist_entry, check if it is
764 * unfolded, if it is then we should have
765 * row_offset at its last entry.
766 */
767 h = rb_entry(nd, struct hist_entry, rb_node);
768 if (h->ms.unfolded)
769 h->row_offset = h->nr_rows;
770 break;
771 }
772 first = false;
773 }
774 } else {
775 self->top = nd;
776 h = rb_entry(nd, struct hist_entry, rb_node);
777 h->row_offset = 0;
778 }
779}
780
781static struct hist_browser *hist_browser__new(struct hists *hists)
782{
783 struct hist_browser *self = zalloc(sizeof(*self));
784
785 if (self) {
786 self->hists = hists;
787 self->b.refresh = hist_browser__refresh;
788 self->b.seek = ui_browser__hists_seek;
Arnaldo Carvalho de Meloc172f742011-10-18 14:31:35 -0200789 self->b.use_navkeypressed = true,
Arnaldo Carvalho de Melo724c9c92011-10-06 10:36:35 -0300790 self->has_symbols = sort_sym.list.next != NULL;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300791 }
792
793 return self;
794}
795
796static void hist_browser__delete(struct hist_browser *self)
797{
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300798 free(self);
799}
800
801static struct hist_entry *hist_browser__selected_entry(struct hist_browser *self)
802{
803 return self->he_selection;
804}
805
806static struct thread *hist_browser__selected_thread(struct hist_browser *self)
807{
808 return self->he_selection->thread;
809}
810
Arnaldo Carvalho de Melo469917c2010-09-13 10:25:04 -0300811static int hists__browser_title(struct hists *self, char *bf, size_t size,
812 const char *ev_name, const struct dso *dso,
813 const struct thread *thread)
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300814{
Arnaldo Carvalho de Melo469917c2010-09-13 10:25:04 -0300815 char unit;
816 int printed;
817 unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE];
818
819 nr_events = convert_unit(nr_events, &unit);
820 printed = snprintf(bf, size, "Events: %lu%c %s", nr_events, unit, ev_name);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300821
822 if (thread)
823 printed += snprintf(bf + printed, size - printed,
Arnaldo Carvalho de Melo469917c2010-09-13 10:25:04 -0300824 ", Thread: %s(%d)",
825 (thread->comm_set ? thread->comm : ""),
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300826 thread->pid);
827 if (dso)
828 printed += snprintf(bf + printed, size - printed,
Arnaldo Carvalho de Melo469917c2010-09-13 10:25:04 -0300829 ", DSO: %s", dso->short_name);
830 return printed;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300831}
832
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -0300833static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300834 const char *helpline, const char *ev_name,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300835 bool left_exits,
836 void(*timer)(void *arg), void *arg,
837 int delay_secs)
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300838{
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300839 struct hists *self = &evsel->hists;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300840 struct hist_browser *browser = hist_browser__new(self);
841 struct pstack *fstack;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300842 int key = -1;
843
844 if (browser == NULL)
845 return -1;
846
847 fstack = pstack__new(2);
848 if (fstack == NULL)
849 goto out;
850
851 ui_helpline__push(helpline);
852
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300853 while (1) {
Arnaldo Carvalho de Melo60098912011-03-04 21:19:21 -0300854 const struct thread *thread = NULL;
855 const struct dso *dso = NULL;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300856 char *options[16];
857 int nr_options = 0, choice = 0, i,
858 annotate = -2, zoom_dso = -2, zoom_thread = -2,
859 browse_map = -2;
860
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300861 key = hist_browser__run(browser, ev_name, timer, arg, delay_secs);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300862
Arnaldo Carvalho de Melo60098912011-03-04 21:19:21 -0300863 if (browser->he_selection != NULL) {
864 thread = hist_browser__selected_thread(browser);
865 dso = browser->selection->map ? browser->selection->map->dso : NULL;
866 }
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300867
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300868 switch (key) {
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300869 case NEWT_KEY_TAB:
870 case NEWT_KEY_UNTAB:
871 /*
872 * Exit the browser, let hists__browser_tree
873 * go to the next or previous
874 */
875 goto out_free_stack;
876 case 'a':
Arnaldo Carvalho de Melo60098912011-03-04 21:19:21 -0300877 if (browser->selection == NULL ||
Lin Mingdb9a9cbc2011-04-08 14:31:26 +0800878 browser->selection->sym == NULL ||
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300879 browser->selection->map->dso->annotate_warned)
880 continue;
881 goto do_annotate;
882 case 'd':
883 goto zoom_dso;
884 case 't':
885 goto zoom_thread;
Arnaldo Carvalho de Melo3c916cc2010-08-25 17:18:35 -0300886 case NEWT_KEY_F1:
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300887 case 'h':
888 case '?':
Arnaldo Carvalho de Melo2d5646c2011-10-18 13:02:52 -0200889 ui__help_window("h/?/F1 Show this window\n"
890 "UP/DOWN/PGUP\n"
891 "PGDN/SPACE Navigate\n"
892 "q/ESC/CTRL+C Exit browser\n\n"
893 "For multiple event sessions:\n\n"
894 "TAB/UNTAB Switch events\n\n"
Arnaldo Carvalho de Melo724c9c92011-10-06 10:36:35 -0300895 "For symbolic views (--sort has sym):\n\n"
Arnaldo Carvalho de Melo2d5646c2011-10-18 13:02:52 -0200896 "-> Zoom into DSO/Threads & Annotate current symbol\n"
897 "<- Zoom out\n"
898 "a Annotate current symbol\n"
899 "C Collapse all callchains\n"
900 "E Expand all callchains\n"
901 "d Zoom into current DSO\n"
902 "t Zoom into current Thread\n");
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300903 continue;
904 case NEWT_KEY_ENTER:
905 case NEWT_KEY_RIGHT:
906 /* menu */
907 break;
908 case NEWT_KEY_LEFT: {
909 const void *top;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300910
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300911 if (pstack__empty(fstack)) {
912 /*
913 * Go back to the perf_evsel_menu__run or other user
914 */
915 if (left_exits)
916 goto out_free_stack;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300917 continue;
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300918 }
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300919 top = pstack__pop(fstack);
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300920 if (top == &browser->dso_filter)
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300921 goto zoom_out_dso;
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300922 if (top == &browser->thread_filter)
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300923 goto zoom_out_thread;
924 continue;
925 }
926 case NEWT_KEY_ESCAPE:
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300927 if (!left_exits &&
928 !ui__dialog_yesno("Do you really want to exit?"))
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300929 continue;
930 /* Fall thru */
Arnaldo Carvalho de Meloed7e5662011-10-13 08:31:22 -0300931 case 'q':
932 case CTRL('c'):
Arnaldo Carvalho de Melob50e0032010-08-11 10:07:43 -0300933 goto out_free_stack;
Arnaldo Carvalho de Meloed7e5662011-10-13 08:31:22 -0300934 default:
935 continue;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300936 }
937
Arnaldo Carvalho de Melo724c9c92011-10-06 10:36:35 -0300938 if (!browser->has_symbols)
939 goto add_exit_option;
940
Arnaldo Carvalho de Melo60098912011-03-04 21:19:21 -0300941 if (browser->selection != NULL &&
942 browser->selection->sym != NULL &&
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300943 !browser->selection->map->dso->annotate_warned &&
944 asprintf(&options[nr_options], "Annotate %s",
945 browser->selection->sym->name) > 0)
946 annotate = nr_options++;
947
948 if (thread != NULL &&
949 asprintf(&options[nr_options], "Zoom %s %s(%d) thread",
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300950 (browser->thread_filter ? "out of" : "into"),
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300951 (thread->comm_set ? thread->comm : ""),
952 thread->pid) > 0)
953 zoom_thread = nr_options++;
954
955 if (dso != NULL &&
956 asprintf(&options[nr_options], "Zoom %s %s DSO",
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300957 (browser->dso_filter ? "out of" : "into"),
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300958 (dso->kernel ? "the Kernel" : dso->short_name)) > 0)
959 zoom_dso = nr_options++;
960
Arnaldo Carvalho de Melo60098912011-03-04 21:19:21 -0300961 if (browser->selection != NULL &&
962 browser->selection->map != NULL &&
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300963 asprintf(&options[nr_options], "Browse map details") > 0)
964 browse_map = nr_options++;
Arnaldo Carvalho de Melo724c9c92011-10-06 10:36:35 -0300965add_exit_option:
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300966 options[nr_options++] = (char *)"Exit";
967
Arnaldo Carvalho de Melo1e6dd072010-08-10 15:58:50 -0300968 choice = ui__popup_menu(nr_options, options);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300969
970 for (i = 0; i < nr_options - 1; ++i)
971 free(options[i]);
972
973 if (choice == nr_options - 1)
974 break;
975
976 if (choice == -1)
977 continue;
978
979 if (choice == annotate) {
980 struct hist_entry *he;
981do_annotate:
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300982 he = hist_browser__selected_entry(browser);
983 if (he == NULL)
984 continue;
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300985 /*
986 * Don't let this be freed, say, by hists__decay_entry.
987 */
988 he->used = true;
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -0300989 hist_entry__tui_annotate(he, evsel->idx, nr_events,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300990 timer, arg, delay_secs);
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300991 he->used = false;
Arnaldo Carvalho de Melo900e14a2011-10-11 16:15:39 -0300992 ui_browser__update_nr_entries(&browser->b, browser->hists->nr_entries);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300993 } else if (choice == browse_map)
994 map__browse(browser->selection->map);
995 else if (choice == zoom_dso) {
996zoom_dso:
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -0300997 if (browser->dso_filter) {
998 pstack__remove(fstack, &browser->dso_filter);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -0300999zoom_out_dso:
1000 ui_helpline__pop();
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001001 browser->dso_filter = NULL;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001002 } else {
1003 if (dso == NULL)
1004 continue;
1005 ui_helpline__fpush("To zoom out press <- or -> + \"Zoom out of %s DSO\"",
1006 dso->kernel ? "the Kernel" : dso->short_name);
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001007 browser->dso_filter = dso;
1008 pstack__push(fstack, &browser->dso_filter);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001009 }
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001010 hists__filter_by_dso(self, browser->dso_filter);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001011 hist_browser__reset(browser);
1012 } else if (choice == zoom_thread) {
1013zoom_thread:
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001014 if (browser->thread_filter) {
1015 pstack__remove(fstack, &browser->thread_filter);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001016zoom_out_thread:
1017 ui_helpline__pop();
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001018 browser->thread_filter = NULL;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001019 } else {
1020 ui_helpline__fpush("To zoom out press <- or -> + \"Zoom out of %s(%d) thread\"",
1021 thread->comm_set ? thread->comm : "",
1022 thread->pid);
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001023 browser->thread_filter = thread;
1024 pstack__push(fstack, &browser->thread_filter);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001025 }
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001026 hists__filter_by_thread(self, browser->thread_filter);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001027 hist_browser__reset(browser);
1028 }
1029 }
1030out_free_stack:
1031 pstack__delete(fstack);
1032out:
1033 hist_browser__delete(browser);
1034 return key;
1035}
1036
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001037struct perf_evsel_menu {
1038 struct ui_browser b;
1039 struct perf_evsel *selection;
1040};
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001041
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001042static void perf_evsel_menu__write(struct ui_browser *browser,
1043 void *entry, int row)
1044{
1045 struct perf_evsel_menu *menu = container_of(browser,
1046 struct perf_evsel_menu, b);
1047 struct perf_evsel *evsel = list_entry(entry, struct perf_evsel, node);
1048 bool current_entry = ui_browser__is_current_entry(browser, row);
1049 unsigned long nr_events = evsel->hists.stats.nr_events[PERF_RECORD_SAMPLE];
1050 const char *ev_name = event_name(evsel);
1051 char bf[256], unit;
1052
1053 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED :
1054 HE_COLORSET_NORMAL);
1055
1056 nr_events = convert_unit(nr_events, &unit);
1057 snprintf(bf, sizeof(bf), "%lu%c%s%s", nr_events,
1058 unit, unit == ' ' ? "" : " ", ev_name);
1059 slsmg_write_nstring(bf, browser->width);
1060
1061 if (current_entry)
1062 menu->selection = evsel;
1063}
1064
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -03001065static int perf_evsel_menu__run(struct perf_evsel_menu *menu,
1066 int nr_events, const char *help,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001067 void(*timer)(void *arg), void *arg, int delay_secs)
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001068{
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001069 struct perf_evlist *evlist = menu->b.priv;
1070 struct perf_evsel *pos;
1071 const char *ev_name, *title = "Available samples";
1072 int key;
1073
1074 if (ui_browser__show(&menu->b, title,
1075 "ESC: exit, ENTER|->: Browse histograms") < 0)
1076 return -1;
1077
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001078 while (1) {
Arnaldo Carvalho de Melo3af6e332011-10-13 08:52:46 -03001079 key = ui_browser__run(&menu->b, delay_secs);
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001080
1081 switch (key) {
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001082 case -1:
1083 /* FIXME we need to check if it was es.reason == NEWT_EXIT_TIMER */
1084 timer(arg);
1085 continue;
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001086 case NEWT_KEY_RIGHT:
1087 case NEWT_KEY_ENTER:
1088 if (!menu->selection)
1089 continue;
1090 pos = menu->selection;
1091browse_hists:
Arnaldo Carvalho de Melo18eaf0b2011-10-13 12:22:28 -03001092 perf_evlist__set_selected(evlist, pos);
1093 /*
1094 * Give the calling tool a chance to populate the non
1095 * default evsel resorted hists tree.
1096 */
1097 if (timer)
1098 timer(arg);
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001099 ev_name = event_name(pos);
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -03001100 key = perf_evsel__hists_browse(pos, nr_events, help,
1101 ev_name, true, timer,
1102 arg, delay_secs);
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001103 ui_browser__show_title(&menu->b, title);
Arnaldo Carvalho de Melo18eaf0b2011-10-13 12:22:28 -03001104 switch (key) {
1105 case NEWT_KEY_TAB:
1106 if (pos->node.next == &evlist->entries)
1107 pos = list_entry(evlist->entries.next, struct perf_evsel, node);
1108 else
1109 pos = list_entry(pos->node.next, struct perf_evsel, node);
1110 goto browse_hists;
1111 case NEWT_KEY_UNTAB:
1112 if (pos->node.prev == &evlist->entries)
1113 pos = list_entry(evlist->entries.prev, struct perf_evsel, node);
1114 else
1115 pos = list_entry(pos->node.prev, struct perf_evsel, node);
1116 goto browse_hists;
1117 case NEWT_KEY_ESCAPE:
1118 if (!ui__dialog_yesno("Do you really want to exit?"))
1119 continue;
1120 /* Fall thru */
1121 case 'q':
1122 case CTRL('c'):
1123 goto out;
1124 default:
1125 continue;
1126 }
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001127 case NEWT_KEY_LEFT:
1128 continue;
Arnaldo Carvalho de Meloed7e5662011-10-13 08:31:22 -03001129 case NEWT_KEY_ESCAPE:
1130 if (!ui__dialog_yesno("Do you really want to exit?"))
1131 continue;
1132 /* Fall thru */
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001133 case 'q':
1134 case CTRL('c'):
1135 goto out;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001136 default:
Arnaldo Carvalho de Melo18eaf0b2011-10-13 12:22:28 -03001137 continue;
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001138 }
1139 }
1140
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001141out:
1142 ui_browser__hide(&menu->b);
1143 return key;
1144}
1145
1146static int __perf_evlist__tui_browse_hists(struct perf_evlist *evlist,
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001147 const char *help,
1148 void(*timer)(void *arg), void *arg,
1149 int delay_secs)
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001150{
1151 struct perf_evsel *pos;
1152 struct perf_evsel_menu menu = {
1153 .b = {
1154 .entries = &evlist->entries,
1155 .refresh = ui_browser__list_head_refresh,
1156 .seek = ui_browser__list_head_seek,
1157 .write = perf_evsel_menu__write,
1158 .nr_entries = evlist->nr_entries,
1159 .priv = evlist,
1160 },
1161 };
1162
1163 ui_helpline__push("Press ESC to exit");
1164
1165 list_for_each_entry(pos, &evlist->entries, node) {
1166 const char *ev_name = event_name(pos);
1167 size_t line_len = strlen(ev_name) + 7;
1168
1169 if (menu.b.width < line_len)
1170 menu.b.width = line_len;
1171 /*
1172 * Cache the evsel name, tracepoints have a _high_ cost per
1173 * event_name() call.
1174 */
1175 if (pos->name == NULL)
1176 pos->name = strdup(ev_name);
1177 }
1178
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -03001179 return perf_evsel_menu__run(&menu, evlist->nr_entries, help, timer,
1180 arg, delay_secs);
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001181}
1182
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001183int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
1184 void(*timer)(void *arg), void *arg,
1185 int delay_secs)
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001186{
1187
1188 if (evlist->nr_entries == 1) {
1189 struct perf_evsel *first = list_entry(evlist->entries.next,
1190 struct perf_evsel, node);
1191 const char *ev_name = event_name(first);
Arnaldo Carvalho de Melo34958542011-10-05 19:35:54 -03001192 return perf_evsel__hists_browse(first, evlist->nr_entries, help,
1193 ev_name, false, timer, arg,
1194 delay_secs);
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -03001195 }
1196
Arnaldo Carvalho de Melo81cce8d2011-10-05 19:11:32 -03001197 return __perf_evlist__tui_browse_hists(evlist, help,
1198 timer, arg, delay_secs);
Arnaldo Carvalho de Melod1b4f242010-08-10 15:49:07 -03001199}