Values API: split into private and public APIs
[babeltrace.git] / cli / babeltrace-cfg-cli-args-default.c
1 /*
2 * Copyright 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 * Copyright 2017 - Philippe Proulx <pproulx@efficios.com>
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
24 #include <babeltrace/values.h>
25 #include <babeltrace/private-values.h>
26 #include "babeltrace-cfg.h"
27 #include "babeltrace-cfg-cli-args.h"
28 #include "babeltrace-cfg-cli-args-default.h"
29
30 #ifdef ENABLE_DEBUG_INFO
31 # define BT_ENABLE_DEBUG_INFO 1
32 #else
33 # define BT_ENABLE_DEBUG_INFO 0
34 #endif
35
36 #ifdef BT_SET_DEFAULT_IN_TREE_CONFIGURATION
37
38 struct bt_config *bt_config_cli_args_create_with_default(int argc,
39 const char *argv[], int *retcode)
40 {
41 struct bt_private_value *initial_plugin_paths;
42 struct bt_config *cfg = NULL;
43 int ret;
44
45 initial_plugin_paths = bt_private_value_array_create();
46 if (!initial_plugin_paths) {
47 goto error;
48 }
49
50 ret = bt_config_append_plugin_paths(initial_plugin_paths,
51 CONFIG_IN_TREE_PLUGIN_PATH);
52 if (ret) {
53 goto error;
54 }
55
56 cfg = bt_config_cli_args_create(argc, argv, retcode, true, true,
57 initial_plugin_paths);
58 goto end;
59
60 error:
61 *retcode = 1;
62 BT_OBJECT_PUT_REF_AND_RESET(cfg);
63
64 end:
65 bt_object_put_ref(initial_plugin_paths);
66 return cfg;
67 }
68
69 #else /* BT_SET_DEFAULT_IN_TREE_CONFIGURATION */
70
71 struct bt_config *bt_config_cli_args_create_with_default(int argc,
72 const char *argv[], int *retcode)
73 {
74 return bt_config_cli_args_create(argc, argv, retcode, false, false,
75 NULL);
76 }
77
78 #endif /* BT_SET_DEFAULT_IN_TREE_CONFIGURATION */
This page took 0.031033 seconds and 4 git commands to generate.