X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=converter%2Fbabeltrace-log.c;h=9ca2b479f398f62dfa42d64e33e011eb556bcf97;hp=dfcfde71c9697b3a74341969d59e057219eb5ea4;hb=13662adfea0ca5dc160a3b3ac69a4f59c4bf3494;hpb=39592eae8e476dbb016e2b09ef75f4a7b8cc151d diff --git a/converter/babeltrace-log.c b/converter/babeltrace-log.c index dfcfde71..9ca2b479 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 @@ -18,6 +20,7 @@ * Depends on glibc 2.10 for getline(). */ +#include #include #include #include @@ -32,7 +35,7 @@ #include #include -#include +#include #include #define USEC_PER_SEC 1000000UL @@ -50,6 +53,7 @@ static uuid_t s_uuid; /* Metadata format string */ static const char metadata_fmt[] = +"/* CTF 1.8 */\n" "typealias integer { size = 8; align = 8; signed = false; } := uint8_t;\n" "typealias integer { size = 32; align = 32; signed = false; } := uint32_t;\n" "\n" @@ -87,11 +91,16 @@ static void print_metadata(FILE *fp) { char uuid_str[UUID_STR_LEN]; + unsigned int major = 0, minor = 0; + int ret; + ret = sscanf(VERSION, "%u.%u", &major, &minor); + if (ret != 2) + fprintf(stderr, "[warning] Incorrect babeltrace version format\n."); uuid_unparse(s_uuid, uuid_str); fprintf(fp, metadata_fmt, - BABELTRACE_VERSION_MAJOR, - BABELTRACE_VERSION_MINOR, + major, + minor, uuid_str, BYTE_ORDER == LITTLE_ENDIAN ? "le" : "be", s_timestamp ? metadata_stream_event_header_timestamp : ""); @@ -179,7 +188,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); } @@ -243,9 +252,7 @@ void trace_text(FILE *input, int output) static void usage(FILE *fp) { - fprintf(fp, "BabelTrace Log Converter %u.%u\n", - BABELTRACE_VERSION_MAJOR, - BABELTRACE_VERSION_MINOR); + fprintf(fp, "BabelTrace Log Converter %s\n", VERSION); fprintf(fp, "\n"); fprintf(fp, "Convert for a text log (read from standard input) to CTF.\n"); fprintf(fp, "\n");