converter: parse 1.x and 2.0 options
[babeltrace.git] / converter / babeltrace-cfg.h
CommitLineData
c42c79ea
PP
1#ifndef BABELTRACE_CONVERTER_CFG_H
2#define BABELTRACE_CONVERTER_CFG_H
3
4/*
5 * Babeltrace trace converter - configuration
6 *
7 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
28#include <stdlib.h>
29#include <babeltrace/values.h>
30#include <babeltrace/ref.h>
31#include <babeltrace/object-internal.h>
32#include <babeltrace/compiler.h>
33#include <glib.h>
34
35struct bt_config_component {
36 struct bt_object base;
37 GString *plugin_name;
38 GString *component_name;
39 struct bt_value *params;
40};
41
42struct bt_config {
43 struct bt_object base;
44 struct bt_value *plugin_paths;
45
46 /* Array of pointers to struct bt_config_component */
47 GPtrArray *sources;
48
49 /* Array of pointers to struct bt_config_component */
50 GPtrArray *sinks;
51
52 bool debug;
53 bool verbose;
54 bool do_list;
55 bool force_correlate;
56};
57
58static inline
59struct bt_config_component *bt_config_get_component(GPtrArray *array,
60 size_t index)
61{
62 return bt_get(g_ptr_array_index(array, index));
63}
64
65struct bt_config *bt_config_from_args(int argc, char *argv[], int *exit_code);
66
67#endif /* BABELTRACE_CONVERTER_CFG_H */
This page took 0.025501 seconds and 4 git commands to generate.