newt.c 27.2 KB
Newer Older
1 2 3
#define _GNU_SOURCE
#include <stdio.h>
#undef _GNU_SOURCE
4 5 6 7 8 9 10 11 12
/*
 * slang versions <= 2.0.6 have a "#if HAVE_LONG_LONG" that breaks
 * the build if it isn't defined. Use the equivalent one that glibc
 * has on features.h.
 */
#include <features.h>
#ifndef HAVE_LONG_LONG
#define HAVE_LONG_LONG __GLIBC_HAVE_LONG_LONG
#endif
13
#include <slang.h>
14 15
#include <stdlib.h>
#include <newt.h>
16
#include <sys/ttydefaults.h>
17 18 19

#include "cache.h"
#include "hist.h"
20
#include "pstack.h"
21 22 23 24
#include "session.h"
#include "sort.h"
#include "symbol.h"

25 26 27 28 29 30 31 32 33 34 35
#if SLANG_VERSION < 20104
#define slsmg_printf(msg, args...) SLsmg_printf((char *)msg, ##args)
#define slsmg_write_nstring(msg, len) SLsmg_write_nstring((char *)msg, len)
#define sltt_set_color(obj, name, fg, bg) SLtt_set_color(obj,(char *)name,\
							 (char *)fg, (char *)bg)
#else
#define slsmg_printf SLsmg_printf
#define slsmg_write_nstring SLsmg_write_nstring
#define sltt_set_color SLtt_set_color
#endif

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
struct ui_progress {
	newtComponent form, scale;
};

struct ui_progress *ui_progress__new(const char *title, u64 total)
{
	struct ui_progress *self = malloc(sizeof(*self));

	if (self != NULL) {
		int cols;
		newtGetScreenSize(&cols, NULL);
		cols -= 4;
		newtCenteredWindow(cols, 1, title);
		self->form  = newtForm(NULL, NULL, 0);
		if (self->form == NULL)
			goto out_free_self;
		self->scale = newtScale(0, 0, cols, total);
		if (self->scale == NULL)
			goto out_free_form;
55
		newtFormAddComponent(self->form, self->scale);
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
		newtRefresh();
	}

	return self;

out_free_form:
	newtFormDestroy(self->form);
out_free_self:
	free(self);
	return NULL;
}

void ui_progress__update(struct ui_progress *self, u64 curr)
{
	newtScaleSet(self->scale, curr);
	newtRefresh();
}

