plugins/utils/muxer/muxer.c: add logging
[babeltrace.git] / cli / babeltrace.c
1 /*
2 * babeltrace.c
3 *
4 * Babeltrace Trace Converter
5 *
6 * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
7 *
8 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29 #define BT_LOG_TAG "CLI"
30 #include "logging.h"
31
32 #include <babeltrace/babeltrace.h>
33 #include <babeltrace/plugin/plugin.h>
34 #include <babeltrace/common-internal.h>
35 #include <babeltrace/graph/component.h>
36 #include <babeltrace/graph/component-source.h>
37 #include <babeltrace/graph/component-sink.h>
38 #include <babeltrace/graph/component-filter.h>
39 #include <babeltrace/graph/component-class.h>
40 #include <babeltrace/graph/port.h>
41 #include <babeltrace/graph/graph.h>
42 #include <babeltrace/graph/connection.h>
43 #include <babeltrace/graph/notification-iterator.h>
44 #include <babeltrace/ref.h>
45 #include <babeltrace/values.h>
46 #include <babeltrace/logging.h>
47 #include <unistd.h>
48 #include <stdlib.h>
49 #include <popt.h>
50 #include <string.h>
51 #include <stdio.h>
52 #include <glib.h>
53 #include <inttypes.h>
54 #include <unistd.h>
55 #include <signal.h>
56 #include "babeltrace-cfg.h"
57 #include "babeltrace-cfg-cli-args.h"
58 #include "babeltrace-cfg-cli-args-default.h"
59
60 #define ENV_BABELTRACE_WARN_COMMAND_NAME_DIRECTORY_CLASH "BABELTRACE_CLI_WARN_COMMAND_NAME_DIRECTORY_CLASH"
61 #define ENV_BABELTRACE_CLI_LOG_LEVEL "BABELTRACE_CLI_LOG_LEVEL"
62 #define NSEC_PER_SEC 1000000000LL
63
64 /*
65 * Known environment variable names for the log levels of the project's
66 * modules.
67 */
68 static const char* log_level_env_var_names[] = {
69 "BABELTRACE_COMMON_LOG_LEVEL",
70 "BABELTRACE_PLUGIN_CTF_BTR_LOG_LEVEL",
71 "BABELTRACE_PLUGIN_CTF_FS_SRC_LOG_LEVEL",
72 "BABELTRACE_PLUGIN_CTF_LTTNG_LIVE_SRC_LOG_LEVEL",
73 "BABELTRACE_PLUGIN_CTF_METADATA_LOG_LEVEL",
74 "BABELTRACE_PLUGIN_CTF_NOTIF_ITER_LOG_LEVEL",
75 "BABELTRACE_PLUGIN_LTTNG_UTILS_DEBUG_INFO_FLT_LOG_LEVEL",
76 "BABELTRACE_PLUGIN_UTILS_MUXER_FLT_LOG_LEVEL",
77 "BABELTRACE_PLUGIN_UTILS_TRIMMER_FLT_LOG_LEVEL",
78 "BABELTRACE_PYTHON_PLUGIN_PROVIDER_LOG_LEVEL",
79 NULL,
80 };
81
82 /* Application's processing graph (weak) */
83 static struct bt_graph *the_graph;
84 static bool canceled = false;
85
86 GPtrArray *loaded_plugins;
87
88 static
89 void sigint_handler(int signum)
90 {
91 if (signum != SIGINT) {
92 return;
93 }
94
95 if (the_graph) {
96 bt_graph_cancel(the_graph);
97 }
98
99 canceled = true;
100 }
101
102 static
103 void init_static_data(void)
104 {
105 loaded_plugins = g_ptr_array_new_with_free_func(bt_put);
106 }
107
108 static
109 void fini_static_data(void)
110 {
111 g_ptr_array_free(loaded_plugins, TRUE);
112 }
113
114 static
115 struct bt_plugin *find_plugin(const char *name)
116 {
117 int i;
118 struct bt_plugin *plugin = NULL;
119
120 assert(name);
121 BT_LOGD("Finding plugin: name=\"%s\"", name);
122
123 for (i = 0; i < loaded_plugins->len; i++) {
124 plugin = g_ptr_array_index(loaded_plugins, i);
125
126 if (strcmp(name, bt_plugin_get_name(plugin)) == 0) {
127 break;
128 }
129
130 plugin = NULL;
131 }
132
133 if (BT_LOG_ON_DEBUG) {
134 if (plugin) {
135 BT_LOGD("Found plugin: plugin-addr=%p", plugin);
136 } else {
137 BT_LOGD("Cannot find plugin.");
138 }
139 }
140
141 return bt_get(plugin);
142 }
143
144 static
145 struct bt_component_class *find_component_class(const char *plugin_name,
146 const char *comp_class_name,
147 enum bt_component_class_type comp_class_type)
148 {
149 struct bt_component_class *comp_class = NULL;
150 struct bt_plugin *plugin;
151
152 BT_LOGD("Finding component class: plugin-name=\"%s\", "
153 "comp-cls-name=\"%s\", comp-cls-type=%d",
154 plugin_name, comp_class_name, comp_class_type);
155
156 plugin = find_plugin(plugin_name);
157
158 if (!plugin) {
159 goto end;
160 }
161
162 comp_class = bt_plugin_get_component_class_by_name_and_type(plugin,
163 comp_class_name, comp_class_type);
164 BT_PUT(plugin);
165
166 end:
167 if (BT_LOG_ON_DEBUG) {
168 if (comp_class) {
169 BT_LOGD("Found component class: comp-cls-addr=%p",
170 comp_class);
171 } else {
172 BT_LOGD("Cannot find component class.");
173 }
174 }
175
176 return comp_class;
177 }
178
179 static
180 void print_indent(FILE *fp, size_t indent)
181 {
182 size_t i;
183
184 for (i = 0; i < indent; i++) {
185 fprintf(fp, " ");
186 }
187 }
188
189 static
190 const char *component_type_str(enum bt_component_class_type type)
191 {
192 switch (type) {
193 case BT_COMPONENT_CLASS_TYPE_SOURCE:
194 return "source";
195 case BT_COMPONENT_CLASS_TYPE_SINK:
196 return "sink";
197 case BT_COMPONENT_CLASS_TYPE_FILTER:
198 return "filter";
199 case BT_COMPONENT_CLASS_TYPE_UNKNOWN:
200 default:
201 return "(unknown)";
202 }
203 }
204
205 static
206 void print_plugin_comp_cls_opt(FILE *fh, const char *plugin_name,
207 const char *comp_cls_name, enum bt_component_class_type type)
208 {
209 GString *shell_plugin_name = NULL;
210 GString *shell_comp_cls_name = NULL;
211
212 shell_plugin_name = bt_common_shell_quote(plugin_name, false);
213 if (!shell_plugin_name) {
214 goto end;
215 }
216
217 shell_comp_cls_name = bt_common_shell_quote(comp_cls_name, false);
218 if (!shell_comp_cls_name) {
219 goto end;
220 }
221
222 fprintf(fh, "'%s%s%s%s.%s%s%s.%s%s%s'",
223 bt_common_color_bold(),
224 bt_common_color_fg_cyan(),
225 component_type_str(type),
226 bt_common_color_fg_default(),
227 bt_common_color_fg_blue(),
228 shell_plugin_name->str,
229 bt_common_color_fg_default(),
230 bt_common_color_fg_yellow(),
231 shell_comp_cls_name->str,
232 bt_common_color_reset());
233
234 end:
235 if (shell_plugin_name) {
236 g_string_free(shell_plugin_name, TRUE);
237 }
238
239 if (shell_comp_cls_name) {
240 g_string_free(shell_comp_cls_name, TRUE);
241 }
242 }
243
244 static
245 void print_value(FILE *, struct bt_value *, size_t);
246
247 static
248 void print_value_rec(FILE *, struct bt_value *, size_t);
249
250 struct print_map_value_data {
251 size_t indent;
252 FILE *fp;
253 };
254
255 static
256 bt_bool print_map_value(const char *key, struct bt_value *object, void *data)
257 {
258 struct print_map_value_data *print_map_value_data = data;
259
260 print_indent(print_map_value_data->fp, print_map_value_data->indent);
261 fprintf(print_map_value_data->fp, "%s: ", key);
262
263 if (bt_value_is_array(object) &&
264 bt_value_array_is_empty(object)) {
265 fprintf(print_map_value_data->fp, "[ ]\n");
266 return true;
267 }
268
269 if (bt_value_is_map(object) &&
270 bt_value_map_is_empty(object)) {
271 fprintf(print_map_value_data->fp, "{ }\n");
272 return true;
273 }
274
275 if (bt_value_is_array(object) ||
276 bt_value_is_map(object)) {
277 fprintf(print_map_value_data->fp, "\n");
278 }
279
280 print_value_rec(print_map_value_data->fp, object,
281 print_map_value_data->indent + 2);
282 return BT_TRUE;
283 }
284
285 static
286 void print_value_rec(FILE *fp, struct bt_value *value, size_t indent)
287 {
288 bt_bool bool_val;
289 int64_t int_val;
290 double dbl_val;
291 const char *str_val;
292 int size;
293 int i;
294
295 if (!value) {
296 return;
297 }
298
299 switch (bt_value_get_type(value)) {
300 case BT_VALUE_TYPE_NULL:
301 fprintf(fp, "%snull%s\n", bt_common_color_bold(),
302 bt_common_color_reset());
303 break;
304 case BT_VALUE_TYPE_BOOL:
305 bt_value_bool_get(value, &bool_val);
306 fprintf(fp, "%s%s%s%s\n", bt_common_color_bold(),
307 bt_common_color_fg_cyan(), bool_val ? "yes" : "no",
308 bt_common_color_reset());
309 break;
310 case BT_VALUE_TYPE_INTEGER:
311 bt_value_integer_get(value, &int_val);
312 fprintf(fp, "%s%s%" PRId64 "%s\n", bt_common_color_bold(),
313 bt_common_color_fg_red(), int_val,
314 bt_common_color_reset());
315 break;
316 case BT_VALUE_TYPE_FLOAT:
317 bt_value_float_get(value, &dbl_val);
318 fprintf(fp, "%s%s%lf%s\n", bt_common_color_bold(),
319 bt_common_color_fg_red(), dbl_val,
320 bt_common_color_reset());
321 break;
322 case BT_VALUE_TYPE_STRING:
323 bt_value_string_get(value, &str_val);
324 fprintf(fp, "%s%s%s%s\n", bt_common_color_bold(),
325 bt_common_color_fg_green(), str_val,
326 bt_common_color_reset());
327 break;
328 case BT_VALUE_TYPE_ARRAY:
329 size = bt_value_array_size(value);
330 assert(size >= 0);
331
332 if (size == 0) {
333 print_indent(fp, indent);
334 fprintf(fp, "[ ]\n");
335 break;
336 }
337
338 for (i = 0; i < size; i++) {
339 struct bt_value *element =
340 bt_value_array_get(value, i);
341
342 assert(element);
343 print_indent(fp, indent);
344 fprintf(fp, "- ");
345
346 if (bt_value_is_array(element) &&
347 bt_value_array_is_empty(element)) {
348 fprintf(fp, "[ ]\n");
349 continue;
350 }
351
352 if (bt_value_is_map(element) &&
353 bt_value_map_is_empty(element)) {
354 fprintf(fp, "{ }\n");
355 continue;
356 }
357
358 if (bt_value_is_array(element) ||
359 bt_value_is_map(element)) {
360 fprintf(fp, "\n");
361 }
362
363 print_value_rec(fp, element, indent + 2);
364 BT_PUT(element);
365 }
366 break;
367 case BT_VALUE_TYPE_MAP:
368 {
369 struct print_map_value_data data = {
370 .indent = indent,
371 .fp = fp,
372 };
373
374 if (bt_value_map_is_empty(value)) {
375 print_indent(fp, indent);
376 fprintf(fp, "{ }\n");
377 break;
378 }
379
380 bt_value_map_foreach(value, print_map_value, &data);
381 break;
382 }
383 default:
384 abort();
385 }
386 }
387
388 static
389 void print_value(FILE *fp, struct bt_value *value, size_t indent)
390 {
391 if (!bt_value_is_array(value) && !bt_value_is_map(value)) {
392 print_indent(fp, indent);
393 }
394
395 print_value_rec(fp, value, indent);
396 }
397
398 static
399 void print_bt_config_component(struct bt_config_component *bt_config_component)
400 {
401 fprintf(stderr, " ");
402 print_plugin_comp_cls_opt(stderr, bt_config_component->plugin_name->str,
403 bt_config_component->comp_cls_name->str,
404 bt_config_component->type);
405 fprintf(stderr, ":\n");
406
407 if (bt_config_component->instance_name->len > 0) {
408 fprintf(stderr, " Name: %s\n",
409 bt_config_component->instance_name->str);
410 }
411
412 fprintf(stderr, " Parameters:\n");
413 print_value(stderr, bt_config_component->params, 8);
414 }
415
416 static
417 void print_bt_config_components(GPtrArray *array)
418 {
419 size_t i;
420
421 for (i = 0; i < array->len; i++) {
422 struct bt_config_component *cfg_component =
423 bt_config_get_component(array, i);
424 print_bt_config_component(cfg_component);
425 BT_PUT(cfg_component);
426 }
427 }
428
429 static
430 void print_plugin_paths(struct bt_value *plugin_paths)
431 {
432 fprintf(stderr, " Plugin paths:\n");
433 print_value(stderr, plugin_paths, 4);
434 }
435
436 static
437 void print_cfg_run(struct bt_config *cfg)
438 {
439 size_t i;
440
441 print_plugin_paths(cfg->plugin_paths);
442 fprintf(stderr, " Source component instances:\n");
443 print_bt_config_components(cfg->cmd_data.run.sources);
444
445 if (cfg->cmd_data.run.filters->len > 0) {
446 fprintf(stderr, " Filter component instances:\n");
447 print_bt_config_components(cfg->cmd_data.run.filters);
448 }
449
450 fprintf(stderr, " Sink component instances:\n");
451 print_bt_config_components(cfg->cmd_data.run.sinks);
452 fprintf(stderr, " Connections:\n");
453
454 for (i = 0; i < cfg->cmd_data.run.connections->len; i++) {
455 struct bt_config_connection *cfg_connection =
456 g_ptr_array_index(cfg->cmd_data.run.connections,
457 i);
458
459 fprintf(stderr, " %s%s%s -> %s%s%s\n",
460 cfg_connection->upstream_comp_name->str,
461 cfg_connection->upstream_port_glob->len > 0 ? "." : "",
462 cfg_connection->upstream_port_glob->str,
463 cfg_connection->downstream_comp_name->str,
464 cfg_connection->downstream_port_glob->len > 0 ? "." : "",
465 cfg_connection->downstream_port_glob->str);
466 }
467 }
468
469 static
470 void print_cfg_list_plugins(struct bt_config *cfg)
471 {
472 print_plugin_paths(cfg->plugin_paths);
473 }
474
475 static
476 void print_cfg_help(struct bt_config *cfg)
477 {
478 print_plugin_paths(cfg->plugin_paths);
479 }
480
481 static
482 void print_cfg_print_ctf_metadata(struct bt_config *cfg)
483 {
484 print_plugin_paths(cfg->plugin_paths);
485 fprintf(stderr, " Path: %s\n",
486 cfg->cmd_data.print_ctf_metadata.path->str);
487 }
488
489 static
490 void print_cfg_print_lttng_live_sessions(struct bt_config *cfg)
491 {
492 print_plugin_paths(cfg->plugin_paths);
493 fprintf(stderr, " URL: %s\n",
494 cfg->cmd_data.print_lttng_live_sessions.url->str);
495 }
496
497 static
498 void print_cfg_query(struct bt_config *cfg)
499 {
500 print_plugin_paths(cfg->plugin_paths);
501 fprintf(stderr, " Object: `%s`\n", cfg->cmd_data.query.object->str);
502 fprintf(stderr, " Component class:\n");
503 print_bt_config_component(cfg->cmd_data.query.cfg_component);
504 }
505
506 static
507 void print_cfg(struct bt_config *cfg)
508 {
509 if (!BT_LOG_ON_INFO) {
510 return;
511 }
512
513 BT_LOGI_STR("Configuration:");
514 fprintf(stderr, " Debug mode: %s\n", cfg->debug ? "yes" : "no");
515 fprintf(stderr, " Verbose mode: %s\n", cfg->verbose ? "yes" : "no");
516
517 switch (cfg->command) {
518 case BT_CONFIG_COMMAND_RUN:
519 print_cfg_run(cfg);
520 break;
521 case BT_CONFIG_COMMAND_LIST_PLUGINS:
522 print_cfg_list_plugins(cfg);
523 break;
524 case BT_CONFIG_COMMAND_HELP:
525 print_cfg_help(cfg);
526 break;
527 case BT_CONFIG_COMMAND_QUERY:
528 print_cfg_query(cfg);
529 break;
530 case BT_CONFIG_COMMAND_PRINT_CTF_METADATA:
531 print_cfg_print_ctf_metadata(cfg);
532 break;
533 case BT_CONFIG_COMMAND_PRINT_LTTNG_LIVE_SESSIONS:
534 print_cfg_print_lttng_live_sessions(cfg);
535 break;
536 default:
537 abort();
538 }
539 }
540
541 static
542 void add_to_loaded_plugins(struct bt_plugin_set *plugin_set)
543 {
544 int64_t i;
545 int64_t count;
546
547 count = bt_plugin_set_get_plugin_count(plugin_set);
548 assert(count >= 0);
549
550 for (i = 0; i < count; i++) {
551 struct bt_plugin *plugin =
552 bt_plugin_set_get_plugin(plugin_set, i);
553 struct bt_plugin *loaded_plugin =
554 find_plugin(bt_plugin_get_name(plugin));
555
556 assert(plugin);
557
558 if (loaded_plugin) {
559 BT_LOGI("Not using plugin: another one already exists with the same name: "
560 "plugin-name=\"%s\", plugin-path=\"%s\", "
561 "existing-plugin-path=\"%s\"",
562 bt_plugin_get_name(plugin),
563 bt_plugin_get_path(plugin),
564 bt_plugin_get_path(loaded_plugin));
565 bt_put(loaded_plugin);
566 } else {
567 /* Add to global array. */
568 BT_LOGD("Adding plugin to loaded plugins: plugin-path=\"%s\"",
569 bt_plugin_get_name(plugin));
570 g_ptr_array_add(loaded_plugins, bt_get(plugin));
571 }
572
573 bt_put(plugin);
574 }
575 }
576
577 static
578 int load_dynamic_plugins(struct bt_value *plugin_paths)
579 {
580 int nr_paths, i, ret = 0;
581
582 nr_paths = bt_value_array_size(plugin_paths);
583 if (nr_paths < 0) {
584 BT_LOGE_STR("Cannot load dynamic plugins: no plugin path.");
585 ret = -1;
586 goto end;
587 }
588
589 BT_LOGI("Loading dynamic plugins.");
590
591 for (i = 0; i < nr_paths; i++) {
592 struct bt_value *plugin_path_value = NULL;
593 const char *plugin_path;
594 struct bt_plugin_set *plugin_set;
595
596 plugin_path_value = bt_value_array_get(plugin_paths, i);
597 bt_value_string_get(plugin_path_value, &plugin_path);
598 assert(plugin_path);
599
600 /*
601 * Skip this if the directory does not exist because
602 * bt_plugin_create_all_from_dir() expects an existing
603 * directory.
604 */
605 if (!g_file_test(plugin_path, G_FILE_TEST_IS_DIR)) {
606 BT_LOGV("Skipping nonexistent directory path: "
607 "path=\"%s\"", plugin_path);
608 BT_PUT(plugin_path_value);
609 continue;
610 }
611
612 plugin_set = bt_plugin_create_all_from_dir(plugin_path, false);
613 if (!plugin_set) {
614 BT_LOGD("Unable to load dynamic plugins: path=\"%s\"",
615 plugin_path);
616 BT_PUT(plugin_path_value);
617 continue;
618 }
619
620 add_to_loaded_plugins(plugin_set);
621 bt_put(plugin_set);
622 BT_PUT(plugin_path_value);
623 }
624 end:
625 return ret;
626 }
627
628 static
629 int load_static_plugins(void)
630 {
631 int ret = 0;
632 struct bt_plugin_set *plugin_set;
633
634 BT_LOGI("Loading static plugins.");
635 plugin_set = bt_plugin_create_all_from_static();
636 if (!plugin_set) {
637 BT_LOGE("Unable to load static plugins.");
638 ret = -1;
639 goto end;
640 }
641
642 add_to_loaded_plugins(plugin_set);
643 bt_put(plugin_set);
644 end:
645 return ret;
646 }
647
648 static
649 int load_all_plugins(struct bt_value *plugin_paths)
650 {
651 int ret = 0;
652
653 if (load_dynamic_plugins(plugin_paths)) {
654 ret = -1;
655 goto end;
656 }
657
658 if (load_static_plugins()) {
659 ret = -1;
660 goto end;
661 }
662
663 BT_LOGI("Loaded all plugins: count=%u", loaded_plugins->len);
664
665 end:
666 return ret;
667 }
668
669 static
670 void print_plugin_info(struct bt_plugin *plugin)
671 {
672 unsigned int major, minor, patch;
673 const char *extra;
674 enum bt_plugin_status version_status;
675 const char *plugin_name;
676 const char *path;
677 const char *author;
678 const char *license;
679 const char *plugin_description;
680
681 plugin_name = bt_plugin_get_name(plugin);
682 path = bt_plugin_get_path(plugin);
683 author = bt_plugin_get_author(plugin);
684 license = bt_plugin_get_license(plugin);
685 plugin_description = bt_plugin_get_description(plugin);
686 version_status = bt_plugin_get_version(plugin, &major, &minor,
687 &patch, &extra);
688 printf("%s%s%s%s:\n", bt_common_color_bold(),
689 bt_common_color_fg_blue(), plugin_name,
690 bt_common_color_reset());
691 printf(" %sPath%s: %s\n", bt_common_color_bold(),
692 bt_common_color_reset(), path ? path : "(None)");
693
694 if (version_status == BT_PLUGIN_STATUS_OK) {
695 printf(" %sVersion%s: %u.%u.%u",
696 bt_common_color_bold(), bt_common_color_reset(),
697 major, minor, patch);
698
699 if (extra) {
700 printf("%s", extra);
701 }
702
703 printf("\n");
704 }
705
706 printf(" %sDescription%s: %s\n", bt_common_color_bold(),
707 bt_common_color_reset(),
708 plugin_description ? plugin_description : "(None)");
709 printf(" %sAuthor%s: %s\n", bt_common_color_bold(),
710 bt_common_color_reset(), author ? author : "(Unknown)");
711 printf(" %sLicense%s: %s\n", bt_common_color_bold(),
712 bt_common_color_reset(),
713 license ? license : "(Unknown)");
714 }
715
716 static
717 int cmd_query(struct bt_config *cfg)
718 {
719 int ret = 0;
720 struct bt_component_class *comp_cls = NULL;
721 struct bt_value *results = NULL;
722
723 comp_cls = find_component_class(cfg->cmd_data.query.cfg_component->plugin_name->str,
724 cfg->cmd_data.query.cfg_component->comp_cls_name->str,
725 cfg->cmd_data.query.cfg_component->type);
726 if (!comp_cls) {
727 BT_LOGE("Cannot find component class: plugin-name=\"%s\", "
728 "comp-cls-name=\"%s\", comp-cls-type=%d",
729 cfg->cmd_data.query.cfg_component->plugin_name->str,
730 cfg->cmd_data.query.cfg_component->comp_cls_name->str,
731 cfg->cmd_data.query.cfg_component->type);
732 fprintf(stderr, "%s%sCannot find component class %s",
733 bt_common_color_bold(),
734 bt_common_color_fg_red(),
735 bt_common_color_reset());
736 print_plugin_comp_cls_opt(stderr,
737 cfg->cmd_data.query.cfg_component->plugin_name->str,
738 cfg->cmd_data.query.cfg_component->comp_cls_name->str,
739 cfg->cmd_data.query.cfg_component->type);
740 fprintf(stderr, "\n");
741 ret = -1;
742 goto end;
743 }
744
745 results = bt_component_class_query(comp_cls,
746 cfg->cmd_data.query.object->str,
747 cfg->cmd_data.query.cfg_component->params);
748 if (!results) {
749 BT_LOGE("Failed to query component class: plugin-name=\"%s\", "
750 "comp-cls-name=\"%s\", comp-cls-type=%d "
751 "object=\"%s\"",
752 cfg->cmd_data.query.cfg_component->plugin_name->str,
753 cfg->cmd_data.query.cfg_component->comp_cls_name->str,
754 cfg->cmd_data.query.cfg_component->type,
755 cfg->cmd_data.query.object->str);
756 fprintf(stderr, "%s%sFailed to query info to %s",
757 bt_common_color_bold(),
758 bt_common_color_fg_red(),
759 bt_common_color_reset());
760 print_plugin_comp_cls_opt(stderr,
761 cfg->cmd_data.query.cfg_component->plugin_name->str,
762 cfg->cmd_data.query.cfg_component->comp_cls_name->str,
763 cfg->cmd_data.query.cfg_component->type);
764 fprintf(stderr, "%s%s with object `%s`%s\n",
765 bt_common_color_bold(),
766 bt_common_color_fg_red(),
767 cfg->cmd_data.query.object->str,
768 bt_common_color_reset());
769 ret = -1;
770 goto end;
771 }
772
773 print_value(stdout, results, 0);
774
775 end:
776 bt_put(comp_cls);
777 bt_put(results);
778 return ret;
779 }
780
781 static
782 int cmd_help(struct bt_config *cfg)
783 {
784 int ret = 0;
785 struct bt_plugin *plugin = NULL;
786 size_t i;
787
788 plugin = find_plugin(cfg->cmd_data.help.cfg_component->plugin_name->str);
789 if (!plugin) {
790 BT_LOGE("Cannot find plugin: plugin-name=\"%s\"",
791 cfg->cmd_data.help.cfg_component->plugin_name->str);
792 fprintf(stderr, "%s%sCannot find plugin %s%s%s\n",
793 bt_common_color_bold(), bt_common_color_fg_red(),
794 bt_common_color_fg_blue(),
795 cfg->cmd_data.help.cfg_component->plugin_name->str,
796 bt_common_color_reset());
797 ret = -1;
798 goto end;
799 }
800
801 print_plugin_info(plugin);
802 printf(" %sComponent classes%s: %d\n",
803 bt_common_color_bold(),
804 bt_common_color_reset(),
805 (int) bt_plugin_get_component_class_count(plugin));
806
807
808 if (cfg->cmd_data.help.cfg_component->type !=
809 BT_COMPONENT_CLASS_TYPE_UNKNOWN) {
810 struct bt_component_class *needed_comp_cls =
811 find_component_class(
812 cfg->cmd_data.help.cfg_component->plugin_name->str,
813 cfg->cmd_data.help.cfg_component->comp_cls_name->str,
814 cfg->cmd_data.help.cfg_component->type);
815
816 if (!needed_comp_cls) {
817 BT_LOGE("Cannot find component class: plugin-name=\"%s\", "
818 "comp-cls-name=\"%s\", comp-cls-type=%d",
819 cfg->cmd_data.help.cfg_component->plugin_name->str,
820 cfg->cmd_data.help.cfg_component->comp_cls_name->str,
821 cfg->cmd_data.help.cfg_component->type);
822 fprintf(stderr, "\n%s%sCannot find component class %s",
823 bt_common_color_bold(),
824 bt_common_color_fg_red(),
825 bt_common_color_reset());
826 print_plugin_comp_cls_opt(stderr,
827 cfg->cmd_data.help.cfg_component->plugin_name->str,
828 cfg->cmd_data.help.cfg_component->comp_cls_name->str,
829 cfg->cmd_data.help.cfg_component->type);
830 fprintf(stderr, "\n");
831 ret = -1;
832 goto end;
833 }
834
835 bt_put(needed_comp_cls);
836 }
837
838 for (i = 0; i < bt_plugin_get_component_class_count(plugin); i++) {
839 struct bt_component_class *comp_cls =
840 bt_plugin_get_component_class_by_index(plugin, i);
841 const char *comp_class_name =
842 bt_component_class_get_name(comp_cls);
843 const char *comp_class_description =
844 bt_component_class_get_description(comp_cls);
845 const char *comp_class_help =
846 bt_component_class_get_help(comp_cls);
847 enum bt_component_class_type type =
848 bt_component_class_get_type(comp_cls);
849
850 assert(comp_cls);
851
852 if (cfg->cmd_data.help.cfg_component->type !=
853 BT_COMPONENT_CLASS_TYPE_UNKNOWN) {
854 if (strcmp(cfg->cmd_data.help.cfg_component->comp_cls_name->str,
855 comp_class_name) != 0 &&
856 type ==
857 cfg->cmd_data.help.cfg_component->type) {
858 bt_put(comp_cls);
859 continue;
860 }
861 }
862
863 printf("\n");
864 print_plugin_comp_cls_opt(stdout,
865 cfg->cmd_data.help.cfg_component->plugin_name->str,
866 comp_class_name,
867 type);
868 printf("\n");
869 printf(" %sDescription%s: %s\n", bt_common_color_bold(),
870 bt_common_color_reset(),
871 comp_class_description ? comp_class_description : "(None)");
872
873 if (comp_class_help) {
874 printf("\n%s\n", comp_class_help);
875 }
876
877 bt_put(comp_cls);
878 }
879
880 end:
881 bt_put(plugin);
882 return ret;
883 }
884
885 static
886 int cmd_list_plugins(struct bt_config *cfg)
887 {
888 int ret = 0;
889 int plugins_count, component_classes_count = 0, i;
890
891 printf("From the following plugin paths:\n\n");
892 print_value(stdout, cfg->plugin_paths, 2);
893 printf("\n");
894 plugins_count = loaded_plugins->len;
895 if (plugins_count == 0) {
896 printf("No plugins found.\n");
897 goto end;
898 }
899
900 for (i = 0; i < plugins_count; i++) {
901 struct bt_plugin *plugin = g_ptr_array_index(loaded_plugins, i);
902
903 component_classes_count += bt_plugin_get_component_class_count(plugin);
904 }
905
906 printf("Found %s%d%s component classes in %s%d%s plugins.\n",
907 bt_common_color_bold(),
908 component_classes_count,
909 bt_common_color_reset(),
910 bt_common_color_bold(),
911 plugins_count,
912 bt_common_color_reset());
913
914 for (i = 0; i < plugins_count; i++) {
915 int j;
916 struct bt_plugin *plugin = g_ptr_array_index(loaded_plugins, i);
917
918 component_classes_count =
919 bt_plugin_get_component_class_count(plugin);
920 printf("\n");
921 print_plugin_info(plugin);
922
923 if (component_classes_count == 0) {
924 printf(" %sComponent classes%s: (none)\n",
925 bt_common_color_bold(),
926 bt_common_color_reset());
927 } else {
928 printf(" %sComponent classes%s:\n",
929 bt_common_color_bold(),
930 bt_common_color_reset());
931 }
932
933 for (j = 0; j < component_classes_count; j++) {
934 struct bt_component_class *comp_class =
935 bt_plugin_get_component_class_by_index(
936 plugin, j);
937 const char *comp_class_name =
938 bt_component_class_get_name(comp_class);
939 const char *comp_class_description =
940 bt_component_class_get_description(comp_class);
941 enum bt_component_class_type type =
942 bt_component_class_get_type(comp_class);
943
944 printf(" ");
945 print_plugin_comp_cls_opt(stdout,
946 bt_plugin_get_name(plugin), comp_class_name,
947 type);
948
949 if (comp_class_description) {
950 printf(": %s", comp_class_description);
951 }
952
953 printf("\n");
954 bt_put(comp_class);
955 }
956 }
957
958 end:
959 return ret;
960 }
961
962 static
963 int cmd_print_lttng_live_sessions(struct bt_config *cfg)
964 {
965 int ret = 0;
966 struct bt_component_class *comp_cls = NULL;
967 struct bt_value *results = NULL;
968 struct bt_value *params = NULL;
969 struct bt_value *map = NULL;
970 struct bt_value *v = NULL;
971 static const char * const plugin_name = "ctf";
972 static const char * const comp_cls_name = "lttng-live";
973 static const enum bt_component_class_type comp_cls_type =
974 BT_COMPONENT_CLASS_TYPE_SOURCE;
975 int64_t array_size, i;
976
977 assert(cfg->cmd_data.print_lttng_live_sessions.url);
978 comp_cls = find_component_class(plugin_name, comp_cls_name,
979 comp_cls_type);
980 if (!comp_cls) {
981 BT_LOGE("Cannot find component class: plugin-name=\"%s\", "
982 "comp-cls-name=\"%s\", comp-cls-type=%d",
983 plugin_name, comp_cls_name,
984 BT_COMPONENT_CLASS_TYPE_SOURCE);
985 fprintf(stderr, "%s%sCannot find component class %s",
986 bt_common_color_bold(),
987 bt_common_color_fg_red(),
988 bt_common_color_reset());
989 print_plugin_comp_cls_opt(stderr, plugin_name,
990 comp_cls_name, comp_cls_type);
991 fprintf(stderr, "\n");
992 goto error;
993 }
994
995 params = bt_value_map_create();
996 if (!params) {
997 goto error;
998 }
999
1000 ret = bt_value_map_insert_string(params, "url",
1001 cfg->cmd_data.print_lttng_live_sessions.url->str);
1002 if (ret) {
1003 goto error;
1004 }
1005
1006 results = bt_component_class_query(comp_cls, "sessions",
1007 params);
1008 if (!results) {
1009 BT_LOGE_STR("Failed to query for sessions.");
1010 fprintf(stderr, "%s%sFailed to request sessions%s\n",
1011 bt_common_color_bold(),
1012 bt_common_color_fg_red(),
1013 bt_common_color_reset());
1014 goto error;
1015 }
1016
1017 if (!bt_value_is_array(results)) {
1018 BT_LOGE_STR("Expecting an array for sessions query.");
1019 fprintf(stderr, "%s%sUnexpected type returned by session query%s\n",
1020 bt_common_color_bold(),
1021 bt_common_color_fg_red(),
1022 bt_common_color_reset());
1023 goto error;
1024 }
1025
1026 array_size = bt_value_array_size(results);
1027 for (i = 0; i < array_size; i++) {
1028 const char *url_text;
1029 int64_t timer_us, streams, clients;
1030
1031 map = bt_value_array_get(results, i);
1032 if (!map) {
1033 BT_LOGE_STR("Unexpected empty array entry.");
1034 goto error;
1035 }
1036 if (!bt_value_is_map(map)) {
1037 BT_LOGE_STR("Unexpected entry type.");
1038 goto error;
1039 }
1040
1041 v = bt_value_map_get(map, "url");
1042 if (!v) {
1043 BT_LOGE_STR("Unexpected empty array \"url\" entry.");
1044 goto error;
1045 }
1046 ret = bt_value_string_get(v, &url_text);
1047 assert(ret == 0);
1048 printf("%s", url_text);
1049 BT_PUT(v);
1050
1051 v = bt_value_map_get(map, "timer-us");
1052 if (!v) {
1053 BT_LOGE_STR("Unexpected empty array \"timer-us\" entry.");
1054 goto error;
1055 }
1056 ret = bt_value_integer_get(v, &timer_us);
1057 assert(ret == 0);
1058 printf(" (timer = %" PRIu64 ", ", timer_us);
1059 BT_PUT(v);
1060
1061 v = bt_value_map_get(map, "stream-count");
1062 if (!v) {
1063 BT_LOGE_STR("Unexpected empty array \"stream-count\" entry.");
1064 goto error;
1065 }
1066 ret = bt_value_integer_get(v, &streams);
1067 assert(ret == 0);
1068 printf("%" PRIu64 " stream(s), ", streams);
1069 BT_PUT(v);
1070
1071 v = bt_value_map_get(map, "client-count");
1072 if (!v) {
1073 BT_LOGE_STR("Unexpected empty array \"client-count\" entry.");
1074 goto error;
1075 }
1076 ret = bt_value_integer_get(v, &clients);
1077 assert(ret == 0);
1078 printf("%" PRIu64 " client(s) connected)\n", clients);
1079 BT_PUT(v);
1080
1081 BT_PUT(map);
1082 }
1083 end:
1084 bt_put(v);
1085 bt_put(map);
1086 bt_put(results);
1087 bt_put(params);
1088 bt_put(comp_cls);
1089 return 0;
1090
1091 error:
1092 ret = -1;
1093 goto end;
1094 }
1095
1096 static
1097 int cmd_print_ctf_metadata(struct bt_config *cfg)
1098 {
1099 int ret = 0;
1100 struct bt_component_class *comp_cls = NULL;
1101 struct bt_value *results = NULL;
1102 struct bt_value *params = NULL;
1103 struct bt_value *metadata_text_value = NULL;
1104 const char *metadata_text = NULL;
1105 static const char * const plugin_name = "ctf";
1106 static const char * const comp_cls_name = "fs";
1107 static const enum bt_component_class_type comp_cls_type =
1108 BT_COMPONENT_CLASS_TYPE_SOURCE;
1109
1110 assert(cfg->cmd_data.print_ctf_metadata.path);
1111 comp_cls = find_component_class(plugin_name, comp_cls_name,
1112 comp_cls_type);
1113 if (!comp_cls) {
1114 BT_LOGE("Cannot find component class: plugin-name=\"%s\", "
1115 "comp-cls-name=\"%s\", comp-cls-type=%d",
1116 plugin_name, comp_cls_name,
1117 BT_COMPONENT_CLASS_TYPE_SOURCE);
1118 fprintf(stderr, "%s%sCannot find component class %s",
1119 bt_common_color_bold(),
1120 bt_common_color_fg_red(),
1121 bt_common_color_reset());
1122 print_plugin_comp_cls_opt(stderr, plugin_name,
1123 comp_cls_name, comp_cls_type);
1124 fprintf(stderr, "\n");
1125 ret = -1;
1126 goto end;
1127 }
1128
1129 params = bt_value_map_create();
1130 if (!params) {
1131 ret = -1;
1132 goto end;
1133 }
1134
1135 ret = bt_value_map_insert_string(params, "path",
1136 cfg->cmd_data.print_ctf_metadata.path->str);
1137 if (ret) {
1138 ret = -1;
1139 goto end;
1140 }
1141
1142 results = bt_component_class_query(comp_cls, "metadata-info",
1143 params);
1144 if (!results) {
1145 ret = -1;
1146 BT_LOGE_STR("Failed to query for metadata info.");
1147 fprintf(stderr, "%s%sFailed to request metadata info%s\n",
1148 bt_common_color_bold(),
1149 bt_common_color_fg_red(),
1150 bt_common_color_reset());
1151 goto end;
1152 }
1153
1154 metadata_text_value = bt_value_map_get(results, "text");
1155 if (!metadata_text_value) {
1156 BT_LOGE_STR("Cannot find `text` string value in the resulting metadata info object.");
1157 ret = -1;
1158 goto end;
1159 }
1160
1161 ret = bt_value_string_get(metadata_text_value, &metadata_text);
1162 assert(ret == 0);
1163 printf("%s\n", metadata_text);
1164
1165 end:
1166 bt_put(results);
1167 bt_put(params);
1168 bt_put(metadata_text_value);
1169 bt_put(comp_cls);
1170 return 0;
1171 }
1172
1173 struct port_id {
1174 char *instance_name;
1175 char *port_name;
1176 };
1177
1178 struct trace_range {
1179 uint64_t intersection_range_begin_ns;
1180 uint64_t intersection_range_end_ns;
1181 };
1182
1183 static
1184 guint port_id_hash(gconstpointer v)
1185 {
1186 const struct port_id *id = v;
1187
1188 assert(id->instance_name);
1189 assert(id->port_name);
1190
1191 return g_str_hash(id->instance_name) ^ g_str_hash(id->port_name);
1192 }
1193
1194 static
1195 gboolean port_id_equal(gconstpointer v1, gconstpointer v2)
1196 {
1197 const struct port_id *id1 = v1;
1198 const struct port_id *id2 = v2;
1199
1200 return !strcmp(id1->instance_name, id2->instance_name) &&
1201 !strcmp(id1->port_name, id2->port_name);
1202 }
1203
1204 static
1205 void port_id_destroy(gpointer data)
1206 {
1207 struct port_id *id = data;
1208
1209 free(id->instance_name);
1210 free(id->port_name);
1211 free(id);
1212 }
1213
1214 static
1215 void trace_range_destroy(gpointer data)
1216 {
1217 free(data);
1218 }
1219
1220 struct cmd_run_ctx {
1221 /* Owned by this */
1222 GHashTable *components;
1223
1224 /* Owned by this */
1225 struct bt_graph *graph;
1226
1227 /* Weak */
1228 struct bt_config *cfg;
1229
1230 bool connect_ports;
1231
1232 bool stream_intersection_mode;
1233
1234 /*
1235 * Association of struct port_id -> struct trace_range.
1236 */
1237 GHashTable *intersections;
1238 };
1239
1240 /* Returns a timestamp of the form "(-)s.ns" */
1241 static
1242 char *s_from_ns(int64_t ns)
1243 {
1244 int ret;
1245 char *s_ret = NULL;
1246 bool is_negative;
1247 int64_t ts_sec_abs, ts_nsec_abs;
1248 int64_t ts_sec = ns / NSEC_PER_SEC;
1249 int64_t ts_nsec = ns % NSEC_PER_SEC;
1250
1251 if (ts_sec >= 0 && ts_nsec >= 0) {
1252 is_negative = false;
1253 ts_sec_abs = ts_sec;
1254 ts_nsec_abs = ts_nsec;
1255 } else if (ts_sec > 0 && ts_nsec < 0) {
1256 is_negative = false;
1257 ts_sec_abs = ts_sec - 1;
1258 ts_nsec_abs = NSEC_PER_SEC + ts_nsec;
1259 } else if (ts_sec == 0 && ts_nsec < 0) {
1260 is_negative = true;
1261 ts_sec_abs = ts_sec;
1262 ts_nsec_abs = -ts_nsec;
1263 } else if (ts_sec < 0 && ts_nsec > 0) {
1264 is_negative = true;
1265 ts_sec_abs = -(ts_sec + 1);
1266 ts_nsec_abs = NSEC_PER_SEC - ts_nsec;
1267 } else if (ts_sec < 0 && ts_nsec == 0) {
1268 is_negative = true;
1269 ts_sec_abs = -ts_sec;
1270 ts_nsec_abs = ts_nsec;
1271 } else { /* (ts_sec < 0 && ts_nsec < 0) */
1272 is_negative = true;
1273 ts_sec_abs = -ts_sec;
1274 ts_nsec_abs = -ts_nsec;
1275 }
1276
1277 ret = asprintf(&s_ret, "%s%" PRId64 ".%09" PRId64,
1278 is_negative ? "-" : "", ts_sec_abs, ts_nsec_abs);
1279 if (ret < 0) {
1280 s_ret = NULL;
1281 }
1282 return s_ret;
1283 }
1284
1285 static
1286 int cmd_run_ctx_connect_upstream_port_to_downstream_component(
1287 struct cmd_run_ctx *ctx, struct bt_component *upstream_comp,
1288 struct bt_port *upstream_port,
1289 struct bt_config_connection *cfg_conn)
1290 {
1291 int ret = 0;
1292 GQuark downstreamp_comp_name_quark;
1293 struct bt_component *downstream_comp;
1294 int64_t downstream_port_count;
1295 uint64_t i;
1296 int64_t (*port_count_fn)(struct bt_component *);
1297 struct bt_port *(*port_by_index_fn)(struct bt_component *, uint64_t);
1298 enum bt_graph_status status = BT_GRAPH_STATUS_ERROR;
1299 bool insert_trimmer = false;
1300 struct bt_value *trimmer_params = NULL;
1301 char *intersection_begin = NULL;
1302 char *intersection_end = NULL;
1303 struct bt_component *trimmer = NULL;
1304 struct bt_component_class *trimmer_class = NULL;
1305 struct bt_port *trimmer_input = NULL;
1306 struct bt_port *trimmer_output = NULL;
1307
1308 if (ctx->intersections &&
1309 bt_component_get_class_type(upstream_comp) ==
1310 BT_COMPONENT_CLASS_TYPE_SOURCE) {
1311 struct trace_range *range;
1312 struct port_id port_id = {
1313 .instance_name = (char *) bt_component_get_name(upstream_comp),
1314 .port_name = (char *) bt_port_get_name(upstream_port)
1315 };
1316
1317 if (!port_id.instance_name || !port_id.port_name) {
1318 goto error;
1319 }
1320
1321 range = (struct trace_range *) g_hash_table_lookup(
1322 ctx->intersections, &port_id);
1323 if (range) {
1324 enum bt_value_status status;
1325
1326 intersection_begin = s_from_ns(
1327 range->intersection_range_begin_ns);
1328 intersection_end = s_from_ns(
1329 range->intersection_range_end_ns);
1330 if (!intersection_begin || !intersection_end) {
1331 BT_LOGE_STR("Cannot create trimmer argument timestamp string.");
1332 goto error;
1333 }
1334
1335 insert_trimmer = true;
1336 trimmer_params = bt_value_map_create();
1337 if (!trimmer_params) {
1338 goto error;
1339 }
1340
1341 status = bt_value_map_insert_string(trimmer_params,
1342 "begin", intersection_begin);
1343 if (status != BT_VALUE_STATUS_OK) {
1344 goto error;
1345 }
1346 status = bt_value_map_insert_string(trimmer_params,
1347 "end", intersection_end);
1348 if (status != BT_VALUE_STATUS_OK) {
1349 goto error;
1350 }
1351 }
1352
1353 trimmer_class = find_component_class("utils", "trimmer",
1354 BT_COMPONENT_CLASS_TYPE_FILTER);
1355 if (!trimmer_class) {
1356 goto error;
1357 }
1358 }
1359
1360 BT_LOGI("Connecting upstream port to the next available downstream port: "
1361 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
1362 "downstream-comp-name=\"%s\", conn-arg=\"%s\"",
1363 upstream_port, bt_port_get_name(upstream_port),
1364 cfg_conn->downstream_comp_name->str,
1365 cfg_conn->arg->str);
1366 downstreamp_comp_name_quark = g_quark_from_string(
1367 cfg_conn->downstream_comp_name->str);
1368 assert(downstreamp_comp_name_quark > 0);
1369 downstream_comp = g_hash_table_lookup(ctx->components,
1370 GUINT_TO_POINTER(downstreamp_comp_name_quark));
1371 if (!downstream_comp) {
1372 BT_LOGE("Cannot find downstream component: comp-name=\"%s\", "
1373 "conn-arg=\"%s\"", cfg_conn->downstream_comp_name->str,
1374 cfg_conn->arg->str);
1375 fprintf(stderr, "Cannot create connection: cannot find downstream component: %s\n",
1376 cfg_conn->arg->str);
1377 goto error;
1378 }
1379
1380 if (bt_component_is_filter(downstream_comp)) {
1381 port_count_fn = bt_component_filter_get_input_port_count;
1382 port_by_index_fn = bt_component_filter_get_input_port_by_index;
1383 } else if (bt_component_is_sink(downstream_comp)) {
1384 port_count_fn = bt_component_sink_get_input_port_count;
1385 port_by_index_fn = bt_component_sink_get_input_port_by_index;
1386 } else {
1387 /*
1388 * Should never happen because the connections are
1389 * validated before we get here.
1390 */
1391 BT_LOGF("Invalid connection: downstream component is a source: "
1392 "conn-arg=\"%s\"", cfg_conn->arg->str);
1393 abort();
1394 }
1395
1396 downstream_port_count = port_count_fn(downstream_comp);
1397 assert(downstream_port_count >= 0);
1398
1399 for (i = 0; i < downstream_port_count; i++) {
1400 struct bt_port *downstream_port =
1401 port_by_index_fn(downstream_comp, i);
1402 const char *upstream_port_name;
1403 const char *downstream_port_name;
1404
1405 assert(downstream_port);
1406
1407 /* Skip port if it's already connected. */
1408 if (bt_port_is_connected(downstream_port)) {
1409 bt_put(downstream_port);
1410 BT_LOGD("Skipping downstream port: already connected: "
1411 "port-addr=%p, port-name=\"%s\"",
1412 downstream_port,
1413 bt_port_get_name(downstream_port));
1414 continue;
1415 }
1416
1417 downstream_port_name = bt_port_get_name(downstream_port);
1418 assert(downstream_port_name);
1419 upstream_port_name = bt_port_get_name(upstream_port);
1420 assert(upstream_port_name);
1421
1422 if (!bt_common_star_glob_match(
1423 cfg_conn->downstream_port_glob->str, -1ULL,
1424 downstream_port_name, -1ULL)) {
1425 bt_put(downstream_port);
1426 continue;
1427 }
1428
1429 if (insert_trimmer) {
1430 /*
1431 * In order to insert the trimmer between the two
1432 * components that were being connected, we create
1433 * a connection configuration entry which describes
1434 * a connection from the trimmer's output to the
1435 * original input that was being connected.
1436 *
1437 * Hence, the creation of the trimmer will cause the
1438 * graph "new port" listener to establish all downstream
1439 * connections as its output port is connected. We will
1440 * then establish the connection between the original
1441 * upstream source and the trimmer.
1442 */
1443 char *trimmer_name = NULL;
1444 enum bt_graph_status graph_status;
1445
1446 ret = asprintf(&trimmer_name, "%s-%s",
1447 "stream-intersection-trimmer",
1448 upstream_port_name);
1449 if (ret < 0) {
1450 goto error;
1451 }
1452 ret = 0;
1453
1454 ctx->connect_ports = false;
1455 graph_status = bt_graph_add_component(ctx->graph,
1456 trimmer_class, trimmer_name, trimmer_params,
1457 &trimmer);
1458 free(trimmer_name);
1459 if (graph_status != BT_GRAPH_STATUS_OK) {
1460 goto error;
1461 }
1462 assert(trimmer);
1463
1464 trimmer_input =
1465 bt_component_filter_get_input_port_by_index(
1466 trimmer, 0);
1467 if (!trimmer_input) {
1468 goto error;
1469 }
1470 trimmer_output =
1471 bt_component_filter_get_output_port_by_index(
1472 trimmer, 0);
1473 if (!trimmer_output) {
1474 goto error;
1475 }
1476
1477 /*
1478 * Replace the current downstream port by the trimmer's
1479 * upstream port.
1480 */
1481 BT_MOVE(downstream_port, trimmer_input);
1482 downstream_port_name = bt_port_get_name(
1483 downstream_port);
1484 if (!downstream_port_name) {
1485 goto error;
1486 }
1487 }
1488
1489 /* We have a winner! */
1490 status = bt_graph_connect_ports(ctx->graph,
1491 upstream_port, downstream_port, NULL);
1492 BT_PUT(downstream_port);
1493 switch (status) {
1494 case BT_GRAPH_STATUS_OK:
1495 break;
1496 case BT_GRAPH_STATUS_CANCELED:
1497 BT_LOGI_STR("Graph was canceled by user.");
1498 status = BT_GRAPH_STATUS_OK;
1499 break;
1500 case BT_GRAPH_STATUS_COMPONENT_REFUSES_PORT_CONNECTION:
1501 BT_LOGE("A component refused a connection to one of its ports: "
1502 "upstream-comp-addr=%p, upstream-comp-name=\"%s\", "
1503 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
1504 "downstream-comp-addr=%p, downstream-comp-name=\"%s\", "
1505 "downstream-port-addr=%p, downstream-port-name=\"%s\", "
1506 "conn-arg=\"%s\"",
1507 upstream_comp, bt_component_get_name(upstream_comp),
1508 upstream_port, bt_port_get_name(upstream_port),
1509 downstream_comp, cfg_conn->downstream_comp_name->str,
1510 downstream_port, downstream_port_name,
1511 cfg_conn->arg->str);
1512 fprintf(stderr,
1513 "A component refused a connection to one of its ports (`%s` to `%s`): %s\n",
1514 bt_port_get_name(upstream_port),
1515 downstream_port_name,
1516 cfg_conn->arg->str);
1517 break;
1518 default:
1519 BT_LOGE("Cannot create connection: graph refuses to connect ports: "
1520 "upstream-comp-addr=%p, upstream-comp-name=\"%s\", "
1521 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
1522 "downstream-comp-addr=%p, downstream-comp-name=\"%s\", "
1523 "downstream-port-addr=%p, downstream-port-name=\"%s\", "
1524 "conn-arg=\"%s\"",
1525 upstream_comp, bt_component_get_name(upstream_comp),
1526 upstream_port, bt_port_get_name(upstream_port),
1527 downstream_comp, cfg_conn->downstream_comp_name->str,
1528 downstream_port, downstream_port_name,
1529 cfg_conn->arg->str);
1530 fprintf(stderr,
1531 "Cannot create connection: graph refuses to connect ports (`%s` to `%s`): %s\n",
1532 bt_port_get_name(upstream_port),
1533 downstream_port_name,
1534 cfg_conn->arg->str);
1535 goto error;
1536 }
1537
1538 BT_LOGI("Connected component ports: "
1539 "upstream-comp-addr=%p, upstream-comp-name=\"%s\", "
1540 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
1541 "downstream-comp-addr=%p, downstream-comp-name=\"%s\", "
1542 "downstream-port-addr=%p, downstream-port-name=\"%s\", "
1543 "conn-arg=\"%s\"",
1544 upstream_comp, bt_component_get_name(upstream_comp),
1545 upstream_port, bt_port_get_name(upstream_port),
1546 downstream_comp, cfg_conn->downstream_comp_name->str,
1547 downstream_port, downstream_port_name,
1548 cfg_conn->arg->str);
1549
1550 if (insert_trimmer) {
1551 /*
1552 * The first connection, from the source to the trimmer,
1553 * has been done. We now connect the trimmer to the
1554 * original downstream port.
1555 */
1556 ret = cmd_run_ctx_connect_upstream_port_to_downstream_component(
1557 ctx, trimmer, trimmer_output, cfg_conn);
1558 if (ret) {
1559 goto error;
1560 }
1561 ctx->connect_ports = true;
1562 }
1563 goto end;
1564 }
1565
1566 if (status != BT_GRAPH_STATUS_OK) {
1567 BT_LOGE("Cannot create connection: cannot find a matching downstream port for upstream port: "
1568 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
1569 "downstream-comp-name=\"%s\", conn-arg=\"%s\"",
1570 upstream_port, bt_port_get_name(upstream_port),
1571 cfg_conn->downstream_comp_name->str,
1572 cfg_conn->arg->str);
1573 fprintf(stderr,
1574 "Cannot create connection: cannot find a matching downstream port for upstream port `%s`: %s\n",
1575 bt_port_get_name(upstream_port), cfg_conn->arg->str);
1576 goto error;
1577 }
1578
1579 goto end;
1580
1581 error:
1582 ret = -1;
1583
1584 end:
1585 free(intersection_begin);
1586 free(intersection_end);
1587 BT_PUT(trimmer_params);
1588 BT_PUT(trimmer_class);
1589 BT_PUT(trimmer);
1590 BT_PUT(trimmer_input);
1591 BT_PUT(trimmer_output);
1592 return ret;
1593 }
1594
1595 static
1596 int cmd_run_ctx_connect_upstream_port(struct cmd_run_ctx *ctx,
1597 struct bt_port *upstream_port)
1598 {
1599 int ret = 0;
1600 const char *upstream_port_name;
1601 const char *upstream_comp_name;
1602 struct bt_component *upstream_comp = NULL;
1603 size_t i;
1604
1605 assert(ctx);
1606 assert(upstream_port);
1607 upstream_port_name = bt_port_get_name(upstream_port);
1608 assert(upstream_port_name);
1609 upstream_comp = bt_port_get_component(upstream_port);
1610 if (!upstream_comp) {
1611 BT_LOGW("Upstream port to connect is not part of a component: "
1612 "port-addr=%p, port-name=\"%s\"",
1613 upstream_port, upstream_port_name);
1614 ret = -1;
1615 goto end;
1616 }
1617
1618 upstream_comp_name = bt_component_get_name(upstream_comp);
1619 assert(upstream_comp_name);
1620 BT_LOGI("Connecting upstream port: comp-addr=%p, comp-name=\"%s\", "
1621 "port-addr=%p, port-name=\"%s\"",
1622 upstream_comp, upstream_comp_name,
1623 upstream_port, upstream_port_name);
1624
1625 for (i = 0; i < ctx->cfg->cmd_data.run.connections->len; i++) {
1626 struct bt_config_connection *cfg_conn =
1627 g_ptr_array_index(
1628 ctx->cfg->cmd_data.run.connections, i);
1629
1630 if (strcmp(cfg_conn->upstream_comp_name->str,
1631 upstream_comp_name)) {
1632 continue;
1633 }
1634
1635 if (!bt_common_star_glob_match(
1636 cfg_conn->upstream_port_glob->str,
1637 -1ULL, upstream_port_name, -1ULL)) {
1638 continue;
1639 }
1640
1641 ret = cmd_run_ctx_connect_upstream_port_to_downstream_component(
1642 ctx, upstream_comp, upstream_port, cfg_conn);
1643 if (ret) {
1644 BT_LOGE("Cannot connect upstream port: "
1645 "port-addr=%p, port-name=\"%s\"",
1646 upstream_port,
1647 upstream_port_name);
1648 fprintf(stderr,
1649 "Cannot connect port `%s` of component `%s` to a downstream port: %s\n",
1650 upstream_port_name,
1651 upstream_comp_name,
1652 cfg_conn->arg->str);
1653 goto error;
1654 }
1655 goto end;
1656 }
1657
1658 BT_LOGE("Cannot connect upstream port: port does not match any connection argument: "
1659 "port-addr=%p, port-name=\"%s\"", upstream_port,
1660 upstream_port_name);
1661 fprintf(stderr,
1662 "Cannot create connection: upstream port `%s` does not match any connection\n",
1663 upstream_port_name);
1664
1665 error:
1666 ret = -1;
1667
1668 end:
1669 bt_put(upstream_comp);
1670 return ret;
1671 }
1672
1673 static
1674 void graph_port_added_listener(struct bt_port *port, void *data)
1675 {
1676 struct bt_component *comp = NULL;
1677 struct cmd_run_ctx *ctx = data;
1678
1679 comp = bt_port_get_component(port);
1680 BT_LOGI("Port added to a graph's component: comp-addr=%p, "
1681 "comp-name=\"%s\", port-addr=%p, port-name=\"%s\"",
1682 comp, comp ? bt_component_get_name(comp) : "",
1683 port, bt_port_get_name(port));
1684
1685 if (!ctx->connect_ports) {
1686 goto end;
1687 }
1688
1689 if (!comp) {
1690 BT_LOGW_STR("Port has no component.");
1691 goto end;
1692 }
1693
1694 if (bt_port_is_connected(port)) {
1695 BT_LOGW_STR("Port is already connected.");
1696 goto end;
1697 }
1698
1699 if (!bt_port_is_output(port)) {
1700 BT_LOGI_STR("Skipping input port.");
1701 goto end;
1702 }
1703
1704 if (cmd_run_ctx_connect_upstream_port(ctx, port)) {
1705 BT_LOGF_STR("Cannot connect upstream port.");
1706 fprintf(stderr, "Added port could not be connected: aborting\n");
1707 abort();
1708 }
1709
1710 end:
1711 bt_put(comp);
1712 return;
1713 }
1714
1715 static
1716 void graph_port_removed_listener(struct bt_component *component,
1717 struct bt_port *port, void *data)
1718 {
1719 BT_LOGI("Port removed from a graph's component: comp-addr=%p, "
1720 "comp-name=\"%s\", port-addr=%p, port-name=\"%s\"",
1721 component, bt_component_get_name(component),
1722 port, bt_port_get_name(port));
1723 }
1724
1725 static
1726 void graph_ports_connected_listener(struct bt_port *upstream_port,
1727 struct bt_port *downstream_port, void *data)
1728 {
1729 struct bt_component *upstream_comp = bt_port_get_component(upstream_port);
1730 struct bt_component *downstream_comp = bt_port_get_component(downstream_port);
1731
1732 assert(upstream_comp);
1733 assert(downstream_comp);
1734 BT_LOGI("Graph's component ports connected: "
1735 "upstream-comp-addr=%p, upstream-comp-name=\"%s\", "
1736 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
1737 "downstream-comp-addr=%p, downstream-comp-name=\"%s\", "
1738 "downstream-port-addr=%p, downstream-port-name=\"%s\"",
1739 upstream_comp, bt_component_get_name(upstream_comp),
1740 upstream_port, bt_port_get_name(upstream_port),
1741 downstream_comp, bt_component_get_name(downstream_comp),
1742 downstream_port, bt_port_get_name(downstream_port));
1743 bt_put(upstream_comp);
1744 bt_put(downstream_comp);
1745 }
1746
1747 static
1748 void graph_ports_disconnected_listener(
1749 struct bt_component *upstream_component,
1750 struct bt_component *downstream_component,
1751 struct bt_port *upstream_port, struct bt_port *downstream_port,
1752 void *data)
1753 {
1754 BT_LOGI("Graph's component ports disconnected: "
1755 "upstream-port-addr=%p, upstream-port-name=\"%s\", "
1756 "downstream-port-addr=%p, downstream-port-name=\"%s\"",
1757 upstream_port, bt_port_get_name(upstream_port),
1758 downstream_port, bt_port_get_name(downstream_port));
1759 }
1760
1761 static
1762 void cmd_run_ctx_destroy(struct cmd_run_ctx *ctx)
1763 {
1764 if (!ctx) {
1765 return;
1766 }
1767
1768 if (ctx->components) {
1769 g_hash_table_destroy(ctx->components);
1770 ctx->components = NULL;
1771 }
1772
1773 if (ctx->intersections) {
1774 g_hash_table_destroy(ctx->intersections);
1775 ctx->intersections = NULL;
1776 }
1777
1778 BT_PUT(ctx->graph);
1779 the_graph = NULL;
1780 ctx->cfg = NULL;
1781 }
1782
1783 static
1784 int cmd_run_ctx_init(struct cmd_run_ctx *ctx, struct bt_config *cfg)
1785 {
1786 int ret = 0;
1787
1788 ctx->cfg = cfg;
1789 ctx->connect_ports = false;
1790 ctx->components = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1791 NULL, bt_put);
1792 if (!ctx->components) {
1793 goto error;
1794 }
1795
1796 if (cfg->cmd_data.run.stream_intersection_mode) {
1797 ctx->stream_intersection_mode = true;
1798 ctx->intersections = g_hash_table_new_full(port_id_hash,
1799 port_id_equal, port_id_destroy, trace_range_destroy);
1800 if (!ctx->intersections) {
1801 goto error;
1802 }
1803 }
1804
1805 ctx->graph = bt_graph_create();
1806 if (!ctx->graph) {
1807 goto error;
1808 }
1809
1810 the_graph = ctx->graph;
1811 ret = bt_graph_add_port_added_listener(ctx->graph,
1812 graph_port_added_listener, ctx);
1813 if (ret < 0) {
1814 BT_LOGE_STR("Cannot add \"port added\" listener to graph.");
1815 goto error;
1816 }
1817
1818 ret = bt_graph_add_port_removed_listener(ctx->graph,
1819 graph_port_removed_listener, ctx);
1820 if (ret < 0) {
1821 BT_LOGE_STR("Cannot add \"port removed\" listener to graph.");
1822 goto error;
1823 }
1824
1825 ret = bt_graph_add_ports_connected_listener(ctx->graph,
1826 graph_ports_connected_listener, ctx);
1827 if (ret < 0) {
1828 BT_LOGE_STR("Cannot add \"ports connected\" listener to graph.");
1829 goto error;
1830 }
1831
1832 ret = bt_graph_add_ports_disconnected_listener(ctx->graph,
1833 graph_ports_disconnected_listener, ctx);
1834 if (ret < 0) {
1835 BT_LOGE_STR("Cannot add \"ports disconnected\" listener to graph.");
1836 goto error;
1837 }
1838
1839 goto end;
1840
1841 error:
1842 cmd_run_ctx_destroy(ctx);
1843 ret = -1;
1844
1845 end:
1846 return ret;
1847 }
1848
1849 static
1850 int set_stream_intersections(struct cmd_run_ctx *ctx,
1851 struct bt_config_component *cfg_comp,
1852 struct bt_component_class *comp_cls)
1853 {
1854 int ret = 0;
1855 uint64_t trace_idx;
1856 int64_t trace_count;
1857 enum bt_value_status value_status;
1858 const char *path = NULL;
1859 struct bt_value *component_path_value = NULL;
1860 struct bt_value *query_params = NULL;
1861 struct bt_value *query_result = NULL;
1862 struct bt_value *trace_info = NULL;
1863 struct bt_value *intersection_range = NULL;
1864 struct bt_value *intersection_begin = NULL;
1865 struct bt_value *intersection_end = NULL;
1866 struct bt_value *stream_path_value = NULL;
1867 struct bt_value *stream_paths = NULL;
1868 struct bt_value *stream_infos = NULL;
1869 struct bt_value *stream_info = NULL;
1870 struct port_id *port_id = NULL;
1871 struct trace_range *trace_range = NULL;
1872
1873 component_path_value = bt_value_map_get(cfg_comp->params, "path");
1874 if (!bt_value_is_string(component_path_value)) {
1875 BT_LOGD("Cannot get path parameter: component-name=%s",
1876 cfg_comp->instance_name->str);
1877 ret = -1;
1878 goto error;
1879 }
1880
1881 value_status = bt_value_string_get(component_path_value, &path);
1882 if (value_status != BT_VALUE_STATUS_OK) {
1883 BT_LOGD("Cannot get path string value: component-name=%s",
1884 cfg_comp->instance_name->str);
1885 ret = -1;
1886 goto error;
1887 }
1888
1889 query_params = bt_value_map_create();
1890 if (!query_params) {
1891 BT_LOGE_STR("Cannot create query parameters.");
1892 ret = -1;
1893 goto error;
1894 }
1895
1896 value_status = bt_value_map_insert(query_params, "path", component_path_value);
1897 if (value_status != BT_VALUE_STATUS_OK) {
1898 BT_LOGE_STR("Cannot insert path parameter in query paramater map.");
1899 ret = -1;
1900 goto error;
1901 }
1902
1903 query_result = bt_component_class_query(comp_cls, "trace-info",
1904 query_params);
1905 if (!query_result) {
1906 BT_LOGD("Component class \'%s\' does not support the \'trace-info\' query.",
1907 bt_component_class_get_name(comp_cls));
1908 ret = -1;
1909 goto error;
1910 }
1911
1912 if (!bt_value_is_array(query_result)) {
1913 BT_LOGD("Unexpected format of \'trace-info\' query result: "
1914 "component-class-name=%s",
1915 bt_component_class_get_name(comp_cls));
1916 ret = -1;
1917 goto error;
1918 }
1919
1920 trace_count = bt_value_array_size(query_result);
1921 if (trace_count < 0) {
1922 ret = -1;
1923 goto error;
1924 }
1925
1926 for (trace_idx = 0; trace_idx < trace_count; trace_idx++) {
1927 int64_t begin, end;
1928 uint64_t stream_idx;
1929 int64_t stream_count;
1930
1931 trace_info = bt_value_array_get(query_result, trace_idx);
1932 if (!trace_info || !bt_value_is_map(trace_info)) {
1933 ret = -1;
1934 BT_LOGD_STR("Cannot retrieve trace from query result.");
1935 goto error;
1936 }
1937
1938 intersection_range = bt_value_map_get(trace_info,
1939 "intersection-range-ns");
1940 if (!intersection_range) {
1941 ret = -1;
1942 BT_LOGD_STR("Cannot retrieve \'intersetion-range-ns\' field from query result.");
1943 goto error;
1944 }
1945
1946 intersection_begin = bt_value_map_get(intersection_range,
1947 "begin");
1948 if (!intersection_begin) {
1949 ret = -1;
1950 BT_LOGD_STR("Cannot retrieve intersection-range-ns \'begin\' field from query result.");
1951 goto error;
1952 }
1953
1954 intersection_end = bt_value_map_get(intersection_range,
1955 "end");
1956 if (!intersection_end) {
1957 ret = -1;
1958 BT_LOGD_STR("Cannot retrieve intersection-range-ns \'end\' field from query result.");
1959 goto error;
1960 }
1961
1962 value_status = bt_value_integer_get(intersection_begin, &begin);
1963 if (value_status != BT_VALUE_STATUS_OK) {
1964 ret = -1;
1965 BT_LOGD_STR("Cannot retrieve value of intersection-range-ns \'begin\' field from query result.");
1966 goto error;
1967 }
1968
1969 value_status = bt_value_integer_get(intersection_end, &end);
1970 if (value_status != BT_VALUE_STATUS_OK) {
1971 ret = -1;
1972 BT_LOGD_STR("Cannot retrieve value of intersection-range-ns \'end\' field from query result.");
1973 goto error;
1974 }
1975
1976 if (begin < 0 || end < 0 || end < begin) {
1977 BT_LOGW("Invalid trace stream intersection values: "
1978 "intersection-range-ns:begin=%" PRId64
1979 ", intersection-range-ns:end=%" PRId64,
1980 begin, end);
1981 ret = -1;
1982 goto error;
1983 }
1984
1985 stream_infos = bt_value_map_get(trace_info, "streams");
1986 if (!stream_infos || !bt_value_is_array(stream_infos)) {
1987 ret = -1;
1988 BT_LOGD_STR("Cannot retrieve stream informations from trace in query result.");
1989 goto error;
1990 }
1991
1992 stream_count = bt_value_array_size(stream_infos);
1993 if (stream_count < 0) {
1994 ret = -1;
1995 goto error;
1996 }
1997
1998 /*
1999 * FIXME
2000 *
2001 * The first path of a stream's "paths" is currently used to
2002 * associate streams/ports to a given trace intersection.
2003 *
2004 * This is a fragile hack as it relies on the port names
2005 * being set to the various streams path.
2006 *
2007 * A stream name should be introduced as part of the trace-info
2008 * query result.
2009 */
2010 for (stream_idx = 0; stream_idx < stream_count; stream_idx++) {
2011 const char *stream_path;
2012 gboolean hash_ret;
2013
2014 port_id = g_new0(struct port_id, 1);
2015 if (!port_id) {
2016 ret = -1;
2017 BT_LOGE_STR("Cannot allocate memory for port_id structure.");
2018 goto error;
2019 }
2020 port_id->instance_name = strdup(cfg_comp->instance_name->str);
2021 if (!port_id->instance_name) {
2022 ret = -1;
2023 BT_LOGE_STR("Cannot allocate memory for port_id component instance name.");
2024 goto error;
2025 }
2026
2027 trace_range = g_new0(struct trace_range, 1);
2028 if (!trace_range) {
2029 ret = -1;
2030 BT_LOGE_STR("Cannot allocate memory for trace_range structure.");
2031 goto error;
2032 }
2033 trace_range->intersection_range_begin_ns = begin;
2034 trace_range->intersection_range_end_ns = end;
2035
2036 stream_info = bt_value_array_get(stream_infos,
2037 stream_idx);
2038 if (!stream_info || !bt_value_is_map(stream_info)) {
2039 ret = -1;
2040 BT_LOGD_STR("Cannot retrieve stream informations from trace in query result.");
2041 goto error;
2042 }
2043
2044 stream_paths = bt_value_map_get(stream_info, "paths");
2045 if (!stream_paths || !bt_value_is_array(stream_paths)) {
2046 ret = -1;
2047 BT_LOGD_STR("Cannot retrieve stream paths from trace in query result.");
2048 goto error;
2049 }
2050
2051 stream_path_value = bt_value_array_get(stream_paths, 0);
2052 if (!stream_path_value ||
2053 !bt_value_is_string(stream_path_value)) {
2054 ret = -1;
2055 BT_LOGD_STR("Cannot retrieve stream path value from trace in query result.");
2056 goto error;
2057 }
2058
2059 value_status = bt_value_string_get(stream_path_value,
2060 &stream_path);
2061 if (value_status != BT_VALUE_STATUS_OK) {
2062 ret = -1;
2063 goto error;
2064 }
2065
2066 port_id->port_name = strdup(stream_path);
2067 if (!port_id->port_name) {
2068 ret = -1;
2069 BT_LOGE_STR("Cannot allocate memory for port_id port_name.");
2070 goto error;
2071 }
2072
2073 BT_LOGD("Inserting stream intersection ");
2074
2075 hash_ret = g_hash_table_insert(ctx->intersections,
2076 port_id, trace_range);
2077 assert(hash_ret);
2078
2079 port_id = NULL;
2080 trace_range = NULL;
2081 BT_PUT(stream_info);
2082 BT_PUT(stream_paths);
2083 BT_PUT(stream_path_value);
2084 }
2085
2086 BT_PUT(trace_info);
2087 BT_PUT(stream_paths);
2088 BT_PUT(stream_path_value);
2089 BT_PUT(intersection_range);
2090 BT_PUT(intersection_begin);
2091 BT_PUT(intersection_end);
2092 BT_PUT(stream_paths);
2093 BT_PUT(stream_path_value);
2094 }
2095
2096 goto end;
2097
2098 error:
2099 fprintf(stderr, "%s%sCannot determine stream intersection of trace at path \'%s\'.%s\n",
2100 bt_common_color_bold(),
2101 bt_common_color_fg_yellow(),
2102 path ? path : "(unknown)",
2103 bt_common_color_reset());
2104 end:
2105 bt_put(component_path_value);
2106 bt_put(query_params);
2107 bt_put(query_result);
2108 bt_put(trace_info);
2109 bt_put(intersection_range);
2110 bt_put(intersection_begin);
2111 bt_put(intersection_end);
2112 bt_put(stream_infos);
2113 bt_put(stream_info);
2114 bt_put(stream_paths);
2115 bt_put(stream_path_value);
2116 g_free(port_id);
2117 g_free(trace_range);
2118 return ret;
2119 }
2120
2121 static
2122 int cmd_run_ctx_create_components_from_config_components(
2123 struct cmd_run_ctx *ctx, GPtrArray *cfg_components)
2124 {
2125 size_t i;
2126 struct bt_component_class *comp_cls = NULL;
2127 struct bt_component *comp = NULL;
2128 int ret = 0;
2129
2130 for (i = 0; i < cfg_components->len; i++) {
2131 struct bt_config_component *cfg_comp =
2132 g_ptr_array_index(cfg_components, i);
2133 GQuark quark;
2134
2135 comp_cls = find_component_class(cfg_comp->plugin_name->str,
2136 cfg_comp->comp_cls_name->str, cfg_comp->type);
2137 if (!comp_cls) {
2138 BT_LOGE("Cannot find component class: plugin-name=\"%s\", "
2139 "comp-cls-name=\"%s\", comp-cls-type=%d",
2140 cfg_comp->plugin_name->str,
2141 cfg_comp->comp_cls_name->str,
2142 cfg_comp->type);
2143 fprintf(stderr, "%s%sCannot find component class %s",
2144 bt_common_color_bold(),
2145 bt_common_color_fg_red(),
2146 bt_common_color_reset());
2147 print_plugin_comp_cls_opt(stderr,
2148 cfg_comp->plugin_name->str,
2149 cfg_comp->comp_cls_name->str,
2150 cfg_comp->type);
2151 fprintf(stderr, "\n");
2152 goto error;
2153 }
2154
2155 ret = bt_graph_add_component(ctx->graph, comp_cls,
2156 cfg_comp->instance_name->str, cfg_comp->params, &comp);
2157 if (ret) {
2158 BT_LOGE("Cannot create component: plugin-name=\"%s\", "
2159 "comp-cls-name=\"%s\", comp-cls-type=%d, "
2160 "comp-name=\"%s\"",
2161 cfg_comp->plugin_name->str,
2162 cfg_comp->comp_cls_name->str,
2163 cfg_comp->type, cfg_comp->instance_name->str);
2164 fprintf(stderr, "%s%sCannot create component `%s`%s\n",
2165 bt_common_color_bold(),
2166 bt_common_color_fg_red(),
2167 cfg_comp->instance_name->str,
2168 bt_common_color_reset());
2169 goto error;
2170 }
2171
2172 if (ctx->stream_intersection_mode &&
2173 cfg_comp->type == BT_COMPONENT_CLASS_TYPE_SOURCE) {
2174 ret = set_stream_intersections(ctx, cfg_comp, comp_cls);
2175 if (ret) {
2176 goto error;
2177 }
2178 }
2179
2180 BT_LOGI("Created and inserted component: comp-addr=%p, comp-name=\"%s\"",
2181 comp, cfg_comp->instance_name->str);
2182 quark = g_quark_from_string(cfg_comp->instance_name->str);
2183 assert(quark > 0);
2184 g_hash_table_insert(ctx->components,
2185 GUINT_TO_POINTER(quark), comp);
2186 comp = NULL;
2187 BT_PUT(comp_cls);
2188 }
2189
2190 goto end;
2191
2192 error:
2193 ret = -1;
2194
2195 end:
2196 bt_put(comp);
2197 bt_put(comp_cls);
2198 return ret;
2199 }
2200
2201 static
2202 int cmd_run_ctx_create_components(struct cmd_run_ctx *ctx)
2203 {
2204 int ret = 0;
2205
2206 /*
2207 * Make sure that, during this phase, our graph's "port added"
2208 * listener does not connect ports while we are creating the
2209 * components because we have a special, initial phase for
2210 * this.
2211 */
2212 ctx->connect_ports = false;
2213
2214 ret = cmd_run_ctx_create_components_from_config_components(
2215 ctx, ctx->cfg->cmd_data.run.sources);
2216 if (ret) {
2217 ret = -1;
2218 goto end;
2219 }
2220
2221 ret = cmd_run_ctx_create_components_from_config_components(
2222 ctx, ctx->cfg->cmd_data.run.filters);
2223 if (ret) {
2224 ret = -1;
2225 goto end;
2226 }
2227
2228 ret = cmd_run_ctx_create_components_from_config_components(
2229 ctx, ctx->cfg->cmd_data.run.sinks);
2230 if (ret) {
2231 ret = -1;
2232 goto end;
2233 }
2234
2235 end:
2236 return ret;
2237 }
2238
2239 static
2240 int cmd_run_ctx_connect_comp_ports(struct cmd_run_ctx *ctx,
2241 struct bt_component *comp,
2242 int64_t (*port_count_fn)(struct bt_component *),
2243 struct bt_port *(*port_by_index_fn)(struct bt_component *, uint64_t))
2244 {
2245 int ret = 0;
2246 int64_t count;
2247 uint64_t i;
2248
2249 count = port_count_fn(comp);
2250 assert(count >= 0);
2251
2252 for (i = 0; i < count; i++) {
2253 struct bt_port *upstream_port = port_by_index_fn(comp, i);
2254
2255 assert(upstream_port);
2256 ret = cmd_run_ctx_connect_upstream_port(ctx, upstream_port);
2257 bt_put(upstream_port);
2258 if (ret) {
2259 goto end;
2260 }
2261 }
2262
2263 end:
2264 return ret;
2265 }
2266
2267 static
2268 int cmd_run_ctx_connect_ports(struct cmd_run_ctx *ctx)
2269 {
2270 int ret = 0;
2271 GHashTableIter iter;
2272 gpointer g_name_quark, g_comp;
2273
2274 ctx->connect_ports = true;
2275 g_hash_table_iter_init(&iter, ctx->components);
2276
2277 while (g_hash_table_iter_next(&iter, &g_name_quark, &g_comp)) {
2278 int64_t (*port_count_fn)(struct bt_component *);
2279 struct bt_port *(*port_by_index_fn)(struct bt_component *, uint64_t);
2280
2281 if (bt_component_is_source(g_comp)) {
2282 port_count_fn =
2283 bt_component_source_get_output_port_count;
2284 port_by_index_fn =
2285 bt_component_source_get_output_port_by_index;
2286 } else if (bt_component_is_filter(g_comp)) {
2287 port_count_fn =
2288 bt_component_filter_get_output_port_count;
2289 port_by_index_fn =
2290 bt_component_filter_get_output_port_by_index;
2291 } else {
2292 continue;
2293 }
2294
2295 ret = cmd_run_ctx_connect_comp_ports(ctx,
2296 g_comp, port_count_fn, port_by_index_fn);
2297 if (ret) {
2298 goto end;
2299 }
2300 }
2301
2302 end:
2303 return ret;
2304 }
2305
2306 static inline
2307 const char *bt_graph_status_str(enum bt_graph_status status)
2308 {
2309 switch (status) {
2310 case BT_GRAPH_STATUS_CANCELED:
2311 return "BT_GRAPH_STATUS_CANCELED";
2312 case BT_GRAPH_STATUS_AGAIN:
2313 return "BT_GRAPH_STATUS_AGAIN";
2314 case BT_GRAPH_STATUS_END:
2315 return "BT_GRAPH_STATUS_END";
2316 case BT_GRAPH_STATUS_OK:
2317 return "BT_GRAPH_STATUS_OK";
2318 case BT_GRAPH_STATUS_INVALID:
2319 return "BT_GRAPH_STATUS_INVALID";
2320 case BT_GRAPH_STATUS_NO_SINK:
2321 return "BT_GRAPH_STATUS_NO_SINK";
2322 case BT_GRAPH_STATUS_ERROR:
2323 return "BT_GRAPH_STATUS_ERROR";
2324 default:
2325 return "(unknown)";
2326 }
2327 }
2328
2329 static
2330 int cmd_run(struct bt_config *cfg)
2331 {
2332 int ret = 0;
2333 struct cmd_run_ctx ctx = { 0 };
2334
2335 /* Initialize the command's context and the graph object */
2336 if (cmd_run_ctx_init(&ctx, cfg)) {
2337 BT_LOGE_STR("Cannot initialize the command's context.");
2338 fprintf(stderr, "Cannot initialize the command's context\n");
2339 goto error;
2340 }
2341
2342 if (canceled) {
2343 BT_LOGI_STR("Canceled by user before creating components.");
2344 goto error;
2345 }
2346
2347 BT_LOGI_STR("Creating components.");
2348
2349 /* Create the requested component instances */
2350 if (cmd_run_ctx_create_components(&ctx)) {
2351 BT_LOGE_STR("Cannot create components.");
2352 fprintf(stderr, "Cannot create components\n");
2353 goto error;
2354 }
2355
2356 if (canceled) {
2357 BT_LOGI_STR("Canceled by user before connecting components.");
2358 goto error;
2359 }
2360
2361 BT_LOGI_STR("Connecting components.");
2362
2363 /* Connect the initially visible component ports */
2364 if (cmd_run_ctx_connect_ports(&ctx)) {
2365 BT_LOGE_STR("Cannot connect initial component ports.");
2366 fprintf(stderr, "Cannot connect initial component ports\n");
2367 goto error;
2368 }
2369
2370 if (canceled) {
2371 BT_LOGI_STR("Canceled by user before running the graph.");
2372 goto error;
2373 }
2374
2375 BT_LOGI_STR("Running the graph.");
2376
2377 /* Run the graph */
2378 while (true) {
2379 enum bt_graph_status graph_status = bt_graph_run(ctx.graph);
2380
2381 /*
2382 * Reset console in case something messed with console
2383 * codes during the graph's execution.
2384 */
2385 printf("%s", bt_common_color_reset());
2386 fflush(stdout);
2387 fprintf(stderr, "%s", bt_common_color_reset());
2388 BT_LOGV("bt_graph_run() returned: status=%s",
2389 bt_graph_status_str(graph_status));
2390
2391 switch (graph_status) {
2392 case BT_GRAPH_STATUS_OK:
2393 break;
2394 case BT_GRAPH_STATUS_CANCELED:
2395 BT_LOGI_STR("Graph was canceled by user.");
2396 goto error;
2397 case BT_GRAPH_STATUS_AGAIN:
2398 if (bt_graph_is_canceled(ctx.graph)) {
2399 BT_LOGI_STR("Graph was canceled by user.");
2400 goto error;
2401 }
2402
2403 if (cfg->cmd_data.run.retry_duration_us > 0) {
2404 BT_LOGV("Got BT_GRAPH_STATUS_AGAIN: sleeping: "
2405 "time-us=%" PRIu64,
2406 cfg->cmd_data.run.retry_duration_us);
2407
2408 if (usleep(cfg->cmd_data.run.retry_duration_us)) {
2409 if (bt_graph_is_canceled(ctx.graph)) {
2410 BT_LOGI_STR("Graph was canceled by user.");
2411 goto error;
2412 }
2413 }
2414 }
2415 break;
2416 case BT_COMPONENT_STATUS_END:
2417 goto end;
2418 default:
2419 BT_LOGE_STR("Graph failed to complete successfully");
2420 fprintf(stderr, "Graph failed to complete successfully\n");
2421 goto error;
2422 }
2423 }
2424
2425 goto end;
2426
2427 error:
2428 if (ret == 0) {
2429 ret = -1;
2430 }
2431
2432 end:
2433 cmd_run_ctx_destroy(&ctx);
2434 return ret;
2435 }
2436
2437 static
2438 void warn_command_name_and_directory_clash(struct bt_config *cfg)
2439 {
2440 const char *env_clash;
2441
2442 if (!cfg->command_name) {
2443 return;
2444 }
2445
2446 env_clash = getenv(ENV_BABELTRACE_WARN_COMMAND_NAME_DIRECTORY_CLASH);
2447 if (env_clash && strcmp(env_clash, "0") == 0) {
2448 return;
2449 }
2450
2451 if (g_file_test(cfg->command_name,
2452 G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)) {
2453 fprintf(stderr, "\nNOTE: The `%s` command was executed. If you meant to convert a\n",
2454 cfg->command_name);
2455 fprintf(stderr, "trace located in the local `%s` directory, please use:\n",
2456 cfg->command_name);
2457 fprintf(stderr, "\n");
2458 fprintf(stderr, " babeltrace convert %s [OPTIONS]\n",
2459 cfg->command_name);
2460 }
2461 }
2462
2463 static
2464 void init_log_level(void)
2465 {
2466 bt_cli_log_level = bt_log_get_level_from_env(ENV_BABELTRACE_CLI_LOG_LEVEL);
2467 }
2468
2469 static
2470 void set_auto_log_levels(struct bt_config *cfg)
2471 {
2472 const char **env_var_name;
2473
2474 /*
2475 * Override the configuration's default log level if
2476 * BABELTRACE_VERBOSE or BABELTRACE_DEBUG environment variables
2477 * are found for backward compatibility with legacy Babetrace 1.
2478 */
2479 if (getenv("BABELTRACE_DEBUG") &&
2480 strcmp(getenv("BABELTRACE_DEBUG"), "1") == 0) {
2481 cfg->log_level = 'V';
2482 } else if (getenv("BABELTRACE_VERBOSE") &&
2483 strcmp(getenv("BABELTRACE_VERBOSE"), "1") == 0) {
2484 cfg->log_level = 'I';
2485 }
2486
2487 /*
2488 * Set log levels according to --debug or --verbose. For
2489 * backward compatibility, --debug is more verbose than
2490 * --verbose. So:
2491 *
2492 * --verbose: INFO log level
2493 * --debug: VERBOSE log level (includes DEBUG, which is
2494 * is less verbose than VERBOSE in the internal
2495 * logging framework)
2496 */
2497 if (!getenv("BABELTRACE_LOGGING_GLOBAL_LEVEL")) {
2498 if (cfg->verbose) {
2499 bt_logging_set_global_level(BT_LOGGING_LEVEL_INFO);
2500 } else if (cfg->debug) {
2501 bt_logging_set_global_level(BT_LOGGING_LEVEL_VERBOSE);
2502 } else {
2503 /*
2504 * Set library's default log level if not
2505 * explicitly specified.
2506 */
2507 switch (cfg->log_level) {
2508 case 'N':
2509 bt_logging_set_global_level(BT_LOGGING_LEVEL_NONE);
2510 break;
2511 case 'V':
2512 bt_logging_set_global_level(BT_LOGGING_LEVEL_VERBOSE);
2513 break;
2514 case 'D':
2515 bt_logging_set_global_level(BT_LOGGING_LEVEL_DEBUG);
2516 break;
2517 case 'I':
2518 bt_logging_set_global_level(BT_LOGGING_LEVEL_INFO);
2519 break;
2520 case 'W':
2521 bt_logging_set_global_level(BT_LOGGING_LEVEL_WARN);
2522 break;
2523 case 'E':
2524 bt_logging_set_global_level(BT_LOGGING_LEVEL_ERROR);
2525 break;
2526 case 'F':
2527 bt_logging_set_global_level(BT_LOGGING_LEVEL_FATAL);
2528 break;
2529 default:
2530 abort();
2531 }
2532 }
2533 }
2534
2535 if (!getenv(ENV_BABELTRACE_CLI_LOG_LEVEL)) {
2536 if (cfg->verbose) {
2537 bt_cli_log_level = BT_LOG_INFO;
2538 } else if (cfg->debug) {
2539 bt_cli_log_level = BT_LOG_VERBOSE;
2540 } else {
2541 /*
2542 * Set CLI's default log level if not explicitly
2543 * specified.
2544 */
2545 switch (cfg->log_level) {
2546 case 'N':
2547 bt_cli_log_level = BT_LOG_NONE;
2548 break;
2549 case 'V':
2550 bt_cli_log_level = BT_LOG_VERBOSE;
2551 break;
2552 case 'D':
2553 bt_cli_log_level = BT_LOG_DEBUG;
2554 break;
2555 case 'I':
2556 bt_cli_log_level = BT_LOG_INFO;
2557 break;
2558 case 'W':
2559 bt_cli_log_level = BT_LOG_WARN;
2560 break;
2561 case 'E':
2562 bt_cli_log_level = BT_LOG_ERROR;
2563 break;
2564 case 'F':
2565 bt_cli_log_level = BT_LOG_FATAL;
2566 break;
2567 default:
2568 abort();
2569 }
2570 }
2571 }
2572
2573 env_var_name = log_level_env_var_names;
2574
2575 while (*env_var_name) {
2576 if (!getenv(*env_var_name)) {
2577 if (cfg->verbose) {
2578 setenv(*env_var_name, "I", 1);
2579 } else if (cfg->debug) {
2580 setenv(*env_var_name, "V", 1);
2581 } else {
2582 char val[2] = { 0 };
2583
2584 /*
2585 * Set module's default log level if not
2586 * explicitly specified.
2587 */
2588 val[0] = cfg->log_level;
2589 setenv(*env_var_name, val, 1);
2590 }
2591 }
2592
2593 env_var_name++;
2594 }
2595 }
2596
2597 static
2598 void set_sigint_handler(void)
2599 {
2600 struct sigaction new_action, old_action;
2601
2602 new_action.sa_handler = sigint_handler;
2603 sigemptyset(&new_action.sa_mask);
2604 new_action.sa_flags = 0;
2605 sigaction(SIGINT, NULL, &old_action);
2606
2607 if (old_action.sa_handler != SIG_IGN) {
2608 sigaction(SIGINT, &new_action, NULL);
2609 }
2610 }
2611
2612 int main(int argc, const char **argv)
2613 {
2614 int ret;
2615 int retcode;
2616 struct bt_config *cfg;
2617
2618 init_log_level();
2619 set_sigint_handler();
2620 init_static_data();
2621 cfg = bt_config_cli_args_create_with_default(argc, argv, &retcode);
2622
2623 if (retcode < 0) {
2624 /* Quit without errors; typically usage/version */
2625 retcode = 0;
2626 BT_LOGI_STR("Quitting without errors.");
2627 goto end;
2628 }
2629
2630 if (retcode > 0) {
2631 BT_LOGE("Command-line error: retcode=%d", retcode);
2632 goto end;
2633 }
2634
2635 if (!cfg) {
2636 BT_LOGE_STR("Failed to create a valid Babeltrace configuration.");
2637 fprintf(stderr, "Failed to create Babeltrace configuration\n");
2638 retcode = 1;
2639 goto end;
2640 }
2641
2642 set_auto_log_levels(cfg);
2643 print_cfg(cfg);
2644
2645 if (cfg->command_needs_plugins) {
2646 ret = load_all_plugins(cfg->plugin_paths);
2647 if (ret) {
2648 BT_LOGE("Failed to load plugins: ret=%d", ret);
2649 retcode = 1;
2650 goto end;
2651 }
2652 }
2653
2654 BT_LOGI("Executing command: cmd=%d, command-name=\"%s\"",
2655 cfg->command, cfg->command_name);
2656
2657 switch (cfg->command) {
2658 case BT_CONFIG_COMMAND_RUN:
2659 ret = cmd_run(cfg);
2660 break;
2661 case BT_CONFIG_COMMAND_LIST_PLUGINS:
2662 ret = cmd_list_plugins(cfg);
2663 break;
2664 case BT_CONFIG_COMMAND_HELP:
2665 ret = cmd_help(cfg);
2666 break;
2667 case BT_CONFIG_COMMAND_QUERY:
2668 ret = cmd_query(cfg);
2669 break;
2670 case BT_CONFIG_COMMAND_PRINT_CTF_METADATA:
2671 ret = cmd_print_ctf_metadata(cfg);
2672 break;
2673 case BT_CONFIG_COMMAND_PRINT_LTTNG_LIVE_SESSIONS:
2674 ret = cmd_print_lttng_live_sessions(cfg);
2675 break;
2676 default:
2677 BT_LOGF("Invalid/unknown command: cmd=%d", cfg->command);
2678 abort();
2679 }
2680
2681 BT_LOGI("Command completed: cmd=%d, command-name=\"%s\", ret=%d",
2682 cfg->command, cfg->command_name, ret);
2683 warn_command_name_and_directory_clash(cfg);
2684 retcode = ret ? 1 : 0;
2685
2686 end:
2687 BT_PUT(cfg);
2688 fini_static_data();
2689 return retcode;
2690 }
This page took 0.125992 seconds and 5 git commands to generate.