rename `babeltrace.trace-info` to `babeltrace.trace-infos`, `streams` to `stream...
[babeltrace.git] / src / plugins / ctf / fs-src / query.h
CommitLineData
04c0ba87
JG
1#ifndef BABELTRACE_PLUGIN_CTF_FS_QUERY_H
2#define BABELTRACE_PLUGIN_CTF_FS_QUERY_H
3
4/*
5 * BabelTrace - CTF on File System Component
6 *
7 * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@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
91d81473 28#include "common/macros.h"
3fadfbc0 29#include <babeltrace2/babeltrace.h>
04c0ba87
JG
30
31BT_HIDDEN
d24d5663 32bt_component_class_query_method_status metadata_info_query(
b19ff26f 33 bt_self_component_class_source *comp_class,
98903a3e
PP
34 const bt_value *params,
35 bt_logging_level log_level, const bt_value **result);
04c0ba87 36
97ade20b 37BT_HIDDEN
5f2a1585 38bt_component_class_query_method_status trace_infos_query(
b19ff26f 39 bt_self_component_class_source *comp_class,
98903a3e
PP
40 const bt_value *params, bt_logging_level log_level,
41 const bt_value **result);
97ade20b 42
73760435
SM
43BT_HIDDEN
44bt_component_class_query_method_status support_info_query(
45 bt_self_component_class_source *comp_class,
46 const bt_value *params, bt_logging_level log_level,
47 const bt_value **result);
48
04c0ba87 49#endif /* BABELTRACE_PLUGIN_CTF_FS_QUERY_H */
This page took 0.045083 seconds and 4 git commands to generate.