void ui_progress__delete(struct ui_progress *self)
{
	newtFormDestroy(self->form);
	newtPopWindow();
	free(self);
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
static void ui_helpline__pop(void)
{
	newtPopHelpLine();
}

static void ui_helpline__push(const char *msg)
{
	newtPushHelpLine(msg);
}

static void ui_helpline__vpush(const char *fmt, va_list ap)
{
	char *s;

	if (vasprintf(&s, fmt, ap) < 0)
		vfprintf(stderr, fmt, ap);
	else {
		ui_helpline__push(s);
		free(s);
	}
}

static void ui_helpline__fpush(const char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	ui_helpline__vpush(fmt, ap);
	va_end(ap);
}

static void ui_helpline__puts(const char *msg)
{
	ui_helpline__pop();
	ui_helpline__push(msg);
}

118 119 120 121 122 123 124 125 126 127 128 129
static char browser__last_msg[1024];

int browser__show_help(const char *format, va_list ap)
{
	int ret;
	static int backlog;

        ret = vsnprintf(browser__last_msg + backlog,
			sizeof(browser__last_msg) - backlog, format, ap);
	backlog += ret;

	if (browser__last_msg[backlog - 1] == '\n') {
130
		ui_helpline__puts(browser__last_msg);
131 132 133 134 135 136 137
		newtRefresh();
		backlog = 0;
	}

	return ret;
}

138 139
static void newt_form__set_exit_keys(newtComponent self)
{
140
	newtFormAddHotKey(self, NEWT_KEY_LEFT);
141 142 143 144 145 146 147 148 149 150 151 152 153 154
	newtFormAddHotKey(self, NEWT_KEY_ESCAPE);
	newtFormAddHotKey(self, 'Q');
	newtFormAddHotKey(self, 'q');
	newtFormAddHotKey(self, CTRL('c'));
}

static newtComponent newt_form__new(void)
{
	newtComponent self = newtForm(NULL, NULL, 0);
	if (self)
		newt_form__set_exit_keys(self);
	return self;
}

155
static int popup_menu(int argc, char * const argv[])
156 157 158 159 160 161 162 163 164 165 166 167
{
	struct newtExitStruct es;
	int i, rc = -1, max_len = 5;
	newtComponent listbox, form = newt_form__new();

	if (form == NULL)
		return -1;

	listbox = newtListbox(0, 0, argc, NEWT_FLAG_RETURNEXIT);
	if (listbox == NULL)
		goto out_destroy_form;

168
	newtFormAddComponent(form, listbox);
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188

	for (i = 0; i < argc; ++i) {
		int len = strlen(argv[i]);
		if (len > max_len)
			max_len = len;
		if (newtListboxAddEntry(listbox, argv[i], (void *)(long)i))
			goto out_destroy_form;
	}

	newtCenteredWindow(max_len, argc, NULL);
	newtFormRun(form, &es);
	rc = newtListboxGetCurrent(listbox) - NULL;
	if (es.reason == NEWT_EXIT_HOTKEY)
		rc = -1;
	newtPopWindow();
out_destroy_form:
	newtFormDestroy(form);
	return rc;
}

189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
static int ui__help_window(const char *text)
{
	struct newtExitStruct es;
	newtComponent tb, form = newt_form__new();
	int rc = -1;
	int max_len = 0, nr_lines = 0;
	const char *t;

	if (form == NULL)
		return -1;

	t = text;
	while (1) {
		const char *sep = strchr(t, '\n');
		int len;

		if (sep == NULL)
			sep = strchr(t, '\0');
		len = sep - t;
		if (max_len < len)
			max_len = len;
		++nr_lines;
		if (*sep == '\0')
			break;
		t = sep + 1;
	}

	tb = newtTextbox(0, 0, max_len, nr_lines, 0);
	if (tb == NULL)
		goto out_destroy_form;

	newtTextboxSetText(tb, text);
	newtFormAddComponent(form, tb);
	newtCenteredWindow(max_len, nr_lines, NULL);
	newtFormRun(form, &es);
	newtPopWindow();
	rc = 0;
out_destroy_form:
	newtFormDestroy(form);
	return rc;
}

231 232 233 234
static bool dialog_yesno(const char *msg)
{
	/* newtWinChoice should really be accepting const char pointers... */
	char yes[] = "Yes", no[] = "No";
235
	return newtWinChoice(NULL, yes, no, (char *)msg) == 1;
236 237
}

238 239 240 241 242 243 244 245 246
static void ui__error_window(const char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	newtWinMessagev((char *)"Error", (char *)"Ok", (char *)fmt, ap);
	va_end(ap);
}

247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
#define HE_COLORSET_TOP		50
#define HE_COLORSET_MEDIUM	51
#define HE_COLORSET_NORMAL	52
#define HE_COLORSET_SELECTED	53
#define HE_COLORSET_CODE	54

static int ui_browser__percent_color(double percent, bool current)
{
	if (current)
		return HE_COLORSET_SELECTED;
	if (percent >= MIN_RED)
		return HE_COLORSET_TOP;
	if (percent >= MIN_GREEN)
		return HE_COLORSET_MEDIUM;
	return HE_COLORSET_NORMAL;
}

struct ui_browser {
	newtComponent	form, sb;
	u64		index, first_visible_entry_idx;
	void		*first_visible_entry, *entries;
	u16		top, left, width, height;
	void		*priv;
	u32		nr_entries;
};

static void ui_browser__refresh_dimensions(struct ui_browser *self)
{
	int cols, rows;
	newtGetScreenSize(&cols, &rows);

	if (self->width > cols - 4)
		self->width = cols - 4;
	self->height = rows - 5;
	if (self->height > self->nr_entries)
		self->height = self->nr_entries;
	self->top  = (rows - self->height) / 2;
	self->left = (cols - self->width) / 2;
}

static void ui_browser__reset_index(struct ui_browser *self)
{
        self->index = self->first_visible_entry_idx = 0;
        self->first_visible_entry = NULL;
}

static int objdump_line__show(struct objdump_line *self, struct list_head *head,
			      int width, struct hist_entry *he, int len,
			      bool current_entry)
{
	if (self->offset != -1) {
		struct symbol *sym = he->ms.sym;
		unsigned int hits = 0;
		double percent = 0.0;
		int color;
		struct sym_priv *priv = symbol__priv(sym);
		struct sym_ext *sym_ext = priv->ext;
		struct sym_hist *h = priv->hist;
		s64 offset = self->offset;
		struct objdump_line *next = objdump__get_next_ip_line(head, self);

		while (offset < (s64)len &&
		       (next == NULL || offset < next->offset)) {
			if (sym_ext) {
				percent += sym_ext[offset].percent;
			} else
				hits += h->ip[offset];

			++offset;
		}

		if (sym_ext == NULL && h->sum)
			percent = 100.0 * hits / h->sum;

		color = ui_browser__percent_color(percent, current_entry);
		SLsmg_set_color(color);
323
		slsmg_printf(" %7.2f ", percent);
324 325 326 327 328
		if (!current_entry)
			SLsmg_set_color(HE_COLORSET_CODE);
	} else {
		int color = ui_browser__percent_color(0, current_entry);
		SLsmg_set_color(color);
329
		slsmg_write_nstring(" ", 9);
330 331 332
	}

	SLsmg_write_char(':');
333
	slsmg_write_nstring(" ", 8);
334
	if (!*self->line)
335
		slsmg_write_nstring(" ", width - 18);
336
	else
337
		slsmg_write_nstring(self->line, width - 18);
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394

	return 0;
}

static int ui_browser__refresh_entries(struct ui_browser *self)
{
	struct objdump_line *pos;
	struct list_head *head = self->entries;
	struct hist_entry *he = self->priv;
	int row = 0;
	int len = he->ms.sym->end - he->ms.sym->start;

	if (self->first_visible_entry == NULL || self->first_visible_entry == self->entries)
                self->first_visible_entry = head->next;

	pos = list_entry(self->first_visible_entry, struct objdump_line, node);

	list_for_each_entry_from(pos, head, node) {
		bool current_entry = (self->first_visible_entry_idx + row) == self->index;
		SLsmg_gotorc(self->top + row, self->left);
		objdump_line__show(pos, head, self->width,
				   he, len, current_entry);
		if (++row == self->height)
			break;
	}

	SLsmg_set_color(HE_COLORSET_NORMAL);
	SLsmg_fill_region(self->top + row, self->left,
			  self->height - row, self->width, ' ');

	return 0;
}

static int ui_browser__run(struct ui_browser *self, const char *title,
			   struct newtExitStruct *es)
{
	if (self->form) {
		newtFormDestroy(self->form);
		newtPopWindow();
	}

	ui_browser__refresh_dimensions(self);
	newtCenteredWindow(self->width + 2, self->height, title);
	self->form = newt_form__new();
	if (self->form == NULL)
		return -1;

	self->sb = newtVerticalScrollbar(self->width + 1, 0, self->height,
					 HE_COLORSET_NORMAL,
					 HE_COLORSET_SELECTED);
	if (self->sb == NULL)
		return -1;

	newtFormAddHotKey(self->form, NEWT_KEY_UP);
	newtFormAddHotKey(self->form, NEWT_KEY_DOWN);
	newtFormAddHotKey(self->form, NEWT_KEY_PGUP);
	newtFormAddHotKey(self->form, NEWT_KEY_PGDN);
395
	newtFormAddHotKey(self->form, ' ');
396 397
	newtFormAddHotKey(self->form, NEWT_KEY_HOME);
	newtFormAddHotKey(self->form, NEWT_KEY_END);
398 399
	newtFormAddHotKey(self->form, NEWT_KEY_TAB);
	newtFormAddHotKey(self->form, NEWT_KEY_RIGHT);
400 401 402 403 404 405 406 407 408 409 410 411

	if (ui_browser__refresh_entries(self) < 0)
		return -1;
	newtFormAddComponent(self->form, self->sb);

	while (1) {
		unsigned int offset;

		newtFormRun(self->form, es);

		if (es->reason != NEWT_EXIT_HOTKEY)
			break;
412 413
		if (is_exit_key(es->u.key))
			return es->u.key;
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
		switch (es->u.key) {
		case NEWT_KEY_DOWN:
			if (self->index == self->nr_entries - 1)
				break;
			++self->index;
			if (self->index == self->first_visible_entry_idx + self->height) {
				struct list_head *pos = self->first_visible_entry;
				++self->first_visible_entry_idx;
				self->first_visible_entry = pos->next;
			}
			break;
		case NEWT_KEY_UP:
			if (self->index == 0)
				break;
			--self->index;
			if (self->index < self->first_visible_entry_idx) {
				struct list_head *pos = self->first_visible_entry;
				--self->first_visible_entry_idx;
				self->first_visible_entry = pos->prev;
			}
			break;
		case NEWT_KEY_PGDN:
436
		case ' ':
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
			if (self->first_visible_entry_idx + self->height > self->nr_entries - 1)
				break;

			offset = self->height;
			if (self->index + offset > self->nr_entries - 1)
				offset = self->nr_entries - 1 - self->index;
			self->index += offset;
			self->first_visible_entry_idx += offset;

			while (offset--) {
				struct list_head *pos = self->first_visible_entry;
				self->first_visible_entry = pos->next;
			}

			break;
		case NEWT_KEY_PGUP:
			if (self->first_visible_entry_idx == 0)
				break;

			if (self->first_visible_entry_idx < self->height)
				offset = self->first_visible_entry_idx;
			else
				offset = self->height;

			self->index -= offset;
			self->first_visible_entry_idx -= offset;

			while (offset--) {
				struct list_head *pos = self->first_visible_entry;
				self->first_visible_entry = pos->prev;
			}
			break;
		case NEWT_KEY_HOME:
			ui_browser__reset_index(self);
			break;
		case NEWT_KEY_END: {
			struct list_head *head = self->entries;
			offset = self->height - 1;

			if (offset > self->nr_entries)
				offset = self->nr_entries;

			self->index = self->first_visible_entry_idx = self->nr_entries - 1 - offset;
			self->first_visible_entry = head->prev;
			while (offset-- != 0) {
				struct list_head *pos = self->first_visible_entry;
				self->first_visible_entry = pos->prev;
			}
		}
			break;
487
		case NEWT_KEY_RIGHT:
488
		case NEWT_KEY_LEFT:
489 490
		case NEWT_KEY_TAB:
			return es->u.key;
491 492 493 494 495 496 497 498 499
		default:
			continue;
		}
		if (ui_browser__refresh_entries(self) < 0)
			return -1;
	}
	return 0;
}

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
/*
 * When debugging newt problems it was useful to be able to "unroll"
 * the calls to newtCheckBoxTreeAdd{Array,Item}, so that we can generate
 * a source file with the sequence of calls to these methods, to then
 * tweak the arrays to get the intended results, so I'm keeping this code
 * here, may be useful again in the future.
 */
#undef NEWT_DEBUG

static void newt_checkbox_tree__add(newtComponent tree, const char *str,
				    void *priv, int *indexes)
{
#ifdef NEWT_DEBUG
	/* Print the newtCheckboxTreeAddArray to tinker with its index arrays */
	int i = 0, len = 40 - strlen(str);

	fprintf(stderr,
		"\tnewtCheckboxTreeAddItem(tree, %*.*s\"%s\", (void *)%p, 0, ",
		len, len, " ", str, priv);
	while (indexes[i] != NEWT_ARG_LAST) {
		if (indexes[i] != NEWT_ARG_APPEND)
			fprintf(stderr, " %d,", indexes[i]);
		else
			fprintf(stderr, " %s,", "NEWT_ARG_APPEND");
		++i;
	}
	fprintf(stderr, " %s", " NEWT_ARG_LAST);\n");
	fflush(stderr);
#endif
	newtCheckboxTreeAddArray(tree, str, priv, 0, indexes);
}

static char *callchain_list__sym_name(struct callchain_list *self,
				      char *bf, size_t bfsize)
{
535 536
	if (self->ms.sym)
		return self->ms.sym->name;
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587

	snprintf(bf, bfsize, "%#Lx", self->ip);
	return bf;
}

static void __callchain__append_graph_browser(struct callchain_node *self,
					      newtComponent tree, u64 total,
					      int *indexes, int depth)
{
	struct rb_node *node;
	u64 new_total, remaining;
	int idx = 0;

	if (callchain_param.mode == CHAIN_GRAPH_REL)
		new_total = self->children_hit;
	else
		new_total = total;

	remaining = new_total;
	node = rb_first(&self->rb_root);
	while (node) {
		struct callchain_node *child = rb_entry(node, struct callchain_node, rb_node);
		struct rb_node *next = rb_next(node);
		u64 cumul = cumul_hits(child);
		struct callchain_list *chain;
		int first = true, printed = 0;
		int chain_idx = -1;
		remaining -= cumul;

		indexes[depth] = NEWT_ARG_APPEND;
		indexes[depth + 1] = NEWT_ARG_LAST;

		list_for_each_entry(chain, &child->val, list) {
			char ipstr[BITS_PER_LONG / 4 + 1],
			     *alloc_str = NULL;
			const char *str = callchain_list__sym_name(chain, ipstr, sizeof(ipstr));

			if (first) {
				double percent = cumul * 100.0 / new_total;

				first = false;
				if (asprintf(&alloc_str, "%2.2f%% %s", percent, str) < 0)
					str = "Not enough memory!";
				else
					str = alloc_str;
			} else {
				indexes[depth] = idx;
				indexes[depth + 1] = NEWT_ARG_APPEND;
				indexes[depth + 2] = NEWT_ARG_LAST;
				++chain_idx;
			}
588
			newt_checkbox_tree__add(tree, str, &chain->ms, indexes);
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
			free(alloc_str);
			++printed;
		}

		indexes[depth] = idx;
		if (chain_idx != -1)
			indexes[depth + 1] = chain_idx;
		if (printed != 0)
			++idx;
		__callchain__append_graph_browser(child, tree, new_total, indexes,
						  depth + (chain_idx != -1 ? 2 : 1));
		node = next;
	}
}

static void callchain__append_graph_browser(struct callchain_node *self,
					    newtComponent tree, u64 total,
					    int *indexes, int parent_idx)
{
	struct callchain_list *chain;
	int i = 0;

	indexes[1] = NEWT_ARG_APPEND;
	indexes[2] = NEWT_ARG_LAST;

	list_for_each_entry(chain, &self->val, list) {
		char ipstr[BITS_PER_LONG / 4 + 1], *str;

		if (chain->ip >= PERF_CONTEXT_MAX)
			continue;

		if (!i++ && sort__first_dimension == SORT_SYM)
			continue;

		str = callchain_list__sym_name(chain, ipstr, sizeof(ipstr));
624
		newt_checkbox_tree__add(tree, str, &chain->ms, indexes);
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
	}

	indexes[1] = parent_idx;
	indexes[2] = NEWT_ARG_APPEND;
	indexes[3] = NEWT_ARG_LAST;
	__callchain__append_graph_browser(self, tree, total, indexes, 2);
}

static void hist_entry__append_callchain_browser(struct hist_entry *self,
						 newtComponent tree, u64 total, int parent_idx)
{
	struct rb_node *rb_node;
	int indexes[1024] = { [0] = parent_idx, };
	int idx = 0;
	struct callchain_node *chain;

	rb_node = rb_first(&self->sorted_chain);
	while (rb_node) {
		chain = rb_entry(rb_node, struct callchain_node, rb_node);
		switch (callchain_param.mode) {
		case CHAIN_FLAT:
			break;
		case CHAIN_GRAPH_ABS: /* falldown */
		case CHAIN_GRAPH_REL:
			callchain__append_graph_browser(chain, tree, total, indexes, idx++);
			break;
		case CHAIN_NONE:
		default:
			break;
		}
		rb_node = rb_next(rb_node);
	}
}

659
static size_t hist_entry__append_browser(struct hist_entry *self,
660
					 newtComponent tree, u64 total)
661
{
662 663
	char s[256];
	size_t ret;
664 665 666 667

	if (symbol_conf.exclude_other && !self->parent)
		return 0;

668 669
	ret = hist_entry__snprintf(self, s, sizeof(s), NULL,
				   false, 0, false, total);
670 671 672 673 674
	if (symbol_conf.use_callchain) {
		int indexes[2];

		indexes[0] = NEWT_ARG_APPEND;
		indexes[1] = NEWT_ARG_LAST;
675
		newt_checkbox_tree__add(tree, s, &self->ms, indexes);
676
	} else
677
		newtListboxAppendEntry(tree, s, &self->ms);
678

679
	return ret;
680 681
}

682
int hist_entry__tui_annotate(struct hist_entry *self)
683
{
684
	struct ui_browser browser;
685
	struct newtExitStruct es;
686 687
	struct objdump_line *pos, *n;
	LIST_HEAD(head);
688
	int ret;
689

690
	if (self->ms.sym == NULL)
691
		return -1;
692

693 694 695 696 697 698 699
	if (self->ms.map->dso->annotate_warned)
		return -1;

	if (hist_entry__annotate(self, &head) < 0) {
		ui__error_window(browser__last_msg);
		return -1;
	}
700

701
	ui_helpline__push("Press <- or ESC to exit");
702

703 704 705 706 707 708 709 710
	memset(&browser, 0, sizeof(browser));
	browser.entries = &head;
	browser.priv = self;
	list_for_each_entry(pos, &head, node) {
		size_t line_len = strlen(pos->line);
		if (browser.width < line_len)
			browser.width = line_len;
		++browser.nr_entries;
711 712
	}

713
	browser.width += 18; /* Percentage */
714
	ret = ui_browser__run(&browser, self->ms.sym->name, &es);
715
	newtFormDestroy(browser.form);
716
	newtPopWindow();
717 718 719 720
	list_for_each_entry_safe(pos, n, &head, node) {
		list_del(&pos->node);
		objdump_line__free(pos);
	}
721
	ui_helpline__pop();
722
	return ret;
723 724
}

725 726 727 728 729 730 731
static const void *newt__symbol_tree_get_current(newtComponent self)
{
	if (symbol_conf.use_callchain)
		return newtCheckboxTreeGetCurrent(self);
	return newtListboxGetCurrent(self);
}

732
static void hist_browser__selection(newtComponent self, void *data)
733
{
734
	const struct map_symbol **symbol_ptr = data;
735 736 737
	*symbol_ptr = newt__symbol_tree_get_current(self);
}

738 739 740 741 742 743 744 745 746
struct hist_browser {
	newtComponent		form, tree;
	const struct map_symbol *selection;
};

static struct hist_browser *hist_browser__new(void)
{
	struct hist_browser *self = malloc(sizeof(*self));

747 748
	if (self != NULL)
		self->form = NULL;
749 750 751 752 753 754 755 756 757 758 759

	return self;
}

static void hist_browser__delete(struct hist_browser *self)
{
	newtFormDestroy(self->form);
	newtPopWindow();
	free(self);
}

760 761
static int hist_browser__populate(struct hist_browser *self, struct hists *hists,
				  const char *title)
762
{
763 764
	int max_len = 0, idx, cols, rows;
	struct ui_progress *progress;
765
	struct rb_node *nd;
766
	u64 curr_hist = 0;
767
	char seq[] = ".", unit;
768
	char str[256];
769
	unsigned long nr_events = hists->stats.nr_events[PERF_RECORD_SAMPLE];
770 771 772 773 774 775

	if (self->form) {
		newtFormDestroy(self->form);
		newtPopWindow();
	}

776 777 778
	nr_events = convert_unit(nr_events, &unit);
	snprintf(str, sizeof(str), "Events: %lu%c                            ",
		 nr_events, unit);
779 780 781 782 783 784 785 786 787 788 789 790 791 792
	newtDrawRootText(0, 0, str);

	newtGetScreenSize(NULL, &rows);

	if (symbol_conf.use_callchain)
		self->tree = newtCheckboxTreeMulti(0, 0, rows - 5, seq,
						   NEWT_FLAG_SCROLL);
	else
		self->tree = newtListbox(0, 0, rows - 5,
					(NEWT_FLAG_SCROLL |
					 NEWT_FLAG_RETURNEXIT));

	newtComponentAddCallback(self->tree, hist_browser__selection,
				 &self->selection);
793

794 795
	progress = ui_progress__new("Adding entries to the browser...",
				    hists->nr_entries);
796 797
	if (progress == NULL)
		return -1;
798

799
	idx = 0;
800
	for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
801
		struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
802 803 804 805 806
		int len;

		if (h->filtered)
			continue;

807
		len = hist_entry__append_browser(h, self->tree, hists->stats.total_period);
808 809
		if (len > max_len)
			max_len = len;
810
		if (symbol_conf.use_callchain)
811
			hist_entry__append_callchain_browser(h, self->tree,
812
							     hists->stats.total_period, idx++);
813 814 815
		++curr_hist;
		if (curr_hist % 5)
			ui_progress__update(progress, curr_hist);
816 817
	}

818 819
	ui_progress__delete(progress);

820 821
	newtGetScreenSize(&cols, &rows);

822 823 824 825
	if (max_len > cols)
		max_len = cols - 3;

	if (!symbol_conf.use_callchain)
826
		newtListboxSetWidth(self->tree, max_len);
827 828

	newtCenteredWindow(max_len + (symbol_conf.use_callchain ? 5 : 0),
829
			   rows - 5, title);
830
	self->form = newt_form__new();
831 832 833
	if (self->form == NULL)
		return -1;

834 835
	newtFormAddHotKey(self->form, 'A');
	newtFormAddHotKey(self->form, 'a');
836 837 838 839
	newtFormAddHotKey(self->form, 'D');
	newtFormAddHotKey(self->form, 'd');
	newtFormAddHotKey(self->form, 'T');
	newtFormAddHotKey(self->form, 't');
840 841 842 843
	newtFormAddHotKey(self->form, '?');
	newtFormAddHotKey(self->form, 'H');
	newtFormAddHotKey(self->form, 'h');
	newtFormAddHotKey(self->form, NEWT_KEY_F1);
844 845 846 847 848 849 850
	newtFormAddHotKey(self->form, NEWT_KEY_RIGHT);
	newtFormAddComponents(self->form, self->tree, NULL);
	self->selection = newt__symbol_tree_get_current(self->tree);

	return 0;
}

