Commit | Line | Data |
---|---|---|
c1870f57 | 1 | /* |
c1870f57 | 2 | * Copyright 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com> |
9009cc24 | 3 | * Copyright 2017 - Philippe Proulx <pproulx@efficios.com> |
c1870f57 JG |
4 | * |
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
6 | * of this software and associated documentation files (the "Software"), to deal | |
7 | * in the Software without restriction, including without limitation the rights | |
8 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
9 | * copies of the Software, and to permit persons to whom the Software is | |
10 | * furnished to do so, subject to the following conditions: | |
11 | * | |
12 | * The above copyright notice and this permission notice shall be included in | |
13 | * all copies or substantial portions of the Software. | |
14 | * | |
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
20 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
21 | * SOFTWARE. | |
22 | */ | |
23 | ||
ce141536 | 24 | #include <babeltrace/babeltrace.h> |
5a3ee633 | 25 | #include "babeltrace-cfg.h" |
9009cc24 PP |
26 | #include "babeltrace-cfg-cli-args.h" |
27 | #include "babeltrace-cfg-cli-args-default.h" | |
c1870f57 | 28 | |
ce406405 PP |
29 | #ifdef ENABLE_DEBUG_INFO |
30 | # define BT_ENABLE_DEBUG_INFO 1 | |
31 | #else | |
32 | # define BT_ENABLE_DEBUG_INFO 0 | |
33 | #endif | |
34 | ||
c1870f57 JG |
35 | #ifdef BT_SET_DEFAULT_IN_TREE_CONFIGURATION |
36 | ||
9009cc24 | 37 | struct bt_config *bt_config_cli_args_create_with_default(int argc, |
290725f7 | 38 | const char *argv[], int *retcode) |
c1870f57 | 39 | { |
8eee8ea2 | 40 | bt_value *initial_plugin_paths; |
290725f7 | 41 | struct bt_config *cfg = NULL; |
c1870f57 JG |
42 | int ret; |
43 | ||
ce141536 | 44 | initial_plugin_paths = bt_value_array_create(); |
290725f7 PP |
45 | if (!initial_plugin_paths) { |
46 | goto error; | |
47 | } | |
48 | ||
49 | ret = bt_config_append_plugin_paths(initial_plugin_paths, | |
5a3ee633 | 50 | CONFIG_IN_TREE_PLUGIN_PATH); |
290725f7 PP |
51 | if (ret) { |
52 | goto error; | |
53 | } | |
54 | ||
9009cc24 | 55 | cfg = bt_config_cli_args_create(argc, argv, retcode, true, true, |
8e765000 | 56 | initial_plugin_paths); |
290725f7 PP |
57 | goto end; |
58 | ||
59 | error: | |
60 | *retcode = 1; | |
8138bfe1 | 61 | BT_OBJECT_PUT_REF_AND_RESET(cfg); |
290725f7 PP |
62 | |
63 | end: | |
8c6884d9 | 64 | bt_value_put_ref(initial_plugin_paths); |
290725f7 | 65 | return cfg; |
c1870f57 JG |
66 | } |
67 | ||
68 | #else /* BT_SET_DEFAULT_IN_TREE_CONFIGURATION */ | |
69 | ||
9009cc24 | 70 | struct bt_config *bt_config_cli_args_create_with_default(int argc, |
290725f7 | 71 | const char *argv[], int *retcode) |
c1870f57 | 72 | { |
9009cc24 | 73 | return bt_config_cli_args_create(argc, argv, retcode, false, false, |
8e765000 | 74 | NULL); |
c1870f57 JG |
75 | } |
76 | ||
77 | #endif /* BT_SET_DEFAULT_IN_TREE_CONFIGURATION */ |