2 * Babeltrace trace converter - parameter parsing
4 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 #define BT_LOG_TAG "CLI/CFG-CLI-ARGS"
31 #include "common/assert.h"
35 #include <babeltrace2/babeltrace.h>
36 #include "common/common.h"
38 #include <sys/types.h>
39 #include "argpar/argpar.h"
40 #include "babeltrace2-cfg.h"
41 #include "babeltrace2-cfg-cli-args.h"
42 #include "babeltrace2-cfg-cli-args-connect.h"
43 #include "param-parse/param-parse.h"
44 #include "babeltrace2-log-level.h"
45 #include "babeltrace2-plugins.h"
46 #include "babeltrace2-query.h"
47 #include "autodisc/autodisc.h"
48 #include "common/version.h"
50 /* Offset option with "is set" boolean */
56 /* Legacy "ctf"/"lttng-live" format options */
57 struct ctf_legacy_opts
{
58 struct offset_opt offset_s
;
59 struct offset_opt offset_ns
;
60 bool stream_intersection
;
63 /* Legacy "text" format options */
64 struct text_legacy_opts
{
66 * output, dbg_info_dir, dbg_info_target_prefix, names,
67 * and fields are owned by this.
70 GString
*dbg_info_dir
;
71 GString
*dbg_info_target_prefix
;
72 const bt_value
*names
;
73 const bt_value
*fields
;
81 bool dbg_info_full_path
;
85 /* Legacy input format format */
86 enum legacy_input_format
{
87 LEGACY_INPUT_FORMAT_NONE
= 0,
88 LEGACY_INPUT_FORMAT_CTF
,
89 LEGACY_INPUT_FORMAT_LTTNG_LIVE
,
92 /* Legacy output format format */
93 enum legacy_output_format
{
94 LEGACY_OUTPUT_FORMAT_NONE
= 0,
95 LEGACY_OUTPUT_FORMAT_TEXT
,
96 LEGACY_OUTPUT_FORMAT_DUMMY
,
99 #define BT_CLI_LOGE_APPEND_CAUSE_OOM() BT_CLI_LOGE_APPEND_CAUSE("Out of memory.")
102 * Returns the plugin name, component class name, component class type,
103 * and component name from a command-line --component option's argument.
104 * arg must have the following format:
106 * [NAME:]TYPE.PLUGIN.CLS
108 * where NAME is the optional component name, TYPE is either `source`,
109 * `filter`, or `sink`, PLUGIN is the plugin name, and CLS is the
110 * component class name.
112 * On success, both *plugin and *component are not NULL. *plugin
113 * and *comp_cls are owned by the caller. On success, *name can be NULL
114 * if no component class name was found, and *comp_cls_type is set.
117 void plugin_comp_cls_names(const char *arg
, char **name
, char **plugin
,
118 char **comp_cls
, bt_component_class_type
*comp_cls_type
)
120 const char *at
= arg
;
121 GString
*gs_name
= NULL
;
122 GString
*gs_comp_cls_type
= NULL
;
123 GString
*gs_plugin
= NULL
;
124 GString
*gs_comp_cls
= NULL
;
130 BT_ASSERT(comp_cls_type
);
132 if (!bt_common_string_is_printable(arg
)) {
133 BT_CLI_LOGE_APPEND_CAUSE("Argument contains a non-printable character.");
137 /* Parse the component name */
138 gs_name
= bt_common_string_until(at
, ".:\\", ":", &end_pos
);
143 if (arg
[end_pos
] == ':') {
147 g_string_assign(gs_name
, "");
150 /* Parse the component class type */
151 gs_comp_cls_type
= bt_common_string_until(at
, ".:\\", ".", &end_pos
);
152 if (!gs_comp_cls_type
|| at
[end_pos
] == '\0') {
153 BT_CLI_LOGE_APPEND_CAUSE("Missing component class type (`source`, `filter`, or `sink`).");
157 if (strcmp(gs_comp_cls_type
->str
, "source") == 0 ||
158 strcmp(gs_comp_cls_type
->str
, "src") == 0) {
159 *comp_cls_type
= BT_COMPONENT_CLASS_TYPE_SOURCE
;
160 } else if (strcmp(gs_comp_cls_type
->str
, "filter") == 0 ||
161 strcmp(gs_comp_cls_type
->str
, "flt") == 0) {
162 *comp_cls_type
= BT_COMPONENT_CLASS_TYPE_FILTER
;
163 } else if (strcmp(gs_comp_cls_type
->str
, "sink") == 0) {
164 *comp_cls_type
= BT_COMPONENT_CLASS_TYPE_SINK
;
166 BT_CLI_LOGE_APPEND_CAUSE("Unknown component class type: `%s`.",
167 gs_comp_cls_type
->str
);
173 /* Parse the plugin name */
174 gs_plugin
= bt_common_string_until(at
, ".:\\", ".", &end_pos
);
175 if (!gs_plugin
|| gs_plugin
->len
== 0 || at
[end_pos
] == '\0') {
176 BT_CLI_LOGE_APPEND_CAUSE("Missing plugin or component class name.");
182 /* Parse the component class name */
183 gs_comp_cls
= bt_common_string_until(at
, ".:\\", ".", &end_pos
);
184 if (!gs_comp_cls
|| gs_comp_cls
->len
== 0) {
185 BT_CLI_LOGE_APPEND_CAUSE("Missing component class name.");
189 if (at
[end_pos
] != '\0') {
190 /* Found a non-escaped `.` */
195 if (gs_name
->len
== 0) {
197 g_string_free(gs_name
, TRUE
);
199 *name
= gs_name
->str
;
200 g_string_free(gs_name
, FALSE
);
203 g_string_free(gs_name
, TRUE
);
206 *plugin
= gs_plugin
->str
;
207 *comp_cls
= gs_comp_cls
->str
;
208 g_string_free(gs_plugin
, FALSE
);
209 g_string_free(gs_comp_cls
, FALSE
);
225 g_string_free(gs_name
, TRUE
);
229 g_string_free(gs_plugin
, TRUE
);
233 g_string_free(gs_comp_cls
, TRUE
);
236 if (gs_comp_cls_type
) {
237 g_string_free(gs_comp_cls_type
, TRUE
);
244 * Prints the Babeltrace version.
247 void print_version(void)
249 if (GIT_VERSION
[0] == '\0') {
250 puts("Babeltrace " VERSION
);
252 puts("Babeltrace " VERSION
" - " GIT_VERSION
);
257 * Destroys a component configuration.
260 void bt_config_component_destroy(bt_object
*obj
)
262 struct bt_config_component
*bt_config_component
=
263 container_of(obj
, struct bt_config_component
, base
);
269 if (bt_config_component
->plugin_name
) {
270 g_string_free(bt_config_component
->plugin_name
, TRUE
);
273 if (bt_config_component
->comp_cls_name
) {
274 g_string_free(bt_config_component
->comp_cls_name
, TRUE
);
277 if (bt_config_component
->instance_name
) {
278 g_string_free(bt_config_component
->instance_name
, TRUE
);
281 BT_VALUE_PUT_REF_AND_RESET(bt_config_component
->params
);
282 g_free(bt_config_component
);
289 * Creates a component configuration using the given plugin name and
290 * component name. `plugin_name` and `comp_cls_name` are copied (belong
291 * to the return value).
293 * Return value is owned by the caller.
296 struct bt_config_component
*bt_config_component_create(
297 bt_component_class_type type
,
298 const char *plugin_name
, const char *comp_cls_name
,
301 struct bt_config_component
*cfg_component
= NULL
;
303 cfg_component
= g_new0(struct bt_config_component
, 1);
304 if (!cfg_component
) {
305 BT_CLI_LOGE_APPEND_CAUSE_OOM();
309 bt_object_init_shared(&cfg_component
->base
,
310 bt_config_component_destroy
);
311 cfg_component
->type
= type
;
312 cfg_component
->plugin_name
= g_string_new(plugin_name
);
313 if (!cfg_component
->plugin_name
) {
314 BT_CLI_LOGE_APPEND_CAUSE_OOM();
318 cfg_component
->comp_cls_name
= g_string_new(comp_cls_name
);
319 if (!cfg_component
->comp_cls_name
) {
320 BT_CLI_LOGE_APPEND_CAUSE_OOM();
324 cfg_component
->instance_name
= g_string_new(NULL
);
325 if (!cfg_component
->instance_name
) {
326 BT_CLI_LOGE_APPEND_CAUSE_OOM();
330 cfg_component
->log_level
= init_log_level
;
332 /* Start with empty parameters */
333 cfg_component
->params
= bt_value_map_create();
334 if (!cfg_component
->params
) {
335 BT_CLI_LOGE_APPEND_CAUSE_OOM();
342 BT_OBJECT_PUT_REF_AND_RESET(cfg_component
);
345 return cfg_component
;
349 * Creates a component configuration from a command-line --component
353 struct bt_config_component
*bt_config_component_from_arg(const char *arg
,
356 struct bt_config_component
*cfg_comp
= NULL
;
358 char *plugin_name
= NULL
;
359 char *comp_cls_name
= NULL
;
360 bt_component_class_type type
;
362 plugin_comp_cls_names(arg
, &name
, &plugin_name
, &comp_cls_name
, &type
);
363 if (!plugin_name
|| !comp_cls_name
) {
367 cfg_comp
= bt_config_component_create(type
, plugin_name
, comp_cls_name
,
374 g_string_assign(cfg_comp
->instance_name
, name
);
380 BT_OBJECT_PUT_REF_AND_RESET(cfg_comp
);
385 g_free(comp_cls_name
);
390 * Destroys a configuration.
393 void bt_config_destroy(bt_object
*obj
)
395 struct bt_config
*cfg
=
396 container_of(obj
, struct bt_config
, base
);
402 BT_VALUE_PUT_REF_AND_RESET(cfg
->plugin_paths
);
404 switch (cfg
->command
) {
405 case BT_CONFIG_COMMAND_RUN
:
406 if (cfg
->cmd_data
.run
.sources
) {
407 g_ptr_array_free(cfg
->cmd_data
.run
.sources
, TRUE
);
410 if (cfg
->cmd_data
.run
.filters
) {
411 g_ptr_array_free(cfg
->cmd_data
.run
.filters
, TRUE
);
414 if (cfg
->cmd_data
.run
.sinks
) {
415 g_ptr_array_free(cfg
->cmd_data
.run
.sinks
, TRUE
);
418 if (cfg
->cmd_data
.run
.connections
) {
419 g_ptr_array_free(cfg
->cmd_data
.run
.connections
,
423 case BT_CONFIG_COMMAND_LIST_PLUGINS
:
425 case BT_CONFIG_COMMAND_HELP
:
426 BT_OBJECT_PUT_REF_AND_RESET(cfg
->cmd_data
.help
.cfg_component
);
428 case BT_CONFIG_COMMAND_QUERY
:
429 BT_OBJECT_PUT_REF_AND_RESET(cfg
->cmd_data
.query
.cfg_component
);
431 if (cfg
->cmd_data
.query
.object
) {
432 g_string_free(cfg
->cmd_data
.query
.object
, TRUE
);
435 case BT_CONFIG_COMMAND_PRINT_CTF_METADATA
:
436 if (cfg
->cmd_data
.print_ctf_metadata
.path
) {
437 g_string_free(cfg
->cmd_data
.print_ctf_metadata
.path
,
440 cfg
->cmd_data
.print_ctf_metadata
.output_path
,
444 case BT_CONFIG_COMMAND_PRINT_LTTNG_LIVE_SESSIONS
:
445 if (cfg
->cmd_data
.print_lttng_live_sessions
.url
) {
447 cfg
->cmd_data
.print_lttng_live_sessions
.url
,
450 cfg
->cmd_data
.print_lttng_live_sessions
.output_path
,
465 void destroy_glist_of_gstring(GList
*list
)
473 for (at
= list
; at
; at
= g_list_next(at
)) {
474 g_string_free(at
->data
, TRUE
);
481 * Creates a simple lexical scanner for parsing comma-delimited names
484 * Return value is owned by the caller.
487 GScanner
*create_csv_identifiers_scanner(void)
490 GScannerConfig scanner_config
= {
491 .cset_skip_characters
= " \t\n",
492 .cset_identifier_first
= G_CSET_a_2_z G_CSET_A_2_Z
"_",
493 .cset_identifier_nth
= G_CSET_a_2_z G_CSET_A_2_Z
":_-",
494 .case_sensitive
= TRUE
,
495 .cpair_comment_single
= NULL
,
496 .skip_comment_multi
= TRUE
,
497 .skip_comment_single
= TRUE
,
498 .scan_comment_multi
= FALSE
,
499 .scan_identifier
= TRUE
,
500 .scan_identifier_1char
= TRUE
,
501 .scan_identifier_NULL
= FALSE
,
502 .scan_symbols
= FALSE
,
503 .symbol_2_token
= FALSE
,
504 .scope_0_fallback
= FALSE
,
505 .scan_binary
= FALSE
,
509 .scan_hex_dollar
= FALSE
,
510 .numbers_2_int
= FALSE
,
511 .int_2_float
= FALSE
,
512 .store_int64
= FALSE
,
513 .scan_string_sq
= FALSE
,
514 .scan_string_dq
= FALSE
,
515 .identifier_2_string
= FALSE
,
516 .char_2_token
= TRUE
,
519 scanner
= g_scanner_new(&scanner_config
);
521 BT_CLI_LOGE_APPEND_CAUSE_OOM();
528 * Converts a comma-delimited list of known names (--names option) to
529 * an array value object containing those names as string value objects.
531 * Return value is owned by the caller.
534 bt_value
*names_from_arg(const char *arg
)
536 GScanner
*scanner
= NULL
;
537 bt_value
*names
= NULL
;
538 bool found_all
= false, found_none
= false, found_item
= false;
540 names
= bt_value_array_create();
542 BT_CLI_LOGE_APPEND_CAUSE_OOM();
546 scanner
= create_csv_identifiers_scanner();
551 g_scanner_input_text(scanner
, arg
, strlen(arg
));
554 GTokenType token_type
= g_scanner_get_next_token(scanner
);
556 switch (token_type
) {
557 case G_TOKEN_IDENTIFIER
:
559 const char *identifier
= scanner
->value
.v_identifier
;
561 if (strcmp(identifier
, "payload") == 0 ||
562 strcmp(identifier
, "args") == 0 ||
563 strcmp(identifier
, "arg") == 0) {
565 if (bt_value_array_append_string_element(names
,
569 } else if (strcmp(identifier
, "context") == 0 ||
570 strcmp(identifier
, "ctx") == 0) {
572 if (bt_value_array_append_string_element(names
,
576 } else if (strcmp(identifier
, "scope") == 0 ||
577 strcmp(identifier
, "header") == 0) {
579 if (bt_value_array_append_string_element(names
,
583 } else if (strcmp(identifier
, "all") == 0) {
585 if (bt_value_array_append_string_element(names
,
589 } else if (strcmp(identifier
, "none") == 0) {
591 if (bt_value_array_append_string_element(names
,
596 BT_CLI_LOGE_APPEND_CAUSE("Unknown name: `%s`.",
612 if (found_none
&& found_all
) {
613 BT_CLI_LOGE_APPEND_CAUSE("Only either `all` or `none` can be specified in the list given to the --names option, but not both.");
617 * Legacy behavior is to clear the defaults (show none) when at
618 * least one item is specified.
620 if (found_item
&& !found_none
&& !found_all
) {
621 if (bt_value_array_append_string_element(names
, "none")) {
626 g_scanner_destroy(scanner
);
631 BT_VALUE_PUT_REF_AND_RESET(names
);
633 g_scanner_destroy(scanner
);
639 * Converts a comma-delimited list of known fields (--fields option) to
640 * an array value object containing those fields as string
643 * Return value is owned by the caller.
646 bt_value
*fields_from_arg(const char *arg
)
648 GScanner
*scanner
= NULL
;
651 fields
= bt_value_array_create();
653 BT_CLI_LOGE_APPEND_CAUSE_OOM();
657 scanner
= create_csv_identifiers_scanner();
662 g_scanner_input_text(scanner
, arg
, strlen(arg
));
665 GTokenType token_type
= g_scanner_get_next_token(scanner
);
667 switch (token_type
) {
668 case G_TOKEN_IDENTIFIER
:
670 const char *identifier
= scanner
->value
.v_identifier
;
672 if (strcmp(identifier
, "trace") == 0 ||
673 strcmp(identifier
, "trace:hostname") == 0 ||
674 strcmp(identifier
, "trace:domain") == 0 ||
675 strcmp(identifier
, "trace:procname") == 0 ||
676 strcmp(identifier
, "trace:vpid") == 0 ||
677 strcmp(identifier
, "loglevel") == 0 ||
678 strcmp(identifier
, "emf") == 0 ||
679 strcmp(identifier
, "callsite") == 0 ||
680 strcmp(identifier
, "all") == 0) {
681 if (bt_value_array_append_string_element(fields
,
686 BT_CLI_LOGE_APPEND_CAUSE("Unknown field: `%s`.",
704 BT_VALUE_PUT_REF_AND_RESET(fields
);
708 g_scanner_destroy(scanner
);
714 void append_param_arg(GString
*params_arg
, const char *key
, const char *value
)
716 BT_ASSERT(params_arg
);
720 if (params_arg
->len
!= 0) {
721 g_string_append_c(params_arg
, ',');
724 g_string_append(params_arg
, key
);
725 g_string_append_c(params_arg
, '=');
726 g_string_append(params_arg
, value
);
730 * Inserts the equivalent "prefix-NAME=yes" strings into params_arg
731 * where the names are in names_array.
734 int insert_flat_params_from_array(GString
*params_arg
,
735 const bt_value
*names_array
, const char *prefix
)
739 GString
*tmpstr
= NULL
, *default_value
= NULL
;
740 bool default_set
= false, non_default_set
= false;
743 * names_array may be NULL if no CLI options were specified to
744 * trigger its creation.
750 tmpstr
= g_string_new(NULL
);
752 BT_CLI_LOGE_APPEND_CAUSE_OOM();
757 default_value
= g_string_new(NULL
);
758 if (!default_value
) {
759 BT_CLI_LOGE_APPEND_CAUSE_OOM();
764 for (i
= 0; i
< bt_value_array_get_length(names_array
); i
++) {
765 const bt_value
*str_obj
=
766 bt_value_array_borrow_element_by_index_const(names_array
,
769 bool is_default
= false;
772 BT_CLI_LOGE_APPEND_CAUSE("Unexpected error.");
777 suffix
= bt_value_string_get(str_obj
);
779 g_string_assign(tmpstr
, prefix
);
780 g_string_append(tmpstr
, "-");
782 /* Special-case for "all" and "none". */
783 if (strcmp(suffix
, "all") == 0) {
785 g_string_assign(default_value
, "show");
786 } else if (strcmp(suffix
, "none") == 0) {
788 g_string_assign(default_value
, "hide");
792 g_string_append(tmpstr
, "default");
793 append_param_arg(params_arg
, tmpstr
->str
,
796 non_default_set
= true;
797 g_string_append(tmpstr
, suffix
);
798 append_param_arg(params_arg
, tmpstr
->str
, "yes");
802 /* Implicit field-default=hide if any non-default option is set. */
803 if (non_default_set
&& !default_set
) {
804 g_string_assign(tmpstr
, prefix
);
805 g_string_append(tmpstr
, "-default");
806 g_string_assign(default_value
, "hide");
807 append_param_arg(params_arg
, tmpstr
->str
, default_value
->str
);
812 g_string_free(default_value
, TRUE
);
816 g_string_free(tmpstr
, TRUE
);
829 OPT_CLOCK_FORCE_CORRELATE
,
840 OPT_DEBUG_INFO_FULL_PATH
,
841 OPT_DEBUG_INFO_TARGET_PREFIX
,
850 OPT_OMIT_HOME_PLUGIN_PATH
,
851 OPT_OMIT_SYSTEM_PLUGIN_PATH
,
856 OPT_RESET_BASE_PARAMS
,
860 OPT_STREAM_INTERSECTION
,
866 enum bt_config_component_dest
{
867 BT_CONFIG_COMPONENT_DEST_UNKNOWN
= -1,
868 BT_CONFIG_COMPONENT_DEST_SOURCE
,
869 BT_CONFIG_COMPONENT_DEST_FILTER
,
870 BT_CONFIG_COMPONENT_DEST_SINK
,
874 * Adds a configuration component to the appropriate configuration
875 * array depending on the destination.
878 void add_run_cfg_comp(struct bt_config
*cfg
,
879 struct bt_config_component
*cfg_comp
,
880 enum bt_config_component_dest dest
)
882 bt_object_get_ref(cfg_comp
);
885 case BT_CONFIG_COMPONENT_DEST_SOURCE
:
886 g_ptr_array_add(cfg
->cmd_data
.run
.sources
, cfg_comp
);
888 case BT_CONFIG_COMPONENT_DEST_FILTER
:
889 g_ptr_array_add(cfg
->cmd_data
.run
.filters
, cfg_comp
);
891 case BT_CONFIG_COMPONENT_DEST_SINK
:
892 g_ptr_array_add(cfg
->cmd_data
.run
.sinks
, cfg_comp
);
900 int add_run_cfg_comp_check_name(struct bt_config
*cfg
,
901 struct bt_config_component
*cfg_comp
,
902 enum bt_config_component_dest dest
,
903 bt_value
*instance_names
)
907 if (cfg_comp
->instance_name
->len
== 0) {
908 BT_CLI_LOGE_APPEND_CAUSE("Found an unnamed component.");
913 if (bt_value_map_has_entry(instance_names
,
914 cfg_comp
->instance_name
->str
)) {
915 BT_CLI_LOGE_APPEND_CAUSE("Duplicate component instance name:\n %s",
916 cfg_comp
->instance_name
->str
);
921 if (bt_value_map_insert_entry(instance_names
,
922 cfg_comp
->instance_name
->str
, bt_value_null
)) {
923 BT_CLI_LOGE_APPEND_CAUSE_OOM();
928 add_run_cfg_comp(cfg
, cfg_comp
, dest
);
935 int append_env_var_plugin_paths(bt_value
*plugin_paths
)
940 if (bt_common_is_setuid_setgid()) {
941 BT_LOGI_STR("Skipping non-system plugin paths for setuid/setgid binary.");
945 envvar
= getenv("BABELTRACE_PLUGIN_PATH");
950 ret
= bt_config_append_plugin_paths(plugin_paths
, envvar
);
954 BT_CLI_LOGE_APPEND_CAUSE("Cannot append plugin paths from BABELTRACE_PLUGIN_PATH.");
961 int append_home_and_system_plugin_paths(bt_value
*plugin_paths
,
962 bool omit_system_plugin_path
, bool omit_home_plugin_path
)
966 if (!omit_home_plugin_path
) {
967 if (bt_common_is_setuid_setgid()) {
968 BT_LOGI_STR("Skipping non-system plugin paths for setuid/setgid binary.");
970 char *home_plugin_dir
= bt_common_get_home_plugin_path(
971 BT_LOG_OUTPUT_LEVEL
);
973 if (home_plugin_dir
) {
974 ret
= bt_config_append_plugin_paths(
975 plugin_paths
, home_plugin_dir
);
976 free(home_plugin_dir
);
979 BT_CLI_LOGE_APPEND_CAUSE("Invalid home plugin path.");
986 if (!omit_system_plugin_path
) {
987 if (bt_config_append_plugin_paths(plugin_paths
,
988 bt_common_get_system_plugin_path())) {
989 BT_CLI_LOGE_APPEND_CAUSE("Invalid system plugin path.");
995 BT_CLI_LOGE_APPEND_CAUSE("Cannot append home and system plugin paths.");
1000 struct bt_config
*bt_config_base_create(enum bt_config_command command
,
1001 const bt_value
*plugin_paths
, bool needs_plugins
)
1003 struct bt_config
*cfg
;
1006 cfg
= g_new0(struct bt_config
, 1);
1008 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1012 bt_object_init_shared(&cfg
->base
, bt_config_destroy
);
1013 cfg
->command
= command
;
1014 cfg
->command_needs_plugins
= needs_plugins
;
1017 bt_value
*plugin_paths_copy
;
1019 (void) bt_value_copy(plugin_paths
,
1020 &plugin_paths_copy
);
1021 cfg
->plugin_paths
= plugin_paths_copy
;
1023 cfg
->plugin_paths
= bt_value_array_create();
1024 if (!cfg
->plugin_paths
) {
1025 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1033 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1040 struct bt_config
*bt_config_run_create(const bt_value
*plugin_paths
)
1042 struct bt_config
*cfg
;
1045 cfg
= bt_config_base_create(BT_CONFIG_COMMAND_RUN
,
1046 plugin_paths
, true);
1051 cfg
->cmd_data
.run
.sources
= g_ptr_array_new_with_free_func(
1052 (GDestroyNotify
) bt_object_put_ref
);
1053 if (!cfg
->cmd_data
.run
.sources
) {
1054 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1058 cfg
->cmd_data
.run
.filters
= g_ptr_array_new_with_free_func(
1059 (GDestroyNotify
) bt_object_put_ref
);
1060 if (!cfg
->cmd_data
.run
.filters
) {
1061 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1065 cfg
->cmd_data
.run
.sinks
= g_ptr_array_new_with_free_func(
1066 (GDestroyNotify
) bt_object_put_ref
);
1067 if (!cfg
->cmd_data
.run
.sinks
) {
1068 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1072 cfg
->cmd_data
.run
.connections
= g_ptr_array_new_with_free_func(
1073 (GDestroyNotify
) bt_config_connection_destroy
);
1074 if (!cfg
->cmd_data
.run
.connections
) {
1075 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1082 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1089 struct bt_config
*bt_config_list_plugins_create(const bt_value
*plugin_paths
)
1091 return bt_config_base_create(BT_CONFIG_COMMAND_LIST_PLUGINS
,
1092 plugin_paths
, true);
1096 struct bt_config
*bt_config_help_create(const bt_value
*plugin_paths
,
1097 int default_log_level
)
1099 struct bt_config
*cfg
;
1102 cfg
= bt_config_base_create(BT_CONFIG_COMMAND_HELP
,
1103 plugin_paths
, true);
1108 cfg
->cmd_data
.help
.cfg_component
=
1109 bt_config_component_create(-1, NULL
, NULL
, default_log_level
);
1110 if (!cfg
->cmd_data
.help
.cfg_component
) {
1117 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1124 struct bt_config
*bt_config_query_create(const bt_value
*plugin_paths
)
1126 struct bt_config
*cfg
;
1129 cfg
= bt_config_base_create(BT_CONFIG_COMMAND_QUERY
,
1130 plugin_paths
, true);
1135 cfg
->cmd_data
.query
.object
= g_string_new(NULL
);
1136 if (!cfg
->cmd_data
.query
.object
) {
1137 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1144 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1151 struct bt_config
*bt_config_print_ctf_metadata_create(
1152 const bt_value
*plugin_paths
)
1154 struct bt_config
*cfg
;
1157 cfg
= bt_config_base_create(BT_CONFIG_COMMAND_PRINT_CTF_METADATA
,
1158 plugin_paths
, true);
1163 cfg
->cmd_data
.print_ctf_metadata
.path
= g_string_new(NULL
);
1164 if (!cfg
->cmd_data
.print_ctf_metadata
.path
) {
1165 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1169 cfg
->cmd_data
.print_ctf_metadata
.output_path
= g_string_new(NULL
);
1170 if (!cfg
->cmd_data
.print_ctf_metadata
.output_path
) {
1171 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1178 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1185 struct bt_config
*bt_config_print_lttng_live_sessions_create(
1186 const bt_value
*plugin_paths
)
1188 struct bt_config
*cfg
;
1191 cfg
= bt_config_base_create(BT_CONFIG_COMMAND_PRINT_LTTNG_LIVE_SESSIONS
,
1192 plugin_paths
, true);
1197 cfg
->cmd_data
.print_lttng_live_sessions
.url
= g_string_new(NULL
);
1198 if (!cfg
->cmd_data
.print_lttng_live_sessions
.url
) {
1199 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1203 cfg
->cmd_data
.print_lttng_live_sessions
.output_path
=
1205 if (!cfg
->cmd_data
.print_lttng_live_sessions
.output_path
) {
1206 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1213 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1220 int bt_config_append_plugin_paths_check_setuid_setgid(
1221 bt_value
*plugin_paths
, const char *arg
)
1225 if (bt_common_is_setuid_setgid()) {
1226 BT_LOGI_STR("Skipping non-system plugin paths for setuid/setgid binary.");
1230 if (bt_config_append_plugin_paths(plugin_paths
, arg
)) {
1231 BT_CLI_LOGE_APPEND_CAUSE("Invalid --plugin-path option's argument:\n %s",
1242 * Prints the expected format for a --params option.
1245 void print_expected_params_format(FILE *fp
)
1247 fprintf(fp
, "Expected format of PARAMS\n");
1248 fprintf(fp
, "-------------------------\n");
1250 fprintf(fp
, " PARAM=VALUE[,PARAM=VALUE]...\n");
1252 fprintf(fp
, "The parameter string is a comma-separated list of PARAM=VALUE assignments,\n");
1253 fprintf(fp
, "where PARAM is the parameter name (C identifier plus the [:.-] characters),\n");
1254 fprintf(fp
, "and VALUE can be one of:\n");
1256 fprintf(fp
, "* `null`, `nul`, `NULL`: null value (no backticks).\n");
1257 fprintf(fp
, "* `true`, `TRUE`, `yes`, `YES`: true boolean value (no backticks).\n");
1258 fprintf(fp
, "* `false`, `FALSE`, `no`, `NO`: false boolean value (no backticks).\n");
1259 fprintf(fp
, "* Binary (`0b` prefix), octal (`0` prefix), decimal, or hexadecimal\n");
1260 fprintf(fp
, " (`0x` prefix) unsigned (with `+` prefix) or signed 64-bit integer.\n");
1261 fprintf(fp
, "* Double precision floating point number (scientific notation is accepted).\n");
1262 fprintf(fp
, "* Unquoted string with no special characters, and not matching any of\n");
1263 fprintf(fp
, " the null and boolean value symbols above.\n");
1264 fprintf(fp
, "* Double-quoted string (accepts escape characters).\n");
1265 fprintf(fp
, "* Array, formatted as an opening `[`, a list of comma-separated values\n");
1266 fprintf(fp
, " (as described by the current list) and a closing `]`.\n");
1267 fprintf(fp
, "* Map, formatted as an opening `{`, a comma-separated list of PARAM=VALUE\n");
1268 fprintf(fp
, " assignments and a closing `}`.\n");
1270 fprintf(fp
, "You can put whitespaces allowed around individual `=` and `,` symbols.\n");
1272 fprintf(fp
, "Example:\n");
1274 fprintf(fp
, " many=null, fresh=yes, condition=false, squirrel=-782329,\n");
1275 fprintf(fp
, " play=+23, observe=3.14, simple=beef, needs-quotes=\"some string\",\n");
1276 fprintf(fp
, " escape.chars-are:allowed=\"this is a \\\" double quote\",\n");
1277 fprintf(fp
, " things=[1, \"2\", 3]\n");
1279 fprintf(fp
, "IMPORTANT: Make sure to single-quote the whole argument when you run\n");
1280 fprintf(fp
, "babeltrace2 from a shell.\n");
1284 bool help_option_is_specified(
1285 const struct bt_argpar_parse_ret
*argpar_parse_ret
)
1288 bool specified
= false;
1290 for (i
= 0; i
< argpar_parse_ret
->items
->len
; i
++) {
1291 struct bt_argpar_item
*argpar_item
=
1292 g_ptr_array_index(argpar_parse_ret
->items
, i
);
1293 struct bt_argpar_item_opt
*argpar_item_opt
;
1295 if (argpar_item
->type
!= BT_ARGPAR_ITEM_TYPE_OPT
) {
1299 argpar_item_opt
= (struct bt_argpar_item_opt
*) argpar_item
;
1300 if (argpar_item_opt
->descr
->id
== OPT_HELP
) {
1310 * Prints the help command usage.
1313 void print_help_usage(FILE *fp
)
1315 fprintf(fp
, "Usage: babeltrace2 [GENERAL OPTIONS] help [OPTIONS] PLUGIN\n");
1316 fprintf(fp
, " babeltrace2 [GENERAL OPTIONS] help [OPTIONS] TYPE.PLUGIN.CLS\n");
1318 fprintf(fp
, "Options:\n");
1320 fprintf(fp
, " -h, --help Show this help and quit\n");
1322 fprintf(fp
, "See `babeltrace2 --help` for the list of general options.\n");
1324 fprintf(fp
, "Use `babeltrace2 list-plugins` to show the list of available plugins.\n");
1328 const struct bt_argpar_opt_descr help_options
[] = {
1329 /* id, short_name, long_name, with_arg */
1330 { OPT_HELP
, 'h', "help", false },
1331 BT_ARGPAR_OPT_DESCR_SENTINEL
1335 * Creates a Babeltrace config object from the arguments of a help
1338 * *retcode is set to the appropriate exit code to use.
1341 struct bt_config
*bt_config_help_from_args(int argc
, const char *argv
[],
1342 int *retcode
, const bt_value
*plugin_paths
,
1343 int default_log_level
)
1345 struct bt_config
*cfg
= NULL
;
1346 char *plugin_name
= NULL
, *comp_cls_name
= NULL
;
1347 struct bt_argpar_parse_ret argpar_parse_ret
= { 0 };
1348 struct bt_argpar_item_non_opt
*non_opt
;
1349 GString
*substring
= NULL
;
1353 cfg
= bt_config_help_create(plugin_paths
, default_log_level
);
1359 argpar_parse_ret
= bt_argpar_parse(argc
, argv
, help_options
, true);
1360 if (argpar_parse_ret
.error
) {
1361 BT_CLI_LOGE_APPEND_CAUSE(
1362 "While parsing `help` command's command-line arguments: %s",
1363 argpar_parse_ret
.error
->str
);
1367 if (help_option_is_specified(&argpar_parse_ret
)) {
1368 print_help_usage(stdout
);
1370 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1374 if (argpar_parse_ret
.items
->len
== 0) {
1375 BT_CLI_LOGE_APPEND_CAUSE(
1376 "Missing plugin name or component class descriptor.");
1378 } else if (argpar_parse_ret
.items
->len
> 1) {
1380 * At this point we know there are least two non-option
1381 * arguments because we don't reach here with `--help`,
1384 non_opt
= argpar_parse_ret
.items
->pdata
[1];
1385 BT_CLI_LOGE_APPEND_CAUSE(
1386 "Extraneous command-line argument specified to `help` command: `%s`.",
1391 non_opt
= argpar_parse_ret
.items
->pdata
[0];
1393 /* Look for unescaped dots in the argument. */
1394 substring
= bt_common_string_until(non_opt
->arg
, ".\\", ".", &end_pos
);
1396 BT_CLI_LOGE_APPEND_CAUSE("Could not consume argument: arg=%s",
1401 if (end_pos
== strlen(non_opt
->arg
)) {
1402 /* Didn't find an unescaped dot, treat it as a plugin name. */
1403 g_string_assign(cfg
->cmd_data
.help
.cfg_component
->plugin_name
,
1407 * Found an unescaped dot, treat it as a component class name.
1409 plugin_comp_cls_names(non_opt
->arg
, NULL
, &plugin_name
, &comp_cls_name
,
1410 &cfg
->cmd_data
.help
.cfg_component
->type
);
1411 if (!plugin_name
|| !comp_cls_name
) {
1412 BT_CLI_LOGE_APPEND_CAUSE(
1413 "Could not parse argument as a component class name: arg=%s",
1418 g_string_assign(cfg
->cmd_data
.help
.cfg_component
->plugin_name
,
1420 g_string_assign(cfg
->cmd_data
.help
.cfg_component
->comp_cls_name
,
1428 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1431 g_free(plugin_name
);
1432 g_free(comp_cls_name
);
1435 g_string_free(substring
, TRUE
);
1438 bt_argpar_parse_ret_fini(&argpar_parse_ret
);
1444 * Prints the help command usage.
1447 void print_query_usage(FILE *fp
)
1449 fprintf(fp
, "Usage: babeltrace2 [GEN OPTS] query [OPTS] TYPE.PLUGIN.CLS OBJECT\n");
1451 fprintf(fp
, "Options:\n");
1453 fprintf(fp
, " -p, --params=PARAMS Set the query parameters to PARAMS (see the expected\n");
1454 fprintf(fp
, " format of PARAMS below)\n");
1455 fprintf(fp
, " -h, --help Show this help and quit\n");
1456 fprintf(fp
, "\n\n");
1457 print_expected_params_format(fp
);
1461 const struct bt_argpar_opt_descr query_options
[] = {
1462 /* id, short_name, long_name, with_arg */
1463 { OPT_HELP
, 'h', "help", false },
1464 { OPT_PARAMS
, 'p', "params", true },
1465 BT_ARGPAR_OPT_DESCR_SENTINEL
1469 * Creates a Babeltrace config object from the arguments of a query
1472 * *retcode is set to the appropriate exit code to use.
1475 struct bt_config
*bt_config_query_from_args(int argc
, const char *argv
[],
1476 int *retcode
, const bt_value
*plugin_paths
,
1477 int default_log_level
)
1480 struct bt_config
*cfg
= NULL
;
1481 const char *component_class_spec
= NULL
;
1482 const char *query_object
= NULL
;
1484 GString
*error_str
= NULL
;
1485 struct bt_argpar_parse_ret argpar_parse_ret
= { 0 };
1487 params
= bt_value_null
;
1488 bt_value_get_ref(bt_value_null
);
1491 cfg
= bt_config_query_create(plugin_paths
);
1496 error_str
= g_string_new(NULL
);
1498 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1503 argpar_parse_ret
= bt_argpar_parse(argc
, argv
, query_options
, true);
1504 if (argpar_parse_ret
.error
) {
1505 BT_CLI_LOGE_APPEND_CAUSE(
1506 "While parsing `query` command's command-line arguments: %s",
1507 argpar_parse_ret
.error
->str
);
1511 if (help_option_is_specified(&argpar_parse_ret
)) {
1512 print_query_usage(stdout
);
1514 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1518 for (i
= 0; i
< argpar_parse_ret
.items
->len
; i
++) {
1519 struct bt_argpar_item
*argpar_item
=
1520 g_ptr_array_index(argpar_parse_ret
.items
, i
);
1522 if (argpar_item
->type
== BT_ARGPAR_ITEM_TYPE_OPT
) {
1523 struct bt_argpar_item_opt
*argpar_item_opt
=
1524 (struct bt_argpar_item_opt
*) argpar_item
;
1525 const char *arg
= argpar_item_opt
->arg
;
1527 switch (argpar_item_opt
->descr
->id
) {
1530 bt_value_put_ref(params
);
1531 params
= bt_param_parse(arg
, error_str
);
1533 BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --params option's argument:\n %s",
1540 BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).",
1541 argpar_item_opt
->descr
->id
);
1545 struct bt_argpar_item_non_opt
*argpar_item_non_opt
1546 = (struct bt_argpar_item_non_opt
*) argpar_item
;
1549 * We need exactly two non-option arguments
1550 * which are the mandatory component class
1551 * specification and query object.
1553 if (!component_class_spec
) {
1554 component_class_spec
= argpar_item_non_opt
->arg
;
1555 } else if (!query_object
) {
1556 query_object
= argpar_item_non_opt
->arg
;
1558 BT_CLI_LOGE_APPEND_CAUSE("Extraneous command-line argument specified to `query` command: `%s`.",
1559 argpar_item_non_opt
->arg
);
1565 if (!component_class_spec
|| !query_object
) {
1566 print_query_usage(stdout
);
1568 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1572 cfg
->cmd_data
.query
.cfg_component
=
1573 bt_config_component_from_arg(component_class_spec
,
1575 if (!cfg
->cmd_data
.query
.cfg_component
) {
1576 BT_CLI_LOGE_APPEND_CAUSE("Invalid format for component class specification:\n %s",
1577 component_class_spec
);
1582 BT_OBJECT_MOVE_REF(cfg
->cmd_data
.query
.cfg_component
->params
, params
);
1584 if (strlen(query_object
) == 0) {
1585 BT_CLI_LOGE_APPEND_CAUSE("Invalid empty object.");
1589 g_string_assign(cfg
->cmd_data
.query
.object
, query_object
);
1594 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1597 bt_argpar_parse_ret_fini(&argpar_parse_ret
);
1600 g_string_free(error_str
, TRUE
);
1603 bt_value_put_ref(params
);
1608 * Prints the list-plugins command usage.
1611 void print_list_plugins_usage(FILE *fp
)
1613 fprintf(fp
, "Usage: babeltrace2 [GENERAL OPTIONS] list-plugins [OPTIONS]\n");
1615 fprintf(fp
, "Options:\n");
1617 fprintf(fp
, " -h, --help Show this help and quit\n");
1619 fprintf(fp
, "See `babeltrace2 --help` for the list of general options.\n");
1621 fprintf(fp
, "Use `babeltrace2 help` to get help for a specific plugin or component class.\n");
1625 const struct bt_argpar_opt_descr list_plugins_options
[] = {
1626 /* id, short_name, long_name, with_arg */
1627 { OPT_HELP
, 'h', "help", false },
1628 BT_ARGPAR_OPT_DESCR_SENTINEL
1632 * Creates a Babeltrace config object from the arguments of a
1633 * list-plugins command.
1635 * *retcode is set to the appropriate exit code to use.
1638 struct bt_config
*bt_config_list_plugins_from_args(int argc
, const char *argv
[],
1639 int *retcode
, const bt_value
*plugin_paths
)
1641 struct bt_config
*cfg
= NULL
;
1642 struct bt_argpar_parse_ret argpar_parse_ret
= { 0 };
1645 cfg
= bt_config_list_plugins_create(plugin_paths
);
1651 argpar_parse_ret
= bt_argpar_parse(argc
, argv
, list_plugins_options
, true);
1652 if (argpar_parse_ret
.error
) {
1653 BT_CLI_LOGE_APPEND_CAUSE(
1654 "While parsing `list-plugins` command's command-line arguments: %s",
1655 argpar_parse_ret
.error
->str
);
1659 if (help_option_is_specified(&argpar_parse_ret
)) {
1660 print_list_plugins_usage(stdout
);
1662 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1666 if (argpar_parse_ret
.items
->len
> 0) {
1668 * At this point we know there's at least one non-option
1669 * argument because we don't reach here with `--help`,
1672 struct bt_argpar_item_non_opt
*non_opt
=
1673 argpar_parse_ret
.items
->pdata
[0];
1675 BT_CLI_LOGE_APPEND_CAUSE(
1676 "Extraneous command-line argument specified to `list-plugins` command: `%s`.",
1685 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1688 bt_argpar_parse_ret_fini(&argpar_parse_ret
);
1694 * Prints the run command usage.
1697 void print_run_usage(FILE *fp
)
1699 fprintf(fp
, "Usage: babeltrace2 [GENERAL OPTIONS] run [OPTIONS]\n");
1701 fprintf(fp
, "Options:\n");
1703 fprintf(fp
, " -b, --base-params=PARAMS Set PARAMS as the current base parameters\n");
1704 fprintf(fp
, " for all the following components until\n");
1705 fprintf(fp
, " --reset-base-params is encountered\n");
1706 fprintf(fp
, " (see the expected format of PARAMS below)\n");
1707 fprintf(fp
, " -c, --component=NAME:TYPE.PLUGIN.CLS\n");
1708 fprintf(fp
, " Instantiate the component class CLS of type\n");
1709 fprintf(fp
, " TYPE (`source`, `filter`, or `sink`) found\n");
1710 fprintf(fp
, " in the plugin PLUGIN, add it to the graph,\n");
1711 fprintf(fp
, " and name it NAME");
1712 fprintf(fp
, " -x, --connect=CONNECTION Connect two created components (see the\n");
1713 fprintf(fp
, " expected format of CONNECTION below)\n");
1714 fprintf(fp
, " -l, --log-level=LVL Set the log level of the current component to LVL\n");
1715 fprintf(fp
, " (`N`, `T`, `D`, `I`, `W`, `E`, or `F`)\n");
1716 fprintf(fp
, " -p, --params=PARAMS Add initialization parameters PARAMS to the\n");
1717 fprintf(fp
, " current component (see the expected format\n");
1718 fprintf(fp
, " of PARAMS below)\n");
1719 fprintf(fp
, " -r, --reset-base-params Reset the current base parameters to an\n");
1720 fprintf(fp
, " empty map\n");
1721 fprintf(fp
, " --retry-duration=DUR When babeltrace2(1) needs to retry to run\n");
1722 fprintf(fp
, " the graph later, retry in DUR µs\n");
1723 fprintf(fp
, " (default: 100000)\n");
1724 fprintf(fp
, " -h, --help Show this help and quit\n");
1726 fprintf(fp
, "See `babeltrace2 --help` for the list of general options.\n");
1727 fprintf(fp
, "\n\n");
1728 fprintf(fp
, "Expected format of CONNECTION\n");
1729 fprintf(fp
, "-----------------------------\n");
1731 fprintf(fp
, " UPSTREAM[.UPSTREAM-PORT]:DOWNSTREAM[.DOWNSTREAM-PORT]\n");
1733 fprintf(fp
, "UPSTREAM and DOWNSTREAM are names of the upstream and downstream\n");
1734 fprintf(fp
, "components to connect together. You must escape the following characters\n\n");
1735 fprintf(fp
, "with `\\`: `\\`, `.`, and `:`. You must set the name of the current\n");
1736 fprintf(fp
, "component using the NAME prefix of the --component option.\n");
1738 fprintf(fp
, "UPSTREAM-PORT and DOWNSTREAM-PORT are optional globbing patterns to\n");
1739 fprintf(fp
, "identify the upstream and downstream ports to use for the connection.\n");
1740 fprintf(fp
, "When the port is not specified, `*` is used.\n");
1742 fprintf(fp
, "When a component named UPSTREAM has an available port which matches the\n");
1743 fprintf(fp
, "UPSTREAM-PORT globbing pattern, it is connected to the first port which\n");
1744 fprintf(fp
, "matches the DOWNSTREAM-PORT globbing pattern of the component named\n");
1745 fprintf(fp
, "DOWNSTREAM.\n");
1747 fprintf(fp
, "The only special character in UPSTREAM-PORT and DOWNSTREAM-PORT is `*`\n");
1748 fprintf(fp
, "which matches anything. You must escape the following characters\n");
1749 fprintf(fp
, "with `\\`: `\\`, `*`, `?`, `[`, `.`, and `:`.\n");
1751 fprintf(fp
, "You can connect a source component to a filter or sink component. You\n");
1752 fprintf(fp
, "can connect a filter component to a sink component.\n");
1754 fprintf(fp
, "Examples:\n");
1756 fprintf(fp
, " my-src:my-sink\n");
1757 fprintf(fp
, " ctf-fs.*stream*:utils-muxer:*\n");
1759 fprintf(fp
, "IMPORTANT: Make sure to single-quote the whole argument when you run\n");
1760 fprintf(fp
, "babeltrace2 from a shell.\n");
1761 fprintf(fp
, "\n\n");
1762 print_expected_params_format(fp
);
1766 * Creates a Babeltrace config object from the arguments of a run
1769 * *retcode is set to the appropriate exit code to use.
1772 struct bt_config
*bt_config_run_from_args(int argc
, const char *argv
[],
1773 int *retcode
, const bt_value
*plugin_paths
,
1774 int default_log_level
)
1776 struct bt_config_component
*cur_cfg_comp
= NULL
;
1777 bt_value
*cur_base_params
= NULL
;
1779 struct bt_config
*cfg
= NULL
;
1780 bt_value
*instance_names
= NULL
;
1781 bt_value
*connection_args
= NULL
;
1782 char error_buf
[256] = { 0 };
1783 long retry_duration
= -1;
1784 bt_value_map_extend_status extend_status
;
1785 GString
*error_str
= NULL
;
1786 struct bt_argpar_parse_ret argpar_parse_ret
= { 0 };
1789 static const struct bt_argpar_opt_descr run_options
[] = {
1790 { OPT_BASE_PARAMS
, 'b', "base-params", true },
1791 { OPT_COMPONENT
, 'c', "component", true },
1792 { OPT_CONNECT
, 'x', "connect", true },
1793 { OPT_HELP
, 'h', "help", false },
1794 { OPT_LOG_LEVEL
, 'l', "log-level", true },
1795 { OPT_PARAMS
, 'p', "params", true },
1796 { OPT_RESET_BASE_PARAMS
, 'r', "reset-base-params", false },
1797 { OPT_RETRY_DURATION
, '\0', "retry-duration", true },
1798 BT_ARGPAR_OPT_DESCR_SENTINEL
1803 error_str
= g_string_new(NULL
);
1805 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1810 print_run_usage(stdout
);
1815 cfg
= bt_config_run_create(plugin_paths
);
1820 cfg
->cmd_data
.run
.retry_duration_us
= 100000;
1821 cur_base_params
= bt_value_map_create();
1822 if (!cur_base_params
) {
1823 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1827 instance_names
= bt_value_map_create();
1828 if (!instance_names
) {
1829 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1833 connection_args
= bt_value_array_create();
1834 if (!connection_args
) {
1835 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1840 argpar_parse_ret
= bt_argpar_parse(argc
, argv
, run_options
, true);
1841 if (argpar_parse_ret
.error
) {
1842 BT_CLI_LOGE_APPEND_CAUSE(
1843 "While parsing `run` command's command-line arguments: %s",
1844 argpar_parse_ret
.error
->str
);
1848 if (help_option_is_specified(&argpar_parse_ret
)) {
1849 print_run_usage(stdout
);
1851 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
1855 for (i
= 0; i
< argpar_parse_ret
.items
->len
; i
++) {
1856 struct bt_argpar_item
*argpar_item
=
1857 g_ptr_array_index(argpar_parse_ret
.items
, i
);
1858 struct bt_argpar_item_opt
*argpar_item_opt
;
1861 /* This command does not accept non-option arguments.*/
1862 if (argpar_item
->type
== BT_ARGPAR_ITEM_TYPE_NON_OPT
) {
1863 struct bt_argpar_item_non_opt
*argpar_nonopt_item
=
1864 (struct bt_argpar_item_non_opt
*) argpar_item
;
1866 BT_CLI_LOGE_APPEND_CAUSE("Unexpected argument: `%s`",
1867 argpar_nonopt_item
->arg
);
1871 argpar_item_opt
= (struct bt_argpar_item_opt
*) argpar_item
;
1872 arg
= argpar_item_opt
->arg
;
1874 switch (argpar_item_opt
->descr
->id
) {
1877 enum bt_config_component_dest dest
;
1879 BT_OBJECT_PUT_REF_AND_RESET(cur_cfg_comp
);
1880 cur_cfg_comp
= bt_config_component_from_arg(arg
,
1882 if (!cur_cfg_comp
) {
1883 BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --component option's argument:\n %s",
1888 switch (cur_cfg_comp
->type
) {
1889 case BT_COMPONENT_CLASS_TYPE_SOURCE
:
1890 dest
= BT_CONFIG_COMPONENT_DEST_SOURCE
;
1892 case BT_COMPONENT_CLASS_TYPE_FILTER
:
1893 dest
= BT_CONFIG_COMPONENT_DEST_FILTER
;
1895 case BT_COMPONENT_CLASS_TYPE_SINK
:
1896 dest
= BT_CONFIG_COMPONENT_DEST_SINK
;
1902 BT_ASSERT(cur_base_params
);
1903 bt_value_put_ref(cur_cfg_comp
->params
);
1904 if (bt_value_copy(cur_base_params
,
1905 &cur_cfg_comp
->params
) < 0) {
1906 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1910 ret
= add_run_cfg_comp_check_name(cfg
,
1922 bt_value
*params_to_set
;
1924 if (!cur_cfg_comp
) {
1925 BT_CLI_LOGE_APPEND_CAUSE("Cannot add parameters to unavailable component:\n %s",
1930 params
= bt_param_parse(arg
, error_str
);
1932 BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --params option's argument:\n %s",
1937 extend_status
= bt_value_map_extend(
1938 cur_cfg_comp
->params
, params
, ¶ms_to_set
);
1939 BT_VALUE_PUT_REF_AND_RESET(params
);
1940 if (extend_status
!= BT_VALUE_MAP_EXTEND_STATUS_OK
) {
1941 BT_CLI_LOGE_APPEND_CAUSE("Cannot extend current component parameters with --params option's argument:\n %s",
1946 BT_OBJECT_MOVE_REF(cur_cfg_comp
->params
, params_to_set
);
1950 if (!cur_cfg_comp
) {
1951 BT_CLI_LOGE_APPEND_CAUSE("Cannot set the log level of unavailable component:\n %s",
1956 cur_cfg_comp
->log_level
=
1957 bt_log_get_level_from_string(arg
);
1958 if (cur_cfg_comp
->log_level
< 0) {
1959 BT_CLI_LOGE_APPEND_CAUSE("Invalid argument for --log-level option:\n %s",
1964 case OPT_BASE_PARAMS
:
1966 bt_value
*params
= bt_param_parse(arg
, error_str
);
1969 BT_CLI_LOGE_APPEND_CAUSE("Invalid format for --base-params option's argument:\n %s",
1974 BT_OBJECT_MOVE_REF(cur_base_params
, params
);
1977 case OPT_RESET_BASE_PARAMS
:
1978 BT_VALUE_PUT_REF_AND_RESET(cur_base_params
);
1979 cur_base_params
= bt_value_map_create();
1980 if (!cur_base_params
) {
1981 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1986 if (bt_value_array_append_string_element(
1987 connection_args
, arg
)) {
1988 BT_CLI_LOGE_APPEND_CAUSE_OOM();
1992 case OPT_RETRY_DURATION
: {
1994 size_t arg_len
= strlen(argpar_item_opt
->arg
);
1996 retry_duration
= g_ascii_strtoll(argpar_item_opt
->arg
, &end
, 10);
1998 if (arg_len
== 0 || end
!= (argpar_item_opt
->arg
+ arg_len
)) {
1999 BT_CLI_LOGE_APPEND_CAUSE(
2000 "Could not parse --retry-duration option's argument as an unsigned integer: `%s`",
2001 argpar_item_opt
->arg
);
2005 if (retry_duration
< 0) {
2006 BT_CLI_LOGE_APPEND_CAUSE("--retry-duration option's argument must be positive or 0: %ld",
2011 cfg
->cmd_data
.run
.retry_duration_us
=
2012 (uint64_t) retry_duration
;
2016 BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).",
2017 argpar_item_opt
->descr
->id
);
2022 BT_OBJECT_PUT_REF_AND_RESET(cur_cfg_comp
);
2024 if (cfg
->cmd_data
.run
.sources
->len
== 0) {
2025 BT_CLI_LOGE_APPEND_CAUSE("Incomplete graph: no source component.");
2029 if (cfg
->cmd_data
.run
.sinks
->len
== 0) {
2030 BT_CLI_LOGE_APPEND_CAUSE("Incomplete graph: no sink component.");
2034 ret
= bt_config_cli_args_create_connections(cfg
,
2038 BT_CLI_LOGE_APPEND_CAUSE("Cannot creation connections:\n%s", error_buf
);
2046 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
2050 g_string_free(error_str
, TRUE
);
2053 bt_argpar_parse_ret_fini(&argpar_parse_ret
);
2054 BT_OBJECT_PUT_REF_AND_RESET(cur_cfg_comp
);
2055 BT_VALUE_PUT_REF_AND_RESET(cur_base_params
);
2056 BT_VALUE_PUT_REF_AND_RESET(instance_names
);
2057 BT_VALUE_PUT_REF_AND_RESET(connection_args
);
2062 struct bt_config
*bt_config_run_from_args_array(const bt_value
*run_args
,
2063 int *retcode
, const bt_value
*plugin_paths
,
2064 int default_log_level
)
2066 struct bt_config
*cfg
= NULL
;
2069 const size_t argc
= bt_value_array_get_length(run_args
);
2071 argv
= calloc(argc
, sizeof(*argv
));
2073 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2077 len
= bt_value_array_get_length(run_args
);
2079 BT_CLI_LOGE_APPEND_CAUSE("Invalid executable arguments.");
2082 for (i
= 0; i
< len
; i
++) {
2083 const bt_value
*arg_value
=
2084 bt_value_array_borrow_element_by_index_const(run_args
,
2088 BT_ASSERT(arg_value
);
2089 arg
= bt_value_string_get(arg_value
);
2094 cfg
= bt_config_run_from_args(argc
, argv
, retcode
,
2095 plugin_paths
, default_log_level
);
2103 * Prints the convert command usage.
2106 void print_convert_usage(FILE *fp
)
2108 fprintf(fp
, "Usage: babeltrace2 [GENERAL OPTIONS] [convert] [OPTIONS] [PATH/URL]\n");
2110 fprintf(fp
, "Options:\n");
2112 fprintf(fp
, " -c, --component=[NAME:]TYPE.PLUGIN.CLS\n");
2113 fprintf(fp
, " Instantiate the component class CLS of type\n");
2114 fprintf(fp
, " TYPE (`source`, `filter`, or `sink`) found\n");
2115 fprintf(fp
, " in the plugin PLUGIN, add it to the\n");
2116 fprintf(fp
, " conversion graph, and optionally name it\n");
2117 fprintf(fp
, " NAME\n");
2118 fprintf(fp
, " -l, --log-level=LVL Set the log level of the current component to LVL\n");
2119 fprintf(fp
, " (`N`, `T`, `D`, `I`, `W`, `E`, or `F`)\n");
2120 fprintf(fp
, " -p, --params=PARAMS Add initialization parameters PARAMS to the\n");
2121 fprintf(fp
, " current component (see the expected format\n");
2122 fprintf(fp
, " of PARAMS below)\n");
2123 fprintf(fp
, " --retry-duration=DUR When babeltrace2(1) needs to retry to run\n");
2124 fprintf(fp
, " the graph later, retry in DUR µs\n");
2125 fprintf(fp
, " (default: 100000)\n");
2126 fprintf(fp
, " dynamic plugins can be loaded\n");
2127 fprintf(fp
, " --run-args Print the equivalent arguments for the\n");
2128 fprintf(fp
, " `run` command to the standard output,\n");
2129 fprintf(fp
, " formatted for a shell, and quit\n");
2130 fprintf(fp
, " --run-args-0 Print the equivalent arguments for the\n");
2131 fprintf(fp
, " `run` command to the standard output,\n");
2132 fprintf(fp
, " formatted for `xargs -0`, and quit\n");
2133 fprintf(fp
, " --stream-intersection Only process events when all streams\n");
2134 fprintf(fp
, " are active\n");
2135 fprintf(fp
, " -h, --help Show this help and quit\n");
2137 fprintf(fp
, "Implicit `source.ctf.fs` component options:\n");
2139 fprintf(fp
, " --clock-force-correlate Force the origin of all clocks\n");
2140 fprintf(fp
, " to the Unix epoch\n");
2141 fprintf(fp
, " --clock-offset=SEC Set clock offset to SEC seconds\n");
2142 fprintf(fp
, " --clock-offset-ns=NS Set clock offset to NS ns\n");
2144 fprintf(fp
, "Implicit `sink.text.pretty` component options:\n");
2146 fprintf(fp
, " --clock-cycles Print timestamps in clock cycles\n");
2147 fprintf(fp
, " --clock-date Print timestamp dates\n");
2148 fprintf(fp
, " --clock-gmt Print and parse timestamps in the GMT\n");
2149 fprintf(fp
, " time zone instead of the local time zone\n");
2150 fprintf(fp
, " --clock-seconds Print the timestamps as `SEC.NS` instead\n");
2151 fprintf(fp
, " of `hh:mm:ss.nnnnnnnnn`\n");
2152 fprintf(fp
, " --color=(never | auto | always)\n");
2153 fprintf(fp
, " Never, automatically, or always emit\n");
2154 fprintf(fp
, " console color codes\n");
2155 fprintf(fp
, " -f, --fields=FIELD[,FIELD]... Print additional fields; FIELD can be:\n");
2156 fprintf(fp
, " `all`, `trace`, `trace:hostname`,\n");
2157 fprintf(fp
, " `trace:domain`, `trace:procname`,\n");
2158 fprintf(fp
, " `trace:vpid`, `loglevel`, `emf`\n");
2159 fprintf(fp
, " -n, --names=NAME[,NAME]... Print field names; NAME can be:\n");
2160 fprintf(fp
, " `payload` (or `arg` or `args`), `none`,\n");
2161 fprintf(fp
, " `all`, `scope`, `header`, `context`\n");
2162 fprintf(fp
, " (or `ctx`)\n");
2163 fprintf(fp
, " --no-delta Do not print time delta between\n");
2164 fprintf(fp
, " consecutive events\n");
2165 fprintf(fp
, " -w, --output=PATH Write output text to PATH instead of\n");
2166 fprintf(fp
, " the standard output\n");
2168 fprintf(fp
, "Implicit `filter.utils.trimmer` component options:\n");
2170 fprintf(fp
, " -b, --begin=BEGIN Set the beginning time of the conversion\n");
2171 fprintf(fp
, " time range to BEGIN (see the format of\n");
2172 fprintf(fp
, " BEGIN below)\n");
2173 fprintf(fp
, " -e, --end=END Set the end time of the conversion time\n");
2174 fprintf(fp
, " range to END (see the format of END below)\n");
2175 fprintf(fp
, " -t, --timerange=TIMERANGE Set conversion time range to TIMERANGE:\n");
2176 fprintf(fp
, " BEGIN,END or [BEGIN,END] (literally `[` and\n");
2177 fprintf(fp
, " `]`) (see the format of BEGIN/END below)\n");
2179 fprintf(fp
, "Implicit `filter.lttng-utils.debug-info` component options:\n");
2181 fprintf(fp
, " --debug-info Create an implicit\n");
2182 fprintf(fp
, " `filter.lttng-utils.debug-info` component\n");
2183 fprintf(fp
, " --debug-info-dir=DIR Search for debug info in directory DIR\n");
2184 fprintf(fp
, " instead of `/usr/lib/debug`\n");
2185 fprintf(fp
, " --debug-info-full-path Show full debug info source and\n");
2186 fprintf(fp
, " binary paths instead of just names\n");
2187 fprintf(fp
, " --debug-info-target-prefix=DIR\n");
2188 fprintf(fp
, " Use directory DIR as a prefix when\n");
2189 fprintf(fp
, " looking up executables during debug\n");
2190 fprintf(fp
, " info analysis\n");
2192 fprintf(fp
, "Legacy options that still work:\n");
2194 fprintf(fp
, " -i, --input-format=(ctf | lttng-live)\n");
2195 fprintf(fp
, " `ctf`:\n");
2196 fprintf(fp
, " Create an implicit `source.ctf.fs`\n");
2197 fprintf(fp
, " component\n");
2198 fprintf(fp
, " `lttng-live`:\n");
2199 fprintf(fp
, " Create an implicit `source.ctf.lttng-live`\n");
2200 fprintf(fp
, " component\n");
2201 fprintf(fp
, " -o, --output-format=(text | ctf | dummy | ctf-metadata)\n");
2202 fprintf(fp
, " `text`:\n");
2203 fprintf(fp
, " Create an implicit `sink.text.pretty`\n");
2204 fprintf(fp
, " component\n");
2205 fprintf(fp
, " `ctf`:\n");
2206 fprintf(fp
, " Create an implicit `sink.ctf.fs`\n");
2207 fprintf(fp
, " component\n");
2208 fprintf(fp
, " `dummy`:\n");
2209 fprintf(fp
, " Create an implicit `sink.utils.dummy`\n");
2210 fprintf(fp
, " component\n");
2211 fprintf(fp
, " `ctf-metadata`:\n");
2212 fprintf(fp
, " Query the `source.ctf.fs` component class\n");
2213 fprintf(fp
, " for metadata text and quit\n");
2215 fprintf(fp
, "See `babeltrace2 --help` for the list of general options.\n");
2216 fprintf(fp
, "\n\n");
2217 fprintf(fp
, "Format of BEGIN and END\n");
2218 fprintf(fp
, "-----------------------\n");
2220 fprintf(fp
, " [YYYY-MM-DD [hh:mm:]]ss[.nnnnnnnnn]\n");
2221 fprintf(fp
, "\n\n");
2222 print_expected_params_format(fp
);
2226 const struct bt_argpar_opt_descr convert_options
[] = {
2227 /* id, short_name, long_name, with_arg */
2228 { OPT_BEGIN
, 'b', "begin", true },
2229 { OPT_CLOCK_CYCLES
, '\0', "clock-cycles", false },
2230 { OPT_CLOCK_DATE
, '\0', "clock-date", false },
2231 { OPT_CLOCK_FORCE_CORRELATE
, '\0', "clock-force-correlate", false },
2232 { OPT_CLOCK_GMT
, '\0', "clock-gmt", false },
2233 { OPT_CLOCK_OFFSET
, '\0', "clock-offset", true },
2234 { OPT_CLOCK_OFFSET_NS
, '\0', "clock-offset-ns", true },
2235 { OPT_CLOCK_SECONDS
, '\0', "clock-seconds", false },
2236 { OPT_COLOR
, '\0', "color", true },
2237 { OPT_COMPONENT
, 'c', "component", true },
2238 { OPT_DEBUG
, 'd', "debug", false },
2239 { OPT_DEBUG_INFO_DIR
, '\0', "debug-info-dir", true },
2240 { OPT_DEBUG_INFO_FULL_PATH
, '\0', "debug-info-full-path", false },
2241 { OPT_DEBUG_INFO_TARGET_PREFIX
, '\0', "debug-info-target-prefix", true },
2242 { OPT_END
, 'e', "end", true },
2243 { OPT_FIELDS
, 'f', "fields", true },
2244 { OPT_HELP
, 'h', "help", false },
2245 { OPT_INPUT_FORMAT
, 'i', "input-format", true },
2246 { OPT_LOG_LEVEL
, 'l', "log-level", true },
2247 { OPT_NAMES
, 'n', "names", true },
2248 { OPT_DEBUG_INFO
, '\0', "debug-info", false },
2249 { OPT_NO_DELTA
, '\0', "no-delta", false },
2250 { OPT_OMIT_HOME_PLUGIN_PATH
, '\0', "omit-home-plugin-path", false },
2251 { OPT_OMIT_SYSTEM_PLUGIN_PATH
, '\0', "omit-system-plugin-path", false },
2252 { OPT_OUTPUT
, 'w', "output", true },
2253 { OPT_OUTPUT_FORMAT
, 'o', "output-format", true },
2254 { OPT_PARAMS
, 'p', "params", true },
2255 { OPT_PLUGIN_PATH
, '\0', "plugin-path", true },
2256 { OPT_RETRY_DURATION
, '\0', "retry-duration", true },
2257 { OPT_RUN_ARGS
, '\0', "run-args", false },
2258 { OPT_RUN_ARGS_0
, '\0', "run-args-0", false },
2259 { OPT_STREAM_INTERSECTION
, '\0', "stream-intersection", false },
2260 { OPT_TIMERANGE
, '\0', "timerange", true },
2261 { OPT_VERBOSE
, 'v', "verbose", false },
2262 BT_ARGPAR_OPT_DESCR_SENTINEL
2266 GString
*get_component_auto_name(const char *prefix
,
2267 const bt_value
*existing_names
)
2270 GString
*auto_name
= g_string_new(NULL
);
2273 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2277 if (!bt_value_map_has_entry(existing_names
, prefix
)) {
2278 g_string_assign(auto_name
, prefix
);
2283 g_string_printf(auto_name
, "%s-%d", prefix
, i
);
2285 } while (bt_value_map_has_entry(existing_names
, auto_name
->str
));
2291 struct implicit_component_args
{
2294 /* The component class name (e.g. src.ctf.fs). */
2297 /* The component instance name. */
2300 GString
*params_arg
;
2301 bt_value
*extra_params
;
2305 int assign_name_to_implicit_component(struct implicit_component_args
*args
,
2306 const char *prefix
, bt_value
*existing_names
,
2307 GList
**comp_names
, bool append_to_comp_names
)
2310 GString
*name
= NULL
;
2312 if (!args
->exists
) {
2316 name
= get_component_auto_name(prefix
,
2324 g_string_assign(args
->name_arg
, name
->str
);
2326 if (bt_value_map_insert_entry(existing_names
, name
->str
,
2328 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2333 if (append_to_comp_names
) {
2334 *comp_names
= g_list_append(*comp_names
, name
);
2340 g_string_free(name
, TRUE
);
2347 int append_run_args_for_implicit_component(
2348 struct implicit_component_args
*impl_args
,
2353 GString
*component_arg_for_run
= NULL
;
2355 if (!impl_args
->exists
) {
2359 component_arg_for_run
= g_string_new(NULL
);
2360 if (!component_arg_for_run
) {
2361 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2365 /* Build the full `name:type.plugin.cls`. */
2366 BT_ASSERT(!strchr(impl_args
->name_arg
->str
, '\\'));
2367 BT_ASSERT(!strchr(impl_args
->name_arg
->str
, ':'));
2368 g_string_printf(component_arg_for_run
, "%s:%s",
2369 impl_args
->name_arg
->str
, impl_args
->comp_arg
->str
);
2371 if (bt_value_array_append_string_element(run_args
, "--component")) {
2372 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2376 if (bt_value_array_append_string_element(run_args
,
2377 component_arg_for_run
->str
)) {
2378 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2382 if (impl_args
->params_arg
->len
> 0) {
2383 if (bt_value_array_append_string_element(run_args
, "--params")) {
2384 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2388 if (bt_value_array_append_string_element(run_args
,
2389 impl_args
->params_arg
->str
)) {
2390 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2395 for (i
= 0; i
< bt_value_array_get_length(impl_args
->extra_params
);
2397 const bt_value
*elem
;
2400 elem
= bt_value_array_borrow_element_by_index(impl_args
->extra_params
,
2406 BT_ASSERT(bt_value_is_string(elem
));
2407 arg
= bt_value_string_get(elem
);
2408 ret
= bt_value_array_append_string_element(run_args
, arg
);
2410 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2421 if (component_arg_for_run
) {
2422 g_string_free(component_arg_for_run
, TRUE
);
2428 /* Free the fields of a `struct implicit_component_args`. */
2431 void finalize_implicit_component_args(struct implicit_component_args
*args
)
2435 if (args
->comp_arg
) {
2436 g_string_free(args
->comp_arg
, TRUE
);
2439 if (args
->name_arg
) {
2440 g_string_free(args
->name_arg
, TRUE
);
2443 if (args
->params_arg
) {
2444 g_string_free(args
->params_arg
, TRUE
);
2447 bt_value_put_ref(args
->extra_params
);
2450 /* Destroy a dynamically-allocated `struct implicit_component_args`. */
2453 void destroy_implicit_component_args(struct implicit_component_args
*args
)
2455 finalize_implicit_component_args(args
);
2459 /* Initialize the fields of an already allocated `struct implicit_component_args`. */
2462 int init_implicit_component_args(struct implicit_component_args
*args
,
2463 const char *comp_arg
, bool exists
)
2467 args
->exists
= exists
;
2468 args
->comp_arg
= g_string_new(comp_arg
);
2469 args
->name_arg
= g_string_new(NULL
);
2470 args
->params_arg
= g_string_new(NULL
);
2471 args
->extra_params
= bt_value_array_create();
2473 if (!args
->comp_arg
|| !args
->name_arg
||
2474 !args
->params_arg
|| !args
->extra_params
) {
2476 finalize_implicit_component_args(args
);
2477 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2485 /* Dynamically allocate and initialize a `struct implicit_component_args`. */
2488 struct implicit_component_args
*create_implicit_component_args(
2489 const char *comp_arg
)
2491 struct implicit_component_args
*args
;
2494 args
= g_new(struct implicit_component_args
, 1);
2496 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2500 status
= init_implicit_component_args(args
, comp_arg
, true);
2511 void append_implicit_component_param(struct implicit_component_args
*args
,
2512 const char *key
, const char *value
)
2517 append_param_arg(args
->params_arg
, key
, value
);
2521 * Append the given parameter (`key=value`) to all component specifications
2522 * in `implicit_comp_args` (an array of `struct implicit_component_args *`)
2523 * which match `comp_arg`.
2525 * Return the number of matching components.
2529 int append_multiple_implicit_components_param(GPtrArray
*implicit_comp_args
,
2530 const char *comp_arg
, const char *key
, const char *value
)
2535 for (i
= 0; i
< implicit_comp_args
->len
; i
++) {
2536 struct implicit_component_args
*args
= implicit_comp_args
->pdata
[i
];
2538 if (strcmp(args
->comp_arg
->str
, comp_arg
) == 0) {
2539 append_implicit_component_param(args
, key
, value
);
2547 /* Escape value to make it suitable to use as a string parameter value. */
2549 gchar
*escape_string_value(const char *value
)
2554 ret
= g_string_new(NULL
);
2556 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2565 g_string_append_c(ret
, '\\');
2569 g_string_append_c(ret
, *in
);
2575 return g_string_free(ret
, FALSE
);
2579 int bt_value_to_cli_param_value_append(const bt_value
*value
, GString
*buf
)
2585 switch (bt_value_get_type(value
)) {
2586 case BT_VALUE_TYPE_STRING
:
2588 const char *str_value
= bt_value_string_get(value
);
2589 gchar
*escaped_str_value
;
2591 escaped_str_value
= escape_string_value(str_value
);
2592 if (!escaped_str_value
) {
2596 g_string_append_printf(buf
, "\"%s\"", escaped_str_value
);
2598 g_free(escaped_str_value
);
2601 case BT_VALUE_TYPE_ARRAY
: {
2602 g_string_append_c(buf
, '[');
2603 uint64_t sz
= bt_value_array_get_length(value
);
2604 for (uint64_t i
= 0; i
< sz
; i
++) {
2605 const bt_value
*item
;
2609 g_string_append(buf
, ", ");
2612 item
= bt_value_array_borrow_element_by_index_const(
2614 ret
= bt_value_to_cli_param_value_append(item
, buf
);
2620 g_string_append_c(buf
, ']');
2634 * Convert `value` to its equivalent representation as a command line parameter
2639 gchar
*bt_value_to_cli_param_value(bt_value
*value
)
2642 gchar
*result
= NULL
;
2644 buf
= g_string_new(NULL
);
2646 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2650 if (bt_value_to_cli_param_value_append(value
, buf
)) {
2654 result
= g_string_free(buf
, FALSE
);
2661 g_string_free(buf
, TRUE
);
2669 int append_parameter_to_args(bt_value
*args
, const char *key
, bt_value
*value
)
2672 BT_ASSERT(bt_value_get_type(args
) == BT_VALUE_TYPE_ARRAY
);
2677 gchar
*str_value
= NULL
;
2678 GString
*parameter
= NULL
;
2680 if (bt_value_array_append_string_element(args
, "--params")) {
2681 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2686 str_value
= bt_value_to_cli_param_value(value
);
2692 parameter
= g_string_new(NULL
);
2694 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2699 g_string_printf(parameter
, "%s=%s", key
, str_value
);
2701 if (bt_value_array_append_string_element(args
, parameter
->str
)) {
2702 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2709 g_string_free(parameter
, TRUE
);
2722 int append_string_parameter_to_args(bt_value
*args
, const char *key
, const char *value
)
2724 bt_value
*str_value
;
2727 str_value
= bt_value_string_create_init(value
);
2730 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2735 ret
= append_parameter_to_args(args
, key
, str_value
);
2738 BT_VALUE_PUT_REF_AND_RESET(str_value
);
2743 int append_implicit_component_extra_param(struct implicit_component_args
*args
,
2744 const char *key
, const char *value
)
2746 return append_string_parameter_to_args(args
->extra_params
, key
, value
);
2750 * Escapes `.`, `:`, and `\` of `input` with `\`.
2753 GString
*escape_dot_colon(const char *input
)
2755 GString
*output
= g_string_new(NULL
);
2759 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2763 for (ch
= input
; *ch
!= '\0'; ch
++) {
2764 if (*ch
== '\\' || *ch
== '.' || *ch
== ':') {
2765 g_string_append_c(output
, '\\');
2768 g_string_append_c(output
, *ch
);
2776 * Appends a --connect option to a list of arguments. `upstream_name`
2777 * and `downstream_name` are escaped with escape_dot_colon() in this
2781 int append_connect_arg(bt_value
*run_args
,
2782 const char *upstream_name
, const char *downstream_name
)
2785 GString
*e_upstream_name
= escape_dot_colon(upstream_name
);
2786 GString
*e_downstream_name
= escape_dot_colon(downstream_name
);
2787 GString
*arg
= g_string_new(NULL
);
2789 if (!e_upstream_name
|| !e_downstream_name
|| !arg
) {
2790 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2795 ret
= bt_value_array_append_string_element(run_args
, "--connect");
2797 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2802 g_string_append(arg
, e_upstream_name
->str
);
2803 g_string_append_c(arg
, ':');
2804 g_string_append(arg
, e_downstream_name
->str
);
2805 ret
= bt_value_array_append_string_element(run_args
, arg
->str
);
2807 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2814 g_string_free(arg
, TRUE
);
2817 if (e_upstream_name
) {
2818 g_string_free(e_upstream_name
, TRUE
);
2821 if (e_downstream_name
) {
2822 g_string_free(e_downstream_name
, TRUE
);
2829 * Appends the run command's --connect options for the convert command.
2832 int convert_auto_connect(bt_value
*run_args
,
2833 GList
*source_names
, GList
*filter_names
,
2837 GList
*source_at
= source_names
;
2838 GList
*filter_at
= filter_names
;
2840 GList
*sink_at
= sink_names
;
2842 BT_ASSERT(source_names
);
2843 BT_ASSERT(filter_names
);
2844 BT_ASSERT(sink_names
);
2846 /* Connect all sources to the first filter */
2847 for (source_at
= source_names
; source_at
; source_at
= g_list_next(source_at
)) {
2848 GString
*source_name
= source_at
->data
;
2849 GString
*filter_name
= filter_at
->data
;
2851 ret
= append_connect_arg(run_args
, source_name
->str
,
2858 filter_prev
= filter_at
;
2859 filter_at
= g_list_next(filter_at
);
2861 /* Connect remaining filters */
2862 for (; filter_at
; filter_prev
= filter_at
, filter_at
= g_list_next(filter_at
)) {
2863 GString
*filter_name
= filter_at
->data
;
2864 GString
*filter_prev_name
= filter_prev
->data
;
2866 ret
= append_connect_arg(run_args
, filter_prev_name
->str
,
2873 /* Connect last filter to all sinks */
2874 for (sink_at
= sink_names
; sink_at
; sink_at
= g_list_next(sink_at
)) {
2875 GString
*filter_name
= filter_prev
->data
;
2876 GString
*sink_name
= sink_at
->data
;
2878 ret
= append_connect_arg(run_args
, filter_name
->str
,
2895 int split_timerange(const char *arg
, char **begin
, char **end
)
2898 const char *ch
= arg
;
2900 GString
*g_begin
= NULL
;
2901 GString
*g_end
= NULL
;
2909 g_begin
= bt_common_string_until(ch
, "", ",", &end_pos
);
2910 if (!g_begin
|| ch
[end_pos
] != ',' || g_begin
->len
== 0) {
2916 g_end
= bt_common_string_until(ch
, "", "]", &end_pos
);
2917 if (!g_end
|| g_end
->len
== 0) {
2923 *begin
= g_begin
->str
;
2925 g_string_free(g_begin
, FALSE
);
2926 g_string_free(g_end
, FALSE
);
2936 g_string_free(g_begin
, TRUE
);
2940 g_string_free(g_end
, TRUE
);
2947 int g_list_prepend_gstring(GList
**list
, const char *string
)
2950 GString
*gs
= g_string_new(string
);
2955 BT_CLI_LOGE_APPEND_CAUSE_OOM();
2959 *list
= g_list_prepend(*list
, gs
);
2966 * Create `struct implicit_component_args` structures for each of the
2967 * source components we identified. Add them to `component_args`.
2969 * `non_opts` is an array of the non-option arguments passed on the command
2972 * `non_opt_params` is an array where each element is an array of
2973 * strings containing all the arguments to `--params` that apply to the
2974 * non-option argument at the same index. For example, if, for a
2975 * non-option argument, the following `--params` options applied:
2977 * --params=a=2 --params=b=3,c=4
2979 * its entry in `non_opt_params` would contain
2981 * ["a=2", "b=3,c=4"]
2985 int create_implicit_component_args_from_auto_discovered_sources(
2986 const struct auto_source_discovery
*auto_disc
,
2987 const bt_value
*non_opts
,
2988 const bt_value
*non_opt_params
,
2989 const bt_value
*non_opt_loglevels
,
2990 GPtrArray
*component_args
)
2992 gchar
*cc_name
= NULL
;
2993 struct implicit_component_args
*comp
= NULL
;
2997 len
= auto_disc
->results
->len
;
2999 for (i
= 0; i
< len
; i
++) {
3000 struct auto_source_discovery_result
*res
=
3001 g_ptr_array_index(auto_disc
->results
, i
);
3002 uint64_t orig_indices_i
, orig_indices_count
;
3005 cc_name
= g_strdup_printf("source.%s.%s", res
->plugin_name
, res
->source_cc_name
);
3007 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3011 comp
= create_implicit_component_args(cc_name
);
3017 * Append parameters and log levels of all the
3018 * non-option arguments that contributed to this
3019 * component instance coming into existence.
3021 orig_indices_count
= bt_value_array_get_length(res
->original_input_indices
);
3022 for (orig_indices_i
= 0; orig_indices_i
< orig_indices_count
; orig_indices_i
++) {
3023 const bt_value
*orig_idx_value
=
3024 bt_value_array_borrow_element_by_index(
3025 res
->original_input_indices
, orig_indices_i
);
3026 uint64_t orig_idx
= bt_value_integer_unsigned_get(orig_idx_value
);
3027 const bt_value
*params_array
=
3028 bt_value_array_borrow_element_by_index_const(
3029 non_opt_params
, orig_idx
);
3030 uint64_t params_i
, params_count
;
3031 const bt_value
*loglevel_value
;
3033 params_count
= bt_value_array_get_length(params_array
);
3034 for (params_i
= 0; params_i
< params_count
; params_i
++) {
3035 const bt_value
*params_value
=
3036 bt_value_array_borrow_element_by_index_const(
3037 params_array
, params_i
);
3038 const char *params
= bt_value_string_get(params_value
);
3039 bt_value_array_append_element_status append_status
;
3041 append_status
= bt_value_array_append_string_element(
3042 comp
->extra_params
, "--params");
3043 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3044 BT_CLI_LOGE_APPEND_CAUSE("Failed to append array element.");
3048 append_status
= bt_value_array_append_string_element(
3049 comp
->extra_params
, params
);
3050 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3051 BT_CLI_LOGE_APPEND_CAUSE("Failed to append array element.");
3056 loglevel_value
= bt_value_array_borrow_element_by_index_const(
3057 non_opt_loglevels
, orig_idx
);
3058 if (bt_value_get_type(loglevel_value
) == BT_VALUE_TYPE_STRING
) {
3059 const char *loglevel
= bt_value_string_get(loglevel_value
);
3060 bt_value_array_append_element_status append_status
;
3062 append_status
= bt_value_array_append_string_element(
3063 comp
->extra_params
, "--log-level");
3064 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3065 BT_CLI_LOGE_APPEND_CAUSE("Failed to append array element.");
3069 append_status
= bt_value_array_append_string_element(
3070 comp
->extra_params
, loglevel
);
3071 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3072 BT_CLI_LOGE_APPEND_CAUSE("Failed to append array element.");
3079 * If single input and a src.ctf.fs component, provide the
3080 * relative path from the path passed on the command line to the
3083 if (bt_value_array_get_length(res
->inputs
) == 1 &&
3084 strcmp(res
->plugin_name
, "ctf") == 0 &&
3085 strcmp(res
->source_cc_name
, "fs") == 0) {
3086 const bt_value
*orig_idx_value
=
3087 bt_value_array_borrow_element_by_index(
3088 res
->original_input_indices
, 0);
3089 uint64_t orig_idx
= bt_value_integer_unsigned_get(orig_idx_value
);
3090 const bt_value
*non_opt_value
=
3091 bt_value_array_borrow_element_by_index_const(
3092 non_opts
, orig_idx
);
3093 const char *non_opt
= bt_value_string_get(non_opt_value
);
3094 const bt_value
*input_value
=
3095 bt_value_array_borrow_element_by_index_const(
3097 const char *input
= bt_value_string_get(input_value
);
3099 BT_ASSERT(orig_indices_count
== 1);
3100 BT_ASSERT(g_str_has_prefix(input
, non_opt
));
3102 input
+= strlen(non_opt
);
3104 while (G_IS_DIR_SEPARATOR(*input
)) {
3108 if (strlen(input
) > 0) {
3109 append_string_parameter_to_args(comp
->extra_params
,
3110 "trace-name", input
);
3114 status
= append_parameter_to_args(comp
->extra_params
, "inputs", res
->inputs
);
3119 g_ptr_array_add(component_args
, comp
);
3133 destroy_implicit_component_args(comp
);
3140 * As we iterate the arguments to the convert command, this tracks what is the
3141 * type of the current item, to which some contextual options (e.g. --params)
3144 enum convert_current_item_type
{
3145 /* There is no current item. */
3146 CONVERT_CURRENT_ITEM_TYPE_NONE
,
3148 /* Current item is a component. */
3149 CONVERT_CURRENT_ITEM_TYPE_COMPONENT
,
3151 /* Current item is a non-option argument. */
3152 CONVERT_CURRENT_ITEM_TYPE_NON_OPT
,
3156 * Creates a Babeltrace config object from the arguments of a convert
3159 * *retcode is set to the appropriate exit code to use.
3162 struct bt_config
*bt_config_convert_from_args(int argc
, const char *argv
[],
3163 int *retcode
, const bt_value
*plugin_paths
,
3164 int *default_log_level
, const bt_interrupter
*interrupter
)
3166 enum convert_current_item_type current_item_type
=
3167 CONVERT_CURRENT_ITEM_TYPE_NONE
;
3169 struct bt_config
*cfg
= NULL
;
3170 bool got_input_format_opt
= false;
3171 bool got_output_format_opt
= false;
3172 bool trimmer_has_begin
= false;
3173 bool trimmer_has_end
= false;
3174 bool stream_intersection_mode
= false;
3175 bool print_run_args
= false;
3176 bool print_run_args_0
= false;
3177 bool print_ctf_metadata
= false;
3178 bt_value
*run_args
= NULL
;
3179 bt_value
*all_names
= NULL
;
3180 GList
*source_names
= NULL
;
3181 GList
*filter_names
= NULL
;
3182 GList
*sink_names
= NULL
;
3183 bt_value
*non_opts
= NULL
;
3184 bt_value
*non_opt_params
= NULL
;
3185 bt_value
*non_opt_loglevels
= NULL
;
3186 struct implicit_component_args implicit_ctf_output_args
= { 0 };
3187 struct implicit_component_args implicit_lttng_live_args
= { 0 };
3188 struct implicit_component_args implicit_dummy_args
= { 0 };
3189 struct implicit_component_args implicit_text_args
= { 0 };
3190 struct implicit_component_args implicit_debug_info_args
= { 0 };
3191 struct implicit_component_args implicit_muxer_args
= { 0 };
3192 struct implicit_component_args implicit_trimmer_args
= { 0 };
3193 char error_buf
[256] = { 0 };
3195 struct bt_common_lttng_live_url_parts lttng_live_url_parts
= { 0 };
3196 char *output
= NULL
;
3197 struct auto_source_discovery auto_disc
= { NULL
};
3198 GString
*auto_disc_comp_name
= NULL
;
3199 struct bt_argpar_parse_ret argpar_parse_ret
= { 0 };
3200 GString
*name_gstr
= NULL
;
3201 GString
*component_arg_for_run
= NULL
;
3202 bt_value
*live_inputs_array_val
= NULL
;
3205 * Array of `struct implicit_component_args *` created for the sources
3206 * we have auto-discovered.
3208 GPtrArray
*discovered_source_args
= NULL
;
3211 * If set, restrict automatic source discovery to this component class
3214 const char *auto_source_discovery_restrict_plugin_name
= NULL
;
3215 const char *auto_source_discovery_restrict_component_class_name
= NULL
;
3217 bool ctf_fs_source_force_clock_class_unix_epoch_origin
= false;
3218 gchar
*ctf_fs_source_clock_class_offset_arg
= NULL
;
3219 gchar
*ctf_fs_source_clock_class_offset_ns_arg
= NULL
;
3223 print_convert_usage(stdout
);
3228 if (init_implicit_component_args(&implicit_ctf_output_args
,
3229 "sink.ctf.fs", false)) {
3233 if (init_implicit_component_args(&implicit_lttng_live_args
,
3234 "source.ctf.lttng-live", false)) {
3238 if (init_implicit_component_args(&implicit_text_args
,
3239 "sink.text.pretty", false)) {
3243 if (init_implicit_component_args(&implicit_dummy_args
,
3244 "sink.utils.dummy", false)) {
3248 if (init_implicit_component_args(&implicit_debug_info_args
,
3249 "filter.lttng-utils.debug-info", false)) {
3253 if (init_implicit_component_args(&implicit_muxer_args
,
3254 "filter.utils.muxer", true)) {
3258 if (init_implicit_component_args(&implicit_trimmer_args
,
3259 "filter.utils.trimmer", false)) {
3263 all_names
= bt_value_map_create();
3265 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3269 run_args
= bt_value_array_create();
3271 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3275 component_arg_for_run
= g_string_new(NULL
);
3276 if (!component_arg_for_run
) {
3277 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3281 non_opts
= bt_value_array_create();
3283 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3287 non_opt_params
= bt_value_array_create();
3288 if (!non_opt_params
) {
3289 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3293 non_opt_loglevels
= bt_value_array_create();
3294 if (!non_opt_loglevels
) {
3295 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3299 if (auto_source_discovery_init(&auto_disc
) != 0) {
3303 discovered_source_args
=
3304 g_ptr_array_new_with_free_func((GDestroyNotify
) destroy_implicit_component_args
);
3305 if (!discovered_source_args
) {
3306 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3310 auto_disc_comp_name
= g_string_new(NULL
);
3311 if (!auto_disc_comp_name
) {
3312 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3317 * First pass: collect all arguments which need to be passed
3318 * as is to the run command. This pass can also add --name
3319 * arguments if needed to automatically name unnamed component
3322 argpar_parse_ret
= bt_argpar_parse(argc
, argv
, convert_options
, true);
3323 if (argpar_parse_ret
.error
) {
3324 BT_CLI_LOGE_APPEND_CAUSE(
3325 "While parsing `convert` command's command-line arguments: %s",
3326 argpar_parse_ret
.error
->str
);
3330 if (help_option_is_specified(&argpar_parse_ret
)) {
3331 print_convert_usage(stdout
);
3333 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
3337 for (i
= 0; i
< argpar_parse_ret
.items
->len
; i
++) {
3338 struct bt_argpar_item
*argpar_item
=
3339 g_ptr_array_index(argpar_parse_ret
.items
, i
);
3340 struct bt_argpar_item_opt
*argpar_item_opt
;
3342 char *plugin_name
= NULL
;
3343 char *comp_cls_name
= NULL
;
3346 if (argpar_item
->type
== BT_ARGPAR_ITEM_TYPE_OPT
) {
3347 argpar_item_opt
= (struct bt_argpar_item_opt
*) argpar_item
;
3348 arg
= argpar_item_opt
->arg
;
3350 switch (argpar_item_opt
->descr
->id
) {
3353 bt_component_class_type type
;
3355 current_item_type
= CONVERT_CURRENT_ITEM_TYPE_COMPONENT
;
3357 /* Parse the argument */
3358 plugin_comp_cls_names(arg
, &name
, &plugin_name
,
3359 &comp_cls_name
, &type
);
3360 if (!plugin_name
|| !comp_cls_name
) {
3361 BT_CLI_LOGE_APPEND_CAUSE(
3362 "Invalid format for --component option's argument:\n %s",
3369 * Name was given by the user, verify it isn't
3372 if (bt_value_map_has_entry(all_names
, name
)) {
3373 BT_CLI_LOGE_APPEND_CAUSE(
3374 "Duplicate component instance name:\n %s",
3379 name_gstr
= g_string_new(name
);
3381 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3385 g_string_assign(component_arg_for_run
, arg
);
3387 /* Name not given by user, generate one. */
3388 name_gstr
= get_component_auto_name(arg
, all_names
);
3393 g_string_printf(component_arg_for_run
, "%s:%s",
3394 name_gstr
->str
, arg
);
3397 if (bt_value_array_append_string_element(run_args
,
3399 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3403 if (bt_value_array_append_string_element(run_args
,
3404 component_arg_for_run
->str
)) {
3405 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3410 * Remember this name globally, for the uniqueness of
3411 * all component names.
3413 if (bt_value_map_insert_entry(all_names
,
3414 name_gstr
->str
, bt_value_null
)) {
3415 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3420 * Remember this name specifically for the type of the
3421 * component. This is to create connection arguments.
3423 * The list takes ownership of `name_gstr`.
3426 case BT_COMPONENT_CLASS_TYPE_SOURCE
:
3427 source_names
= g_list_append(source_names
, name_gstr
);
3429 case BT_COMPONENT_CLASS_TYPE_FILTER
:
3430 filter_names
= g_list_append(filter_names
, name_gstr
);
3432 case BT_COMPONENT_CLASS_TYPE_SINK
:
3433 sink_names
= g_list_append(sink_names
, name_gstr
);
3442 free(comp_cls_name
);
3445 comp_cls_name
= NULL
;
3449 if (current_item_type
== CONVERT_CURRENT_ITEM_TYPE_COMPONENT
) {
3451 * The current item is a component (--component option),
3452 * pass it directly to the run args.
3454 if (bt_value_array_append_string_element(run_args
,
3456 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3460 if (bt_value_array_append_string_element(run_args
, arg
)) {
3461 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3464 } else if (current_item_type
== CONVERT_CURRENT_ITEM_TYPE_NON_OPT
) {
3466 * The current item is a
3467 * non-option argument, record
3468 * it in `non_opt_params`.
3471 bt_value_array_append_element_status append_element_status
;
3472 uint64_t idx
= bt_value_array_get_length(non_opt_params
) - 1;
3474 array
= bt_value_array_borrow_element_by_index(non_opt_params
, idx
);
3476 append_element_status
= bt_value_array_append_string_element(array
, arg
);
3477 if (append_element_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3478 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3482 BT_CLI_LOGE_APPEND_CAUSE(
3483 "No current component (--component option) or non-option argument of which to set parameters:\n %s",
3489 if (current_item_type
== CONVERT_CURRENT_ITEM_TYPE_COMPONENT
) {
3490 if (bt_value_array_append_string_element(run_args
, "--log-level")) {
3491 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3495 if (bt_value_array_append_string_element(run_args
, arg
)) {
3496 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3499 } else if (current_item_type
== CONVERT_CURRENT_ITEM_TYPE_NON_OPT
) {
3500 uint64_t idx
= bt_value_array_get_length(non_opt_loglevels
) - 1;
3501 bt_value
*log_level_str_value
;
3503 log_level_str_value
= bt_value_string_create_init(arg
);
3504 if (!log_level_str_value
) {
3505 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3509 if (bt_value_array_set_element_by_index(non_opt_loglevels
, idx
,
3510 log_level_str_value
)) {
3511 bt_value_put_ref(log_level_str_value
);
3512 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3516 BT_CLI_LOGE_APPEND_CAUSE(
3517 "No current component (--component option) or non-option argument to assign a log level to:\n %s",
3523 case OPT_RETRY_DURATION
:
3524 if (bt_value_array_append_string_element(run_args
,
3525 "--retry-duration")) {
3526 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3530 if (bt_value_array_append_string_element(run_args
, arg
)) {
3531 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3536 case OPT_CLOCK_CYCLES
:
3537 case OPT_CLOCK_DATE
:
3538 case OPT_CLOCK_FORCE_CORRELATE
:
3540 case OPT_CLOCK_OFFSET
:
3541 case OPT_CLOCK_OFFSET_NS
:
3542 case OPT_CLOCK_SECONDS
:
3545 case OPT_DEBUG_INFO
:
3546 case OPT_DEBUG_INFO_DIR
:
3547 case OPT_DEBUG_INFO_FULL_PATH
:
3548 case OPT_DEBUG_INFO_TARGET_PREFIX
:
3551 case OPT_INPUT_FORMAT
:
3554 case OPT_OUTPUT_FORMAT
:
3557 case OPT_RUN_ARGS_0
:
3558 case OPT_STREAM_INTERSECTION
:
3561 /* Ignore in this pass */
3564 BT_CLI_LOGE_APPEND_CAUSE("Unknown command-line option specified (option code %d).",
3565 argpar_item_opt
->descr
->id
);
3568 } else if (argpar_item
->type
== BT_ARGPAR_ITEM_TYPE_NON_OPT
) {
3569 struct bt_argpar_item_non_opt
*argpar_item_non_opt
;
3570 bt_value_array_append_element_status append_status
;
3572 current_item_type
= CONVERT_CURRENT_ITEM_TYPE_NON_OPT
;
3574 argpar_item_non_opt
= (struct bt_argpar_item_non_opt
*) argpar_item
;
3576 append_status
= bt_value_array_append_string_element(non_opts
,
3577 argpar_item_non_opt
->arg
);
3578 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3579 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3583 append_status
= bt_value_array_append_empty_array_element(
3584 non_opt_params
, NULL
);
3585 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3586 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3590 append_status
= bt_value_array_append_element(non_opt_loglevels
, bt_value_null
);
3591 if (append_status
!= BT_VALUE_ARRAY_APPEND_ELEMENT_STATUS_OK
) {
3592 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3601 * Second pass: transform the convert-specific options and
3602 * arguments into implicit component instances for the run
3605 for (i
= 0; i
< argpar_parse_ret
.items
->len
; i
++) {
3606 struct bt_argpar_item
*argpar_item
=
3607 g_ptr_array_index(argpar_parse_ret
.items
, i
);
3608 struct bt_argpar_item_opt
*argpar_item_opt
;
3611 if (argpar_item
->type
!= BT_ARGPAR_ITEM_TYPE_OPT
) {
3615 argpar_item_opt
= (struct bt_argpar_item_opt
*) argpar_item
;
3616 arg
= argpar_item_opt
->arg
;
3618 switch (argpar_item_opt
->descr
->id
) {
3620 if (trimmer_has_begin
) {
3621 printf("At --begin option: --begin or --timerange option already specified\n %s\n",
3626 trimmer_has_begin
= true;
3627 ret
= append_implicit_component_extra_param(
3628 &implicit_trimmer_args
, "begin", arg
);
3629 implicit_trimmer_args
.exists
= true;
3635 if (trimmer_has_end
) {
3636 printf("At --end option: --end or --timerange option already specified\n %s\n",
3641 trimmer_has_end
= true;
3642 ret
= append_implicit_component_extra_param(
3643 &implicit_trimmer_args
, "end", arg
);
3644 implicit_trimmer_args
.exists
= true;
3654 if (trimmer_has_begin
|| trimmer_has_end
) {
3655 printf("At --timerange option: --begin, --end, or --timerange option already specified\n %s\n",
3660 ret
= split_timerange(arg
, &begin
, &end
);
3662 BT_CLI_LOGE_APPEND_CAUSE("Invalid --timerange option's argument: expecting BEGIN,END or [BEGIN,END]:\n %s",
3667 ret
= append_implicit_component_extra_param(
3668 &implicit_trimmer_args
, "begin", begin
);
3669 ret
|= append_implicit_component_extra_param(
3670 &implicit_trimmer_args
, "end", end
);
3671 implicit_trimmer_args
.exists
= true;
3679 case OPT_CLOCK_CYCLES
:
3680 append_implicit_component_param(
3681 &implicit_text_args
, "clock-cycles", "yes");
3682 implicit_text_args
.exists
= true;
3684 case OPT_CLOCK_DATE
:
3685 append_implicit_component_param(
3686 &implicit_text_args
, "clock-date", "yes");
3687 implicit_text_args
.exists
= true;
3689 case OPT_CLOCK_FORCE_CORRELATE
:
3690 ctf_fs_source_force_clock_class_unix_epoch_origin
= true;
3693 append_implicit_component_param(
3694 &implicit_text_args
, "clock-gmt", "yes");
3695 append_implicit_component_param(
3696 &implicit_trimmer_args
, "gmt", "yes");
3697 implicit_text_args
.exists
= true;
3699 case OPT_CLOCK_OFFSET
:
3700 if (ctf_fs_source_clock_class_offset_arg
) {
3701 BT_CLI_LOGE_APPEND_CAUSE("Duplicate --clock-offset option\n");
3705 ctf_fs_source_clock_class_offset_arg
= g_strdup(arg
);
3706 if (!ctf_fs_source_clock_class_offset_arg
) {
3707 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3711 case OPT_CLOCK_OFFSET_NS
:
3712 if (ctf_fs_source_clock_class_offset_ns_arg
) {
3713 BT_CLI_LOGE_APPEND_CAUSE("Duplicate --clock-offset-ns option\n");
3717 ctf_fs_source_clock_class_offset_ns_arg
= g_strdup(arg
);
3718 if (!ctf_fs_source_clock_class_offset_ns_arg
) {
3719 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3723 case OPT_CLOCK_SECONDS
:
3724 append_implicit_component_param(
3725 &implicit_text_args
, "clock-seconds", "yes");
3726 implicit_text_args
.exists
= true;
3729 implicit_text_args
.exists
= true;
3730 ret
= append_implicit_component_extra_param(
3731 &implicit_text_args
, "color", arg
);
3736 case OPT_DEBUG_INFO
:
3737 implicit_debug_info_args
.exists
= true;
3739 case OPT_DEBUG_INFO_DIR
:
3740 implicit_debug_info_args
.exists
= true;
3741 ret
= append_implicit_component_extra_param(
3742 &implicit_debug_info_args
, "debug-info-dir", arg
);
3747 case OPT_DEBUG_INFO_FULL_PATH
:
3748 implicit_debug_info_args
.exists
= true;
3749 append_implicit_component_param(
3750 &implicit_debug_info_args
, "full-path", "yes");
3752 case OPT_DEBUG_INFO_TARGET_PREFIX
:
3753 implicit_debug_info_args
.exists
= true;
3754 ret
= append_implicit_component_extra_param(
3755 &implicit_debug_info_args
,
3756 "target-prefix", arg
);
3763 bt_value
*fields
= fields_from_arg(arg
);
3769 implicit_text_args
.exists
= true;
3770 ret
= insert_flat_params_from_array(
3771 implicit_text_args
.params_arg
,
3773 bt_value_put_ref(fields
);
3781 bt_value
*names
= names_from_arg(arg
);
3787 implicit_text_args
.exists
= true;
3788 ret
= insert_flat_params_from_array(
3789 implicit_text_args
.params_arg
,
3791 bt_value_put_ref(names
);
3798 append_implicit_component_param(
3799 &implicit_text_args
, "no-delta", "yes");
3800 implicit_text_args
.exists
= true;
3802 case OPT_INPUT_FORMAT
:
3803 if (got_input_format_opt
) {
3804 BT_CLI_LOGE_APPEND_CAUSE("Duplicate --input-format option.");
3808 got_input_format_opt
= true;
3810 if (strcmp(arg
, "ctf") == 0) {
3811 auto_source_discovery_restrict_plugin_name
= "ctf";
3812 auto_source_discovery_restrict_component_class_name
= "fs";
3813 } else if (strcmp(arg
, "lttng-live") == 0) {
3814 auto_source_discovery_restrict_plugin_name
= "ctf";
3815 auto_source_discovery_restrict_component_class_name
= "lttng-live";
3816 implicit_lttng_live_args
.exists
= true;
3818 BT_CLI_LOGE_APPEND_CAUSE("Unknown legacy input format:\n %s",
3823 case OPT_OUTPUT_FORMAT
:
3824 if (got_output_format_opt
) {
3825 BT_CLI_LOGE_APPEND_CAUSE("Duplicate --output-format option.");
3829 got_output_format_opt
= true;
3831 if (strcmp(arg
, "text") == 0) {
3832 implicit_text_args
.exists
= true;
3833 } else if (strcmp(arg
, "ctf") == 0) {
3834 implicit_ctf_output_args
.exists
= true;
3835 } else if (strcmp(arg
, "dummy") == 0) {
3836 implicit_dummy_args
.exists
= true;
3837 } else if (strcmp(arg
, "ctf-metadata") == 0) {
3838 print_ctf_metadata
= true;
3840 BT_CLI_LOGE_APPEND_CAUSE("Unknown legacy output format:\n %s",
3847 BT_CLI_LOGE_APPEND_CAUSE("Duplicate --output option");
3851 output
= strdup(arg
);
3853 BT_CLI_LOGE_APPEND_CAUSE_OOM();
3858 if (print_run_args_0
) {
3859 BT_CLI_LOGE_APPEND_CAUSE("Cannot specify --run-args and --run-args-0.");
3863 print_run_args
= true;
3865 case OPT_RUN_ARGS_0
:
3866 if (print_run_args
) {
3867 BT_CLI_LOGE_APPEND_CAUSE("Cannot specify --run-args and --run-args-0.");
3871 print_run_args_0
= true;
3873 case OPT_STREAM_INTERSECTION
:
3875 * Applies to all traces implementing the
3876 * babeltrace.trace-infos query.
3878 stream_intersection_mode
= true;
3881 *default_log_level
=
3882 logging_level_min(*default_log_level
, BT_LOG_INFO
);
3885 *default_log_level
=
3886 logging_level_min(*default_log_level
, BT_LOG_TRACE
);
3893 set_auto_log_levels(default_log_level
);
3896 * Legacy behaviour: --verbose used to make the `text` output
3897 * format print more information. --verbose is now equivalent to
3898 * the INFO log level, which is why we compare to `BT_LOG_INFO`
3901 if (*default_log_level
== BT_LOG_INFO
) {
3902 append_implicit_component_param(&implicit_text_args
,
3906 /* Print CTF metadata or print LTTng live sessions */
3907 if (print_ctf_metadata
) {
3908 const bt_value
*bt_val_non_opt
;
3910 if (bt_value_array_is_empty(non_opts
)) {
3911 BT_CLI_LOGE_APPEND_CAUSE("--output-format=ctf-metadata specified without a path.");
3915 if (bt_value_array_get_length(non_opts
) > 1) {
3916 BT_CLI_LOGE_APPEND_CAUSE("Too many paths specified for --output-format=ctf-metadata.");
3920 cfg
= bt_config_print_ctf_metadata_create(plugin_paths
);
3925 bt_val_non_opt
= bt_value_array_borrow_element_by_index_const(non_opts
, 0);
3926 g_string_assign(cfg
->cmd_data
.print_ctf_metadata
.path
,
3927 bt_value_string_get(bt_val_non_opt
));
3931 cfg
->cmd_data
.print_ctf_metadata
.output_path
,
3939 * If -o ctf was specified, make sure an output path (--output)
3940 * was also specified. --output does not imply -o ctf because
3941 * it's also used for the default, implicit -o text if -o ctf
3944 if (implicit_ctf_output_args
.exists
) {
3946 BT_CLI_LOGE_APPEND_CAUSE("--output-format=ctf specified without --output (trace output path).");
3951 * At this point we know that -o ctf AND --output were
3952 * specified. Make sure that no options were specified
3953 * which would imply -o text because --output would be
3954 * ambiguous in this case. For example, this is wrong:
3956 * babeltrace2 --names=all -o ctf --output=/tmp/path my-trace
3958 * because --names=all implies -o text, and --output
3959 * could apply to both the sink.text.pretty and
3960 * sink.ctf.fs implicit components.
3962 if (implicit_text_args
.exists
) {
3963 BT_CLI_LOGE_APPEND_CAUSE("Ambiguous --output option: --output-format=ctf specified but another option implies --output-format=text.");
3969 * If -o dummy and -o ctf were not specified, and if there are
3970 * no explicit sink components, then use an implicit
3971 * `sink.text.pretty` component.
3973 if (!implicit_dummy_args
.exists
&& !implicit_ctf_output_args
.exists
&&
3975 implicit_text_args
.exists
= true;
3979 * Set implicit `sink.text.pretty` or `sink.ctf.fs` component's
3980 * `path` parameter if --output was specified.
3983 if (implicit_text_args
.exists
) {
3984 append_implicit_component_extra_param(&implicit_text_args
,
3986 } else if (implicit_ctf_output_args
.exists
) {
3987 append_implicit_component_extra_param(&implicit_ctf_output_args
,
3992 /* Decide where the non-option argument(s) go */
3993 if (bt_value_array_get_length(non_opts
) > 0) {
3994 if (implicit_lttng_live_args
.exists
) {
3995 const bt_value
*bt_val_non_opt
;
3997 if (bt_value_array_get_length(non_opts
) > 1) {
3998 BT_CLI_LOGE_APPEND_CAUSE("Too many URLs specified for --input-format=lttng-live.");
4002 bt_val_non_opt
= bt_value_array_borrow_element_by_index_const(non_opts
, 0);
4003 lttng_live_url_parts
=
4004 bt_common_parse_lttng_live_url(bt_value_string_get(bt_val_non_opt
),
4005 error_buf
, sizeof(error_buf
));
4006 if (!lttng_live_url_parts
.proto
) {
4007 BT_CLI_LOGE_APPEND_CAUSE("Invalid LTTng live URL format: %s.",
4012 if (!lttng_live_url_parts
.session_name
) {
4013 /* Print LTTng live sessions */
4014 cfg
= bt_config_print_lttng_live_sessions_create(
4020 g_string_assign(cfg
->cmd_data
.print_lttng_live_sessions
.url
,
4021 bt_value_string_get(bt_val_non_opt
));
4025 cfg
->cmd_data
.print_lttng_live_sessions
.output_path
,
4032 live_inputs_array_val
= bt_value_array_create();
4033 if (!live_inputs_array_val
) {
4034 BT_CLI_LOGE_APPEND_CAUSE_OOM();
4038 if (bt_value_array_append_string_element(
4039 live_inputs_array_val
,
4040 bt_value_string_get(bt_val_non_opt
))) {
4041 BT_CLI_LOGE_APPEND_CAUSE_OOM();
4045 ret
= append_parameter_to_args(
4046 implicit_lttng_live_args
.extra_params
,
4047 "inputs", live_inputs_array_val
);
4052 ret
= append_implicit_component_extra_param(
4053 &implicit_lttng_live_args
,
4054 "session-not-found-action", "end");
4060 size_t plugin_count
;
4061 const bt_plugin
**plugins
;
4062 const bt_plugin
*plugin
;
4064 status
= require_loaded_plugins(plugin_paths
);
4069 if (auto_source_discovery_restrict_plugin_name
) {
4071 plugin
= find_loaded_plugin(auto_source_discovery_restrict_plugin_name
);
4074 plugin_count
= get_loaded_plugins_count();
4075 plugins
= borrow_loaded_plugins();
4078 status
= auto_discover_source_components(non_opts
, plugins
, plugin_count
,
4079 auto_source_discovery_restrict_component_class_name
,
4080 *default_log_level
, &auto_disc
, interrupter
);
4083 if (status
== AUTO_SOURCE_DISCOVERY_STATUS_INTERRUPTED
) {
4084 BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_UNKNOWN(
4085 "Babeltrace CLI", "Automatic source discovery interrupted by the user");
4090 status
= create_implicit_component_args_from_auto_discovered_sources(
4091 &auto_disc
, non_opts
, non_opt_params
, non_opt_loglevels
,
4092 discovered_source_args
);
4101 * If --clock-force-correlated was given, apply it to any src.ctf.fs
4104 if (ctf_fs_source_force_clock_class_unix_epoch_origin
) {
4107 n
= append_multiple_implicit_components_param(
4108 discovered_source_args
, "source.ctf.fs", "force-clock-class-origin-unix-epoch",
4111 BT_CLI_LOGE_APPEND_CAUSE("--clock-force-correlate specified, but no source.ctf.fs component instantiated.");
4116 /* If --clock-offset was given, apply it to any src.ctf.fs component. */
4117 if (ctf_fs_source_clock_class_offset_arg
) {
4120 n
= append_multiple_implicit_components_param(
4121 discovered_source_args
, "source.ctf.fs", "clock-class-offset-s",
4122 ctf_fs_source_clock_class_offset_arg
);
4125 BT_CLI_LOGE_APPEND_CAUSE("--clock-offset specified, but no source.ctf.fs component instantiated.");
4130 /* If --clock-offset-ns was given, apply it to any src.ctf.fs component. */
4131 if (ctf_fs_source_clock_class_offset_ns_arg
) {
4134 n
= append_multiple_implicit_components_param(
4135 discovered_source_args
, "source.ctf.fs", "clock-class-offset-ns",
4136 ctf_fs_source_clock_class_offset_ns_arg
);
4139 BT_CLI_LOGE_APPEND_CAUSE("--clock-offset-ns specified, but no source.ctf.fs component instantiated.");
4145 * If the implicit `source.ctf.lttng-live` component exists,
4146 * make sure there's at least one non-option argument (which is
4149 if (implicit_lttng_live_args
.exists
&& bt_value_array_is_empty(non_opts
)) {
4150 BT_CLI_LOGE_APPEND_CAUSE("Missing URL for implicit `%s` component.",
4151 implicit_lttng_live_args
.comp_arg
->str
);
4155 /* Assign names to implicit components */
4156 for (i
= 0; i
< discovered_source_args
->len
; i
++) {
4157 struct implicit_component_args
*args
;
4160 args
= discovered_source_args
->pdata
[i
];
4162 g_string_printf(auto_disc_comp_name
, "auto-disc-%s", args
->comp_arg
->str
);
4164 /* Give it a name like `auto-disc-src-ctf-fs`. */
4165 for (j
= 0; j
< auto_disc_comp_name
->len
; j
++) {
4166 if (auto_disc_comp_name
->str
[j
] == '.') {
4167 auto_disc_comp_name
->str
[j
] = '-';
4171 ret
= assign_name_to_implicit_component(args
,
4172 auto_disc_comp_name
->str
, all_names
, &source_names
, true);
4178 ret
= assign_name_to_implicit_component(&implicit_lttng_live_args
,
4179 "lttng-live", all_names
, &source_names
, true);
4184 ret
= assign_name_to_implicit_component(&implicit_text_args
,
4185 "pretty", all_names
, &sink_names
, true);
4190 ret
= assign_name_to_implicit_component(&implicit_ctf_output_args
,
4191 "sink-ctf-fs", all_names
, &sink_names
, true);
4196 ret
= assign_name_to_implicit_component(&implicit_dummy_args
,
4197 "dummy", all_names
, &sink_names
, true);
4202 ret
= assign_name_to_implicit_component(&implicit_muxer_args
,
4203 "muxer", all_names
, NULL
, false);
4208 ret
= assign_name_to_implicit_component(&implicit_trimmer_args
,
4209 "trimmer", all_names
, NULL
, false);
4214 ret
= assign_name_to_implicit_component(&implicit_debug_info_args
,
4215 "debug-info", all_names
, NULL
, false);
4220 /* Make sure there's at least one source and one sink */
4221 if (!source_names
) {
4222 BT_CLI_LOGE_APPEND_CAUSE("No source component.");
4227 BT_CLI_LOGE_APPEND_CAUSE("No sink component.");
4231 /* Make sure there's a single sink component */
4232 if (g_list_length(sink_names
) != 1) {
4233 BT_CLI_LOGE_APPEND_CAUSE(
4234 "More than one sink component specified.");
4239 * Prepend the muxer, the trimmer, and the debug info to the
4240 * filter chain so that we have:
4242 * sources -> muxer -> [trimmer] -> [debug info] ->
4243 * [user filters] -> sinks
4245 if (implicit_debug_info_args
.exists
) {
4246 if (g_list_prepend_gstring(&filter_names
,
4247 implicit_debug_info_args
.name_arg
->str
)) {
4252 if (implicit_trimmer_args
.exists
) {
4253 if (g_list_prepend_gstring(&filter_names
,
4254 implicit_trimmer_args
.name_arg
->str
)) {
4259 if (g_list_prepend_gstring(&filter_names
,
4260 implicit_muxer_args
.name_arg
->str
)) {
4265 * Append the equivalent run arguments for the implicit
4268 for (i
= 0; i
< discovered_source_args
->len
; i
++) {
4269 struct implicit_component_args
*args
=
4270 discovered_source_args
->pdata
[i
];
4272 ret
= append_run_args_for_implicit_component(args
, run_args
);
4278 ret
= append_run_args_for_implicit_component(&implicit_lttng_live_args
,
4284 ret
= append_run_args_for_implicit_component(&implicit_text_args
,
4290 ret
= append_run_args_for_implicit_component(&implicit_ctf_output_args
,
4296 ret
= append_run_args_for_implicit_component(&implicit_dummy_args
,
4302 ret
= append_run_args_for_implicit_component(&implicit_muxer_args
,
4308 ret
= append_run_args_for_implicit_component(&implicit_trimmer_args
,
4314 ret
= append_run_args_for_implicit_component(&implicit_debug_info_args
,
4320 /* Auto-connect components */
4321 ret
= convert_auto_connect(run_args
, source_names
, filter_names
,
4324 BT_CLI_LOGE_APPEND_CAUSE("Cannot auto-connect components.");
4329 * We have all the run command arguments now. Depending on
4330 * --run-args, we pass this to the run command or print them
4333 if (print_run_args
|| print_run_args_0
) {
4334 if (stream_intersection_mode
) {
4335 BT_CLI_LOGE_APPEND_CAUSE("Cannot specify --stream-intersection with --run-args or --run-args-0.");
4339 for (i
= 0; i
< bt_value_array_get_length(run_args
); i
++) {
4340 const bt_value
*arg_value
=
4341 bt_value_array_borrow_element_by_index(run_args
,
4344 GString
*quoted
= NULL
;
4345 const char *arg_to_print
;
4347 BT_ASSERT(arg_value
);
4348 arg
= bt_value_string_get(arg_value
);
4350 if (print_run_args
) {
4351 quoted
= bt_common_shell_quote(arg
, true);
4356 arg_to_print
= quoted
->str
;
4361 printf("%s", arg_to_print
);
4364 g_string_free(quoted
, TRUE
);
4367 if (i
< bt_value_array_get_length(run_args
) - 1) {
4368 if (print_run_args
) {
4377 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
4381 cfg
= bt_config_run_from_args_array(run_args
, retcode
,
4382 plugin_paths
, *default_log_level
);
4387 cfg
->cmd_data
.run
.stream_intersection_mode
= stream_intersection_mode
;
4392 BT_OBJECT_PUT_REF_AND_RESET(cfg
);
4395 bt_argpar_parse_ret_fini(&argpar_parse_ret
);
4399 if (component_arg_for_run
) {
4400 g_string_free(component_arg_for_run
, TRUE
);
4404 g_string_free(name_gstr
, TRUE
);
4407 bt_value_put_ref(live_inputs_array_val
);
4408 bt_value_put_ref(run_args
);
4409 bt_value_put_ref(all_names
);
4410 destroy_glist_of_gstring(source_names
);
4411 destroy_glist_of_gstring(filter_names
);
4412 destroy_glist_of_gstring(sink_names
);
4413 bt_value_put_ref(non_opt_params
);
4414 bt_value_put_ref(non_opt_loglevels
);
4415 bt_value_put_ref(non_opts
);
4416 finalize_implicit_component_args(&implicit_ctf_output_args
);
4417 finalize_implicit_component_args(&implicit_lttng_live_args
);
4418 finalize_implicit_component_args(&implicit_dummy_args
);
4419 finalize_implicit_component_args(&implicit_text_args
);
4420 finalize_implicit_component_args(&implicit_debug_info_args
);
4421 finalize_implicit_component_args(&implicit_muxer_args
);
4422 finalize_implicit_component_args(&implicit_trimmer_args
);
4423 bt_common_destroy_lttng_live_url_parts(<tng_live_url_parts
);
4424 auto_source_discovery_fini(&auto_disc
);
4426 if (discovered_source_args
) {
4427 g_ptr_array_free(discovered_source_args
, TRUE
);
4430 g_free(ctf_fs_source_clock_class_offset_arg
);
4431 g_free(ctf_fs_source_clock_class_offset_ns_arg
);
4433 if (auto_disc_comp_name
) {
4434 g_string_free(auto_disc_comp_name
, TRUE
);
4441 * Prints the Babeltrace 2.x general usage.
4444 void print_gen_usage(FILE *fp
)
4446 fprintf(fp
, "Usage: babeltrace2 [GENERAL OPTIONS] [COMMAND] [COMMAND ARGUMENTS]\n");
4448 fprintf(fp
, "General options:\n");
4450 fprintf(fp
, " -d, --debug Enable debug mode (same as --log-level=T)\n");
4451 fprintf(fp
, " -h, --help Show this help and quit\n");
4452 fprintf(fp
, " -l, --log-level=LVL Set the default log level to LVL (`N`, `T`, `D`,\n");
4453 fprintf(fp
, " `I`, `W` (default), `E`, or `F`)\n");
4454 fprintf(fp
, " --omit-home-plugin-path Omit home plugins from plugin search path\n");
4455 fprintf(fp
, " (~/.local/lib/babeltrace2/plugins)\n");
4456 fprintf(fp
, " --omit-system-plugin-path Omit system plugins from plugin search path\n");
4457 fprintf(fp
, " --plugin-path=PATH[:PATH]... Add PATH to the list of paths from which\n");
4458 fprintf(fp
, " dynamic plugins can be loaded\n");
4459 fprintf(fp
, " -v, --verbose Enable verbose mode (same as --log-level=I)\n");
4460 fprintf(fp
, " -V, --version Show version and quit\n");
4462 fprintf(fp
, "Available commands:\n");
4464 fprintf(fp
, " convert Convert and trim traces (default)\n");
4465 fprintf(fp
, " help Get help for a plugin or a component class\n");
4466 fprintf(fp
, " list-plugins List available plugins and their content\n");
4467 fprintf(fp
, " query Query objects from a component class\n");
4468 fprintf(fp
, " run Build a processing graph and run it\n");
4470 fprintf(fp
, "Use `babeltrace2 COMMAND --help` to show the help of COMMAND.\n");
4473 struct bt_config
*bt_config_cli_args_create(int argc
, const char *argv
[],
4474 int *retcode
, bool omit_system_plugin_path
,
4475 bool omit_home_plugin_path
,
4476 const bt_value
*initial_plugin_paths
,
4477 const bt_interrupter
*interrupter
)
4479 struct bt_config
*config
= NULL
;
4482 const char **top_level_argv
;
4483 int command_argc
= -1;
4484 const char **command_argv
= NULL
;
4485 const char *command_name
= NULL
;
4486 int default_log_level
= -1;
4487 struct bt_argpar_parse_ret argpar_parse_ret
= { 0 };
4488 bt_value
*plugin_paths
= NULL
;
4490 /* Top-level option descriptions. */
4491 static const struct bt_argpar_opt_descr descrs
[] = {
4492 { OPT_DEBUG
, 'd', "debug", false },
4493 { OPT_HELP
, 'h', "help", false },
4494 { OPT_LOG_LEVEL
, 'l', "log-level", true },
4495 { OPT_VERBOSE
, 'v', "verbose", false },
4496 { OPT_VERSION
, 'V', "version", false},
4497 { OPT_OMIT_HOME_PLUGIN_PATH
, '\0', "omit-home-plugin-path", false },
4498 { OPT_OMIT_SYSTEM_PLUGIN_PATH
, '\0', "omit-system-plugin-path", false },
4499 { OPT_PLUGIN_PATH
, '\0', "plugin-path", true },
4500 BT_ARGPAR_OPT_DESCR_SENTINEL
4504 COMMAND_TYPE_NONE
= -1,
4505 COMMAND_TYPE_RUN
= 0,
4506 COMMAND_TYPE_CONVERT
,
4507 COMMAND_TYPE_LIST_PLUGINS
,
4510 } command_type
= COMMAND_TYPE_NONE
;
4514 if (!initial_plugin_paths
) {
4515 plugin_paths
= bt_value_array_create();
4516 if (!plugin_paths
) {
4520 bt_value_copy_status copy_status
= bt_value_copy(
4521 initial_plugin_paths
, &plugin_paths
);
4527 BT_ASSERT(plugin_paths
);
4530 * The `BABELTRACE_PLUGIN_PATH` paths take precedence over the
4531 * `--plugin-path` option's paths, so append it now before
4532 * parsing the general options.
4534 if (append_env_var_plugin_paths(plugin_paths
)) {
4541 print_gen_usage(stdout
);
4545 /* Skip first argument, the name of the program. */
4546 top_level_argc
= argc
- 1;
4547 top_level_argv
= argv
+ 1;
4548 argpar_parse_ret
= bt_argpar_parse(top_level_argc
, top_level_argv
,
4551 if (argpar_parse_ret
.error
) {
4552 BT_CLI_LOGE_APPEND_CAUSE(
4553 "While parsing command-line arguments: %s",
4554 argpar_parse_ret
.error
->str
);
4558 for (i
= 0; i
< argpar_parse_ret
.items
->len
; i
++) {
4559 struct bt_argpar_item
*item
;
4561 item
= g_ptr_array_index(argpar_parse_ret
.items
, i
);
4563 if (item
->type
== BT_ARGPAR_ITEM_TYPE_OPT
) {
4564 struct bt_argpar_item_opt
*item_opt
=
4565 (struct bt_argpar_item_opt
*) item
;
4567 switch (item_opt
->descr
->id
) {
4570 logging_level_min(default_log_level
, BT_LOG_TRACE
);
4574 logging_level_min(default_log_level
, BT_LOG_INFO
);
4578 int level
= bt_log_get_level_from_string(item_opt
->arg
);
4581 BT_CLI_LOGE_APPEND_CAUSE(
4582 "Invalid argument for --log-level option:\n %s",
4588 logging_level_min(default_log_level
, level
);
4591 case OPT_PLUGIN_PATH
:
4592 if (bt_config_append_plugin_paths_check_setuid_setgid(
4593 plugin_paths
, item_opt
->arg
)) {
4597 case OPT_OMIT_SYSTEM_PLUGIN_PATH
:
4598 omit_system_plugin_path
= true;
4600 case OPT_OMIT_HOME_PLUGIN_PATH
:
4601 omit_home_plugin_path
= true;
4607 print_gen_usage(stdout
);
4610 } else if (item
->type
== BT_ARGPAR_ITEM_TYPE_NON_OPT
) {
4611 struct bt_argpar_item_non_opt
*item_non_opt
=
4612 (struct bt_argpar_item_non_opt
*) item
;
4614 * First unknown argument: is it a known command
4618 top_level_argc
- item_non_opt
->orig_index
- 1;
4620 &top_level_argv
[item_non_opt
->orig_index
+ 1];
4622 if (strcmp(item_non_opt
->arg
, "convert") == 0) {
4623 command_type
= COMMAND_TYPE_CONVERT
;
4624 } else if (strcmp(item_non_opt
->arg
, "list-plugins") == 0) {
4625 command_type
= COMMAND_TYPE_LIST_PLUGINS
;
4626 } else if (strcmp(item_non_opt
->arg
, "help") == 0) {
4627 command_type
= COMMAND_TYPE_HELP
;
4628 } else if (strcmp(item_non_opt
->arg
, "query") == 0) {
4629 command_type
= COMMAND_TYPE_QUERY
;
4630 } else if (strcmp(item_non_opt
->arg
, "run") == 0) {
4631 command_type
= COMMAND_TYPE_RUN
;
4634 * Non-option argument, but not a known
4635 * command name: assume the default
4636 * `convert` command.
4638 command_type
= COMMAND_TYPE_CONVERT
;
4639 command_name
= "convert";
4647 if (command_type
== COMMAND_TYPE_NONE
) {
4648 if (argpar_parse_ret
.ingested_orig_args
== top_level_argc
) {
4650 * We only got non-help, non-version general options
4651 * like --verbose and --debug, without any other
4652 * arguments, so we can't do anything useful: print the
4655 print_gen_usage(stdout
);
4660 * We stopped on an unknown option argument (and therefore
4661 * didn't see a command name). Assume `convert` command.
4663 command_type
= COMMAND_TYPE_CONVERT
;
4664 command_name
= "convert";
4666 top_level_argc
- argpar_parse_ret
.ingested_orig_args
;
4668 &top_level_argv
[argpar_parse_ret
.ingested_orig_args
];
4671 BT_ASSERT(command_argv
);
4672 BT_ASSERT(command_argc
>= 0);
4675 * For all commands other than `convert`, we now know the log level to
4676 * use, so we can apply it with `set_auto_log_levels`.
4678 * The convert command has `--debug` and `--verbose` arguments that are
4679 * equivalent to the top-level arguments of the same name. So after it
4680 * has parsed its arguments, `bt_config_convert_from_args` calls
4681 * `set_auto_log_levels` itself.
4683 if (command_type
!= COMMAND_TYPE_CONVERT
) {
4684 set_auto_log_levels(&default_log_level
);
4688 * At this point, `plugin_paths` contains the initial plugin
4689 * paths, the paths from the `BABELTRACE_PLUGIN_PATH` paths, and
4690 * the paths from the `--plugin-path` option.
4692 * Now append the user and system plugin paths.
4694 if (append_home_and_system_plugin_paths(plugin_paths
,
4695 omit_system_plugin_path
, omit_home_plugin_path
)) {
4699 switch (command_type
) {
4700 case COMMAND_TYPE_RUN
:
4701 config
= bt_config_run_from_args(command_argc
, command_argv
,
4702 retcode
, plugin_paths
,
4705 case COMMAND_TYPE_CONVERT
:
4706 config
= bt_config_convert_from_args(command_argc
, command_argv
,
4707 retcode
, plugin_paths
, &default_log_level
, interrupter
);
4709 case COMMAND_TYPE_LIST_PLUGINS
:
4710 config
= bt_config_list_plugins_from_args(command_argc
,
4711 command_argv
, retcode
, plugin_paths
);
4713 case COMMAND_TYPE_HELP
:
4714 config
= bt_config_help_from_args(command_argc
,
4715 command_argv
, retcode
, plugin_paths
,
4718 case COMMAND_TYPE_QUERY
:
4719 config
= bt_config_query_from_args(command_argc
,
4720 command_argv
, retcode
, plugin_paths
,
4728 BT_ASSERT(default_log_level
>= BT_LOG_TRACE
);
4729 config
->log_level
= default_log_level
;
4730 config
->command_name
= command_name
;
4739 bt_argpar_parse_ret_fini(&argpar_parse_ret
);
4740 bt_value_put_ref(plugin_paths
);