851
static struct hist_entry *hist_browser__selected_entry(struct hist_browser *self)
852 853 854 855 856 857 858 859 860 861 862 863 864 865 866
{
	int *indexes;

	if (!symbol_conf.use_callchain)
		goto out;

	indexes = newtCheckboxTreeFindItem(self->tree, (void *)self->selection);
	if (indexes) {
		bool is_hist_entry = indexes[1] == NEWT_ARG_LAST;
		free(indexes);
		if (is_hist_entry)
			goto out;
	}
	return NULL;
out:
867 868 869 870 871 872 873
	return container_of(self->selection, struct hist_entry, ms);
}

static struct thread *hist_browser__selected_thread(struct hist_browser *self)
{
	struct hist_entry *he = hist_browser__selected_entry(self);
	return he ? he->thread : NULL;
874 875
}

876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892
static int hist_browser__title(char *bf, size_t size, const char *input_name,
			       const struct dso *dso, const struct thread *thread)
{
	int printed = 0;

	if (thread)
		printed += snprintf(bf + printed, size - printed,
				    "Thread: %s(%d)",
				    (thread->comm_set ?  thread->comm : ""),
				    thread->pid);
	if (dso)
		printed += snprintf(bf + printed, size - printed,
				    "%sDSO: %s", thread ? " " : "",
				    dso->short_name);
	return printed ?: snprintf(bf, size, "Report: %s", input_name);
}

