Fix: handle error checking should compare against NULL
[babeltrace.git] / converter / babeltrace.c
CommitLineData
34ac0e6c
MD
1/*
2 * babeltrace.c
3 *
4 * Babeltrace Trace Converter
5 *
64fa3fec
MD
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
7 *
8 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
34ac0e6c
MD
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
c462e188
MD
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
34ac0e6c 27 */
4c8bfb7e 28
20d24215 29#define _GNU_SOURCE
00f7fbf0 30#include <config.h>
95d36295 31#include <babeltrace/babeltrace.h>
7fb21036 32#include <babeltrace/format.h>
95d36295 33#include <babeltrace/context.h>
7237592a 34#include <babeltrace/context-internal.h>
95d36295 35#include <babeltrace/ctf/types.h>
9843982d 36#include <babeltrace/ctf/events.h>
04ae3991
MD
37/* TODO: fix object model for format-agnostic callbacks */
38#include <babeltrace/ctf/events-internal.h>
9efd5d76 39#include <babeltrace/ctf/iterator.h>
31bdef5c 40#include <babeltrace/ctf-text/types.h>
6204d33c 41#include <babeltrace/iterator.h>
34ac0e6c
MD
42#include <popt.h>
43#include <errno.h>
44#include <stdlib.h>
bbefb8dd
MD
45#include <ctype.h>
46#include <sys/stat.h>
47#include <sys/types.h>
48#include <fcntl.h>
afb48eae 49#include <unistd.h>
70accc14 50#include <inttypes.h>
a99343cf 51#include <ftw.h>
11e1d048 52#include <string.h>
4c8bfb7e 53
a44bc4c9
MD
54#include <babeltrace/ctf-ir/metadata.h> /* for clocks */
55
24d5af5b
MD
56#define PARTIAL_ERROR_SLEEP 3 /* 3 seconds */
57
afb48eae 58#define DEFAULT_FILE_ARRAY_SIZE 1
9fe26ec7 59
11e1d048 60static char *opt_input_format, *opt_output_format;
34ac0e6c 61
41075e78
MD
62/*
63 * We are not freeing opt_input_paths ipath elements when exiting from
64 * main() for backward compatibility with libpop 0.13, which does not
65 * allocate copies for arguments returned by poptGetArg(), and for
66 * general compatibility with the documented behavior. This is known to
67 * cause a small memory leak with libpop 0.16.
68 */
4e85cbfd 69static GPtrArray *opt_input_paths;
9fe26ec7 70static char *opt_output_path;
34ac0e6c 71
37b99bdb 72static struct bt_format *fmt_read;
afb48eae 73
11e1d048 74static
bbefb8dd
MD
75void strlower(char *str)
76{
77 while (*str) {
34224260 78 *str = tolower((int) *str);
bbefb8dd
MD
79 str++;
80 }
81}
82
34ac0e6c
MD
83enum {
84 OPT_NONE = 0,
9fe26ec7
MD
85 OPT_OUTPUT_PATH,
86 OPT_INPUT_FORMAT,
87 OPT_OUTPUT_FORMAT,
34ac0e6c 88 OPT_HELP,
7fb21036 89 OPT_LIST,
34ac0e6c
MD
90 OPT_VERBOSE,
91 OPT_DEBUG,
d63ca2cd 92 OPT_NAMES,
359d7456 93 OPT_FIELDS,
8d8ed9af 94 OPT_NO_DELTA,
11ac6674 95 OPT_CLOCK_OFFSET,
65923160 96 OPT_CLOCK_OFFSET_NS,
03798a93 97 OPT_CLOCK_CYCLES,
11ac6674
MD
98 OPT_CLOCK_SECONDS,
99 OPT_CLOCK_DATE,
100 OPT_CLOCK_GMT,
82ace6d6 101 OPT_CLOCK_FORCE_CORRELATE,
34ac0e6c
MD
102};
103
9fe26ec7
MD
104/*
105 * We are _not_ using POPT_ARG_STRING ability to store directly into
106 * variables, because we want to cast the return to non-const, which is
41075e78
MD
107 * not possible without using poptGetOptArg explicitly. This helps us
108 * controlling memory allocation correctly without making assumptions
109 * about undocumented behaviors. poptGetOptArg is documented as
110 * requiring the returned const char * to be freed by the caller.
9fe26ec7 111 */
34ac0e6c
MD
112static struct poptOption long_options[] = {
113 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
c790c052 114 { "output", 'w', POPT_ARG_STRING, NULL, OPT_OUTPUT_PATH, NULL, NULL },
9fe26ec7
MD
115 { "input-format", 'i', POPT_ARG_STRING, NULL, OPT_INPUT_FORMAT, NULL, NULL },
116 { "output-format", 'o', POPT_ARG_STRING, NULL, OPT_OUTPUT_FORMAT, NULL, NULL },
34ac0e6c 117 { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL },
7fb21036 118 { "list", 'l', POPT_ARG_NONE, NULL, OPT_LIST, NULL, NULL },
34ac0e6c
MD
119 { "verbose", 'v', POPT_ARG_NONE, NULL, OPT_VERBOSE, NULL, NULL },
120 { "debug", 'd', POPT_ARG_NONE, NULL, OPT_DEBUG, NULL, NULL },
cba1661c 121 { "names", 'n', POPT_ARG_STRING, NULL, OPT_NAMES, NULL, NULL },
359d7456 122 { "fields", 'f', POPT_ARG_STRING, NULL, OPT_FIELDS, NULL, NULL },
8d8ed9af 123 { "no-delta", 0, POPT_ARG_NONE, NULL, OPT_NO_DELTA, NULL, NULL },
11ac6674 124 { "clock-offset", 0, POPT_ARG_STRING, NULL, OPT_CLOCK_OFFSET, NULL, NULL },
65923160 125 { "clock-offset-ns", 0, POPT_ARG_STRING, NULL, OPT_CLOCK_OFFSET_NS, NULL, NULL },
03798a93 126 { "clock-cycles", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_CYCLES, NULL, NULL },
11ac6674
MD
127 { "clock-seconds", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_SECONDS, NULL, NULL },
128 { "clock-date", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_DATE, NULL, NULL },
129 { "clock-gmt", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_GMT, NULL, NULL },
82ace6d6 130 { "clock-force-correlate", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_FORCE_CORRELATE, NULL, NULL },
34ac0e6c
MD
131 { NULL, 0, 0, NULL, 0, NULL, NULL },
132};
133
7fb21036
MD
134static void list_formats(FILE *fp)
135{
136 fprintf(fp, "\n");
137 bt_fprintf_format_list(fp);
138}
139
34ac0e6c 140static void usage(FILE *fp)
4c8bfb7e 141{
4c15b06b 142 fprintf(fp, "BabelTrace Trace Viewer and Converter %s\n\n", VERSION);
4e85cbfd 143 fprintf(fp, "usage : babeltrace [OPTIONS] FILE...\n");
34ac0e6c 144 fprintf(fp, "\n");
4e85cbfd
MD
145 fprintf(fp, " FILE Input trace file(s) and/or directory(ies)\n");
146 fprintf(fp, " (space-separated)\n");
147 fprintf(fp, " -w, --output OUTPUT Output trace path (default: stdout)\n");
34ac0e6c 148 fprintf(fp, "\n");
d2b8ea6b
MD
149 fprintf(fp, " -i, --input-format FORMAT Input trace format (default: ctf)\n");
150 fprintf(fp, " -o, --output-format FORMAT Output trace format (default: text)\n");
34ac0e6c 151 fprintf(fp, "\n");
4d5678b9
MD
152 fprintf(fp, " -h, --help This help message\n");
153 fprintf(fp, " -l, --list List available formats\n");
154 fprintf(fp, " -v, --verbose Verbose mode\n");
cba1661c 155 fprintf(fp, " (or set BABELTRACE_VERBOSE environment variable)\n");
4d5678b9 156 fprintf(fp, " -d, --debug Debug mode\n");
cba1661c 157 fprintf(fp, " (or set BABELTRACE_DEBUG environment variable)\n");
8d8ed9af 158 fprintf(fp, " --no-delta Do not print time delta between consecutive events\n");
359d7456 159 fprintf(fp, " -n, --names name1<,name2,...> Print field names:\n");
82662ad4 160 fprintf(fp, " (payload OR args OR arg)\n");
12c9c3bc
MD
161 fprintf(fp, " none, all, scope, header, (context OR ctx)\n");
162 fprintf(fp, " (default: payload,context)\n");
359d7456 163 fprintf(fp, " -f, --fields name1<,name2,...> Print additional fields:\n");
32cfb8ad 164 fprintf(fp, " all, trace, trace:hostname, trace:domain,\n");
f133896d 165 fprintf(fp, " trace:procname, trace:vpid, loglevel, emf, callsite.\n");
c3815874 166 fprintf(fp, " (default: trace:hostname,trace:procname,trace:vpid)\n");
03798a93 167 fprintf(fp, " --clock-cycles Timestamp in cycles\n");
11ac6674 168 fprintf(fp, " --clock-offset seconds Clock offset in seconds\n");
65923160 169 fprintf(fp, " --clock-offset-ns ns Clock offset in nanoseconds\n");
11ac6674
MD
170 fprintf(fp, " --clock-seconds Print the timestamps as [sec.ns]\n");
171 fprintf(fp, " (default is: [hh:mm:ss.ns])\n");
172 fprintf(fp, " --clock-date Print clock date\n");
173 fprintf(fp, " --clock-gmt Print clock in GMT time zone (default: local time zone)\n");
82ace6d6
MD
174 fprintf(fp, " --clock-force-correlate Assume that clocks are inherently correlated\n");
175 fprintf(fp, " across traces.\n");
7fb21036 176 list_formats(fp);
34ac0e6c
MD
177 fprintf(fp, "\n");
178}
179
cba1661c
MD
180static int get_names_args(poptContext *pc)
181{
182 char *str, *strlist, *strctx;
9f2c779c 183 int ret = 0;
cba1661c
MD
184
185 opt_payload_field_names = 0;
12c9c3bc 186 opt_context_field_names = 0;
cba1661c
MD
187 strlist = (char *) poptGetOptArg(*pc);
188 if (!strlist) {
189 return -EINVAL;
190 }
191 str = strtok_r(strlist, ",", &strctx);
192 do {
193 if (!strcmp(str, "all"))
194 opt_all_field_names = 1;
195 else if (!strcmp(str, "scope"))
196 opt_scope_field_names = 1;
197 else if (!strcmp(str, "context") || !strcmp(str, "ctx"))
198 opt_context_field_names = 1;
199 else if (!strcmp(str, "header"))
200 opt_header_field_names = 1;
201 else if (!strcmp(str, "payload") || !strcmp(str, "args") || !strcmp(str, "arg"))
202 opt_payload_field_names = 1;
12c9c3bc
MD
203 else if (!strcmp(str, "none")) {
204 opt_all_field_names = 0;
205 opt_scope_field_names = 0;
206 opt_context_field_names = 0;
207 opt_header_field_names = 0;
208 opt_payload_field_names = 0;
209 } else {
359d7456 210 fprintf(stderr, "[error] unknown field name type %s\n", str);
9f2c779c
MD
211 ret = -EINVAL;
212 goto end;
359d7456
MD
213 }
214 } while ((str = strtok_r(NULL, ",", &strctx)));
9f2c779c
MD
215end:
216 free(strlist);
217 return ret;
359d7456
MD
218}
219
220static int get_fields_args(poptContext *pc)
221{
222 char *str, *strlist, *strctx;
9f2c779c 223 int ret = 0;
359d7456 224
359d7456
MD
225 strlist = (char *) poptGetOptArg(*pc);
226 if (!strlist) {
227 return -EINVAL;
228 }
229 str = strtok_r(strlist, ",", &strctx);
230 do {
c3815874 231 opt_trace_default_fields = 0;
359d7456
MD
232 if (!strcmp(str, "all"))
233 opt_all_fields = 1;
82662ad4 234 else if (!strcmp(str, "trace"))
359d7456 235 opt_trace_field = 1;
c3815874
MD
236 else if (!strcmp(str, "trace:hostname"))
237 opt_trace_hostname_field = 1;
8c250d87 238 else if (!strcmp(str, "trace:domain"))
359d7456 239 opt_trace_domain_field = 1;
8c250d87 240 else if (!strcmp(str, "trace:procname"))
359d7456 241 opt_trace_procname_field = 1;
8c250d87 242 else if (!strcmp(str, "trace:vpid"))
359d7456 243 opt_trace_vpid_field = 1;
d86d62f8 244 else if (!strcmp(str, "loglevel"))
359d7456 245 opt_loglevel_field = 1;
f6714e20
MD
246 else if (!strcmp(str, "emf"))
247 opt_emf_field = 1;
f133896d
MD
248 else if (!strcmp(str, "callsite"))
249 opt_callsite_field = 1;
cba1661c 250 else {
359d7456 251 fprintf(stderr, "[error] unknown field type %s\n", str);
9f2c779c
MD
252 ret = -EINVAL;
253 goto end;
cba1661c
MD
254 }
255 } while ((str = strtok_r(NULL, ",", &strctx)));
9f2c779c
MD
256end:
257 free(strlist);
258 return ret;
cba1661c
MD
259}
260
34ac0e6c
MD
261/*
262 * Return 0 if caller should continue, < 0 if caller should return
263 * error, > 0 if caller should exit without reporting error.
264 */
bbefb8dd 265static int parse_options(int argc, char **argv)
34ac0e6c
MD
266{
267 poptContext pc;
268 int opt, ret = 0;
41075e78 269 const char *ipath;
34ac0e6c 270
0f980a35
MD
271 if (argc == 1) {
272 usage(stdout);
273 return 1; /* exit cleanly */
274 }
275
bbefb8dd 276 pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 0);
34ac0e6c
MD
277 poptReadDefaultConfig(pc, 0);
278
cba1661c 279 /* set default */
e505794f 280 opt_context_field_names = 1;
cba1661c
MD
281 opt_payload_field_names = 1;
282
34ac0e6c
MD
283 while ((opt = poptGetNextOpt(pc)) != -1) {
284 switch (opt) {
9fe26ec7
MD
285 case OPT_OUTPUT_PATH:
286 opt_output_path = (char *) poptGetOptArg(pc);
287 if (!opt_output_path) {
288 ret = -EINVAL;
289 goto end;
290 }
291 break;
292 case OPT_INPUT_FORMAT:
293 opt_input_format = (char *) poptGetOptArg(pc);
294 if (!opt_input_format) {
295 ret = -EINVAL;
296 goto end;
297 }
298 break;
299 case OPT_OUTPUT_FORMAT:
300 opt_output_format = (char *) poptGetOptArg(pc);
301 if (!opt_output_format) {
302 ret = -EINVAL;
303 goto end;
304 }
305 break;
34ac0e6c 306 case OPT_HELP:
7fb21036 307 usage(stdout);
34ac0e6c
MD
308 ret = 1; /* exit cleanly */
309 goto end;
7fb21036
MD
310 case OPT_LIST:
311 list_formats(stdout);
312 ret = 1;
313 goto end;
34ac0e6c
MD
314 case OPT_VERBOSE:
315 babeltrace_verbose = 1;
316 break;
cba1661c
MD
317 case OPT_NAMES:
318 if (get_names_args(&pc)) {
319 ret = -EINVAL;
320 goto end;
321 }
322 break;
359d7456
MD
323 case OPT_FIELDS:
324 if (get_fields_args(&pc)) {
325 ret = -EINVAL;
326 goto end;
327 }
328 break;
34ac0e6c
MD
329 case OPT_DEBUG:
330 babeltrace_debug = 1;
331 break;
8d8ed9af 332 case OPT_NO_DELTA:
359d7456 333 opt_delta_field = 0;
8d8ed9af 334 break;
03798a93
JD
335 case OPT_CLOCK_CYCLES:
336 opt_clock_cycles = 1;
11ac6674
MD
337 break;
338 case OPT_CLOCK_OFFSET:
339 {
9f2c779c 340 char *str;
34224260 341 char *endptr;
11ac6674 342
9f2c779c 343 str = (char *) poptGetOptArg(pc);
11ac6674
MD
344 if (!str) {
345 fprintf(stderr, "[error] Missing --clock-offset argument\n");
346 ret = -EINVAL;
347 goto end;
348 }
349 errno = 0;
350 opt_clock_offset = strtoull(str, &endptr, 0);
351 if (*endptr != '\0' || str == endptr || errno != 0) {
352 fprintf(stderr, "[error] Incorrect --clock-offset argument: %s\n", str);
353 ret = -EINVAL;
9f2c779c 354 free(str);
11ac6674
MD
355 goto end;
356 }
9f2c779c 357 free(str);
11ac6674
MD
358 break;
359 }
360 case OPT_CLOCK_SECONDS:
361 opt_clock_seconds = 1;
362 break;
65923160
IJ
363 case OPT_CLOCK_OFFSET_NS:
364 {
365 char *str;
366 char *endptr;
367
368 str = (char *) poptGetOptArg(pc);
369 if (!str) {
370 fprintf(stderr, "[error] Missing --clock-offset-ns argument\n");
371 ret = -EINVAL;
372 goto end;
373 }
374 errno = 0;
375 opt_clock_offset_ns = strtoull(str, &endptr, 0);
376 if (*endptr != '\0' || str == endptr || errno != 0) {
377 fprintf(stderr, "[error] Incorrect --clock-offset-ns argument: %s\n", str);
378 ret = -EINVAL;
379 free(str);
380 goto end;
381 }
382 free(str);
383 break;
384 }
385
11ac6674
MD
386 case OPT_CLOCK_DATE:
387 opt_clock_date = 1;
388 break;
389 case OPT_CLOCK_GMT:
390 opt_clock_gmt = 1;
391 break;
82ace6d6
MD
392 case OPT_CLOCK_FORCE_CORRELATE:
393 opt_clock_force_correlate = 1;
394 break;
11ac6674 395
34ac0e6c
MD
396 default:
397 ret = -EINVAL;
398 goto end;
399 }
400 }
401
4e85cbfd 402 do {
41075e78 403 ipath = poptGetArg(pc);
4e85cbfd
MD
404 if (ipath)
405 g_ptr_array_add(opt_input_paths, (gpointer) ipath);
406 } while (ipath);
407 if (opt_input_paths->len == 0) {
34ac0e6c
MD
408 ret = -EINVAL;
409 goto end;
410 }
cba1661c 411
34ac0e6c
MD
412end:
413 if (pc) {
414 poptFreeContext(pc);
415 }
416 return ret;
417}
418
a99343cf 419static GPtrArray *traversed_paths = 0;
afb48eae 420
a99343cf
YB
421/*
422 * traverse_trace_dir() is the callback function for File Tree Walk (nftw).
423 * it receives the path of the current entry (file, dir, link..etc) with
424 * a flag to indicate the type of the entry.
425 * if the entry being visited is a directory and contains a metadata file,
426 * then add the path to a global list to be processed later in
427 * add_traces_recursive.
428 */
429static int traverse_trace_dir(const char *fpath, const struct stat *sb,
430 int tflag, struct FTW *ftwbuf)
431{
432 int dirfd, metafd;
433 int closeret;
434
435 if (tflag != FTW_D)
436 return 0;
437
438 dirfd = open(fpath, 0);
439 if (dirfd < 0) {
440 fprintf(stderr, "[error] [Context] Unable to open trace "
441 "directory file descriptor.\n");
442 return 0; /* partial error */
443 }
444 metafd = openat(dirfd, "metadata", O_RDONLY);
445 if (metafd < 0) {
446 closeret = close(dirfd);
447 if (closeret < 0) {
448 perror("close");
449 return -1;
450 }
451 /* No meta data, just return */
452 return 0;
453 } else {
454 closeret = close(metafd);
455 if (closeret < 0) {
456 perror("close");
457 return -1; /* failure */
458 }
459 closeret = close(dirfd);
460 if (closeret < 0) {
461 perror("close");
462 return -1; /* failure */
463 }
464
465 /* Add path to the global list */
466 if (traversed_paths == NULL) {
467 fprintf(stderr, "[error] [Context] Invalid open path array.\n");
468 return -1;
469 }
470 g_ptr_array_add(traversed_paths, g_string_new(fpath));
471 }
472
473 return 0;
474}
d0d82191 475
20d24215
YB
476/*
477 * bt_context_add_traces_recursive: Open a trace recursively
478 *
479 * Find each trace present in the subdirectory starting from the given
613f532b
MD
480 * path, and add them to the context. The packet_seek parameter can be
481 * NULL: this specify to use the default format packet_seek.
20d24215 482 *
b945d4a5 483 * Return: 0 on success, < 0 on failure, > 0 on partial failure.
20d24215 484 * Unable to open toplevel: failure.
b945d4a5
MD
485 * Unable to open some subdirectory or file: warn and continue (partial
486 * failure);
20d24215
YB
487 */
488int bt_context_add_traces_recursive(struct bt_context *ctx, const char *path,
613f532b 489 const char *format_str,
1cf393f6 490 void (*packet_seek)(struct bt_stream_pos *pos,
613f532b 491 size_t offset, int whence))
20d24215 492{
fd94f11c 493 int ret = 0, trace_ids = 0;
20d24215 494
a99343cf 495 /* Should lock traversed_paths mutex here if used in multithread */
20d24215 496
a99343cf 497 traversed_paths = g_ptr_array_new();
a99343cf
YB
498 ret = nftw(path, traverse_trace_dir, 10, 0);
499
500 /* Process the array if ntfw did not return a fatal error */
501 if (ret >= 0) {
08c82b90
MD
502 int i;
503
a99343cf
YB
504 for (i = 0; i < traversed_paths->len; i++) {
505 GString *trace_path = g_ptr_array_index(traversed_paths,
506 i);
507 int trace_id = bt_context_add_trace(ctx,
508 trace_path->str,
509 format_str,
510 packet_seek,
511 NULL,
512 NULL);
20d24215 513 if (trace_id < 0) {
7f89ddce 514 fprintf(stderr, "[warning] [Context] cannot open trace \"%s\" from %s "
a99343cf 515 "for reading.\n", trace_path->str, path);
ca718275 516 /* Allow to skip erroneous traces. */
b945d4a5 517 ret = 1; /* partial error */
a99343cf 518 } else {
fd94f11c 519 trace_ids++;
20d24215 520 }
a99343cf 521 g_string_free(trace_path, TRUE);
20d24215
YB
522 }
523 }
d0d82191 524
a99343cf
YB
525 g_ptr_array_free(traversed_paths, TRUE);
526 traversed_paths = NULL;
527
528 /* Should unlock traversed paths mutex here if used in multithread */
20d24215 529
27cd3890
MD
530 /*
531 * Return an error if no trace can be opened.
532 */
fd94f11c 533 if (trace_ids == 0) {
27cd3890 534 fprintf(stderr, "[error] Cannot open any trace for reading.\n\n");
b945d4a5 535 ret = -ENOENT; /* failure */
27cd3890 536 }
20d24215
YB
537 return ret;
538}
a44bc4c9 539
7237592a
MD
540static
541int trace_pre_handler(struct bt_trace_descriptor *td_write,
542 struct bt_context *ctx)
543{
544 struct ctf_text_stream_pos *sout;
545 struct trace_collection *tc;
546 int ret, i;
547
548 sout = container_of(td_write, struct ctf_text_stream_pos,
549 trace_descriptor);
550
551 if (!sout->parent.pre_trace_cb)
552 return 0;
553
554 tc = ctx->tc;
555 for (i = 0; i < tc->array->len; i++) {
556 struct bt_trace_descriptor *td =
557 g_ptr_array_index(tc->array, i);
558
559 ret = sout->parent.pre_trace_cb(&sout->parent, td);
560 if (ret) {
561 fprintf(stderr, "[error] Writing to trace pre handler failed.\n");
562 goto end;
563 }
564 }
565 ret = 0;
566end:
567 return ret;
568}
569
570static
571int trace_post_handler(struct bt_trace_descriptor *td_write,
572 struct bt_context *ctx)
573{
574 struct ctf_text_stream_pos *sout;
575 struct trace_collection *tc;
576 int ret, i;
577
578 sout = container_of(td_write, struct ctf_text_stream_pos,
579 trace_descriptor);
580
581 if (!sout->parent.post_trace_cb)
582 return 0;
583
584 tc = ctx->tc;
585 for (i = 0; i < tc->array->len; i++) {
586 struct bt_trace_descriptor *td =
587 g_ptr_array_index(tc->array, i);
588
589 ret = sout->parent.post_trace_cb(&sout->parent, td);
590 if (ret) {
591 fprintf(stderr, "[error] Writing to trace post handler failed.\n");
592 goto end;
593 }
594 }
595 ret = 0;
596end:
597 return ret;
598}
599
600static
1b8455b7 601int convert_trace(struct bt_trace_descriptor *td_write,
95d36295
JD
602 struct bt_context *ctx)
603{
e4195791 604 struct bt_ctf_iter *iter;
95d36295 605 struct ctf_text_stream_pos *sout;
e8c92a62 606 struct bt_iter_pos begin_pos;
c50d2a7a 607 struct bt_ctf_event *ctf_event;
95d36295
JD
608 int ret;
609
610 sout = container_of(td_write, struct ctf_text_stream_pos,
611 trace_descriptor);
612
7237592a
MD
613 if (!sout->parent.event_cb)
614 return 0;
615
95d36295 616 begin_pos.type = BT_SEEK_BEGIN;
e4195791 617 iter = bt_ctf_iter_create(ctx, &begin_pos, NULL);
95d36295
JD
618 if (!iter) {
619 ret = -1;
620 goto error_iter;
621 }
e4195791 622 while ((ctf_event = bt_ctf_iter_read_event(iter))) {
c50d2a7a 623 ret = sout->parent.event_cb(&sout->parent, ctf_event->parent->stream);
95d36295 624 if (ret) {
3394d22e 625 fprintf(stderr, "[error] Writing event failed.\n");
95d36295
JD
626 goto end;
627 }
e4195791 628 ret = bt_iter_next(bt_ctf_get_iter(iter));
95d36295
JD
629 if (ret < 0)
630 goto end;
631 }
632 ret = 0;
633
634end:
e4195791 635 bt_ctf_iter_destroy(iter);
95d36295
JD
636error_iter:
637 return ret;
638}
639
bbefb8dd 640int main(int argc, char **argv)
34ac0e6c 641{
4e85cbfd 642 int ret, partial_error = 0, open_success = 0;
37b99bdb 643 struct bt_format *fmt_write;
1b8455b7 644 struct bt_trace_descriptor *td_write;
95d36295 645 struct bt_context *ctx;
4e85cbfd
MD
646 int i;
647
648 opt_input_paths = g_ptr_array_new();
34ac0e6c
MD
649
650 ret = parse_options(argc, argv);
651 if (ret < 0) {
3394d22e
MD
652 fprintf(stderr, "Error parsing options.\n\n");
653 usage(stderr);
4e85cbfd 654 g_ptr_array_free(opt_input_paths, TRUE);
34ac0e6c
MD
655 exit(EXIT_FAILURE);
656 } else if (ret > 0) {
4e85cbfd 657 g_ptr_array_free(opt_input_paths, TRUE);
34ac0e6c
MD
658 exit(EXIT_SUCCESS);
659 }
660 printf_verbose("Verbose mode active.\n");
661 printf_debug("Debug mode active.\n");
662
9fe26ec7 663 if (opt_input_format)
bbefb8dd 664 strlower(opt_input_format);
9fe26ec7 665 if (opt_output_format)
bbefb8dd
MD
666 strlower(opt_output_format);
667
4e85cbfd
MD
668 printf_verbose("Converting from directory(ies):\n");
669 for (i = 0; i < opt_input_paths->len; i++) {
670 const char *ipath = g_ptr_array_index(opt_input_paths, i);
671 printf_verbose(" %s\n", ipath);
672 }
34ac0e6c 673 printf_verbose("Converting from format: %s\n",
b61922b5 674 opt_input_format ? : "ctf <default>");
c3e4d5dc 675 printf_verbose("Converting to target: %s\n",
478b6389 676 opt_output_path ? : "<stdout>");
34ac0e6c 677 printf_verbose("Converting to format: %s\n",
b61922b5 678 opt_output_format ? : "text <default>");
bbefb8dd 679
11e1d048
MD
680 if (!opt_input_format) {
681 opt_input_format = strdup("ctf");
682 if (!opt_input_format) {
683 partial_error = 1;
684 goto end;
685 }
686 }
687 if (!opt_output_format) {
688 opt_output_format = strdup("text");
689 if (!opt_output_format) {
690 partial_error = 1;
691 goto end;
692 }
693 }
bbefb8dd 694 fmt_read = bt_lookup_format(g_quark_from_static_string(opt_input_format));
05cab525 695 if (!fmt_read || fmt_read->name != g_quark_from_static_string("ctf")) {
3394d22e 696 fprintf(stderr, "[error] Format \"%s\" is not supported.\n\n",
bbefb8dd 697 opt_input_format);
11e1d048
MD
698 partial_error = 1;
699 goto end;
bbefb8dd 700 }
bbefb8dd
MD
701 fmt_write = bt_lookup_format(g_quark_from_static_string(opt_output_format));
702 if (!fmt_write) {
3394d22e 703 fprintf(stderr, "[error] format \"%s\" is not supported.\n\n",
bbefb8dd 704 opt_output_format);
11e1d048
MD
705 partial_error = 1;
706 goto end;
bbefb8dd
MD
707 }
708
6cba487f 709 ctx = bt_context_create();
d63c2d51
JD
710 if (!ctx) {
711 goto error_td_read;
712 }
6cba487f 713
4e85cbfd
MD
714 for (i = 0; i < opt_input_paths->len; i++) {
715 const char *ipath = g_ptr_array_index(opt_input_paths, i);
716 ret = bt_context_add_traces_recursive(ctx, ipath,
717 opt_input_format, NULL);
718 if (ret < 0) {
719 fprintf(stderr, "[error] opening trace \"%s\" for reading.\n\n",
720 ipath);
721 } else if (ret > 0) {
722 fprintf(stderr, "[warning] errors occurred when opening trace \"%s\" for reading, continuing anyway.\n\n",
723 ipath);
724 open_success = 1; /* some traces were OK */
725 partial_error = 1;
726 } else {
727 open_success = 1; /* all traces were OK */
728 }
729 }
730 if (!open_success) {
731 fprintf(stderr, "[error] none of the specified trace paths could be opened.\n\n");
bbefb8dd
MD
732 goto error_td_read;
733 }
6cba487f 734
5b80ddfb 735 td_write = fmt_write->open_trace(opt_output_path, O_RDWR, NULL, NULL);
bbefb8dd 736 if (!td_write) {
3394d22e 737 fprintf(stderr, "Error opening trace \"%s\" for writing.\n\n",
b61922b5 738 opt_output_path ? : "<none>");
bbefb8dd
MD
739 goto error_td_write;
740 }
847bf71a 741
24d5af5b
MD
742 /*
743 * Errors happened when opening traces, but we continue anyway.
744 * sleep to let user see the stderr output before stdout.
745 */
4e85cbfd 746 if (partial_error)
24d5af5b 747 sleep(PARTIAL_ERROR_SLEEP);
24d5af5b 748
7237592a
MD
749 ret = trace_pre_handler(td_write, ctx);
750 if (ret) {
751 fprintf(stderr, "Error in trace pre handle.\n\n");
752 goto error_copy_trace;
753 }
754
95d36295 755 ret = convert_trace(td_write, ctx);
46322b33 756 if (ret) {
3394d22e 757 fprintf(stderr, "Error printing trace.\n\n");
46322b33
MD
758 goto error_copy_trace;
759 }
847bf71a 760
7237592a
MD
761 ret = trace_post_handler(td_write, ctx);
762 if (ret) {
763 fprintf(stderr, "Error in trace post handle.\n\n");
764 goto error_copy_trace;
765 }
766
bbefb8dd 767 fmt_write->close_trace(td_write);
6cba487f
MD
768
769 bt_context_put(ctx);
afb48eae
AA
770 printf_verbose("finished converting. Output written to:\n%s\n",
771 opt_output_path ? : "<stdout>");
11e1d048 772 goto end;
34ac0e6c 773
bbefb8dd 774 /* Error handling */
46322b33 775error_copy_trace:
bbefb8dd
MD
776 fmt_write->close_trace(td_write);
777error_td_write:
6cba487f 778 bt_context_put(ctx);
bbefb8dd 779error_td_read:
11e1d048
MD
780 partial_error = 1;
781
782 /* teardown and exit */
783end:
784 free(opt_input_format);
785 free(opt_output_format);
9fe26ec7 786 free(opt_output_path);
4e85cbfd 787 g_ptr_array_free(opt_input_paths, TRUE);
11e1d048
MD
788 if (partial_error)
789 exit(EXIT_FAILURE);
790 else
791 exit(EXIT_SUCCESS);
4c8bfb7e 792}
This page took 0.068394 seconds and 4 git commands to generate.