ctf: Add dash to stream name suffixes
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 25 Apr 2019 15:00:02 +0000 (11:00 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 3 May 2019 22:19:39 +0000 (18:19 -0400)
We add numerical suffixes to stream names, if needed, to make them
unique. For trace directories, we do something similar and decided to
format these suffixes with a dash to avoid confusion if the original
name ends with a number.  This patch does the same thing but for stream
names.

Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Change-Id: I3041fe98bbeb3c122d06e5fa54449ed6e55017bd
Reviewed-on: https://review.gerrithub.io/c/eepp/babeltrace/+/452110
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>
Tested-by: Philippe Proulx <eeppeliteloop@gmail.com>
plugins/ctf/fs-sink/fs-sink-stream.c

index b0b514a54be050c6a1dde158aec685f939638dba..187ce28101b749a80242ac2ee0a151654e922ea7 100644 (file)
@@ -119,8 +119,7 @@ GString *make_unique_stream_file_name(struct fs_sink_trace *trace,
 
        while (stream_file_name_exists(trace, name->str) &&
                        strcmp(name->str, "metadata") == 0) {
-               g_string_assign(name, san_base->str);
-               g_string_append_printf(name, "%u", suffix);
+               g_string_printf(name, "%s-%u", san_base->str, suffix);
                suffix++;
        }
 
This page took 0.024595 seconds and 4 git commands to generate.