Use inheritance for trace descriptor and positions
[babeltrace.git] / converter / babeltrace.c
CommitLineData
34ac0e6c
MD
1/*
2 * babeltrace.c
3 *
4 * Babeltrace Trace Converter
5 *
6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 */
4c8bfb7e 18
34ac0e6c 19#include <babeltrace/babeltrace.h>
7fb21036 20#include <babeltrace/format.h>
34ac0e6c
MD
21#include <popt.h>
22#include <errno.h>
23#include <stdlib.h>
bbefb8dd
MD
24#include <ctype.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27#include <fcntl.h>
4c8bfb7e 28
bbefb8dd
MD
29static char *opt_input_format;
30static char *opt_output_format;
34ac0e6c
MD
31
32static const char *opt_input_path;
33static const char *opt_output_path;
34
35int babeltrace_verbose, babeltrace_debug;
36
bbefb8dd
MD
37void strlower(char *str)
38{
39 while (*str) {
40 *str = tolower(*str);
41 str++;
42 }
43}
44
34ac0e6c
MD
45enum {
46 OPT_NONE = 0,
47 OPT_HELP,
7fb21036 48 OPT_LIST,
34ac0e6c
MD
49 OPT_VERBOSE,
50 OPT_DEBUG,
51};
52
53static struct poptOption long_options[] = {
54 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
55 { "input-format", 'i', POPT_ARG_STRING, &opt_input_format, OPT_NONE, NULL, NULL },
56 { "output-format", 'o', POPT_ARG_STRING, &opt_output_format, OPT_NONE, NULL, NULL },
57 { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL },
7fb21036 58 { "list", 'l', POPT_ARG_NONE, NULL, OPT_LIST, NULL, NULL },
34ac0e6c
MD
59 { "verbose", 'v', POPT_ARG_NONE, NULL, OPT_VERBOSE, NULL, NULL },
60 { "debug", 'd', POPT_ARG_NONE, NULL, OPT_DEBUG, NULL, NULL },
61 { NULL, 0, 0, NULL, 0, NULL, NULL },
62};
63
7fb21036
MD
64static void list_formats(FILE *fp)
65{
66 fprintf(fp, "\n");
67 bt_fprintf_format_list(fp);
68}
69
34ac0e6c 70static void usage(FILE *fp)
4c8bfb7e 71{
0f980a35
MD
72 fprintf(fp, "BabelTrace Trace Converter %u.%u\n\n",
73 BABELTRACE_VERSION_MAJOR,
34ac0e6c
MD
74 BABELTRACE_VERSION_MINOR);
75 fprintf(fp, "usage : babeltrace [OPTIONS] INPUT OUTPUT\n");
76 fprintf(fp, "\n");
77 fprintf(fp, " INPUT Input trace path\n");
78 fprintf(fp, " OUTPUT Output trace path\n");
79 fprintf(fp, "\n");
80 fprintf(fp, " -i, --input-format Input trace path\n");
81 fprintf(fp, " -o, --output-format Input trace path\n");
82 fprintf(fp, "\n");
83 fprintf(fp, " -h, --help This help message\n");
7fb21036 84 fprintf(fp, " -l, --list List available formats\n");
34ac0e6c
MD
85 fprintf(fp, " -v, --verbose Verbose mode\n");
86 fprintf(fp, " -d, --debug Debug mode\n");
7fb21036 87 list_formats(fp);
34ac0e6c
MD
88 fprintf(fp, "\n");
89}
90
91/*
92 * Return 0 if caller should continue, < 0 if caller should return
93 * error, > 0 if caller should exit without reporting error.
94 */
bbefb8dd 95static int parse_options(int argc, char **argv)
34ac0e6c
MD
96{
97 poptContext pc;
98 int opt, ret = 0;
99
0f980a35
MD
100 if (argc == 1) {
101 usage(stdout);
102 return 1; /* exit cleanly */
103 }
104
bbefb8dd 105 pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 0);
34ac0e6c
MD
106 poptReadDefaultConfig(pc, 0);
107
108 while ((opt = poptGetNextOpt(pc)) != -1) {
109 switch (opt) {
110 case OPT_HELP:
7fb21036 111 usage(stdout);
34ac0e6c
MD
112 ret = 1; /* exit cleanly */
113 goto end;
7fb21036
MD
114 case OPT_LIST:
115 list_formats(stdout);
116 ret = 1;
117 goto end;
34ac0e6c
MD
118 case OPT_VERBOSE:
119 babeltrace_verbose = 1;
120 break;
121 case OPT_DEBUG:
122 babeltrace_debug = 1;
123 break;
124 default:
125 ret = -EINVAL;
126 goto end;
127 }
128 }
129
130 opt_input_path = poptGetArg(pc);
131 if (!opt_input_path) {
132 ret = -EINVAL;
133 goto end;
134 }
135 opt_output_path = poptGetArg(pc);
136 if (!opt_output_path) {
137 ret = -EINVAL;
138 goto end;
139 }
140end:
141 if (pc) {
142 poptFreeContext(pc);
143 }
144 return ret;
145}
146
bbefb8dd 147int main(int argc, char **argv)
34ac0e6c
MD
148{
149 int ret;
bbefb8dd
MD
150 struct format *fmt_read, *fmt_write;
151 struct trace_descriptor *td_read, *td_write;
34ac0e6c
MD
152
153 ret = parse_options(argc, argv);
154 if (ret < 0) {
bbefb8dd 155 fprintf(stdout, "Error parsing options.\n\n");
34ac0e6c
MD
156 usage(stdout);
157 exit(EXIT_FAILURE);
158 } else if (ret > 0) {
159 exit(EXIT_SUCCESS);
160 }
161 printf_verbose("Verbose mode active.\n");
162 printf_debug("Debug mode active.\n");
163
bbefb8dd
MD
164 if (opt_input_format)
165 strlower(opt_input_format);
166 if (opt_output_format)
167 strlower(opt_output_format);
168
34ac0e6c
MD
169 printf_verbose("Converting from file: %s\n", opt_input_path);
170 printf_verbose("Converting from format: %s\n",
171 opt_input_format ? : "<autodetect>");
172 printf_verbose("Converting to file: %s\n", opt_output_path);
173 printf_verbose("Converting to format: %s\n",
bbefb8dd
MD
174 opt_output_format ? : "ctf");
175
176 if (!opt_input_format) {
177 fprintf(stdout, "Error: input format autodetection not implemented yet.\n\n");
178 usage(stdout);
179 exit(EXIT_FAILURE);
180 }
181 fmt_read = bt_lookup_format(g_quark_from_static_string(opt_input_format));
182 if (!fmt_read) {
183 fprintf(stdout, "Error: format \"%s\" is not supported.\n\n",
184 opt_input_format);
185 exit(EXIT_FAILURE);
186 }
187 if (!opt_output_format)
188 opt_output_format = "ctf";
189 fmt_write = bt_lookup_format(g_quark_from_static_string(opt_output_format));
190 if (!fmt_write) {
191 fprintf(stdout, "Error: format \"%s\" is not supported.\n\n",
192 opt_output_format);
193 exit(EXIT_FAILURE);
194 }
195
196 td_read = fmt_read->open_trace(opt_input_path, O_RDONLY);
197 if (!td_read) {
198 fprintf(stdout, "Error opening trace \"%s\" for reading.\n\n",
199 opt_input_path);
200 goto error_td_read;
201 }
202
203 td_write = fmt_write->open_trace(opt_output_path, O_WRONLY);
204 if (!td_write) {
205 fprintf(stdout, "Error opening trace \"%s\" for writing.\n\n",
206 opt_output_path);
207 goto error_td_write;
208 }
46322b33
MD
209#if 0
210 ret = print_trace(fmt_write, td_write, fmt_read, td_read);
211 if (ret) {
212 fprintf(stdout, "Error printing trace.\n\n");
213 goto error_copy_trace;
214 }
215#endif //0
bbefb8dd
MD
216 fmt_write->close_trace(td_write);
217 fmt_read->close_trace(td_read);
218 exit(EXIT_SUCCESS);
34ac0e6c 219
bbefb8dd 220 /* Error handling */
46322b33 221error_copy_trace:
bbefb8dd
MD
222 fmt_write->close_trace(td_write);
223error_td_write:
224 fmt_read->close_trace(td_read);
225error_td_read:
226 exit(EXIT_FAILURE);
4c8bfb7e 227}
This page took 0.032961 seconds and 4 git commands to generate.