4 * Babeltrace CTF file system Reader Component queries
6 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 #define BT_LOG_OUTPUT_LEVEL log_level
28 #define BT_LOG_TAG "PLUGIN/SRC.CTF.FS/QUERY"
29 #include "logging/log.h"
33 #include "common/assert.h"
35 #include "../common/metadata/decoder.h"
36 #include "common/common.h"
37 #include "common/macros.h"
38 #include <babeltrace2/babeltrace.h>
40 #include "logging/comp-logging.h"
42 #define METADATA_TEXT_SIG "/* CTF 1.8"
51 bt_component_class_query_method_status
metadata_info_query(
52 bt_self_component_class_source
*self_comp_class_src
,
53 const bt_value
*params
, bt_logging_level log_level
,
54 const bt_value
**user_result
)
56 bt_component_class_query_method_status status
=
57 BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK
;
58 bt_self_component_class
*self_comp_class
=
59 bt_self_component_class_source_as_self_component_class(self_comp_class_src
);
60 bt_value
*result
= NULL
;
61 const bt_value
*path_value
= NULL
;
62 char *metadata_text
= NULL
;
63 FILE *metadata_fp
= NULL
;
64 GString
*g_metadata_text
= NULL
;
70 result
= bt_value_map_create();
72 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR
;
78 if (!bt_value_is_map(params
)) {
79 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
80 "Query parameters is not a map value object.");
81 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR
;
85 path_value
= bt_value_map_borrow_entry_value_const(params
, "path");
87 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
88 "Mandatory `path` parameter missing");
89 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR
;
93 if (!bt_value_is_string(path_value
)) {
94 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
95 "`path` parameter is required to be a string value");
96 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR
;
100 path
= bt_value_string_get(path_value
);
103 metadata_fp
= ctf_fs_metadata_open_file(path
);
105 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
106 "Cannot open trace metadata: path=\"%s\".", path
);
110 is_packetized
= ctf_metadata_decoder_is_packetized(metadata_fp
,
111 &bo
, log_level
, NULL
);
114 ret
= ctf_metadata_decoder_packetized_file_stream_to_buf(
115 metadata_fp
, &metadata_text
, bo
, NULL
, NULL
,
118 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
119 "Cannot decode packetized metadata file: path=\"%s\"",
126 ret
= fseek(metadata_fp
, 0, SEEK_END
);
128 BT_COMP_CLASS_LOGE_APPEND_CAUSE_ERRNO(self_comp_class
,
129 "Failed to seek to the end of the metadata file",
130 ": path=\"%s\"", path
);
133 filesize
= ftell(metadata_fp
);
135 BT_COMP_CLASS_LOGE_APPEND_CAUSE_ERRNO(self_comp_class
,
136 "Failed to get the current position in the metadata file",
137 ": path=\"%s\"", path
);
141 metadata_text
= malloc(filesize
+ 1);
142 if (!metadata_text
) {
143 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
144 "Cannot allocate buffer for metadata text.");
148 if (fread(metadata_text
, filesize
, 1, metadata_fp
) != 1) {
149 BT_COMP_CLASS_LOGE_APPEND_CAUSE_ERRNO(self_comp_class
,
150 "Cannot read metadata file", ": path=\"%s\"",
155 metadata_text
[filesize
] = '\0';
158 g_metadata_text
= g_string_new(NULL
);
159 if (!g_metadata_text
) {
163 if (strncmp(metadata_text
, METADATA_TEXT_SIG
,
164 sizeof(METADATA_TEXT_SIG
) - 1) != 0) {
165 g_string_assign(g_metadata_text
, METADATA_TEXT_SIG
);
166 g_string_append(g_metadata_text
, " */\n\n");
169 g_string_append(g_metadata_text
, metadata_text
);
171 ret
= bt_value_map_insert_string_entry(result
, "text",
172 g_metadata_text
->str
);
174 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
175 "Cannot insert metadata text into query result.");
179 ret
= bt_value_map_insert_bool_entry(result
, "is-packetized",
182 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
183 "Cannot insert \"is-packetized\" attribute into query result.");
190 BT_VALUE_PUT_REF_AND_RESET(result
);
194 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR
;
200 if (g_metadata_text
) {
201 g_string_free(g_metadata_text
, TRUE
);
208 *user_result
= result
;
213 int add_range(bt_value
*info
, struct range
*range
,
214 const char *range_name
)
217 bt_value_map_insert_entry_status status
;
218 bt_value
*range_map
= NULL
;
225 range_map
= bt_value_map_create();
231 status
= bt_value_map_insert_signed_integer_entry(range_map
, "begin",
233 if (status
!= BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK
) {
238 status
= bt_value_map_insert_signed_integer_entry(range_map
, "end",
240 if (status
!= BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK
) {
245 status
= bt_value_map_insert_entry(info
, range_name
,
247 if (status
!= BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK
) {
253 bt_value_put_ref(range_map
);
258 int populate_stream_info(struct ctf_fs_ds_file_group
*group
,
259 bt_value
*group_info
, struct range
*stream_range
)
262 bt_value_map_insert_entry_status insert_status
;
263 struct ctf_fs_ds_index_entry
*first_ds_index_entry
, *last_ds_index_entry
;
264 gchar
*port_name
= NULL
;
267 * Since each `struct ctf_fs_ds_file_group` has a sorted array of
268 * `struct ctf_fs_ds_index_entry`, we can compute the stream range from
269 * the timestamp_begin of the first index entry and the timestamp_end
270 * of the last index entry.
272 BT_ASSERT(group
->index
);
273 BT_ASSERT(group
->index
->entries
);
274 BT_ASSERT(group
->index
->entries
->len
> 0);
277 first_ds_index_entry
= (struct ctf_fs_ds_index_entry
*) g_ptr_array_index(
278 group
->index
->entries
, 0);
281 last_ds_index_entry
= (struct ctf_fs_ds_index_entry
*) g_ptr_array_index(
282 group
->index
->entries
, group
->index
->entries
->len
- 1);
284 stream_range
->begin_ns
= first_ds_index_entry
->timestamp_begin_ns
;
285 stream_range
->end_ns
= last_ds_index_entry
->timestamp_end_ns
;
288 * If any of the begin and end timestamps is not set it means that
289 * packets don't include `timestamp_begin` _and_ `timestamp_end` fields
290 * in their packet context so we can't set the range.
292 stream_range
->set
= stream_range
->begin_ns
!= UINT64_C(-1) &&
293 stream_range
->end_ns
!= UINT64_C(-1);
295 ret
= add_range(group_info
, stream_range
, "range-ns");
300 port_name
= ctf_fs_make_port_name(group
);
306 insert_status
= bt_value_map_insert_string_entry(group_info
,
307 "port-name", port_name
);
308 if (insert_status
!= BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK
) {
319 int populate_trace_info(const struct ctf_fs_trace
*trace
, bt_value
*trace_info
)
323 bt_value_map_insert_entry_status insert_status
;
324 bt_value_array_append_element_status append_status
;
325 bt_value
*file_groups
= NULL
;
326 struct range trace_intersection
= {
332 BT_ASSERT(trace
->ds_file_groups
);
333 /* Add trace range info only if it contains streams. */
334 if (trace
->ds_file_groups
->len
== 0) {
339 file_groups
= bt_value_array_create();
344 /* Find range of all stream groups, and of the trace. */
345 for (group_idx
= 0; group_idx
< trace
->ds_file_groups
->len
;
347 bt_value
*group_info
;
348 struct range group_range
= { .set
= false };
349 struct ctf_fs_ds_file_group
*group
= g_ptr_array_index(
350 trace
->ds_file_groups
, group_idx
);
352 group_info
= bt_value_map_create();
358 ret
= populate_stream_info(group
, group_info
, &group_range
);
360 bt_value_put_ref(group_info
);
364 append_status
= bt_value_array_append_element(file_groups
,
366 bt_value_put_ref(group_info
);
367 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
371 if (group_range
.set
) {
372 trace_intersection
.begin_ns
= MAX(trace_intersection
.begin_ns
,
373 group_range
.begin_ns
);
374 trace_intersection
.end_ns
= MIN(trace_intersection
.end_ns
,
376 trace_intersection
.set
= true;
380 if (trace_intersection
.begin_ns
< trace_intersection
.end_ns
) {
381 ret
= add_range(trace_info
, &trace_intersection
,
382 "intersection-range-ns");
388 insert_status
= bt_value_map_insert_entry(trace_info
, "streams",
390 BT_VALUE_PUT_REF_AND_RESET(file_groups
);
391 if (insert_status
!= BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK
) {
397 bt_value_put_ref(file_groups
);
402 bt_component_class_query_method_status
trace_info_query(
403 bt_self_component_class_source
*self_comp_class_src
,
404 const bt_value
*params
, bt_logging_level log_level
,
405 const bt_value
**user_result
)
407 struct ctf_fs_component
*ctf_fs
= NULL
;
408 bt_component_class_query_method_status status
=
409 BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK
;
410 bt_self_component_class
*self_comp_class
=
411 bt_self_component_class_source_as_self_component_class(
412 self_comp_class_src
);
413 bt_value
*result
= NULL
;
414 const bt_value
*inputs_value
= NULL
;
420 if (!bt_value_is_map(params
)) {
421 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
422 "Query parameters is not a map value object.");
423 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR
;
427 ctf_fs
= ctf_fs_component_create(log_level
, NULL
);
432 if (!read_src_fs_parameters(params
, &inputs_value
, ctf_fs
, NULL
,
434 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR
;
438 if (ctf_fs_component_create_ctf_fs_traces(ctf_fs
, inputs_value
, NULL
,
443 result
= bt_value_array_create();
445 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR
;
449 for (i
= 0; i
< ctf_fs
->traces
->len
; i
++) {
450 struct ctf_fs_trace
*trace
;
451 bt_value
*trace_info
;
452 bt_value_array_append_element_status append_status
;
454 trace
= g_ptr_array_index(ctf_fs
->traces
, i
);
457 trace_info
= bt_value_map_create();
459 BT_COMP_CLASS_LOGE_APPEND_CAUSE(self_comp_class
,
460 "Failed to create trace info map.");
464 ret
= populate_trace_info(trace
, trace_info
);
466 bt_value_put_ref(trace_info
);
470 append_status
= bt_value_array_append_element(result
,
472 bt_value_put_ref(trace_info
);
473 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
481 BT_VALUE_PUT_REF_AND_RESET(result
);
485 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR
;
490 ctf_fs_destroy(ctf_fs
);
494 *user_result
= result
;
499 bt_component_class_query_method_status
support_info_query(
500 bt_self_component_class_source
*comp_class
,
501 const bt_value
*params
, bt_logging_level log_level
,
502 const bt_value
**user_result
)
504 const bt_value
*input_type_value
;
505 const char *input_type
;
506 bt_component_class_query_method_status status
;
508 gchar
*metadata_path
= NULL
;
509 bt_value
*result
= NULL
;
511 input_type_value
= bt_value_map_borrow_entry_value_const(params
, "type");
512 BT_ASSERT(input_type_value
);
513 BT_ASSERT(bt_value_get_type(input_type_value
) == BT_VALUE_TYPE_STRING
);
514 input_type
= bt_value_string_get(input_type_value
);
516 result
= bt_value_map_create();
518 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR
;
522 if (strcmp(input_type
, "directory") == 0) {
523 const bt_value
*input_value
;
526 input_value
= bt_value_map_borrow_entry_value_const(params
, "input");
527 BT_ASSERT(input_value
);
528 BT_ASSERT(bt_value_get_type(input_value
) == BT_VALUE_TYPE_STRING
);
529 path
= bt_value_string_get(input_value
);
531 metadata_path
= g_build_filename(path
, CTF_FS_METADATA_FILENAME
, NULL
);
532 if (!metadata_path
) {
533 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR
;
538 * If the metadata file exists in this directory, consider it to
541 if (g_file_test(metadata_path
, G_FILE_TEST_EXISTS
)) {
546 if (bt_value_map_insert_real_entry(result
, "weight", weight
) != BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK
) {
547 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR
;
552 * Use the arbitrary constant string "ctf" as the group, such that all
553 * found ctf traces are passed to the same instance of src.ctf.fs.
555 if (bt_value_map_insert_string_entry(result
, "group", "ctf") != BT_VALUE_MAP_INSERT_ENTRY_STATUS_OK
) {
556 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR
;
560 *user_result
= result
;
562 status
= BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK
;
565 g_free(metadata_path
);
566 bt_value_put_ref(result
);