Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / tools / perf / builtin-evlist.c
CommitLineData
43adec95
ACM
1/*
2 * Builtin evlist command: Show the list of event selectors present
3 * in a perf.data file.
4 */
5#include "builtin.h"
6
7#include "util/util.h"
8
9#include <linux/list.h>
10
11#include "perf.h"
12#include "util/evlist.h"
13#include "util/evsel.h"
14#include "util/parse-events.h"
15#include "util/parse-options.h"
16#include "util/session.h"
f5fc1412 17#include "util/data.h"
43adec95 18
70cb4e96 19static int __cmd_evlist(const char *file_name, struct perf_attr_details *details)
43adec95
ACM
20{
21 struct perf_session *session;
22 struct perf_evsel *pos;
f5fc1412
JO
23 struct perf_data_file file = {
24 .path = file_name,
25 .mode = PERF_DATA_MODE_READ,
26 };
43adec95 27
f5fc1412 28 session = perf_session__new(&file, 0, NULL);
43adec95
ACM
29 if (session == NULL)
30 return -ENOMEM;
31
0698aedd
ACM
32 list_for_each_entry(pos, &session->evlist->entries, node)
33 perf_evsel__fprintf(pos, details, stdout);
43adec95
ACM
34
35 perf_session__delete(session);
36 return 0;
37}
38
1d037ca1 39int cmd_evlist(int argc, const char **argv, const char *prefix __maybe_unused)
43adec95 40{
26252ea6 41 struct perf_attr_details details = { .verbose = false, };
26252ea6 42 const struct option options[] = {
94d668d0
ACM
43 OPT_STRING('i', "input", &input_name, "file", "Input file name"),
44 OPT_BOOLEAN('F', "freq", &details.freq, "Show the sample frequency"),
45 OPT_BOOLEAN('v', "verbose", &details.verbose,
46 "Show all event attr details"),
e35ef355 47 OPT_BOOLEAN('g', "group", &details.event_group,
e6ab07d0 48 "Show event group information"),
94d668d0
ACM
49 OPT_END()
50 };
51 const char * const evlist_usage[] = {
52 "perf evlist [<options>]",
53 NULL
26252ea6
ACM
54 };
55
43adec95
ACM
56 argc = parse_options(argc, argv, options, evlist_usage, 0);
57 if (argc)
58 usage_with_options(evlist_usage, options);
59
e35ef355 60 if (details.event_group && (details.verbose || details.freq)) {
e6ab07d0
NK
61 pr_err("--group option is not compatible with other options\n");
62 usage_with_options(evlist_usage, options);
63 }
64
26252ea6 65 return __cmd_evlist(input_name, &details);
43adec95 66}
This page took 0.114942 seconds and 5 git commands to generate.