893
int hists__browse(struct hists *self, const char *helpline, const char *input_name)
894
{
895
	struct hist_browser *browser = hist_browser__new();
896
	struct pstack *fstack = pstack__new(2);
897 898
	const struct thread *thread_filter = NULL;
	const struct dso *dso_filter = NULL;
899
	struct newtExitStruct es;
900
	char msg[160];
901 902 903 904 905
	int err = -1;

	if (browser == NULL)
		return -1;

906 907 908 909
	fstack = pstack__new(2);
	if (fstack == NULL)
		goto out;

910
	ui_helpline__push(helpline);
911

912 913
	hist_browser__title(msg, sizeof(msg), input_name,
			    dso_filter, thread_filter);
914
	if (hist_browser__populate(browser, self, msg) < 0)
915
		goto out_free_stack;
916 917

	while (1) {
918
		const struct thread *thread;
919
		const struct dso *dso;
920 921
		char *options[16];
		int nr_options = 0, choice = 0, i,
922
		    annotate = -2, zoom_dso = -2, zoom_thread = -2;
923

924
		newtFormRun(browser->form, &es);
925 926 927 928

		thread = hist_browser__selected_thread(browser);
		dso = browser->selection->map ? browser->selection->map->dso : NULL;

929
		if (es.reason == NEWT_EXIT_HOTKEY) {
930 931 932
			if (es.u.key == NEWT_KEY_F1)
				goto do_help;

933 934
			switch (toupper(es.u.key)) {
			case 'A':
935 936 937
				if (browser->selection->map == NULL &&
				    browser->selection->map->dso->annotate_warned)
					continue;
938
				goto do_annotate;
939 940 941 942
			case 'D':
				goto zoom_dso;
			case 'T':
				goto zoom_thread;
943 944 945 946 947 948 949 950 951 952 953
			case 'H':
			case '?':
do_help:
				ui__help_window("->        Zoom into DSO/Threads & Annotate current symbol\n"
						"<-        Zoom out\n"
						"a         Annotate current symbol\n"
						"h/?/F1    Show this window\n"
						"d         Zoom into current DSO\n"
						"t         Zoom into current Thread\n"
						"q/CTRL+C  Exit browser");
				continue;
954 955
			default:;
			}
956 957 958 959 960 961 962
			if (is_exit_key(es.u.key)) {
				if (es.u.key == NEWT_KEY_ESCAPE) {
					if (dialog_yesno("Do you really want to exit?"))
						break;
					else
						continue;
				} else
963 964
					break;
			}
965 966 967 968 969 970 971 972 973 974 975 976 977

			if (es.u.key == NEWT_KEY_LEFT) {
				const void *top;

				if (pstack__empty(fstack))
					continue;
				top = pstack__pop(fstack);
				if (top == &dso_filter)
					goto zoom_out_dso;
				if (top == &thread_filter)
					goto zoom_out_thread;
				continue;
			}
978 979
		}

980
		if (browser->selection->sym != NULL &&
981
		    !browser->selection->map->dso->annotate_warned &&
982 983 984 985
		    asprintf(&options[nr_options], "Annotate %s",
			     browser->selection->sym->name) > 0)
			annotate = nr_options++;

986 987
		if (thread != NULL &&
		    asprintf(&options[nr_options], "Zoom %s %s(%d) thread",
988 989 990
			     (thread_filter ? "out of" : "into"),
			     (thread->comm_set ? thread->comm : ""),
			     thread->pid) > 0)
991 992
			zoom_thread = nr_options++;

993 994 995 996 997 998
		if (dso != NULL &&
		    asprintf(&options[nr_options], "Zoom %s %s DSO",
			     (dso_filter ? "out of" : "into"),
			     (dso->kernel ? "the Kernel" : dso->short_name)) > 0)
			zoom_dso = nr_options++;

999
		options[nr_options++] = (char *)"Exit";
1000 1001

		choice = popup_menu(nr_options, options);
1002 1003 1004 1005

		for (i = 0; i < nr_options - 1; ++i)
			free(options[i]);

1006
		if (choice == nr_options - 1)
1007
			break;
1008 1009 1010

		if (choice == -1)
			continue;
1011

1012
		if (choice == annotate) {
1013
			struct hist_entry *he;
1014
do_annotate:
1015
			if (browser->selection->map->dso->origin == DSO__ORIG_KERNEL) {
1016
				browser->selection->map->dso->annotate_warned = 1;
1017
				ui_helpline__puts("No vmlinux file found, can't "
1018 1019 1020 1021
						 "annotate with just a "
						 "kallsyms file");
				continue;
			}
1022 1023 1024 1025 1026

			he = hist_browser__selected_entry(browser);
			if (he == NULL)
				continue;

1027
			hist_entry__tui_annotate(he);
1028
		} else if (choice == zoom_dso) {
1029
zoom_dso:
1030
			if (dso_filter) {
1031 1032
				pstack__remove(fstack, &dso_filter);
zoom_out_dso:
1033
				ui_helpline__pop();
1034 1035
				dso_filter = NULL;
			} else {
1036 1037
				if (dso == NULL)
					continue;
1038
				ui_helpline__fpush("To zoom out press <- or -> + \"Zoom out of %s DSO\"",
1039
						   dso->kernel ? "the Kernel" : dso->short_name);
1040
				dso_filter = dso;
1041
				pstack__push(fstack, &dso_filter);
1042
			}
1043
			hists__filter_by_dso(self, dso_filter);
1044 1045
			hist_browser__title(msg, sizeof(msg), input_name,
					    dso_filter, thread_filter);
1046
			if (hist_browser__populate(browser, self, msg) < 0)
1047
				goto out;
1048
		} else if (choice == zoom_thread) {
1049
zoom_thread:
1050
			if (thread_filter) {
1051 1052
				pstack__remove(fstack, &thread_filter);
zoom_out_thread:
1053
				ui_helpline__pop();
1054 1055
				thread_filter = NULL;
			} else {
1056
				ui_helpline__fpush("To zoom out press <- or -> + \"Zoom out of %s(%d) thread\"",
1057 1058
						   thread->comm_set ? thread->comm : "",
						   thread->pid);
1059
				thread_filter = thread;
1060
				pstack__push(fstack, &thread_filter);
1061
			}
1062
			hists__filter_by_thread(self, thread_filter);
1063 1064
			hist_browser__title(msg, sizeof(msg), input_name,
					    dso_filter, thread_filter);
1065
			if (hist_browser__populate(browser, self, msg) < 0)
1066
				goto out;
1067
		}
1068
	}
1069
	err = 0;
1070 1071
out_free_stack:
	pstack__delete(fstack);
1072 1073 1074
out:
	hist_browser__delete(browser);
	return err;
1075 1076
}

