X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=converter%2Fbabeltrace-log.c;h=2b573bdeef22a0db7590b89de10a2efc4c71bdb3;hp=3e37e538fda52c36713e803489f19942e944ea63;hb=22133895a9a6b29ec17211f8d437bc128a7e4dfc;hpb=78893e6e583af00fd1aa03ec04dc6fb5be13eae3 diff --git a/converter/babeltrace-log.c b/converter/babeltrace-log.c index 3e37e538..2b573bde 100644 --- a/converter/babeltrace-log.c +++ b/converter/babeltrace-log.c @@ -3,7 +3,9 @@ * * BabelTrace - Convert Text Log to CTF * - * Copyright 2010, 2011 - Mathieu Desnoyers + * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation + * + * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -45,6 +47,7 @@ int babeltrace_debug, babeltrace_verbose; static char *s_outputname; static int s_timestamp; +static int s_help; static uuid_t s_uuid; /* Metadata format string */ @@ -59,7 +62,7 @@ static const char metadata_fmt[] = " byte_order = %s;\n" /* be or le */ " packet.header := struct {\n" " uint32_t magic;\n" -" uint8_t trace_uuid[16];\n" +" uint8_t uuid[16];\n" " };\n" "};\n" "\n" @@ -111,7 +114,7 @@ void write_packet_header(struct ctf_stream_pos *pos, uuid_t uuid) *(uint32_t *) ctf_get_pos_addr(pos) = 0xC1FC1FC1; ctf_move_pos(pos, sizeof(uint32_t) * CHAR_BIT); - /* trace_uuid */ + /* uuid */ ctf_dummy_pos(pos, &dummy); ctf_align_pos(&dummy, sizeof(uint8_t) * CHAR_BIT); ctf_move_pos(&dummy, 16 * CHAR_BIT); @@ -178,7 +181,7 @@ void write_event_header(struct ctf_stream_pos *pos, char *line, /* timestamp */ ctf_align_pos(pos, sizeof(uint64_t) * CHAR_BIT); if (!pos->dummy) - *(uint32_t *) ctf_get_pos_addr(pos) = *ts; + *(uint64_t *) ctf_get_pos_addr(pos) = *ts; ctf_move_pos(pos, sizeof(uint64_t) * CHAR_BIT); } @@ -264,6 +267,11 @@ int parse_args(int argc, char **argv) for (i = 1; i < argc; i++) { if (!strcmp(argv[i], "-t")) s_timestamp = 1; + else if (!strcmp(argv[i], "-h")) { + s_help = 1; + return 0; + } else if (argv[i][0] == '-') + return -EINVAL; else s_outputname = argv[i]; } @@ -281,10 +289,16 @@ int main(int argc, char **argv) ret = parse_args(argc, argv); if (ret) { + fprintf(stdout, "Error: invalid argument.\n"); usage(stdout); goto error; } + if (s_help) { + usage(stdout); + exit(EXIT_SUCCESS); + } + ret = mkdir(s_outputname, S_IRWXU|S_IRWXG); if (ret) { perror("mkdir");