Commit | Line | Data |
---|---|---|
7a278c8e | 1 | /* |
ea0b4b9e | 2 | * fs.c |
7a278c8e | 3 | * |
ea0b4b9e | 4 | * Babeltrace CTF file system Reader Component |
7a278c8e | 5 | * |
1a9f7075 | 6 | * Copyright 2015-2017 Philippe Proulx <pproulx@efficios.com> |
f3bc2010 | 7 | * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com> |
7a278c8e | 8 | * |
7a278c8e JG |
9 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
10 | * of this software and associated documentation files (the "Software"), to deal | |
11 | * in the Software without restriction, including without limitation the rights | |
12 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
13 | * copies of the Software, and to permit persons to whom the Software is | |
14 | * furnished to do so, subject to the following conditions: | |
15 | * | |
16 | * The above copyright notice and this permission notice shall be included in | |
17 | * all copies or substantial portions of the Software. | |
18 | * | |
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
20 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
22 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
23 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
24 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
25 | * SOFTWARE. | |
26 | */ | |
27 | ||
4c65a157 | 28 | #define BT_COMP_LOG_SELF_COMP self_comp |
98903a3e PP |
29 | #define BT_LOG_OUTPUT_LEVEL log_level |
30 | #define BT_LOG_TAG "PLUGIN/SRC.CTF.FS" | |
d9c39b0a | 31 | #include "logging/comp-logging.h" |
98903a3e | 32 | |
578e048b | 33 | #include "common/common.h" |
3fadfbc0 | 34 | #include <babeltrace2/babeltrace.h> |
6162e6b7 | 35 | #include "common/uuid.h" |
ea0b4b9e | 36 | #include <glib.h> |
578e048b | 37 | #include "common/assert.h" |
94cf822e | 38 | #include <inttypes.h> |
c55a9f58 | 39 | #include <stdbool.h> |
56a1cced | 40 | #include "fs.h" |
413bc2c4 | 41 | #include "metadata.h" |
94cf822e | 42 | #include "data-stream-file.h" |
e7a4393b | 43 | #include "file.h" |
1e649dff | 44 | #include "../common/metadata/decoder.h" |
335a2da5 | 45 | #include "../common/metadata/ctf-meta-configure-ir-trace.h" |
d6e69534 | 46 | #include "../common/msg-iter/msg-iter.h" |
04c0ba87 | 47 | #include "query.h" |
c24f7ab4 | 48 | #include "plugins/common/param-validation/param-validation.h" |
e7a4393b | 49 | |
626cc488 FD |
50 | struct tracer_info { |
51 | const char *name; | |
52 | int64_t major; | |
53 | int64_t minor; | |
54 | int64_t patch; | |
55 | }; | |
56 | ||
94cf822e | 57 | static |
d6e69534 PP |
58 | void ctf_fs_msg_iter_data_destroy( |
59 | struct ctf_fs_msg_iter_data *msg_iter_data) | |
94cf822e | 60 | { |
d6e69534 | 61 | if (!msg_iter_data) { |
94cf822e PP |
62 | return; |
63 | } | |
64 | ||
d6e69534 | 65 | if (msg_iter_data->msg_iter) { |
18a1979b | 66 | ctf_msg_iter_destroy(msg_iter_data->msg_iter); |
6de92955 PP |
67 | } |
68 | ||
f6e68e70 SM |
69 | if (msg_iter_data->msg_iter_medops_data) { |
70 | ctf_fs_ds_group_medops_data_destroy( | |
71 | msg_iter_data->msg_iter_medops_data); | |
72 | } | |
94cf822e | 73 | |
f6e68e70 | 74 | g_free(msg_iter_data); |
fc917f65 PP |
75 | } |
76 | ||
d4393e08 | 77 | static |
d24d5663 | 78 | bt_component_class_message_iterator_next_method_status ctf_fs_iterator_next_one( |
d6e69534 | 79 | struct ctf_fs_msg_iter_data *msg_iter_data, |
fc917f65 | 80 | const bt_message **out_msg) |
ea0b4b9e | 81 | { |
d24d5663 | 82 | bt_component_class_message_iterator_next_method_status status; |
f6e68e70 SM |
83 | enum ctf_msg_iter_status msg_iter_status; |
84 | bt_logging_level log_level = msg_iter_data->log_level; | |
94cf822e | 85 | |
f6e68e70 SM |
86 | msg_iter_status = ctf_msg_iter_get_next_message( |
87 | msg_iter_data->msg_iter, out_msg); | |
f42867e2 | 88 | |
f6e68e70 SM |
89 | switch (msg_iter_status) { |
90 | case CTF_MSG_ITER_STATUS_OK: | |
91 | /* Cool, message has been written to *out_msg. */ | |
92 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK; | |
93 | break; | |
4829c3e2 | 94 | |
f6e68e70 SM |
95 | case CTF_MSG_ITER_STATUS_EOF: |
96 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END; | |
97 | break; | |
4829c3e2 | 98 | |
f6e68e70 SM |
99 | case CTF_MSG_ITER_STATUS_AGAIN: |
100 | /* | |
101 | * Should not make it this far as this is | |
102 | * medium-specific; there is nothing for the user to do | |
103 | * and it should have been handled upstream. | |
104 | */ | |
105 | bt_common_abort(); | |
106 | ||
107 | case CTF_MSG_ITER_MEDIUM_STATUS_ERROR: | |
108 | BT_MSG_ITER_LOGE_APPEND_CAUSE(msg_iter_data->self_msg_iter, | |
109 | "Failed to get next message from CTF message iterator."); | |
110 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_ERROR; | |
111 | break; | |
112 | ||
113 | case CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR: | |
114 | BT_MSG_ITER_LOGE_APPEND_CAUSE(msg_iter_data->self_msg_iter, | |
115 | "Failed to get next message from CTF message iterator."); | |
116 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_MEMORY_ERROR; | |
117 | break; | |
118 | ||
119 | default: | |
120 | bt_common_abort(); | |
94cf822e | 121 | } |
d01e0f33 | 122 | |
d4393e08 PP |
123 | return status; |
124 | } | |
125 | ||
126 | BT_HIDDEN | |
d24d5663 | 127 | bt_component_class_message_iterator_next_method_status ctf_fs_iterator_next( |
d6e69534 PP |
128 | bt_self_message_iterator *iterator, |
129 | bt_message_array_const msgs, uint64_t capacity, | |
d4393e08 PP |
130 | uint64_t *count) |
131 | { | |
cbca1c06 | 132 | bt_component_class_message_iterator_next_method_status status; |
d6e69534 PP |
133 | struct ctf_fs_msg_iter_data *msg_iter_data = |
134 | bt_self_message_iterator_get_data(iterator); | |
d4393e08 PP |
135 | uint64_t i = 0; |
136 | ||
cbca1c06 SM |
137 | if (G_UNLIKELY(msg_iter_data->next_saved_error)) { |
138 | /* | |
139 | * Last time we were called, we hit an error but had some | |
140 | * messages to deliver, so we stashed the error here. Return | |
141 | * it now. | |
142 | */ | |
143 | BT_CURRENT_THREAD_MOVE_ERROR_AND_RESET(msg_iter_data->next_saved_error); | |
144 | status = msg_iter_data->next_saved_status; | |
145 | goto end; | |
146 | } | |
147 | ||
148 | do { | |
d6e69534 | 149 | status = ctf_fs_iterator_next_one(msg_iter_data, &msgs[i]); |
d24d5663 | 150 | if (status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK) { |
d4393e08 PP |
151 | i++; |
152 | } | |
cbca1c06 SM |
153 | } while (i < capacity && |
154 | status == BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK); | |
d4393e08 PP |
155 | |
156 | if (i > 0) { | |
157 | /* | |
158 | * Even if ctf_fs_iterator_next_one() returned something | |
d24d5663 | 159 | * else than BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK, we |
d6e69534 PP |
160 | * accumulated message objects in the output |
161 | * message array, so we need to return | |
d24d5663 | 162 | * BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK so that they are |
d4393e08 | 163 | * transfered to downstream. This other status occurs |
d6e69534 | 164 | * again the next time muxer_msg_iter_do_next() is |
d4393e08 | 165 | * called, possibly without any accumulated |
d6e69534 | 166 | * message, in which case we'll return it. |
d4393e08 | 167 | */ |
cbca1c06 SM |
168 | if (status < 0) { |
169 | /* | |
170 | * Save this error for the next _next call. Assume that | |
171 | * this component always appends error causes when | |
172 | * returning an error status code, which will cause the | |
173 | * current thread error to be non-NULL. | |
174 | */ | |
175 | msg_iter_data->next_saved_error = bt_current_thread_take_error(); | |
176 | BT_ASSERT(msg_iter_data->next_saved_error); | |
177 | msg_iter_data->next_saved_status = status; | |
178 | } | |
179 | ||
d4393e08 | 180 | *count = i; |
d24d5663 | 181 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_OK; |
d4393e08 PP |
182 | } |
183 | ||
cbca1c06 | 184 | end: |
d4393e08 | 185 | return status; |
ea0b4b9e | 186 | } |
bfd20a42 | 187 | |
6a9bb5e9 | 188 | BT_HIDDEN |
d24d5663 PP |
189 | bt_component_class_message_iterator_seek_beginning_method_status |
190 | ctf_fs_iterator_seek_beginning(bt_self_message_iterator *it) | |
6a9bb5e9 PP |
191 | { |
192 | struct ctf_fs_msg_iter_data *msg_iter_data = | |
193 | bt_self_message_iterator_get_data(it); | |
6a9bb5e9 PP |
194 | |
195 | BT_ASSERT(msg_iter_data); | |
6a9bb5e9 | 196 | |
f6e68e70 SM |
197 | ctf_msg_iter_reset(msg_iter_data->msg_iter); |
198 | ctf_fs_ds_group_medops_data_reset(msg_iter_data->msg_iter_medops_data); | |
199 | ||
200 | return BT_COMPONENT_CLASS_MESSAGE_ITERATOR_SEEK_BEGINNING_METHOD_STATUS_OK; | |
6a9bb5e9 PP |
201 | } |
202 | ||
203 | BT_HIDDEN | |
d6e69534 | 204 | void ctf_fs_iterator_finalize(bt_self_message_iterator *it) |
760051fa | 205 | { |
d6e69534 PP |
206 | ctf_fs_msg_iter_data_destroy( |
207 | bt_self_message_iterator_get_data(it)); | |
760051fa JG |
208 | } |
209 | ||
6a9bb5e9 | 210 | BT_HIDDEN |
21a9f056 | 211 | bt_component_class_message_iterator_initialize_method_status ctf_fs_iterator_init( |
d6e69534 | 212 | bt_self_message_iterator *self_msg_iter, |
8d8b141d | 213 | bt_self_message_iterator_configuration *config, |
4c65a157 | 214 | bt_self_component_source *self_comp_src, |
b19ff26f | 215 | bt_self_component_port_output *self_port) |
4c1456f0 | 216 | { |
4f1f88a6 | 217 | struct ctf_fs_port_data *port_data; |
d6e69534 | 218 | struct ctf_fs_msg_iter_data *msg_iter_data = NULL; |
f6e68e70 | 219 | bt_component_class_message_iterator_initialize_method_status status; |
98903a3e | 220 | bt_logging_level log_level; |
d23b766e SM |
221 | bt_self_component *self_comp = |
222 | bt_self_component_source_as_self_component(self_comp_src); | |
f6e68e70 | 223 | enum ctf_msg_iter_medium_status medium_status; |
760051fa | 224 | |
d94d92ac | 225 | port_data = bt_self_component_port_get_data( |
707b7d35 | 226 | bt_self_component_port_output_as_self_component_port( |
d94d92ac PP |
227 | self_port)); |
228 | BT_ASSERT(port_data); | |
98903a3e | 229 | log_level = port_data->ctf_fs->log_level; |
d6e69534 PP |
230 | msg_iter_data = g_new0(struct ctf_fs_msg_iter_data, 1); |
231 | if (!msg_iter_data) { | |
f6e68e70 | 232 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INITIALIZE_METHOD_STATUS_MEMORY_ERROR; |
94cf822e PP |
233 | goto error; |
234 | } | |
235 | ||
98903a3e | 236 | msg_iter_data->log_level = log_level; |
4c65a157 | 237 | msg_iter_data->self_comp = self_comp; |
f30762e5 | 238 | msg_iter_data->self_msg_iter = self_msg_iter; |
f6e68e70 SM |
239 | msg_iter_data->ds_file_group = port_data->ds_file_group; |
240 | ||
241 | medium_status = ctf_fs_ds_group_medops_data_create( | |
242 | msg_iter_data->ds_file_group, self_msg_iter, log_level, | |
243 | &msg_iter_data->msg_iter_medops_data); | |
244 | BT_ASSERT( | |
245 | medium_status == CTF_MSG_ITER_MEDIUM_STATUS_OK || | |
246 | medium_status == CTF_MSG_ITER_MEDIUM_STATUS_ERROR || | |
247 | medium_status == CTF_MSG_ITER_MEDIUM_STATUS_MEMORY_ERROR); | |
248 | if (medium_status != CTF_MSG_ITER_MEDIUM_STATUS_OK) { | |
249 | BT_MSG_ITER_LOGE_APPEND_CAUSE(self_msg_iter, | |
250 | "Failed to create ctf_fs_ds_group_medops"); | |
251 | status = (int) medium_status; | |
252 | goto error; | |
253 | } | |
254 | ||
18a1979b | 255 | msg_iter_data->msg_iter = ctf_msg_iter_create( |
f6e68e70 | 256 | msg_iter_data->ds_file_group->ctf_fs_trace->metadata->tc, |
98903a3e | 257 | bt_common_get_page_size(msg_iter_data->log_level) * 8, |
f6e68e70 SM |
258 | ctf_fs_ds_group_medops, |
259 | msg_iter_data->msg_iter_medops_data, | |
260 | msg_iter_data->log_level, | |
851de941 | 261 | self_comp, self_msg_iter); |
d6e69534 | 262 | if (!msg_iter_data->msg_iter) { |
d23b766e | 263 | BT_COMP_LOGE_APPEND_CAUSE(self_comp, "Cannot create a CTF message iterator."); |
f6e68e70 | 264 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INITIALIZE_METHOD_STATUS_MEMORY_ERROR; |
6de92955 PP |
265 | goto error; |
266 | } | |
267 | ||
c0e46a7c SM |
268 | /* |
269 | * This iterator can seek forward if its stream class has a default | |
270 | * clock class. | |
271 | */ | |
272 | if (msg_iter_data->ds_file_group->sc->default_clock_class) { | |
273 | bt_self_message_iterator_configuration_set_can_seek_forward( | |
274 | config, true); | |
275 | } | |
276 | ||
d6e69534 PP |
277 | bt_self_message_iterator_set_data(self_msg_iter, |
278 | msg_iter_data); | |
d6e69534 | 279 | msg_iter_data = NULL; |
f6e68e70 SM |
280 | |
281 | status = BT_COMPONENT_CLASS_MESSAGE_ITERATOR_INITIALIZE_METHOD_STATUS_OK; | |
4f1f88a6 | 282 | goto end; |
5b29e799 | 283 | |
4f1f88a6 | 284 | error: |
d6e69534 | 285 | bt_self_message_iterator_set_data(self_msg_iter, NULL); |
4f1f88a6 | 286 | |
760051fa | 287 | end: |
d6e69534 | 288 | ctf_fs_msg_iter_data_destroy(msg_iter_data); |
f6e68e70 | 289 | return status; |
760051fa JG |
290 | } |
291 | ||
a0cd55ad SM |
292 | static |
293 | void ctf_fs_trace_destroy(struct ctf_fs_trace *ctf_fs_trace) | |
294 | { | |
295 | if (!ctf_fs_trace) { | |
296 | return; | |
297 | } | |
298 | ||
299 | if (ctf_fs_trace->ds_file_groups) { | |
300 | g_ptr_array_free(ctf_fs_trace->ds_file_groups, TRUE); | |
301 | } | |
302 | ||
303 | BT_TRACE_PUT_REF_AND_RESET(ctf_fs_trace->trace); | |
304 | ||
305 | if (ctf_fs_trace->path) { | |
306 | g_string_free(ctf_fs_trace->path, TRUE); | |
307 | } | |
308 | ||
309 | if (ctf_fs_trace->metadata) { | |
310 | ctf_fs_metadata_fini(ctf_fs_trace->metadata); | |
311 | g_free(ctf_fs_trace->metadata); | |
312 | } | |
313 | ||
314 | g_free(ctf_fs_trace); | |
315 | } | |
316 | ||
f280892e | 317 | BT_HIDDEN |
1a9f7075 | 318 | void ctf_fs_destroy(struct ctf_fs_component *ctf_fs) |
760051fa | 319 | { |
4f1f88a6 | 320 | if (!ctf_fs) { |
8fa760ba JG |
321 | return; |
322 | } | |
4f1f88a6 | 323 | |
a0cd55ad | 324 | ctf_fs_trace_destroy(ctf_fs->trace); |
4f1f88a6 PP |
325 | |
326 | if (ctf_fs->port_data) { | |
327 | g_ptr_array_free(ctf_fs->port_data, TRUE); | |
c14d7e26 | 328 | } |
760051fa | 329 | |
1a9f7075 PP |
330 | g_free(ctf_fs); |
331 | } | |
332 | ||
f280892e SM |
333 | static |
334 | void port_data_destroy(struct ctf_fs_port_data *port_data) | |
335 | { | |
336 | if (!port_data) { | |
337 | return; | |
338 | } | |
339 | ||
340 | g_free(port_data); | |
341 | } | |
342 | ||
343 | static | |
344 | void port_data_destroy_notifier(void *data) { | |
345 | port_data_destroy(data); | |
346 | } | |
347 | ||
97ade20b | 348 | static |
56a924f4 | 349 | void ctf_fs_trace_destroy_notifier(void *data) |
97ade20b JG |
350 | { |
351 | struct ctf_fs_trace *trace = data; | |
352 | ctf_fs_trace_destroy(trace); | |
353 | } | |
354 | ||
4c65a157 PP |
355 | struct ctf_fs_component *ctf_fs_component_create(bt_logging_level log_level, |
356 | bt_self_component *self_comp) | |
a4792757 | 357 | { |
f280892e | 358 | struct ctf_fs_component *ctf_fs; |
a4792757 | 359 | |
f280892e SM |
360 | ctf_fs = g_new0(struct ctf_fs_component, 1); |
361 | if (!ctf_fs) { | |
362 | goto error; | |
363 | } | |
4f1f88a6 | 364 | |
98903a3e | 365 | ctf_fs->log_level = log_level; |
f280892e SM |
366 | ctf_fs->port_data = |
367 | g_ptr_array_new_with_free_func(port_data_destroy_notifier); | |
368 | if (!ctf_fs->port_data) { | |
369 | goto error; | |
4f1f88a6 PP |
370 | } |
371 | ||
f280892e SM |
372 | goto end; |
373 | ||
374 | error: | |
bce64edb SM |
375 | ctf_fs_destroy(ctf_fs); |
376 | ctf_fs = NULL; | |
f280892e SM |
377 | |
378 | end: | |
379 | return ctf_fs; | |
380 | } | |
381 | ||
382 | void ctf_fs_finalize(bt_self_component_source *component) | |
383 | { | |
384 | ctf_fs_destroy(bt_self_component_get_data( | |
385 | bt_self_component_source_as_self_component(component))); | |
5b29e799 JG |
386 | } |
387 | ||
a38d7650 | 388 | gchar *ctf_fs_make_port_name(struct ctf_fs_ds_file_group *ds_file_group) |
547eacf1 | 389 | { |
a38d7650 | 390 | GString *name = g_string_new(NULL); |
547eacf1 | 391 | |
a38d7650 SM |
392 | /* |
393 | * The unique port name is generated by concatenating unique identifiers | |
394 | * for: | |
395 | * | |
396 | * - the trace | |
397 | * - the stream class | |
398 | * - the stream | |
399 | */ | |
400 | ||
401 | /* For the trace, use the uuid if present, else the path. */ | |
402 | if (ds_file_group->ctf_fs_trace->metadata->tc->is_uuid_set) { | |
6162e6b7 | 403 | char uuid_str[BT_UUID_STR_LEN + 1]; |
a38d7650 | 404 | |
6162e6b7 | 405 | bt_uuid_to_str(ds_file_group->ctf_fs_trace->metadata->tc->uuid, uuid_str); |
a38d7650 SM |
406 | g_string_assign(name, uuid_str); |
407 | } else { | |
408 | g_string_assign(name, ds_file_group->ctf_fs_trace->path->str); | |
547eacf1 PP |
409 | } |
410 | ||
411 | /* | |
a38d7650 SM |
412 | * For the stream class, use the id if present. We can omit this field |
413 | * otherwise, as there will only be a single stream class. | |
547eacf1 | 414 | */ |
a38d7650 SM |
415 | if (ds_file_group->sc->id != UINT64_C(-1)) { |
416 | g_string_append_printf(name, " | %" PRIu64, ds_file_group->sc->id); | |
417 | } | |
547eacf1 | 418 | |
a38d7650 SM |
419 | /* For the stream, use the id if present, else, use the path. */ |
420 | if (ds_file_group->stream_id != UINT64_C(-1)) { | |
421 | g_string_append_printf(name, " | %" PRIu64, ds_file_group->stream_id); | |
422 | } else { | |
423 | BT_ASSERT(ds_file_group->ds_file_infos->len == 1); | |
424 | struct ctf_fs_ds_file_info *ds_file_info = | |
425 | g_ptr_array_index(ds_file_group->ds_file_infos, 0); | |
426 | g_string_append_printf(name, " | %s", ds_file_info->path->str); | |
427 | } | |
428 | ||
429 | return g_string_free(name, FALSE); | |
547eacf1 PP |
430 | } |
431 | ||
5b29e799 | 432 | static |
55314f2a JG |
433 | int create_one_port_for_trace(struct ctf_fs_component *ctf_fs, |
434 | struct ctf_fs_trace *ctf_fs_trace, | |
d23b766e SM |
435 | struct ctf_fs_ds_file_group *ds_file_group, |
436 | bt_self_component_source *self_comp_src) | |
5b29e799 | 437 | { |
4f1f88a6 | 438 | int ret = 0; |
4f1f88a6 | 439 | struct ctf_fs_port_data *port_data = NULL; |
a38d7650 | 440 | gchar *port_name; |
98903a3e | 441 | bt_logging_level log_level = ctf_fs->log_level; |
d23b766e SM |
442 | bt_self_component *self_comp = |
443 | bt_self_component_source_as_self_component(self_comp_src); | |
4f1f88a6 | 444 | |
a38d7650 | 445 | port_name = ctf_fs_make_port_name(ds_file_group); |
4f1f88a6 PP |
446 | if (!port_name) { |
447 | goto error; | |
448 | } | |
449 | ||
4c65a157 | 450 | BT_COMP_LOGI("Creating one port named `%s`", port_name); |
4f1f88a6 PP |
451 | |
452 | /* Create output port for this file */ | |
4f1f88a6 PP |
453 | port_data = g_new0(struct ctf_fs_port_data, 1); |
454 | if (!port_data) { | |
455 | goto error; | |
456 | } | |
457 | ||
5c563278 | 458 | port_data->ctf_fs = ctf_fs; |
94cf822e | 459 | port_data->ds_file_group = ds_file_group; |
d94d92ac | 460 | ret = bt_self_component_source_add_output_port( |
d23b766e | 461 | self_comp_src, port_name, port_data, NULL); |
147337a3 | 462 | if (ret) { |
4f1f88a6 PP |
463 | goto error; |
464 | } | |
465 | ||
466 | g_ptr_array_add(ctf_fs->port_data, port_data); | |
467 | port_data = NULL; | |
468 | goto end; | |
469 | ||
470 | error: | |
471 | ret = -1; | |
472 | ||
473 | end: | |
19bbdc9b | 474 | g_free(port_name); |
4f1f88a6 | 475 | |
4f1f88a6 PP |
476 | port_data_destroy(port_data); |
477 | return ret; | |
5b29e799 JG |
478 | } |
479 | ||
480 | static | |
55314f2a | 481 | int create_ports_for_trace(struct ctf_fs_component *ctf_fs, |
d23b766e SM |
482 | struct ctf_fs_trace *ctf_fs_trace, |
483 | bt_self_component_source *self_comp_src) | |
94cf822e PP |
484 | { |
485 | int ret = 0; | |
94cf822e | 486 | size_t i; |
98903a3e | 487 | bt_logging_level log_level = ctf_fs_trace->log_level; |
d23b766e SM |
488 | bt_self_component *self_comp = |
489 | bt_self_component_source_as_self_component(self_comp_src); | |
94cf822e PP |
490 | |
491 | /* Create one output port for each stream file group */ | |
492 | for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) { | |
493 | struct ctf_fs_ds_file_group *ds_file_group = | |
494 | g_ptr_array_index(ctf_fs_trace->ds_file_groups, i); | |
495 | ||
55314f2a | 496 | ret = create_one_port_for_trace(ctf_fs, ctf_fs_trace, |
d23b766e | 497 | ds_file_group, self_comp_src); |
94cf822e | 498 | if (ret) { |
d23b766e | 499 | BT_COMP_LOGE_APPEND_CAUSE(self_comp, "Cannot create output port."); |
94cf822e PP |
500 | goto end; |
501 | } | |
502 | } | |
503 | ||
504 | end: | |
505 | return ret; | |
506 | } | |
507 | ||
94cf822e PP |
508 | static |
509 | void ctf_fs_ds_file_info_destroy(struct ctf_fs_ds_file_info *ds_file_info) | |
510 | { | |
511 | if (!ds_file_info) { | |
512 | return; | |
513 | } | |
514 | ||
515 | if (ds_file_info->path) { | |
516 | g_string_free(ds_file_info->path, TRUE); | |
517 | } | |
518 | ||
519 | g_free(ds_file_info); | |
520 | } | |
521 | ||
522 | static | |
523 | struct ctf_fs_ds_file_info *ctf_fs_ds_file_info_create(const char *path, | |
7ed5243a | 524 | int64_t begin_ns) |
94cf822e PP |
525 | { |
526 | struct ctf_fs_ds_file_info *ds_file_info; | |
527 | ||
528 | ds_file_info = g_new0(struct ctf_fs_ds_file_info, 1); | |
529 | if (!ds_file_info) { | |
530 | goto end; | |
531 | } | |
532 | ||
533 | ds_file_info->path = g_string_new(path); | |
534 | if (!ds_file_info->path) { | |
535 | ctf_fs_ds_file_info_destroy(ds_file_info); | |
536 | ds_file_info = NULL; | |
537 | goto end; | |
538 | } | |
539 | ||
540 | ds_file_info->begin_ns = begin_ns; | |
541 | ||
542 | end: | |
543 | return ds_file_info; | |
544 | } | |
545 | ||
546 | static | |
547 | void ctf_fs_ds_file_group_destroy(struct ctf_fs_ds_file_group *ds_file_group) | |
548 | { | |
549 | if (!ds_file_group) { | |
550 | return; | |
551 | } | |
552 | ||
553 | if (ds_file_group->ds_file_infos) { | |
554 | g_ptr_array_free(ds_file_group->ds_file_infos, TRUE); | |
555 | } | |
556 | ||
24bf8d91 | 557 | ctf_fs_ds_index_destroy(ds_file_group->index); |
7ed5243a | 558 | |
c5b9b441 | 559 | bt_stream_put_ref(ds_file_group->stream); |
94cf822e PP |
560 | g_free(ds_file_group); |
561 | } | |
562 | ||
563 | static | |
564 | struct ctf_fs_ds_file_group *ctf_fs_ds_file_group_create( | |
565 | struct ctf_fs_trace *ctf_fs_trace, | |
60363f2f | 566 | struct ctf_stream_class *sc, |
7ed5243a FD |
567 | uint64_t stream_instance_id, |
568 | struct ctf_fs_ds_index *index) | |
94cf822e PP |
569 | { |
570 | struct ctf_fs_ds_file_group *ds_file_group; | |
571 | ||
94cf822e PP |
572 | ds_file_group = g_new0(struct ctf_fs_ds_file_group, 1); |
573 | if (!ds_file_group) { | |
574 | goto error; | |
575 | } | |
576 | ||
577 | ds_file_group->ds_file_infos = g_ptr_array_new_with_free_func( | |
578 | (GDestroyNotify) ctf_fs_ds_file_info_destroy); | |
579 | if (!ds_file_group->ds_file_infos) { | |
580 | goto error; | |
581 | } | |
582 | ||
7ed5243a FD |
583 | ds_file_group->index = index; |
584 | ||
547eacf1 | 585 | ds_file_group->stream_id = stream_instance_id; |
60363f2f PP |
586 | BT_ASSERT(sc); |
587 | ds_file_group->sc = sc; | |
94cf822e | 588 | ds_file_group->ctf_fs_trace = ctf_fs_trace; |
94cf822e PP |
589 | goto end; |
590 | ||
591 | error: | |
592 | ctf_fs_ds_file_group_destroy(ds_file_group); | |
7ed5243a | 593 | ctf_fs_ds_index_destroy(index); |
94cf822e PP |
594 | ds_file_group = NULL; |
595 | ||
596 | end: | |
597 | return ds_file_group; | |
598 | } | |
599 | ||
8bf7105e MJ |
600 | /* Replace by g_ptr_array_insert when we depend on glib >= 2.40. */ |
601 | static | |
602 | void array_insert(GPtrArray *array, gpointer element, size_t pos) | |
603 | { | |
604 | size_t original_array_len = array->len; | |
605 | ||
606 | /* Allocate an unused element at the end of the array. */ | |
607 | g_ptr_array_add(array, NULL); | |
608 | ||
609 | /* If we are not inserting at the end, move the elements by one. */ | |
610 | if (pos < original_array_len) { | |
611 | memmove(&(array->pdata[pos + 1]), | |
612 | &(array->pdata[pos]), | |
613 | (original_array_len - pos) * sizeof(gpointer)); | |
614 | } | |
615 | ||
f897d50c | 616 | /* Insert the value. */ |
8bf7105e MJ |
617 | array->pdata[pos] = element; |
618 | } | |
619 | ||
41a65f30 SM |
620 | /* |
621 | * Insert ds_file_info in ds_file_group's list of ds_file_infos at the right | |
622 | * place to keep it sorted. | |
623 | */ | |
624 | ||
625 | static | |
626 | void ds_file_group_insert_ds_file_info_sorted( | |
627 | struct ctf_fs_ds_file_group *ds_file_group, | |
628 | struct ctf_fs_ds_file_info *ds_file_info) | |
629 | { | |
630 | guint i; | |
631 | ||
632 | /* Find the spot where to insert this ds_file_info. */ | |
633 | for (i = 0; i < ds_file_group->ds_file_infos->len; i++) { | |
634 | struct ctf_fs_ds_file_info *other_ds_file_info = | |
635 | g_ptr_array_index(ds_file_group->ds_file_infos, i); | |
636 | ||
637 | if (ds_file_info->begin_ns < other_ds_file_info->begin_ns) { | |
638 | break; | |
639 | } | |
640 | } | |
641 | ||
642 | array_insert(ds_file_group->ds_file_infos, ds_file_info, i); | |
643 | } | |
644 | ||
1505f33a SM |
645 | static |
646 | bool ds_index_entries_equal( | |
647 | const struct ctf_fs_ds_index_entry *left, | |
648 | const struct ctf_fs_ds_index_entry *right) | |
649 | { | |
650 | if (left->packet_size != right->packet_size) { | |
651 | return false; | |
652 | } | |
653 | ||
654 | if (left->timestamp_begin != right->timestamp_begin) { | |
655 | return false; | |
656 | } | |
657 | ||
658 | if (left->timestamp_end != right->timestamp_end) { | |
659 | return false; | |
660 | } | |
661 | ||
662 | if (left->packet_seq_num != right->packet_seq_num) { | |
663 | return false; | |
664 | } | |
665 | ||
666 | return true; | |
667 | } | |
668 | ||
669 | /* | |
670 | * Insert `entry` into `index`, without duplication. | |
671 | * | |
672 | * The entry is inserted only if there isn't an identical entry already. | |
673 | * | |
674 | * In any case, the ownership of `entry` is transferred to this function. So if | |
675 | * the entry is not inserted, it is freed. | |
676 | */ | |
677 | ||
7ed5243a | 678 | static |
ce75de14 SM |
679 | void ds_index_insert_ds_index_entry_sorted( |
680 | struct ctf_fs_ds_index *index, | |
7ed5243a FD |
681 | struct ctf_fs_ds_index_entry *entry) |
682 | { | |
683 | guint i; | |
1505f33a | 684 | struct ctf_fs_ds_index_entry *other_entry; |
7ed5243a FD |
685 | |
686 | /* Find the spot where to insert this index entry. */ | |
ce75de14 | 687 | for (i = 0; i < index->entries->len; i++) { |
1505f33a | 688 | other_entry = g_ptr_array_index(index->entries, i); |
7ed5243a | 689 | |
1505f33a | 690 | if (entry->timestamp_begin_ns <= other_entry->timestamp_begin_ns) { |
7ed5243a FD |
691 | break; |
692 | } | |
693 | } | |
694 | ||
1505f33a SM |
695 | /* |
696 | * Insert the entry only if a duplicate doesn't already exist. | |
697 | * | |
698 | * There can be duplicate packets if reading multiple overlapping | |
699 | * snapshots of the same trace. We then want the index to contain | |
700 | * a reference to only one copy of that packet. | |
701 | */ | |
702 | if (i == index->entries->len || | |
703 | !ds_index_entries_equal(entry, other_entry)) { | |
704 | array_insert(index->entries, entry, i); | |
705 | } else { | |
706 | g_free(entry); | |
707 | } | |
ce75de14 SM |
708 | } |
709 | ||
710 | static | |
711 | void merge_ctf_fs_ds_indexes(struct ctf_fs_ds_index *dest, struct ctf_fs_ds_index *src) | |
712 | { | |
713 | guint i; | |
714 | ||
715 | for (i = 0; i < src->entries->len; i++) { | |
716 | struct ctf_fs_ds_index_entry *entry = | |
717 | g_ptr_array_index(src->entries, i); | |
718 | ||
719 | /* | |
720 | * Ownership of the ctf_fs_ds_index_entry is transferred to | |
1505f33a | 721 | * ds_index_insert_ds_index_entry_sorted. |
ce75de14 SM |
722 | */ |
723 | g_ptr_array_index(src->entries, i) = NULL; | |
ce75de14 SM |
724 | ds_index_insert_ds_index_entry_sorted(dest, entry); |
725 | } | |
7ed5243a FD |
726 | } |
727 | ||
94cf822e PP |
728 | static |
729 | int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace, | |
e5be10ef | 730 | const char *path) |
94cf822e | 731 | { |
44c440bc PP |
732 | int64_t stream_instance_id = -1; |
733 | int64_t begin_ns = -1; | |
94cf822e PP |
734 | struct ctf_fs_ds_file_group *ds_file_group = NULL; |
735 | bool add_group = false; | |
736 | int ret; | |
737 | size_t i; | |
6de92955 | 738 | struct ctf_fs_ds_file *ds_file = NULL; |
bf012bde | 739 | struct ctf_fs_ds_file_info *ds_file_info = NULL; |
97ade20b | 740 | struct ctf_fs_ds_index *index = NULL; |
18a1979b | 741 | struct ctf_msg_iter *msg_iter = NULL; |
44c440bc | 742 | struct ctf_stream_class *sc = NULL; |
18a1979b | 743 | struct ctf_msg_iter_packet_properties props; |
98903a3e | 744 | bt_logging_level log_level = ctf_fs_trace->log_level; |
4c65a157 | 745 | bt_self_component *self_comp = ctf_fs_trace->self_comp; |
b7d2695a | 746 | bt_self_component_class *self_comp_class = ctf_fs_trace->self_comp_class; |
94cf822e | 747 | |
6d54260a SM |
748 | /* |
749 | * Create a temporary ds_file to read some properties about the data | |
750 | * stream file. | |
751 | */ | |
752 | ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, NULL, path, | |
753 | log_level); | |
754 | if (!ds_file) { | |
755 | goto error; | |
756 | } | |
757 | ||
758 | /* Create a temporary iterator to read the ds_file. */ | |
18a1979b | 759 | msg_iter = ctf_msg_iter_create(ctf_fs_trace->metadata->tc, |
98903a3e | 760 | bt_common_get_page_size(log_level) * 8, |
6d54260a | 761 | ctf_fs_ds_file_medops, ds_file, log_level, self_comp, NULL); |
d6e69534 | 762 | if (!msg_iter) { |
4c65a157 | 763 | BT_COMP_LOGE_STR("Cannot create a CTF message iterator."); |
6de92955 PP |
764 | goto error; |
765 | } | |
766 | ||
bc0ae364 SM |
767 | ctf_msg_iter_set_dry_run(msg_iter, true); |
768 | ||
6d54260a | 769 | ret = ctf_msg_iter_get_packet_properties(msg_iter, &props); |
94cf822e | 770 | if (ret) { |
b7d2695a | 771 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
d23b766e | 772 | "Cannot get stream file's first packet's header and context fields (`%s`).", |
94cf822e PP |
773 | path); |
774 | goto error; | |
775 | } | |
776 | ||
44c440bc PP |
777 | sc = ctf_trace_class_borrow_stream_class_by_id(ds_file->metadata->tc, |
778 | props.stream_class_id); | |
779 | BT_ASSERT(sc); | |
44c440bc PP |
780 | stream_instance_id = props.data_stream_id; |
781 | ||
782 | if (props.snapshots.beginning_clock != UINT64_C(-1)) { | |
783 | BT_ASSERT(sc->default_clock_class); | |
0f2d58c9 PP |
784 | ret = bt_util_clock_cycles_to_ns_from_origin( |
785 | props.snapshots.beginning_clock, | |
786 | sc->default_clock_class->frequency, | |
787 | sc->default_clock_class->offset_seconds, | |
788 | sc->default_clock_class->offset_cycles, &begin_ns); | |
44c440bc | 789 | if (ret) { |
b7d2695a | 790 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
d23b766e | 791 | "Cannot convert clock cycles to nanoseconds from origin (`%s`).", |
44c440bc PP |
792 | path); |
793 | goto error; | |
794 | } | |
94cf822e PP |
795 | } |
796 | ||
bf012bde FD |
797 | ds_file_info = ctf_fs_ds_file_info_create(path, begin_ns); |
798 | if (!ds_file_info) { | |
799 | goto error; | |
800 | } | |
801 | ||
6d54260a | 802 | index = ctf_fs_ds_file_build_index(ds_file, ds_file_info, msg_iter); |
97ade20b | 803 | if (!index) { |
29a8227a SM |
804 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE( |
805 | self_comp, self_comp_class, | |
806 | "Failed to index CTF stream file \'%s\'", | |
97ade20b | 807 | ds_file->file->path->str); |
29a8227a | 808 | goto error; |
97ade20b JG |
809 | } |
810 | ||
44c440bc | 811 | if (begin_ns == -1) { |
94cf822e | 812 | /* |
a8534010 | 813 | * No beginning timestamp to sort the stream files |
94cf822e PP |
814 | * within a stream file group, so consider that this |
815 | * file must be the only one within its group. | |
816 | */ | |
44c440bc | 817 | stream_instance_id = -1; |
94cf822e PP |
818 | } |
819 | ||
44c440bc | 820 | if (stream_instance_id == -1) { |
94cf822e PP |
821 | /* |
822 | * No stream instance ID or no beginning timestamp: | |
823 | * create a unique stream file group for this stream | |
824 | * file because, even if there's a stream instance ID, | |
825 | * there's no timestamp to order the file within its | |
826 | * group. | |
827 | */ | |
94cf822e | 828 | ds_file_group = ctf_fs_ds_file_group_create(ctf_fs_trace, |
7ed5243a FD |
829 | sc, UINT64_C(-1), index); |
830 | /* Ownership of index is transferred. */ | |
831 | index = NULL; | |
832 | ||
94cf822e PP |
833 | if (!ds_file_group) { |
834 | goto error; | |
835 | } | |
836 | ||
55b71f05 SM |
837 | ds_file_group_insert_ds_file_info_sorted(ds_file_group, |
838 | BT_MOVE_REF(ds_file_info)); | |
94cf822e PP |
839 | |
840 | add_group = true; | |
841 | goto end; | |
842 | } | |
843 | ||
44c440bc PP |
844 | BT_ASSERT(stream_instance_id != -1); |
845 | BT_ASSERT(begin_ns != -1); | |
94cf822e PP |
846 | |
847 | /* Find an existing stream file group with this ID */ | |
848 | for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) { | |
94cf822e PP |
849 | ds_file_group = g_ptr_array_index( |
850 | ctf_fs_trace->ds_file_groups, i); | |
94cf822e | 851 | |
60363f2f | 852 | if (ds_file_group->sc == sc && |
547eacf1 PP |
853 | ds_file_group->stream_id == |
854 | stream_instance_id) { | |
94cf822e PP |
855 | break; |
856 | } | |
857 | ||
858 | ds_file_group = NULL; | |
859 | } | |
860 | ||
861 | if (!ds_file_group) { | |
862 | ds_file_group = ctf_fs_ds_file_group_create(ctf_fs_trace, | |
7ed5243a FD |
863 | sc, stream_instance_id, index); |
864 | /* Ownership of index is transferred. */ | |
865 | index = NULL; | |
94cf822e PP |
866 | if (!ds_file_group) { |
867 | goto error; | |
868 | } | |
869 | ||
870 | add_group = true; | |
ce75de14 SM |
871 | } else { |
872 | merge_ctf_fs_ds_indexes(ds_file_group->index, index); | |
94cf822e PP |
873 | } |
874 | ||
55b71f05 SM |
875 | ds_file_group_insert_ds_file_info_sorted(ds_file_group, |
876 | BT_MOVE_REF(ds_file_info)); | |
94cf822e PP |
877 | |
878 | goto end; | |
879 | ||
880 | error: | |
881 | ctf_fs_ds_file_group_destroy(ds_file_group); | |
90e1eb09 | 882 | ds_file_group = NULL; |
94cf822e PP |
883 | ret = -1; |
884 | ||
885 | end: | |
886 | if (add_group && ds_file_group) { | |
887 | g_ptr_array_add(ctf_fs_trace->ds_file_groups, ds_file_group); | |
888 | } | |
547eacf1 | 889 | |
97ade20b | 890 | ctf_fs_ds_file_destroy(ds_file); |
55b71f05 | 891 | ctf_fs_ds_file_info_destroy(ds_file_info); |
6de92955 | 892 | |
d6e69534 | 893 | if (msg_iter) { |
18a1979b | 894 | ctf_msg_iter_destroy(msg_iter); |
6de92955 PP |
895 | } |
896 | ||
97ade20b | 897 | ctf_fs_ds_index_destroy(index); |
94cf822e PP |
898 | return ret; |
899 | } | |
900 | ||
901 | static | |
e5be10ef | 902 | int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace) |
e7a4393b JG |
903 | { |
904 | int ret = 0; | |
4f1f88a6 | 905 | const char *basename; |
e7a4393b | 906 | GError *error = NULL; |
4f1f88a6 | 907 | GDir *dir = NULL; |
98903a3e | 908 | bt_logging_level log_level = ctf_fs_trace->log_level; |
4c65a157 | 909 | bt_self_component *self_comp = ctf_fs_trace->self_comp; |
b7d2695a | 910 | bt_self_component_class *self_comp_class = ctf_fs_trace->self_comp_class; |
e7a4393b | 911 | |
94cf822e | 912 | /* Check each file in the path directory, except specific ones */ |
1a9f7075 | 913 | dir = g_dir_open(ctf_fs_trace->path->str, 0, &error); |
e7a4393b | 914 | if (!dir) { |
b7d2695a SM |
915 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
916 | "Cannot open directory `%s`: %s (code %d)", | |
1a9f7075 | 917 | ctf_fs_trace->path->str, error->message, |
4f1f88a6 | 918 | error->code); |
e7a4393b JG |
919 | goto error; |
920 | } | |
921 | ||
4f1f88a6 | 922 | while ((basename = g_dir_read_name(dir))) { |
94cf822e PP |
923 | struct ctf_fs_file *file; |
924 | ||
2242b43d | 925 | if (strcmp(basename, CTF_FS_METADATA_FILENAME) == 0) { |
e7a4393b | 926 | /* Ignore the metadata stream. */ |
4c65a157 | 927 | BT_COMP_LOGI("Ignoring metadata file `%s" G_DIR_SEPARATOR_S "%s`", |
1a9f7075 | 928 | ctf_fs_trace->path->str, basename); |
e7a4393b JG |
929 | continue; |
930 | } | |
931 | ||
4f1f88a6 | 932 | if (basename[0] == '.') { |
4c65a157 | 933 | BT_COMP_LOGI("Ignoring hidden file `%s" G_DIR_SEPARATOR_S "%s`", |
1a9f7075 | 934 | ctf_fs_trace->path->str, basename); |
e7a4393b JG |
935 | continue; |
936 | } | |
937 | ||
938 | /* Create the file. */ | |
4c65a157 | 939 | file = ctf_fs_file_create(log_level, self_comp); |
e7a4393b | 940 | if (!file) { |
b7d2695a | 941 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
d23b766e | 942 | "Cannot create stream file object for file `%s" G_DIR_SEPARATOR_S "%s`", |
1a9f7075 | 943 | ctf_fs_trace->path->str, basename); |
e7a4393b JG |
944 | goto error; |
945 | } | |
946 | ||
947 | /* Create full path string. */ | |
3743a302 | 948 | g_string_append_printf(file->path, "%s" G_DIR_SEPARATOR_S "%s", |
1a9f7075 | 949 | ctf_fs_trace->path->str, basename); |
e7a4393b | 950 | if (!g_file_test(file->path->str, G_FILE_TEST_IS_REGULAR)) { |
4c65a157 | 951 | BT_COMP_LOGI("Ignoring non-regular file `%s`", |
1a9f7075 | 952 | file->path->str); |
e7a4393b | 953 | ctf_fs_file_destroy(file); |
4f1f88a6 | 954 | file = NULL; |
e7a4393b JG |
955 | continue; |
956 | } | |
957 | ||
55314f2a | 958 | ret = ctf_fs_file_open(file, "rb"); |
4f1f88a6 | 959 | if (ret) { |
b7d2695a SM |
960 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
961 | "Cannot open stream file `%s`", | |
d23b766e | 962 | file->path->str); |
e7a4393b JG |
963 | goto error; |
964 | } | |
965 | ||
9fa0891a JG |
966 | if (file->size == 0) { |
967 | /* Skip empty stream. */ | |
4c65a157 | 968 | BT_COMP_LOGI("Ignoring empty file `%s`", file->path->str); |
9fa0891a JG |
969 | ctf_fs_file_destroy(file); |
970 | continue; | |
971 | } | |
972 | ||
e5be10ef | 973 | ret = add_ds_file_to_ds_file_group(ctf_fs_trace, |
94cf822e | 974 | file->path->str); |
4f1f88a6 | 975 | if (ret) { |
b7d2695a | 976 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
d23b766e | 977 | "Cannot add stream file `%s` to stream file group", |
1a9f7075 | 978 | file->path->str); |
94cf822e | 979 | ctf_fs_file_destroy(file); |
e7a4393b JG |
980 | goto error; |
981 | } | |
982 | ||
4f1f88a6 | 983 | ctf_fs_file_destroy(file); |
e7a4393b JG |
984 | } |
985 | ||
986 | goto end; | |
4f1f88a6 | 987 | |
e7a4393b JG |
988 | error: |
989 | ret = -1; | |
4f1f88a6 | 990 | |
e7a4393b JG |
991 | end: |
992 | if (dir) { | |
993 | g_dir_close(dir); | |
994 | dir = NULL; | |
995 | } | |
4f1f88a6 | 996 | |
e7a4393b JG |
997 | if (error) { |
998 | g_error_free(error); | |
999 | } | |
5b29e799 | 1000 | |
91457551 | 1001 | return ret; |
5b29e799 JG |
1002 | } |
1003 | ||
862ca4ed | 1004 | static |
98903a3e | 1005 | int set_trace_name(bt_trace *trace, const char *name_suffix, |
4c65a157 | 1006 | bt_logging_level log_level, bt_self_component *self_comp) |
862ca4ed PP |
1007 | { |
1008 | int ret = 0; | |
b19ff26f | 1009 | const bt_value *val; |
862ca4ed PP |
1010 | GString *name; |
1011 | ||
1012 | name = g_string_new(NULL); | |
1013 | if (!name) { | |
4c65a157 | 1014 | BT_COMP_LOGE_STR("Failed to allocate a GString."); |
862ca4ed PP |
1015 | ret = -1; |
1016 | goto end; | |
1017 | } | |
1018 | ||
1019 | /* | |
1020 | * Check if we have a trace environment string value named `hostname`. | |
1021 | * If so, use it as the trace name's prefix. | |
1022 | */ | |
335a2da5 PP |
1023 | val = bt_trace_borrow_environment_entry_value_by_name_const( |
1024 | trace, "hostname"); | |
862ca4ed PP |
1025 | if (val && bt_value_is_string(val)) { |
1026 | g_string_append(name, bt_value_string_get(val)); | |
1027 | ||
1028 | if (name_suffix) { | |
1029 | g_string_append_c(name, G_DIR_SEPARATOR); | |
1030 | } | |
1031 | } | |
1032 | ||
1033 | if (name_suffix) { | |
1034 | g_string_append(name, name_suffix); | |
1035 | } | |
1036 | ||
1037 | ret = bt_trace_set_name(trace, name->str); | |
1038 | if (ret) { | |
1039 | goto end; | |
1040 | } | |
1041 | ||
1042 | goto end; | |
1043 | ||
1044 | end: | |
1045 | if (name) { | |
1046 | g_string_free(name, TRUE); | |
1047 | } | |
1048 | ||
1049 | return ret; | |
1050 | } | |
1051 | ||
f280892e | 1052 | static |
b7d2695a SM |
1053 | struct ctf_fs_trace *ctf_fs_trace_create( |
1054 | bt_self_component *self_comp, | |
1055 | bt_self_component_class *self_comp_class, | |
41693723 | 1056 | const char *path, const char *name, |
98903a3e PP |
1057 | struct ctf_fs_metadata_config *metadata_config, |
1058 | bt_logging_level log_level) | |
1a9f7075 PP |
1059 | { |
1060 | struct ctf_fs_trace *ctf_fs_trace; | |
1061 | int ret; | |
1062 | ||
b7d2695a SM |
1063 | /* Only one of them must be set. */ |
1064 | BT_ASSERT(!self_comp != !self_comp_class); | |
1065 | ||
1a9f7075 PP |
1066 | ctf_fs_trace = g_new0(struct ctf_fs_trace, 1); |
1067 | if (!ctf_fs_trace) { | |
1068 | goto end; | |
1069 | } | |
1070 | ||
98903a3e | 1071 | ctf_fs_trace->log_level = log_level; |
4c65a157 | 1072 | ctf_fs_trace->self_comp = self_comp; |
b7d2695a | 1073 | ctf_fs_trace->self_comp_class = self_comp_class; |
1a9f7075 PP |
1074 | ctf_fs_trace->path = g_string_new(path); |
1075 | if (!ctf_fs_trace->path) { | |
1076 | goto error; | |
1077 | } | |
1078 | ||
1a9f7075 PP |
1079 | ctf_fs_trace->metadata = g_new0(struct ctf_fs_metadata, 1); |
1080 | if (!ctf_fs_trace->metadata) { | |
1081 | goto error; | |
1082 | } | |
1083 | ||
44c440bc | 1084 | ctf_fs_metadata_init(ctf_fs_trace->metadata); |
94cf822e PP |
1085 | ctf_fs_trace->ds_file_groups = g_ptr_array_new_with_free_func( |
1086 | (GDestroyNotify) ctf_fs_ds_file_group_destroy); | |
1087 | if (!ctf_fs_trace->ds_file_groups) { | |
1088 | goto error; | |
1089 | } | |
1090 | ||
4c65a157 PP |
1091 | ret = ctf_fs_metadata_set_trace_class(self_comp, ctf_fs_trace, |
1092 | metadata_config); | |
862ca4ed PP |
1093 | if (ret) { |
1094 | goto error; | |
1095 | } | |
1096 | ||
41693723 PP |
1097 | if (ctf_fs_trace->metadata->trace_class) { |
1098 | ctf_fs_trace->trace = | |
1099 | bt_trace_create(ctf_fs_trace->metadata->trace_class); | |
1100 | if (!ctf_fs_trace->trace) { | |
1101 | goto error; | |
1102 | } | |
862ca4ed PP |
1103 | } |
1104 | ||
41693723 | 1105 | if (ctf_fs_trace->trace) { |
335a2da5 PP |
1106 | ret = ctf_trace_class_configure_ir_trace( |
1107 | ctf_fs_trace->metadata->tc, ctf_fs_trace->trace); | |
1108 | if (ret) { | |
1109 | goto error; | |
1110 | } | |
1111 | ||
4c65a157 PP |
1112 | ret = set_trace_name(ctf_fs_trace->trace, name, log_level, |
1113 | self_comp); | |
41693723 PP |
1114 | if (ret) { |
1115 | goto error; | |
1116 | } | |
1a9f7075 PP |
1117 | } |
1118 | ||
e5be10ef | 1119 | ret = create_ds_file_groups(ctf_fs_trace); |
94cf822e PP |
1120 | if (ret) { |
1121 | goto error; | |
1122 | } | |
1123 | ||
1a9f7075 PP |
1124 | goto end; |
1125 | ||
1126 | error: | |
1127 | ctf_fs_trace_destroy(ctf_fs_trace); | |
1128 | ctf_fs_trace = NULL; | |
44c440bc | 1129 | |
1a9f7075 PP |
1130 | end: |
1131 | return ctf_fs_trace; | |
1132 | } | |
1133 | ||
1134 | static | |
1135 | int path_is_ctf_trace(const char *path) | |
1136 | { | |
1137 | GString *metadata_path = g_string_new(NULL); | |
1138 | int ret = 0; | |
1139 | ||
1140 | if (!metadata_path) { | |
1141 | ret = -1; | |
1142 | goto end; | |
1143 | } | |
1144 | ||
3743a302 | 1145 | g_string_printf(metadata_path, "%s" G_DIR_SEPARATOR_S "%s", path, CTF_FS_METADATA_FILENAME); |
1a9f7075 PP |
1146 | |
1147 | if (g_file_test(metadata_path->str, G_FILE_TEST_IS_REGULAR)) { | |
1148 | ret = 1; | |
1149 | goto end; | |
1150 | } | |
1151 | ||
1152 | end: | |
1153 | g_string_free(metadata_path, TRUE); | |
1154 | return ret; | |
1155 | } | |
1156 | ||
a0cd55ad | 1157 | /* Helper for ctf_fs_component_create_ctf_fs_trace, to handle a single path. */ |
f280892e | 1158 | |
1a9f7075 | 1159 | static |
a0cd55ad | 1160 | int ctf_fs_component_create_ctf_fs_trace_one_path( |
41693723 | 1161 | struct ctf_fs_component *ctf_fs, |
d23b766e | 1162 | const char *path_param, |
005d49d6 | 1163 | const char *trace_name, |
a0cd55ad | 1164 | GPtrArray *traces, |
d23b766e SM |
1165 | bt_self_component *self_comp, |
1166 | bt_self_component_class *self_comp_class) | |
1a9f7075 | 1167 | { |
48881202 SM |
1168 | struct ctf_fs_trace *ctf_fs_trace; |
1169 | int ret; | |
1170 | GString *norm_path; | |
98903a3e | 1171 | bt_logging_level log_level = ctf_fs->log_level; |
1a9f7075 | 1172 | |
4bd72b60 PP |
1173 | norm_path = bt_common_normalize_path(path_param, NULL); |
1174 | if (!norm_path) { | |
d23b766e | 1175 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
b7d2695a SM |
1176 | "Failed to normalize path: `%s`.", |
1177 | path_param); | |
4bd72b60 PP |
1178 | goto error; |
1179 | } | |
1180 | ||
48881202 SM |
1181 | ret = path_is_ctf_trace(norm_path->str); |
1182 | if (ret < 0) { | |
1183 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
b7d2695a SM |
1184 | "Failed to check if path is a CTF trace: path=%s", |
1185 | norm_path->str); | |
48881202 SM |
1186 | goto error; |
1187 | } else if (ret == 0) { | |
1188 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
b7d2695a SM |
1189 | "Path is not a CTF trace (does not contain a metadata file): `%s`.", |
1190 | norm_path->str); | |
1a9f7075 PP |
1191 | goto error; |
1192 | } | |
1193 | ||
48881202 SM |
1194 | // FIXME: Remove or ifdef for __MINGW32__ |
1195 | if (strcmp(norm_path->str, "/") == 0) { | |
d23b766e | 1196 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
48881202 SM |
1197 | "Opening a trace in `/` is not supported."); |
1198 | ret = -1; | |
1199 | goto end; | |
1a9f7075 PP |
1200 | } |
1201 | ||
b7d2695a | 1202 | ctf_fs_trace = ctf_fs_trace_create(self_comp, self_comp_class, norm_path->str, |
005d49d6 | 1203 | trace_name, &ctf_fs->metadata_config, log_level); |
48881202 | 1204 | if (!ctf_fs_trace) { |
b7d2695a SM |
1205 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
1206 | "Cannot create trace for `%s`.", | |
48881202 | 1207 | norm_path->str); |
1a9f7075 PP |
1208 | goto error; |
1209 | } | |
1210 | ||
a0cd55ad | 1211 | g_ptr_array_add(traces, ctf_fs_trace); |
48881202 | 1212 | ctf_fs_trace = NULL; |
1a9f7075 | 1213 | |
48881202 | 1214 | ret = 0; |
1a9f7075 PP |
1215 | goto end; |
1216 | ||
1217 | error: | |
1218 | ret = -1; | |
1a9f7075 PP |
1219 | |
1220 | end: | |
4bd72b60 PP |
1221 | if (norm_path) { |
1222 | g_string_free(norm_path, TRUE); | |
1223 | } | |
1224 | ||
1a9f7075 PP |
1225 | return ret; |
1226 | } | |
1227 | ||
41a65f30 SM |
1228 | /* |
1229 | * Count the number of stream and event classes defined by this trace's metadata. | |
1230 | * | |
1231 | * This is used to determine which metadata is the "latest", out of multiple | |
1232 | * traces sharing the same UUID. It is assumed that amongst all these metadatas, | |
1233 | * a bigger metadata is a superset of a smaller metadata. Therefore, it is | |
1234 | * enough to just count the classes. | |
1235 | */ | |
1236 | ||
1237 | static | |
1238 | unsigned int metadata_count_stream_and_event_classes(struct ctf_fs_trace *trace) | |
1239 | { | |
1240 | unsigned int num = trace->metadata->tc->stream_classes->len; | |
1241 | guint i; | |
1242 | ||
1243 | for (i = 0; i < trace->metadata->tc->stream_classes->len; i++) { | |
1244 | struct ctf_stream_class *sc = trace->metadata->tc->stream_classes->pdata[i]; | |
1245 | num += sc->event_classes->len; | |
1246 | } | |
1247 | ||
1248 | return num; | |
1249 | } | |
1250 | ||
1251 | /* | |
1252 | * Merge the src ds_file_group into dest. This consists of merging their | |
1253 | * ds_file_infos, making sure to keep the result sorted. | |
1254 | */ | |
1255 | ||
1256 | static | |
1257 | void merge_ctf_fs_ds_file_groups(struct ctf_fs_ds_file_group *dest, struct ctf_fs_ds_file_group *src) | |
1258 | { | |
1259 | guint i; | |
1260 | ||
1261 | for (i = 0; i < src->ds_file_infos->len; i++) { | |
1262 | struct ctf_fs_ds_file_info *ds_file_info = | |
1263 | g_ptr_array_index(src->ds_file_infos, i); | |
1264 | ||
1265 | /* Ownership of the ds_file_info is transferred to dest. */ | |
1266 | g_ptr_array_index(src->ds_file_infos, i) = NULL; | |
1267 | ||
1268 | ds_file_group_insert_ds_file_info_sorted(dest, ds_file_info); | |
1269 | } | |
41a65f30 | 1270 | |
7ed5243a | 1271 | /* Merge both indexes. */ |
ce75de14 | 1272 | merge_ctf_fs_ds_indexes(dest->index, src->index); |
7ed5243a | 1273 | } |
41a65f30 SM |
1274 | /* Merge src_trace's data stream file groups into dest_trace's. */ |
1275 | ||
1276 | static | |
54ef52bd | 1277 | int merge_matching_ctf_fs_ds_file_groups( |
41a65f30 SM |
1278 | struct ctf_fs_trace *dest_trace, |
1279 | struct ctf_fs_trace *src_trace) | |
1280 | { | |
1281 | ||
1282 | GPtrArray *dest = dest_trace->ds_file_groups; | |
1283 | GPtrArray *src = src_trace->ds_file_groups; | |
1284 | guint s_i; | |
54ef52bd | 1285 | int ret = 0; |
41a65f30 SM |
1286 | |
1287 | /* | |
1288 | * Save the initial length of dest: we only want to check against the | |
1289 | * original elements in the inner loop. | |
1290 | */ | |
1291 | const guint dest_len = dest->len; | |
1292 | ||
1293 | for (s_i = 0; s_i < src->len; s_i++) { | |
1294 | struct ctf_fs_ds_file_group *src_group = g_ptr_array_index(src, s_i); | |
1295 | struct ctf_fs_ds_file_group *dest_group = NULL; | |
1296 | ||
1297 | /* A stream instance without ID can't match a stream in the other trace. */ | |
1298 | if (src_group->stream_id != -1) { | |
1299 | guint d_i; | |
1300 | ||
1301 | /* Let's search for a matching ds_file_group in the destination. */ | |
1302 | for (d_i = 0; d_i < dest_len; d_i++) { | |
1303 | struct ctf_fs_ds_file_group *candidate_dest = g_ptr_array_index(dest, d_i); | |
1304 | ||
1305 | /* Can't match a stream instance without ID. */ | |
1306 | if (candidate_dest->stream_id == -1) { | |
1307 | continue; | |
1308 | } | |
1309 | ||
1310 | /* | |
1311 | * If the two groups have the same stream instance id | |
1312 | * and belong to the same stream class (stream instance | |
1313 | * ids are per-stream class), they represent the same | |
1314 | * stream instance. | |
1315 | */ | |
1316 | if (candidate_dest->stream_id != src_group->stream_id || | |
1317 | candidate_dest->sc->id != src_group->sc->id) { | |
1318 | continue; | |
1319 | } | |
1320 | ||
1321 | dest_group = candidate_dest; | |
1322 | break; | |
1323 | } | |
1324 | } | |
1325 | ||
1326 | /* | |
1327 | * Didn't find a friend in dest to merge our src_group into? | |
7ed5243a FD |
1328 | * Create a new empty one. This can happen if a stream was |
1329 | * active in the source trace chunk but not in the destination | |
1330 | * trace chunk. | |
41a65f30 SM |
1331 | */ |
1332 | if (!dest_group) { | |
1333 | struct ctf_stream_class *sc; | |
7ed5243a | 1334 | struct ctf_fs_ds_index *index; |
41a65f30 SM |
1335 | |
1336 | sc = ctf_trace_class_borrow_stream_class_by_id( | |
1337 | dest_trace->metadata->tc, src_group->sc->id); | |
1338 | BT_ASSERT(sc); | |
1339 | ||
4c65a157 PP |
1340 | index = ctf_fs_ds_index_create(dest_trace->log_level, |
1341 | dest_trace->self_comp); | |
7ed5243a FD |
1342 | if (!index) { |
1343 | ret = -1; | |
1344 | goto end; | |
1345 | } | |
1346 | ||
41a65f30 | 1347 | dest_group = ctf_fs_ds_file_group_create(dest_trace, sc, |
7ed5243a FD |
1348 | src_group->stream_id, index); |
1349 | /* Ownership of index is transferred. */ | |
1350 | index = NULL; | |
54ef52bd FD |
1351 | if (!dest_group) { |
1352 | ret = -1; | |
1353 | goto end; | |
1354 | } | |
41a65f30 SM |
1355 | |
1356 | g_ptr_array_add(dest_trace->ds_file_groups, dest_group); | |
1357 | } | |
1358 | ||
1359 | BT_ASSERT(dest_group); | |
1360 | merge_ctf_fs_ds_file_groups(dest_group, src_group); | |
1361 | } | |
54ef52bd FD |
1362 | |
1363 | end: | |
1364 | return ret; | |
41a65f30 SM |
1365 | } |
1366 | ||
1367 | /* | |
1368 | * Collapse the given traces, which must all share the same UUID, in a single | |
1369 | * one. | |
1370 | * | |
1371 | * The trace with the most expansive metadata is chosen and all other traces | |
1372 | * are merged into that one. The array slots of all the traces that get merged | |
1373 | * in the chosen one are set to NULL, so only the slot of the chosen trace | |
1374 | * remains non-NULL. | |
1375 | */ | |
1376 | ||
1377 | static | |
a0cd55ad SM |
1378 | int merge_ctf_fs_traces(struct ctf_fs_trace **traces, unsigned int num_traces, |
1379 | struct ctf_fs_trace **out_trace) | |
41a65f30 SM |
1380 | { |
1381 | unsigned int winner_count; | |
1382 | struct ctf_fs_trace *winner; | |
a0cd55ad | 1383 | guint i, winner_i; |
54ef52bd | 1384 | int ret = 0; |
41a65f30 SM |
1385 | |
1386 | BT_ASSERT(num_traces >= 2); | |
1387 | ||
1388 | winner_count = metadata_count_stream_and_event_classes(traces[0]); | |
1389 | winner = traces[0]; | |
a0cd55ad | 1390 | winner_i = 0; |
41a65f30 SM |
1391 | |
1392 | /* Find the trace with the largest metadata. */ | |
1393 | for (i = 1; i < num_traces; i++) { | |
1394 | struct ctf_fs_trace *candidate; | |
1395 | unsigned int candidate_count; | |
1396 | ||
1397 | candidate = traces[i]; | |
1398 | ||
1399 | /* A bit of sanity check. */ | |
1400 | BT_ASSERT(bt_uuid_compare(winner->metadata->tc->uuid, candidate->metadata->tc->uuid) == 0); | |
1401 | ||
1402 | candidate_count = metadata_count_stream_and_event_classes(candidate); | |
1403 | ||
1404 | if (candidate_count > winner_count) { | |
1405 | winner_count = candidate_count; | |
1406 | winner = candidate; | |
a0cd55ad | 1407 | winner_i = i; |
41a65f30 SM |
1408 | } |
1409 | } | |
1410 | ||
1411 | /* Merge all the other traces in the winning trace. */ | |
1412 | for (i = 0; i < num_traces; i++) { | |
1413 | struct ctf_fs_trace *trace = traces[i]; | |
1414 | ||
1415 | /* Don't merge the winner into itself. */ | |
1416 | if (trace == winner) { | |
1417 | continue; | |
1418 | } | |
1419 | ||
1420 | /* Merge trace's data stream file groups into winner's. */ | |
54ef52bd FD |
1421 | ret = merge_matching_ctf_fs_ds_file_groups(winner, trace); |
1422 | if (ret) { | |
1423 | goto end; | |
1424 | } | |
41a65f30 SM |
1425 | } |
1426 | ||
a0cd55ad SM |
1427 | /* |
1428 | * Move the winner out of the array, into `*out_trace`. | |
1429 | */ | |
1430 | *out_trace = winner; | |
1431 | traces[winner_i] = NULL; | |
54ef52bd FD |
1432 | |
1433 | end: | |
1434 | return ret; | |
41a65f30 SM |
1435 | } |
1436 | ||
1719bf64 FD |
1437 | enum target_event { |
1438 | FIRST_EVENT, | |
1439 | LAST_EVENT, | |
1440 | }; | |
1441 | ||
1442 | static | |
1443 | int decode_clock_snapshot_after_event(struct ctf_fs_trace *ctf_fs_trace, | |
1444 | struct ctf_clock_class *default_cc, | |
1445 | struct ctf_fs_ds_index_entry *index_entry, | |
1446 | enum target_event target_event, uint64_t *cs, int64_t *ts_ns) | |
1447 | { | |
18a1979b | 1448 | enum ctf_msg_iter_status iter_status = CTF_MSG_ITER_STATUS_OK; |
1719bf64 | 1449 | struct ctf_fs_ds_file *ds_file = NULL; |
18a1979b | 1450 | struct ctf_msg_iter *msg_iter = NULL; |
1719bf64 FD |
1451 | bt_logging_level log_level = ctf_fs_trace->log_level; |
1452 | bt_self_component *self_comp = ctf_fs_trace->self_comp; | |
1453 | int ret = 0; | |
1454 | ||
1455 | BT_ASSERT(ctf_fs_trace); | |
6d54260a SM |
1456 | BT_ASSERT(index_entry); |
1457 | BT_ASSERT(index_entry->path); | |
1458 | ||
1459 | ds_file = ctf_fs_ds_file_create(ctf_fs_trace, NULL, | |
1460 | NULL, index_entry->path, log_level); | |
1461 | if (!ds_file) { | |
1462 | BT_COMP_LOGE_APPEND_CAUSE(self_comp, "Failed to create a ctf_fs_ds_file"); | |
1463 | ret = -1; | |
1464 | goto end; | |
1465 | } | |
1466 | ||
1719bf64 FD |
1467 | BT_ASSERT(ctf_fs_trace->metadata); |
1468 | BT_ASSERT(ctf_fs_trace->metadata->tc); | |
1469 | ||
18a1979b | 1470 | msg_iter = ctf_msg_iter_create(ctf_fs_trace->metadata->tc, |
1719bf64 | 1471 | bt_common_get_page_size(log_level) * 8, ctf_fs_ds_file_medops, |
6d54260a | 1472 | ds_file, log_level, self_comp, NULL); |
1719bf64 | 1473 | if (!msg_iter) { |
18a1979b | 1474 | /* ctf_msg_iter_create() logs errors. */ |
1719bf64 FD |
1475 | ret = -1; |
1476 | goto end; | |
1477 | } | |
1478 | ||
1719bf64 FD |
1479 | /* |
1480 | * Turn on dry run mode to prevent the creation and usage of Babeltrace | |
1481 | * library objects (bt_field, bt_message_*, etc.). | |
1482 | */ | |
18a1979b | 1483 | ctf_msg_iter_set_dry_run(msg_iter, true); |
1719bf64 FD |
1484 | |
1485 | /* Seek to the beginning of the target packet. */ | |
6d54260a | 1486 | iter_status = ctf_msg_iter_seek(msg_iter, index_entry->offset); |
1719bf64 | 1487 | if (iter_status) { |
18a1979b | 1488 | /* ctf_msg_iter_seek() logs errors. */ |
1719bf64 FD |
1489 | ret = -1; |
1490 | goto end; | |
1491 | } | |
1492 | ||
1493 | switch (target_event) { | |
1494 | case FIRST_EVENT: | |
1495 | /* | |
1496 | * Start to decode the packet until we reach the end of | |
1497 | * the first event. To extract the first event's clock | |
1498 | * snapshot. | |
1499 | */ | |
18a1979b | 1500 | iter_status = ctf_msg_iter_curr_packet_first_event_clock_snapshot( |
6d54260a | 1501 | msg_iter, cs); |
1719bf64 FD |
1502 | break; |
1503 | case LAST_EVENT: | |
1504 | /* Decode the packet to extract the last event's clock snapshot. */ | |
18a1979b | 1505 | iter_status = ctf_msg_iter_curr_packet_last_event_clock_snapshot( |
6d54260a | 1506 | msg_iter, cs); |
1719bf64 FD |
1507 | break; |
1508 | default: | |
498e7994 | 1509 | bt_common_abort(); |
1719bf64 FD |
1510 | } |
1511 | if (iter_status) { | |
1512 | ret = -1; | |
1513 | goto end; | |
1514 | } | |
1515 | ||
1516 | /* Convert clock snapshot to timestamp. */ | |
1517 | ret = bt_util_clock_cycles_to_ns_from_origin(*cs, | |
1518 | default_cc->frequency, default_cc->offset_seconds, | |
1519 | default_cc->offset_cycles, ts_ns); | |
1520 | if (ret) { | |
d23b766e SM |
1521 | BT_COMP_LOGE_APPEND_CAUSE(self_comp, |
1522 | "Failed to convert clock snapshot to timestamp"); | |
1719bf64 FD |
1523 | goto end; |
1524 | } | |
1525 | ||
1526 | end: | |
1527 | if (ds_file) { | |
1528 | ctf_fs_ds_file_destroy(ds_file); | |
1529 | } | |
1530 | if (msg_iter) { | |
18a1979b | 1531 | ctf_msg_iter_destroy(msg_iter); |
1719bf64 FD |
1532 | } |
1533 | ||
1534 | return ret; | |
1535 | } | |
1536 | ||
c43092a5 FD |
1537 | static |
1538 | int decode_packet_first_event_timestamp(struct ctf_fs_trace *ctf_fs_trace, | |
1539 | struct ctf_clock_class *default_cc, | |
1540 | struct ctf_fs_ds_index_entry *index_entry, uint64_t *cs, int64_t *ts_ns) | |
1541 | { | |
1542 | return decode_clock_snapshot_after_event(ctf_fs_trace, default_cc, | |
1543 | index_entry, FIRST_EVENT, cs, ts_ns); | |
1544 | } | |
1545 | ||
1719bf64 FD |
1546 | static |
1547 | int decode_packet_last_event_timestamp(struct ctf_fs_trace *ctf_fs_trace, | |
1548 | struct ctf_clock_class *default_cc, | |
1549 | struct ctf_fs_ds_index_entry *index_entry, uint64_t *cs, int64_t *ts_ns) | |
1550 | { | |
1551 | return decode_clock_snapshot_after_event(ctf_fs_trace, default_cc, | |
1552 | index_entry, LAST_EVENT, cs, ts_ns); | |
1553 | } | |
1554 | ||
1555 | /* | |
1556 | * Fix up packet index entries for lttng's "event-after-packet" bug. | |
1557 | * Some buggy lttng tracer versions may emit events with a timestamp that is | |
1558 | * larger (after) than the timestamp_end of the their packets. | |
1559 | * | |
1560 | * To fix up this erroneous data we do the following: | |
1561 | * 1. If it's not the stream file's last packet: set the packet index entry's | |
1562 | * end time to the next packet's beginning time. | |
1563 | * 2. If it's the stream file's last packet, set the packet index entry's end | |
1564 | * time to the packet's last event's time, if any, or to the packet's | |
1565 | * beginning time otherwise. | |
1566 | * | |
1567 | * Known buggy tracer versions: | |
1568 | * - before lttng-ust 2.11.0 | |
1569 | * - before lttng-module 2.11.0 | |
1570 | * - before lttng-module 2.10.10 | |
1571 | * - before lttng-module 2.9.13 | |
1572 | */ | |
1573 | static | |
1574 | int fix_index_lttng_event_after_packet_bug(struct ctf_fs_trace *trace) | |
1575 | { | |
1576 | int ret = 0; | |
1577 | guint ds_file_group_i; | |
1578 | GPtrArray *ds_file_groups = trace->ds_file_groups; | |
1579 | bt_logging_level log_level = trace->log_level; | |
1580 | ||
1581 | for (ds_file_group_i = 0; ds_file_group_i < ds_file_groups->len; | |
1582 | ds_file_group_i++) { | |
1583 | guint entry_i; | |
1584 | struct ctf_clock_class *default_cc; | |
1585 | struct ctf_fs_ds_index_entry *last_entry; | |
1586 | struct ctf_fs_ds_index *index; | |
1587 | ||
1588 | struct ctf_fs_ds_file_group *ds_file_group = | |
1589 | g_ptr_array_index(ds_file_groups, ds_file_group_i); | |
1590 | ||
1591 | BT_ASSERT(ds_file_group); | |
1592 | index = ds_file_group->index; | |
1593 | ||
1594 | BT_ASSERT(index); | |
1595 | BT_ASSERT(index->entries); | |
1596 | BT_ASSERT(index->entries->len > 0); | |
1597 | ||
1598 | /* | |
1599 | * Iterate over all entries but the last one. The last one is | |
1600 | * fixed differently after. | |
1601 | */ | |
1602 | for (entry_i = 0; entry_i < index->entries->len - 1; | |
1603 | entry_i++) { | |
1604 | struct ctf_fs_ds_index_entry *curr_entry, *next_entry; | |
1605 | ||
1606 | curr_entry = g_ptr_array_index(index->entries, entry_i); | |
1607 | next_entry = g_ptr_array_index(index->entries, entry_i + 1); | |
1608 | ||
1609 | /* | |
1610 | * 1. Set the current index entry `end` timestamp to | |
1611 | * the next index entry `begin` timestamp. | |
1612 | */ | |
1613 | curr_entry->timestamp_end = next_entry->timestamp_begin; | |
1614 | curr_entry->timestamp_end_ns = next_entry->timestamp_begin_ns; | |
1615 | } | |
1616 | ||
1617 | /* | |
1618 | * 2. Fix the last entry by decoding the last event of the last | |
1619 | * packet. | |
1620 | */ | |
1621 | last_entry = g_ptr_array_index(index->entries, | |
1622 | index->entries->len - 1); | |
1623 | BT_ASSERT(last_entry); | |
1624 | ||
1625 | BT_ASSERT(ds_file_group->sc->default_clock_class); | |
1626 | default_cc = ds_file_group->sc->default_clock_class; | |
1627 | ||
1628 | /* | |
1629 | * Decode packet to read the timestamp of the last event of the | |
1630 | * entry. | |
1631 | */ | |
1632 | ret = decode_packet_last_event_timestamp(trace, default_cc, | |
1633 | last_entry, &last_entry->timestamp_end, | |
1634 | &last_entry->timestamp_end_ns); | |
1635 | if (ret) { | |
d23b766e SM |
1636 | BT_COMP_LOGE_APPEND_CAUSE(trace->self_comp, |
1637 | "Failed to decode stream's last packet to get its last event's clock snapshot."); | |
1719bf64 FD |
1638 | goto end; |
1639 | } | |
1640 | } | |
1641 | ||
1642 | end: | |
1643 | return ret; | |
1644 | } | |
1645 | ||
c43092a5 FD |
1646 | /* |
1647 | * Fix up packet index entries for barectf's "event-before-packet" bug. | |
1648 | * Some buggy barectf tracer versions may emit events with a timestamp that is | |
1649 | * less than the timestamp_begin of the their packets. | |
1650 | * | |
1651 | * To fix up this erroneous data we do the following: | |
1652 | * 1. Starting at the second index entry, set the timestamp_begin of the | |
1653 | * current entry to the timestamp of the first event of the packet. | |
1654 | * 2. Set the previous entry's timestamp_end to the timestamp_begin of the | |
1655 | * current packet. | |
1656 | * | |
1657 | * Known buggy tracer versions: | |
1658 | * - before barectf 2.3.1 | |
1659 | */ | |
1660 | static | |
1661 | int fix_index_barectf_event_before_packet_bug(struct ctf_fs_trace *trace) | |
1662 | { | |
1663 | int ret = 0; | |
1664 | guint ds_file_group_i; | |
1665 | GPtrArray *ds_file_groups = trace->ds_file_groups; | |
1666 | bt_logging_level log_level = trace->log_level; | |
1667 | ||
1668 | for (ds_file_group_i = 0; ds_file_group_i < ds_file_groups->len; | |
1669 | ds_file_group_i++) { | |
1670 | guint entry_i; | |
1671 | struct ctf_clock_class *default_cc; | |
1672 | struct ctf_fs_ds_file_group *ds_file_group = | |
1673 | g_ptr_array_index(ds_file_groups, ds_file_group_i); | |
1674 | ||
1675 | struct ctf_fs_ds_index *index = ds_file_group->index; | |
1676 | ||
1677 | BT_ASSERT(index); | |
1678 | BT_ASSERT(index->entries); | |
1679 | BT_ASSERT(index->entries->len > 0); | |
1680 | ||
1681 | BT_ASSERT(ds_file_group->sc->default_clock_class); | |
1682 | default_cc = ds_file_group->sc->default_clock_class; | |
1683 | ||
1684 | /* | |
1685 | * 1. Iterate over the index, starting from the second entry | |
1686 | * (index = 1). | |
1687 | */ | |
1688 | for (entry_i = 1; entry_i < index->entries->len; | |
1689 | entry_i++) { | |
1690 | struct ctf_fs_ds_index_entry *curr_entry, *prev_entry; | |
1691 | prev_entry = g_ptr_array_index(index->entries, entry_i - 1); | |
1692 | curr_entry = g_ptr_array_index(index->entries, entry_i); | |
1693 | /* | |
1694 | * 2. Set the current entry `begin` timestamp to the | |
1695 | * timestamp of the first event of the current packet. | |
1696 | */ | |
1697 | ret = decode_packet_first_event_timestamp(trace, default_cc, | |
1698 | curr_entry, &curr_entry->timestamp_begin, | |
1699 | &curr_entry->timestamp_begin_ns); | |
1700 | if (ret) { | |
d23b766e SM |
1701 | BT_COMP_LOGE_APPEND_CAUSE(trace->self_comp, |
1702 | "Failed to decode first event's clock snapshot"); | |
c43092a5 FD |
1703 | goto end; |
1704 | } | |
1705 | ||
1706 | /* | |
1707 | * 3. Set the previous entry `end` timestamp to the | |
1708 | * timestamp of the first event of the current packet. | |
1709 | */ | |
1710 | prev_entry->timestamp_end = curr_entry->timestamp_begin; | |
1711 | prev_entry->timestamp_end_ns = curr_entry->timestamp_begin_ns; | |
1712 | } | |
1713 | } | |
1714 | end: | |
1715 | return ret; | |
1716 | } | |
1717 | ||
aada78b5 FD |
1718 | /* |
1719 | * When using the lttng-crash feature it's likely that the last packets of each | |
1720 | * stream have their timestamp_end set to zero. This is caused by the fact that | |
1721 | * the tracer crashed and was not able to properly close the packets. | |
1722 | * | |
1723 | * To fix up this erroneous data we do the following: | |
1724 | * For each index entry, if the entry's timestamp_end is 0 and the | |
1725 | * timestamp_begin is not 0: | |
1726 | * - If it's the stream file's last packet: set the packet index entry's end | |
1727 | * time to the packet's last event's time, if any, or to the packet's | |
1728 | * beginning time otherwise. | |
1729 | * - If it's not the stream file's last packet: set the packet index | |
1730 | * entry's end time to the next packet's beginning time. | |
1731 | * | |
1732 | * Affected versions: | |
1733 | * - All current and future lttng-ust and lttng-modules versions. | |
1734 | */ | |
1735 | static | |
1736 | int fix_index_lttng_crash_quirk(struct ctf_fs_trace *trace) | |
1737 | { | |
1738 | int ret = 0; | |
1739 | guint ds_file_group_idx; | |
1740 | GPtrArray *ds_file_groups = trace->ds_file_groups; | |
1741 | bt_logging_level log_level = trace->log_level; | |
1742 | ||
1743 | for (ds_file_group_idx = 0; ds_file_group_idx < ds_file_groups->len; | |
1744 | ds_file_group_idx++) { | |
1745 | guint entry_idx; | |
1746 | struct ctf_clock_class *default_cc; | |
1747 | struct ctf_fs_ds_index_entry *last_entry; | |
1748 | struct ctf_fs_ds_index *index; | |
1749 | ||
1750 | struct ctf_fs_ds_file_group *ds_file_group = | |
1751 | g_ptr_array_index(ds_file_groups, ds_file_group_idx); | |
1752 | ||
1753 | BT_ASSERT(ds_file_group); | |
1754 | index = ds_file_group->index; | |
1755 | ||
1756 | BT_ASSERT(ds_file_group->sc->default_clock_class); | |
1757 | default_cc = ds_file_group->sc->default_clock_class; | |
1758 | ||
1759 | BT_ASSERT(index); | |
1760 | BT_ASSERT(index->entries); | |
1761 | BT_ASSERT(index->entries->len > 0); | |
1762 | ||
1763 | last_entry = g_ptr_array_index(index->entries, | |
1764 | index->entries->len - 1); | |
1765 | BT_ASSERT(last_entry); | |
1766 | ||
1767 | ||
1768 | /* 1. Fix the last entry first. */ | |
1769 | if (last_entry->timestamp_end == 0 && | |
1770 | last_entry->timestamp_begin != 0) { | |
1771 | /* | |
1772 | * Decode packet to read the timestamp of the | |
1773 | * last event of the stream file. | |
1774 | */ | |
1775 | ret = decode_packet_last_event_timestamp(trace, | |
1776 | default_cc, last_entry, | |
1777 | &last_entry->timestamp_end, | |
1778 | &last_entry->timestamp_end_ns); | |
1779 | if (ret) { | |
d23b766e SM |
1780 | BT_COMP_LOGE_APPEND_CAUSE(trace->self_comp, |
1781 | "Failed to decode last event's clock snapshot"); | |
aada78b5 FD |
1782 | goto end; |
1783 | } | |
1784 | } | |
1785 | ||
1786 | /* Iterate over all entries but the last one. */ | |
1787 | for (entry_idx = 0; entry_idx < index->entries->len - 1; | |
1788 | entry_idx++) { | |
1789 | struct ctf_fs_ds_index_entry *curr_entry, *next_entry; | |
1790 | curr_entry = g_ptr_array_index(index->entries, entry_idx); | |
1791 | next_entry = g_ptr_array_index(index->entries, entry_idx + 1); | |
1792 | ||
1793 | if (curr_entry->timestamp_end == 0 && | |
1794 | curr_entry->timestamp_begin != 0) { | |
1795 | /* | |
1796 | * 2. Set the current index entry `end` timestamp to | |
1797 | * the next index entry `begin` timestamp. | |
1798 | */ | |
1799 | curr_entry->timestamp_end = next_entry->timestamp_begin; | |
1800 | curr_entry->timestamp_end_ns = next_entry->timestamp_begin_ns; | |
1801 | } | |
1802 | } | |
1803 | } | |
1804 | ||
1805 | end: | |
1806 | return ret; | |
1807 | } | |
1808 | ||
626cc488 FD |
1809 | /* |
1810 | * Extract the tracer information necessary to compare versions. | |
1811 | * Returns 0 on success, and -1 if the extraction is not successful because the | |
1812 | * necessary fields are absents in the trace metadata. | |
1813 | */ | |
1814 | static | |
626cc488 FD |
1815 | int extract_tracer_info(struct ctf_fs_trace *trace, |
1816 | struct tracer_info *current_tracer_info) | |
1817 | { | |
1818 | int ret = 0; | |
1819 | struct ctf_trace_class_env_entry *entry; | |
1820 | ||
1821 | /* Clear the current_tracer_info struct */ | |
1822 | memset(current_tracer_info, 0, sizeof(*current_tracer_info)); | |
1823 | ||
1824 | /* | |
1825 | * To compare 2 tracer versions, at least the tracer name and it's | |
1826 | * major version are needed. If one of these is missing, consider it an | |
1827 | * extraction failure. | |
1828 | */ | |
1829 | entry = ctf_trace_class_borrow_env_entry_by_name( | |
1830 | trace->metadata->tc, "tracer_name"); | |
1831 | if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_STR) { | |
1832 | goto missing_bare_minimum; | |
1833 | } | |
1834 | ||
1835 | /* Set tracer name. */ | |
1836 | current_tracer_info->name = entry->value.str->str; | |
1837 | ||
1838 | entry = ctf_trace_class_borrow_env_entry_by_name( | |
1839 | trace->metadata->tc, "tracer_major"); | |
1840 | if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) { | |
1841 | goto missing_bare_minimum; | |
1842 | } | |
1843 | ||
1844 | /* Set major version number. */ | |
1845 | current_tracer_info->major = entry->value.i; | |
1846 | ||
1847 | entry = ctf_trace_class_borrow_env_entry_by_name( | |
1848 | trace->metadata->tc, "tracer_minor"); | |
1849 | if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) { | |
1850 | goto end; | |
1851 | } | |
1852 | ||
1853 | /* Set minor version number. */ | |
1854 | current_tracer_info->minor = entry->value.i; | |
1855 | ||
1856 | entry = ctf_trace_class_borrow_env_entry_by_name( | |
1857 | trace->metadata->tc, "tracer_patch"); | |
1858 | if (!entry) { | |
1859 | /* | |
1860 | * If `tracer_patch` doesn't exist `tracer_patchlevel` might. | |
1861 | * For example, `lttng-modules` uses entry name | |
1862 | * `tracer_patchlevel`. | |
1863 | */ | |
1864 | entry = ctf_trace_class_borrow_env_entry_by_name( | |
1865 | trace->metadata->tc, "tracer_patchlevel"); | |
1866 | } | |
1867 | ||
1868 | if (!entry || entry->type != CTF_TRACE_CLASS_ENV_ENTRY_TYPE_INT) { | |
1869 | goto end; | |
1870 | } | |
1871 | ||
1872 | /* Set patch version number. */ | |
1873 | current_tracer_info->patch = entry->value.i; | |
1874 | ||
1875 | goto end; | |
1876 | ||
1877 | missing_bare_minimum: | |
1878 | ret = -1; | |
1879 | end: | |
1880 | return ret; | |
1881 | } | |
1882 | ||
1719bf64 FD |
1883 | static |
1884 | bool is_tracer_affected_by_lttng_event_after_packet_bug( | |
1885 | struct tracer_info *curr_tracer_info) | |
1886 | { | |
1887 | bool is_affected = false; | |
1888 | ||
1889 | if (strcmp(curr_tracer_info->name, "lttng-ust") == 0) { | |
1890 | if (curr_tracer_info->major < 2) { | |
1891 | is_affected = true; | |
1892 | } else if (curr_tracer_info->major == 2) { | |
1893 | /* fixed in lttng-ust 2.11.0 */ | |
1894 | if (curr_tracer_info->minor < 11) { | |
1895 | is_affected = true; | |
1896 | } | |
1897 | } | |
1898 | } else if (strcmp(curr_tracer_info->name, "lttng-modules") == 0) { | |
1899 | if (curr_tracer_info->major < 2) { | |
1900 | is_affected = true; | |
1901 | } else if (curr_tracer_info->major == 2) { | |
1902 | /* fixed in lttng-modules 2.11.0 */ | |
1903 | if (curr_tracer_info->minor == 10) { | |
1904 | /* fixed in lttng-modules 2.10.10 */ | |
1905 | if (curr_tracer_info->patch < 10) { | |
1906 | is_affected = true; | |
1907 | } | |
1908 | } else if (curr_tracer_info->minor == 9) { | |
1909 | /* fixed in lttng-modules 2.9.13 */ | |
1910 | if (curr_tracer_info->patch < 13) { | |
1911 | is_affected = true; | |
1912 | } | |
1913 | } else if (curr_tracer_info->minor < 9) { | |
1914 | is_affected = true; | |
1915 | } | |
1916 | } | |
1917 | } | |
1918 | ||
1919 | return is_affected; | |
1920 | } | |
1921 | ||
c43092a5 FD |
1922 | static |
1923 | bool is_tracer_affected_by_barectf_event_before_packet_bug( | |
1924 | struct tracer_info *curr_tracer_info) | |
1925 | { | |
1926 | bool is_affected = false; | |
1927 | ||
1928 | if (strcmp(curr_tracer_info->name, "barectf") == 0) { | |
1929 | if (curr_tracer_info->major < 2) { | |
1930 | is_affected = true; | |
1931 | } else if (curr_tracer_info->major == 2) { | |
1932 | if (curr_tracer_info->minor < 3) { | |
1933 | is_affected = true; | |
1934 | } else if (curr_tracer_info->minor == 3) { | |
1935 | /* fixed in barectf 2.3.1 */ | |
1936 | if (curr_tracer_info->patch < 1) { | |
1937 | is_affected = true; | |
1938 | } | |
1939 | } | |
1940 | } | |
1941 | } | |
1942 | ||
1943 | return is_affected; | |
1944 | } | |
1945 | ||
aada78b5 FD |
1946 | static |
1947 | bool is_tracer_affected_by_lttng_crash_quirk( | |
1948 | struct tracer_info *curr_tracer_info) | |
1949 | { | |
1950 | bool is_affected = false; | |
1951 | ||
1952 | /* All LTTng tracer may be affected by this lttng crash quirk. */ | |
1953 | if (strcmp(curr_tracer_info->name, "lttng-ust") == 0) { | |
1954 | is_affected = true; | |
1955 | } else if (strcmp(curr_tracer_info->name, "lttng-modules") == 0) { | |
1956 | is_affected = true; | |
1957 | } | |
1958 | ||
1959 | return is_affected; | |
1960 | } | |
1961 | ||
1719bf64 FD |
1962 | /* |
1963 | * Looks for trace produced by known buggy tracers and fix up the index | |
1964 | * produced earlier. | |
1965 | */ | |
1966 | static | |
d23b766e | 1967 | int fix_packet_index_tracer_bugs(struct ctf_fs_component *ctf_fs, |
b7d2695a SM |
1968 | bt_self_component *self_comp, |
1969 | bt_self_component_class *self_comp_class) | |
1719bf64 FD |
1970 | { |
1971 | int ret = 0; | |
1719bf64 | 1972 | struct tracer_info current_tracer_info; |
1719bf64 FD |
1973 | bt_logging_level log_level = ctf_fs->log_level; |
1974 | ||
a0cd55ad SM |
1975 | ret = extract_tracer_info(ctf_fs->trace, ¤t_tracer_info); |
1976 | if (ret) { | |
1977 | /* | |
1978 | * A trace may not have all the necessary environment | |
1979 | * entries to do the tracer version comparison. | |
1980 | * At least, the tracer name and major version number | |
1981 | * are needed. Failing to extract these entries is not | |
1982 | * an error. | |
1983 | */ | |
1984 | ret = 0; | |
1985 | BT_LOGI_STR("Cannot extract tracer information necessary to compare with buggy versions."); | |
1986 | goto end;; | |
1987 | } | |
1719bf64 | 1988 | |
a0cd55ad SM |
1989 | /* Check if the trace may be affected by old tracer bugs. */ |
1990 | if (is_tracer_affected_by_lttng_event_after_packet_bug( | |
1991 | ¤t_tracer_info)) { | |
1992 | BT_LOGI_STR("Trace may be affected by LTTng tracer packet timestamp bug. Fixing up."); | |
1993 | ret = fix_index_lttng_event_after_packet_bug(ctf_fs->trace); | |
1719bf64 | 1994 | if (ret) { |
b7d2695a SM |
1995 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE( |
1996 | self_comp, self_comp_class, | |
a0cd55ad SM |
1997 | "Failed to fix LTTng event-after-packet bug."); |
1998 | goto end; | |
1719bf64 | 1999 | } |
a0cd55ad SM |
2000 | ctf_fs->trace->metadata->tc->quirks.lttng_event_after_packet = true; |
2001 | } | |
c43092a5 | 2002 | |
a0cd55ad SM |
2003 | if (is_tracer_affected_by_barectf_event_before_packet_bug( |
2004 | ¤t_tracer_info)) { | |
2005 | BT_LOGI_STR("Trace may be affected by barectf tracer packet timestamp bug. Fixing up."); | |
2006 | ret = fix_index_barectf_event_before_packet_bug(ctf_fs->trace); | |
2007 | if (ret) { | |
b7d2695a SM |
2008 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE( |
2009 | self_comp, self_comp_class, | |
a0cd55ad SM |
2010 | "Failed to fix barectf event-before-packet bug."); |
2011 | goto end; | |
c43092a5 | 2012 | } |
a0cd55ad SM |
2013 | ctf_fs->trace->metadata->tc->quirks.barectf_event_before_packet = true; |
2014 | } | |
aada78b5 | 2015 | |
a0cd55ad SM |
2016 | if (is_tracer_affected_by_lttng_crash_quirk( |
2017 | ¤t_tracer_info)) { | |
2018 | ret = fix_index_lttng_crash_quirk(ctf_fs->trace); | |
2019 | if (ret) { | |
b7d2695a SM |
2020 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE( |
2021 | self_comp, self_comp_class, | |
a0cd55ad SM |
2022 | "Failed to fix lttng-crash timestamp quirks."); |
2023 | goto end; | |
aada78b5 | 2024 | } |
a0cd55ad | 2025 | ctf_fs->trace->metadata->tc->quirks.lttng_crash = true; |
1719bf64 | 2026 | } |
a0cd55ad | 2027 | |
1719bf64 FD |
2028 | end: |
2029 | return ret; | |
2030 | } | |
2031 | ||
e9b3611f PP |
2032 | static |
2033 | gint compare_ds_file_groups_by_first_path(gconstpointer a, gconstpointer b) | |
2034 | { | |
2035 | struct ctf_fs_ds_file_group * const *ds_file_group_a = a; | |
2036 | struct ctf_fs_ds_file_group * const *ds_file_group_b = b; | |
2037 | const struct ctf_fs_ds_file_info *first_ds_file_info_a; | |
2038 | const struct ctf_fs_ds_file_info *first_ds_file_info_b; | |
2039 | ||
2040 | BT_ASSERT((*ds_file_group_a)->ds_file_infos->len > 0); | |
2041 | BT_ASSERT((*ds_file_group_b)->ds_file_infos->len > 0); | |
2042 | first_ds_file_info_a = (*ds_file_group_a)->ds_file_infos->pdata[0]; | |
2043 | first_ds_file_info_b = (*ds_file_group_b)->ds_file_infos->pdata[0]; | |
2044 | return strcmp(first_ds_file_info_a->path->str, | |
2045 | first_ds_file_info_b->path->str); | |
2046 | } | |
2047 | ||
7b69723d SM |
2048 | static |
2049 | gint compare_strings(gconstpointer p_a, gconstpointer p_b) | |
2050 | { | |
2051 | const char *a = *((const char **) p_a); | |
2052 | const char *b = *((const char **) p_b); | |
2053 | ||
2054 | return strcmp(a, b); | |
2055 | } | |
2056 | ||
a0cd55ad | 2057 | int ctf_fs_component_create_ctf_fs_trace( |
f280892e | 2058 | struct ctf_fs_component *ctf_fs, |
d23b766e | 2059 | const bt_value *paths_value, |
005d49d6 | 2060 | const bt_value *trace_name_value, |
d23b766e SM |
2061 | bt_self_component *self_comp, |
2062 | bt_self_component_class *self_comp_class) | |
f280892e SM |
2063 | { |
2064 | int ret = 0; | |
2065 | uint64_t i; | |
1719bf64 | 2066 | bt_logging_level log_level = ctf_fs->log_level; |
7b69723d | 2067 | GPtrArray *paths = NULL; |
a0cd55ad | 2068 | GPtrArray *traces; |
005d49d6 | 2069 | const char *trace_name; |
f280892e | 2070 | |
a0cd55ad SM |
2071 | BT_ASSERT(bt_value_get_type(paths_value) == BT_VALUE_TYPE_ARRAY); |
2072 | BT_ASSERT(!bt_value_array_is_empty(paths_value)); | |
2073 | ||
2074 | traces = g_ptr_array_new_with_free_func(ctf_fs_trace_destroy_notifier); | |
2075 | if (!traces) { | |
2076 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
2077 | "Failed to allocate a GPtrArray."); | |
2078 | goto error; | |
2079 | } | |
2080 | ||
7b69723d SM |
2081 | paths = g_ptr_array_new_with_free_func(g_free); |
2082 | if (!paths) { | |
2083 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
2084 | "Failed to allocate a GPtrArray."); | |
2085 | goto error; | |
2086 | } | |
2087 | ||
005d49d6 SM |
2088 | trace_name = trace_name_value ? bt_value_string_get(trace_name_value) : NULL; |
2089 | ||
7b69723d SM |
2090 | /* |
2091 | * Create a sorted array of the paths, to make the execution of this | |
2092 | * component deterministic. | |
2093 | */ | |
393729a6 | 2094 | for (i = 0; i < bt_value_array_get_length(paths_value); i++) { |
7b69723d SM |
2095 | const bt_value *path_value = |
2096 | bt_value_array_borrow_element_by_index_const(paths_value, i); | |
73760435 | 2097 | const char *input = bt_value_string_get(path_value); |
7b69723d SM |
2098 | gchar *input_copy; |
2099 | ||
2100 | input_copy = g_strdup(input); | |
2101 | if (!input_copy) { | |
2102 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
2103 | "Failed to copy a string."); | |
2104 | goto error; | |
2105 | } | |
2106 | ||
2107 | g_ptr_array_add(paths, input_copy); | |
2108 | } | |
2109 | ||
2110 | g_ptr_array_sort(paths, compare_strings); | |
2111 | ||
2112 | /* Create a separate ctf_fs_trace object for each path. */ | |
2113 | for (i = 0; i < paths->len; i++) { | |
2114 | const char *path = g_ptr_array_index(paths, i); | |
f280892e | 2115 | |
a0cd55ad | 2116 | ret = ctf_fs_component_create_ctf_fs_trace_one_path(ctf_fs, |
7b69723d | 2117 | path, trace_name, traces, self_comp, self_comp_class); |
f280892e SM |
2118 | if (ret) { |
2119 | goto end; | |
2120 | } | |
2121 | } | |
2122 | ||
a0cd55ad SM |
2123 | if (traces->len > 1) { |
2124 | struct ctf_fs_trace *first_trace = (struct ctf_fs_trace *) traces->pdata[0]; | |
2125 | const uint8_t *first_trace_uuid = first_trace->metadata->tc->uuid; | |
2126 | struct ctf_fs_trace *trace; | |
2127 | ||
2128 | /* | |
2129 | * We have more than one trace, they must all share the same | |
2130 | * UUID, verify that. | |
2131 | */ | |
2132 | for (i = 0; i < traces->len; i++) { | |
2133 | struct ctf_fs_trace *this_trace = | |
2134 | (struct ctf_fs_trace *) traces->pdata[i]; | |
2135 | const uint8_t *this_trace_uuid = this_trace->metadata->tc->uuid; | |
2136 | ||
2137 | if (!this_trace->metadata->tc->is_uuid_set) { | |
2138 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
2139 | "Multiple traces given, but a trace does not have a UUID: path=%s", | |
2140 | this_trace->path->str); | |
2141 | goto error; | |
2142 | } | |
2143 | ||
2144 | if (bt_uuid_compare(first_trace_uuid, this_trace_uuid) != 0) { | |
2145 | char first_trace_uuid_str[BT_UUID_STR_LEN + 1]; | |
2146 | char this_trace_uuid_str[BT_UUID_STR_LEN + 1]; | |
2147 | ||
2148 | bt_uuid_to_str(first_trace_uuid, first_trace_uuid_str); | |
2149 | bt_uuid_to_str(this_trace_uuid, this_trace_uuid_str); | |
2150 | ||
2151 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
2152 | "Multiple traces given, but UUIDs don't match: " | |
2153 | "first-trace-uuid=%s, first-trace-path=%s, " | |
2154 | "trace-uuid=%s, trace-path=%s", | |
2155 | first_trace_uuid_str, first_trace->path->str, | |
2156 | this_trace_uuid_str, this_trace->path->str); | |
2157 | goto error; | |
2158 | } | |
2159 | } | |
2160 | ||
2161 | ret = merge_ctf_fs_traces((struct ctf_fs_trace **) traces->pdata, | |
2162 | traces->len, &trace); | |
2163 | if (ret) { | |
2164 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
2165 | "Failed to merge traces with the same UUID."); | |
2166 | goto error; | |
2167 | } | |
2168 | ||
2169 | ctf_fs->trace = trace; | |
2170 | } else { | |
2171 | /* Just one trace, it may or may not have a UUID, both are fine. */ | |
2172 | ctf_fs->trace = traces->pdata[0]; | |
2173 | traces->pdata[0] = NULL; | |
1719bf64 | 2174 | } |
41a65f30 | 2175 | |
b7d2695a | 2176 | ret = fix_packet_index_tracer_bugs(ctf_fs, self_comp, self_comp_class); |
1719bf64 | 2177 | if (ret) { |
d23b766e SM |
2178 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, |
2179 | "Failed to fix packet index tracer bugs."); | |
1719bf64 | 2180 | } |
a0cd55ad | 2181 | |
e9b3611f PP |
2182 | /* |
2183 | * Sort data stream file groups by first data stream file info | |
2184 | * path to get a deterministic order. This order influences the | |
2185 | * order of the output ports. It also influences the order of | |
2186 | * the automatic stream IDs if the trace's packet headers do not | |
2187 | * contain a `stream_instance_id` field, in which case the data | |
2188 | * stream file to stream ID association is always the same, | |
2189 | * whatever the build and the system. | |
2190 | * | |
2191 | * Having a deterministic order here can help debugging and | |
2192 | * testing. | |
2193 | */ | |
2194 | g_ptr_array_sort(ctf_fs->trace->ds_file_groups, | |
2195 | compare_ds_file_groups_by_first_path); | |
a0cd55ad SM |
2196 | goto end; |
2197 | error: | |
2198 | ret = -1; | |
2199 | ||
f280892e | 2200 | end: |
7b69723d SM |
2201 | if (traces) { |
2202 | g_ptr_array_free(traces, TRUE); | |
2203 | } | |
2204 | ||
2205 | if (paths) { | |
2206 | g_ptr_array_free(paths, TRUE); | |
2207 | } | |
2208 | ||
f280892e SM |
2209 | return ret; |
2210 | } | |
2211 | ||
a38d7650 SM |
2212 | static |
2213 | GString *get_stream_instance_unique_name( | |
2214 | struct ctf_fs_ds_file_group *ds_file_group) | |
2215 | { | |
2216 | GString *name; | |
2217 | struct ctf_fs_ds_file_info *ds_file_info; | |
2218 | ||
2219 | name = g_string_new(NULL); | |
2220 | if (!name) { | |
2221 | goto end; | |
2222 | } | |
2223 | ||
2224 | /* | |
2225 | * If there's more than one stream file in the stream file | |
2226 | * group, the first (earliest) stream file's path is used as | |
2227 | * the stream's unique name. | |
2228 | */ | |
2229 | BT_ASSERT(ds_file_group->ds_file_infos->len > 0); | |
2230 | ds_file_info = g_ptr_array_index(ds_file_group->ds_file_infos, 0); | |
2231 | g_string_assign(name, ds_file_info->path->str); | |
2232 | ||
2233 | end: | |
2234 | return name; | |
2235 | } | |
2236 | ||
f280892e SM |
2237 | /* Create the IR stream objects for ctf_fs_trace. */ |
2238 | ||
2239 | static | |
2240 | int create_streams_for_trace(struct ctf_fs_trace *ctf_fs_trace) | |
2241 | { | |
2242 | int ret; | |
2243 | GString *name = NULL; | |
2244 | guint i; | |
98903a3e | 2245 | bt_logging_level log_level = ctf_fs_trace->log_level; |
4c65a157 | 2246 | bt_self_component *self_comp = ctf_fs_trace->self_comp; |
f280892e SM |
2247 | |
2248 | for (i = 0; i < ctf_fs_trace->ds_file_groups->len; i++) { | |
2249 | struct ctf_fs_ds_file_group *ds_file_group = | |
2250 | g_ptr_array_index(ctf_fs_trace->ds_file_groups, i); | |
2251 | name = get_stream_instance_unique_name(ds_file_group); | |
2252 | ||
2253 | if (!name) { | |
2254 | goto error; | |
2255 | } | |
2256 | ||
2257 | if (ds_file_group->sc->ir_sc) { | |
2258 | BT_ASSERT(ctf_fs_trace->trace); | |
2259 | ||
2260 | if (ds_file_group->stream_id == UINT64_C(-1)) { | |
2261 | /* No stream ID: use 0 */ | |
2262 | ds_file_group->stream = bt_stream_create_with_id( | |
2263 | ds_file_group->sc->ir_sc, | |
2264 | ctf_fs_trace->trace, | |
2265 | ctf_fs_trace->next_stream_id); | |
2266 | ctf_fs_trace->next_stream_id++; | |
2267 | } else { | |
2268 | /* Specific stream ID */ | |
2269 | ds_file_group->stream = bt_stream_create_with_id( | |
2270 | ds_file_group->sc->ir_sc, | |
2271 | ctf_fs_trace->trace, | |
2272 | (uint64_t) ds_file_group->stream_id); | |
2273 | } | |
2274 | } else { | |
2275 | ds_file_group->stream = NULL; | |
2276 | } | |
2277 | ||
2278 | if (!ds_file_group->stream) { | |
d23b766e SM |
2279 | BT_COMP_LOGE_APPEND_CAUSE(self_comp, |
2280 | "Cannot create stream for DS file group: " | |
f280892e SM |
2281 | "addr=%p, stream-name=\"%s\"", |
2282 | ds_file_group, name->str); | |
2283 | goto error; | |
2284 | } | |
2285 | ||
2286 | ret = bt_stream_set_name(ds_file_group->stream, | |
2287 | name->str); | |
2288 | if (ret) { | |
d23b766e | 2289 | BT_COMP_LOGE_APPEND_CAUSE(self_comp, "Cannot set stream's name: " |
f280892e SM |
2290 | "addr=%p, stream-name=\"%s\"", |
2291 | ds_file_group->stream, name->str); | |
2292 | goto error; | |
2293 | } | |
2294 | ||
2295 | g_string_free(name, TRUE); | |
2296 | name = NULL; | |
2297 | } | |
2298 | ||
2299 | ret = 0; | |
2300 | goto end; | |
2301 | ||
2302 | error: | |
2303 | ret = -1; | |
2304 | ||
2305 | end: | |
2306 | ||
2307 | if (name) { | |
2308 | g_string_free(name, TRUE); | |
2309 | } | |
2310 | return ret; | |
2311 | } | |
2312 | ||
c24f7ab4 SM |
2313 | static const struct bt_param_validation_value_descr inputs_elem_descr = { |
2314 | .type = BT_VALUE_TYPE_STRING, | |
2315 | }; | |
f280892e | 2316 | |
c24f7ab4 SM |
2317 | static const struct bt_param_validation_map_value_entry_descr fs_params_entries_descr[] = { |
2318 | { "inputs", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_MANDATORY, { | |
2319 | BT_VALUE_TYPE_ARRAY, | |
2320 | .array = { | |
2321 | .min_length = 1, | |
2322 | .max_length = BT_PARAM_VALIDATION_INFINITE, | |
2323 | .element_type = &inputs_elem_descr, | |
f280892e | 2324 | } |
c24f7ab4 SM |
2325 | }}, |
2326 | { "trace-name", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_STRING } }, | |
2327 | { "clock-class-offset-s", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_SIGNED_INTEGER } }, | |
2328 | { "clock-class-offset-ns", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_SIGNED_INTEGER } }, | |
2329 | { "force-clock-class-origin-unix-epoch", BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_OPTIONAL, { .type = BT_VALUE_TYPE_BOOL } }, | |
2330 | BT_PARAM_VALIDATION_MAP_VALUE_ENTRY_END | |
2331 | }; | |
f280892e | 2332 | |
f280892e | 2333 | |
d907165c | 2334 | bool read_src_fs_parameters(const bt_value *params, |
005d49d6 SM |
2335 | const bt_value **inputs, |
2336 | const bt_value **trace_name, | |
2337 | struct ctf_fs_component *ctf_fs, | |
d23b766e SM |
2338 | bt_self_component *self_comp, |
2339 | bt_self_component_class *self_comp_class) { | |
d907165c SM |
2340 | bool ret; |
2341 | const bt_value *value; | |
98903a3e | 2342 | bt_logging_level log_level = ctf_fs->log_level; |
c24f7ab4 SM |
2343 | enum bt_param_validation_status validate_value_status; |
2344 | gchar *error = NULL; | |
2345 | ||
2346 | validate_value_status = bt_param_validation_validate(params, | |
2347 | fs_params_entries_descr, &error); | |
2348 | if (validate_value_status != BT_PARAM_VALIDATION_STATUS_OK) { | |
2349 | BT_COMP_OR_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp, self_comp_class, | |
2350 | "%s", error); | |
2351 | ret = false; | |
2352 | goto end; | |
2353 | } | |
d907165c | 2354 | |
73760435 SM |
2355 | /* inputs parameter */ |
2356 | *inputs = bt_value_map_borrow_entry_value_const(params, "inputs"); | |
d907165c SM |
2357 | |
2358 | /* clock-class-offset-s parameter */ | |
2359 | value = bt_value_map_borrow_entry_value_const(params, | |
2360 | "clock-class-offset-s"); | |
2361 | if (value) { | |
d907165c | 2362 | ctf_fs->metadata_config.clock_class_offset_s = |
9c08c816 | 2363 | bt_value_integer_signed_get(value); |
d907165c SM |
2364 | } |
2365 | ||
2366 | /* clock-class-offset-ns parameter */ | |
2367 | value = bt_value_map_borrow_entry_value_const(params, | |
2368 | "clock-class-offset-ns"); | |
2369 | if (value) { | |
d907165c | 2370 | ctf_fs->metadata_config.clock_class_offset_ns = |
9c08c816 | 2371 | bt_value_integer_signed_get(value); |
d907165c SM |
2372 | } |
2373 | ||
c0aa240b FD |
2374 | /* force-clock-class-origin-unix-epoch parameter */ |
2375 | value = bt_value_map_borrow_entry_value_const(params, | |
2376 | "force-clock-class-origin-unix-epoch"); | |
2377 | if (value) { | |
c0aa240b FD |
2378 | ctf_fs->metadata_config.force_clock_class_origin_unix_epoch = |
2379 | bt_value_bool_get(value); | |
2380 | } | |
2381 | ||
005d49d6 SM |
2382 | /* trace-name parameter */ |
2383 | *trace_name = bt_value_map_borrow_entry_value_const(params, "trace-name"); | |
d907165c SM |
2384 | |
2385 | ret = true; | |
d907165c SM |
2386 | |
2387 | end: | |
c24f7ab4 | 2388 | g_free(error); |
d907165c SM |
2389 | return ret; |
2390 | } | |
2391 | ||
5b29e799 | 2392 | static |
d94d92ac | 2393 | struct ctf_fs_component *ctf_fs_create( |
d23b766e | 2394 | const bt_value *params, |
b7d2695a | 2395 | bt_self_component_source *self_comp_src) |
56a1cced | 2396 | { |
f280892e | 2397 | struct ctf_fs_component *ctf_fs = NULL; |
73760435 | 2398 | const bt_value *inputs_value; |
005d49d6 | 2399 | const bt_value *trace_name_value; |
98903a3e PP |
2400 | bt_self_component *self_comp = |
2401 | bt_self_component_source_as_self_component(self_comp_src); | |
56a1cced | 2402 | |
98903a3e | 2403 | ctf_fs = ctf_fs_component_create(bt_component_get_logging_level( |
4c65a157 | 2404 | bt_self_component_as_component(self_comp)), self_comp); |
d907165c | 2405 | if (!ctf_fs) { |
f280892e SM |
2406 | goto error; |
2407 | } | |
2408 | ||
005d49d6 | 2409 | if (!read_src_fs_parameters(params, &inputs_value, &trace_name_value, |
b7d2695a | 2410 | ctf_fs, self_comp, NULL)) { |
f280892e | 2411 | goto error; |
56a1cced JG |
2412 | } |
2413 | ||
98903a3e | 2414 | bt_self_component_set_data(self_comp, ctf_fs); |
56a1cced | 2415 | |
a0cd55ad | 2416 | if (ctf_fs_component_create_ctf_fs_trace(ctf_fs, inputs_value, |
b7d2695a | 2417 | trace_name_value, self_comp, NULL)) { |
4f1f88a6 PP |
2418 | goto error; |
2419 | } | |
2420 | ||
a0cd55ad SM |
2421 | if (create_streams_for_trace(ctf_fs->trace)) { |
2422 | goto error; | |
2423 | } | |
f280892e | 2424 | |
a0cd55ad SM |
2425 | if (create_ports_for_trace(ctf_fs, ctf_fs->trace, self_comp_src)) { |
2426 | goto error; | |
4f1f88a6 PP |
2427 | } |
2428 | ||
1ef09eb5 JG |
2429 | goto end; |
2430 | ||
56a1cced | 2431 | error: |
1a9f7075 | 2432 | ctf_fs_destroy(ctf_fs); |
e7a4393b | 2433 | ctf_fs = NULL; |
98903a3e | 2434 | bt_self_component_set_data(self_comp, NULL); |
1a9f7075 | 2435 | |
1ef09eb5 | 2436 | end: |
56a1cced JG |
2437 | return ctf_fs; |
2438 | } | |
2439 | ||
ea0b4b9e | 2440 | BT_HIDDEN |
21a9f056 | 2441 | bt_component_class_initialize_method_status ctf_fs_init( |
d23b766e | 2442 | bt_self_component_source *self_comp_src, |
59225a3e | 2443 | bt_self_component_source_configuration *config, |
c88dd1cb | 2444 | const bt_value *params, __attribute__((unused)) void *init_method_data) |
ea0b4b9e JG |
2445 | { |
2446 | struct ctf_fs_component *ctf_fs; | |
21a9f056 FD |
2447 | bt_component_class_initialize_method_status ret = |
2448 | BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK; | |
ea0b4b9e | 2449 | |
b7d2695a | 2450 | ctf_fs = ctf_fs_create(params, self_comp_src); |
ea0b4b9e | 2451 | if (!ctf_fs) { |
21a9f056 | 2452 | ret = BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR; |
ea0b4b9e | 2453 | } |
4c1456f0 | 2454 | |
ea0b4b9e JG |
2455 | return ret; |
2456 | } | |
33f93973 PP |
2457 | |
2458 | BT_HIDDEN | |
d24d5663 | 2459 | bt_component_class_query_method_status ctf_fs_query( |
b19ff26f | 2460 | bt_self_component_class_source *comp_class, |
3c729b9a | 2461 | bt_private_query_executor *priv_query_exec, |
b19ff26f | 2462 | const char *object, const bt_value *params, |
7c14d641 | 2463 | __attribute__((unused)) void *method_data, |
b19ff26f | 2464 | const bt_value **result) |
33f93973 | 2465 | { |
d24d5663 PP |
2466 | bt_component_class_query_method_status status = |
2467 | BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK; | |
3c729b9a PP |
2468 | bt_logging_level log_level = bt_query_executor_get_logging_level( |
2469 | bt_private_query_executor_as_query_executor_const( | |
2470 | priv_query_exec)); | |
33f93973 | 2471 | |
2242b43d | 2472 | if (strcmp(object, "metadata-info") == 0) { |
98903a3e PP |
2473 | status = metadata_info_query(comp_class, params, log_level, |
2474 | result); | |
5f2a1585 SM |
2475 | } else if (strcmp(object, "babeltrace.trace-infos") == 0) { |
2476 | status = trace_infos_query(comp_class, params, log_level, | |
98903a3e | 2477 | result); |
1a29b831 | 2478 | } else if (!strcmp(object, "babeltrace.support-info")) { |
73760435 | 2479 | status = support_info_query(comp_class, params, log_level, result); |
33f93973 | 2480 | } else { |
55314f2a | 2481 | BT_LOGE("Unknown query object `%s`", object); |
76b6c2f7 | 2482 | status = BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_UNKNOWN_OBJECT; |
04c0ba87 | 2483 | goto end; |
33f93973 | 2484 | } |
33f93973 | 2485 | end: |
d94d92ac | 2486 | return status; |
33f93973 | 2487 | } |