blob: bfd16a1594e4abbcca6d0970eb6bc14571c75c6b [file] [log] [blame]
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -02001/*
2 * builtin-buildid-list.c
3 *
4 * Builtin buildid-list command: list buildids in perf.data
5 *
6 * Copyright (C) 2009, Red Hat Inc.
7 * Copyright (C) 2009, Arnaldo Carvalho de Melo <acme@redhat.com>
8 */
9#include "builtin.h"
10#include "perf.h"
11#include "util/cache.h"
12#include "util/data_map.h"
13#include "util/debug.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020014#include "util/parse-options.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020015#include "util/session.h"
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020016#include "util/symbol.h"
17
18static char const *input_name = "perf.data";
19static int force;
20
21static const char *const buildid_list_usage[] = {
Arnaldo Carvalho de Melob9b1e1c2009-12-06 18:03:10 -020022 "perf buildid-list [<options>]",
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020023 NULL
24};
25
26static const struct option options[] = {
27 OPT_STRING('i', "input", &input_name, "file",
28 "input file name"),
29 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
30 OPT_BOOLEAN('v', "verbose", &verbose,
Arnaldo Carvalho de Melo1124ba72009-11-16 21:45:25 -020031 "be more verbose"),
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020032 OPT_END()
33};
34
35static int perf_file_section__process_buildids(struct perf_file_section *self,
36 int feat, int fd)
37{
38 if (feat != HEADER_BUILD_ID)
39 return 0;
40
41 if (lseek(fd, self->offset, SEEK_SET) < 0) {
42 pr_warning("Failed to lseek to %Ld offset for buildids!\n",
43 self->offset);
44 return -1;
45 }
46
47 if (perf_header__read_build_ids(fd, self->offset, self->size)) {
48 pr_warning("Failed to read buildids!\n");
49 return -1;
50 }
51
52 return 0;
53}
54
55static int __cmd_buildid_list(void)
56{
57 int err = -1;
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020058 struct perf_session *session = perf_session__new(input_name, O_RDONLY, force);
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020059
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020060 if (session == NULL)
61 return -1;
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020062
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020063 err = perf_header__process_sections(&session->header, session->fd,
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020064 perf_file_section__process_buildids);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020065 if (err >= 0)
66 dsos__fprintf_buildid(stdout);
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020067
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020068 perf_session__delete(session);
Arnaldo Carvalho de Meloc34984b2009-11-16 16:32:45 -020069 return err;
70}
71
72int cmd_buildid_list(int argc, const char **argv, const char *prefix __used)
73{
74 argc = parse_options(argc, argv, options, buildid_list_usage, 0);
75 setup_pager();
76 return __cmd_buildid_list();
77}