blob: 0adb5f82335ad22534a6f7d91e4fc3b34086bb47 [file] [log] [blame]
Jiri Olsa2245bf12015-02-20 23:16:59 +01001#include <linux/compiler.h>
2#include "builtin.h"
3#include "perf.h"
4#include "debug.h"
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -06005#include <subcmd/parse-options.h>
Wang Nan3275f682016-06-24 11:22:07 +00006#include "data-convert.h"
Jiri Olsaedbe9812015-02-20 23:17:00 +01007#include "data-convert-bt.h"
Jiri Olsa2245bf12015-02-20 23:16:59 +01008
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03009typedef int (*data_cmd_fn_t)(int argc, const char **argv);
Jiri Olsa2245bf12015-02-20 23:16:59 +010010
11struct data_cmd {
12 const char *name;
13 const char *summary;
14 data_cmd_fn_t fn;
15};
16
17static struct data_cmd data_cmds[];
18
19#define for_each_cmd(cmd) \
20 for (cmd = data_cmds; cmd && cmd->name; cmd++)
21
22static const struct option data_options[] = {
23 OPT_END()
24};
25
Yunlong Song01b71602015-03-18 21:35:52 +080026static const char * const data_subcommands[] = { "convert", NULL };
27
28static const char *data_usage[] = {
Jiri Olsa2245bf12015-02-20 23:16:59 +010029 "perf data [<common options>] <command> [<options>]",
30 NULL
31};
32
33static void print_usage(void)
34{
35 struct data_cmd *cmd;
36
37 printf("Usage:\n");
38 printf("\t%s\n\n", data_usage[0]);
39 printf("\tAvailable commands:\n");
40
41 for_each_cmd(cmd) {
42 printf("\t %s\t- %s\n", cmd->name, cmd->summary);
43 }
44
45 printf("\n");
46}
47
Jiri Olsaedbe9812015-02-20 23:17:00 +010048static const char * const data_convert_usage[] = {
49 "perf data convert [<options>]",
50 NULL
51};
52
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -030053static int cmd_data_convert(int argc, const char **argv)
Jiri Olsaedbe9812015-02-20 23:17:00 +010054{
55 const char *to_ctf = NULL;
Wang Nan3275f682016-06-24 11:22:07 +000056 struct perf_data_convert_opts opts = {
57 .force = false,
Wang Nanf02a6482016-06-24 11:22:08 +000058 .all = false,
Wang Nan3275f682016-06-24 11:22:07 +000059 };
Jiri Olsaedbe9812015-02-20 23:17:00 +010060 const struct option options[] = {
61 OPT_INCR('v', "verbose", &verbose, "be more verbose"),
62 OPT_STRING('i', "input", &input_name, "file", "input file name"),
63#ifdef HAVE_LIBBABELTRACE_SUPPORT
64 OPT_STRING(0, "to-ctf", &to_ctf, NULL, "Convert to CTF format"),
65#endif
Wang Nan3275f682016-06-24 11:22:07 +000066 OPT_BOOLEAN('f', "force", &opts.force, "don't complain, do it"),
Wang Nan9e1a7ea2016-06-24 11:22:11 +000067 OPT_BOOLEAN(0, "all", &opts.all, "Convert all events"),
Jiri Olsaedbe9812015-02-20 23:17:00 +010068 OPT_END()
69 };
70
71#ifndef HAVE_LIBBABELTRACE_SUPPORT
72 pr_err("No conversion support compiled in.\n");
73 return -1;
74#endif
75
76 argc = parse_options(argc, argv, options,
77 data_convert_usage, 0);
78 if (argc) {
79 usage_with_options(data_convert_usage, options);
80 return -1;
81 }
82
83 if (to_ctf) {
84#ifdef HAVE_LIBBABELTRACE_SUPPORT
Wang Nan3275f682016-06-24 11:22:07 +000085 return bt_convert__perf2ctf(input_name, to_ctf, &opts);
Jiri Olsaedbe9812015-02-20 23:17:00 +010086#else
87 pr_err("The libbabeltrace support is not compiled in.\n");
88 return -1;
89#endif
90 }
91
92 return 0;
93}
94
Jiri Olsa2245bf12015-02-20 23:16:59 +010095static struct data_cmd data_cmds[] = {
Jiri Olsaedbe9812015-02-20 23:17:00 +010096 { "convert", "converts data file between formats", cmd_data_convert },
Yunlong Song1f924c22015-02-27 19:53:46 +080097 { .name = NULL, },
Jiri Olsa2245bf12015-02-20 23:16:59 +010098};
99
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300100int cmd_data(int argc, const char **argv)
Jiri Olsa2245bf12015-02-20 23:16:59 +0100101{
102 struct data_cmd *cmd;
103 const char *cmdstr;
104
105 /* No command specified. */
106 if (argc < 2)
107 goto usage;
108
Yunlong Song01b71602015-03-18 21:35:52 +0800109 argc = parse_options_subcommand(argc, argv, data_options, data_subcommands, data_usage,
Jiri Olsa2245bf12015-02-20 23:16:59 +0100110 PARSE_OPT_STOP_AT_NON_OPTION);
111 if (argc < 1)
112 goto usage;
113
114 cmdstr = argv[0];
115
116 for_each_cmd(cmd) {
117 if (strcmp(cmd->name, cmdstr))
118 continue;
119
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -0300120 return cmd->fn(argc, argv);
Jiri Olsa2245bf12015-02-20 23:16:59 +0100121 }
122
123 pr_err("Unknown command: %s\n", cmdstr);
124usage:
125 print_usage();
126 return -1;
127}