1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
static struct newtPercentTreeColors {
	const char *topColorFg, *topColorBg;
	const char *mediumColorFg, *mediumColorBg;
	const char *normalColorFg, *normalColorBg;
	const char *selColorFg, *selColorBg;
	const char *codeColorFg, *codeColorBg;
} defaultPercentTreeColors = {
	"red",       "lightgray",
	"green",     "lightgray",
	"black",     "lightgray",
	"lightgray", "magenta",
	"blue",	     "lightgray",
};

1091 1092
void setup_browser(void)
{
1093
	struct newtPercentTreeColors *c = &defaultPercentTreeColors;
1094

1095
	if (!isatty(1) || !use_browser || dump_trace) {
1096
		setup_pager();
1097
		return;
1098
	}
1099

1100
	use_browser = 1;
1101 1102
	newtInit();
	newtCls();
1103
	ui_helpline__puts(" ");
1104 1105 1106 1107 1108
	sltt_set_color(HE_COLORSET_TOP, NULL, c->topColorFg, c->topColorBg);
	sltt_set_color(HE_COLORSET_MEDIUM, NULL, c->mediumColorFg, c->mediumColorBg);
	sltt_set_color(HE_COLORSET_NORMAL, NULL, c->normalColorFg, c->normalColorBg);
	sltt_set_color(HE_COLORSET_SELECTED, NULL, c->selColorFg, c->selColorBg);
	sltt_set_color(HE_COLORSET_CODE, NULL, c->codeColorFg, c->codeColorBg);
1109 1110
}

1111
void exit_browser(bool wait_for_ok)
1112
{
1113
	if (use_browser > 0) {
1114 1115 1116 1117
		if (wait_for_ok) {
			char title[] = "Fatal Error", ok[] = "Ok";
			newtWinMessage(title, ok, browser__last_msg);
		}
1118
		newtFinished();
1119
	}
1120
}