Make API CTF-agnostic
[babeltrace.git] / include / babeltrace / ctf-ir / attributes-internal.h
CommitLineData
44e0a4f5
JG
1#ifndef BABELTRACE_CTF_IR_ATTRIBUTES_H
2#define BABELTRACE_CTF_IR_ATTRIBUTES_H
3
4/*
5 * attributes.c
6 *
7 * Babeltrace - CTF IR: Attributes internal
8 *
9 * Copyright (c) 2015 EfficiOS Inc. and Linux Foundation
10 * Copyright (c) 2015 Philippe Proulx <pproulx@efficios.com>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 * SOFTWARE.
29 */
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
dcf0cc71 35#include <stdint.h>
44e0a4f5 36#include <babeltrace/babeltrace-internal.h>
dac5c838 37#include <babeltrace/values.h>
44e0a4f5
JG
38
39BT_HIDDEN
50842bdc 40struct bt_value *bt_attributes_create(void);
44e0a4f5
JG
41
42BT_HIDDEN
50842bdc 43void bt_attributes_destroy(struct bt_value *attr_obj);
44e0a4f5
JG
44
45BT_HIDDEN
50842bdc 46int64_t bt_attributes_get_count(struct bt_value *attr_obj);
44e0a4f5
JG
47
48BT_HIDDEN
50842bdc 49const char *bt_attributes_get_field_name(struct bt_value *attr_obj,
dcf0cc71 50 uint64_t index);
44e0a4f5
JG
51
52BT_HIDDEN
094ff7c0 53struct bt_value *bt_attributes_borrow_field_value(struct bt_value *attr_obj,
dcf0cc71 54 uint64_t index);
44e0a4f5
JG
55
56BT_HIDDEN
50842bdc 57int bt_attributes_set_field_value(struct bt_value *attr_obj,
dac5c838 58 const char *name, struct bt_value *value_obj);
44e0a4f5
JG
59
60BT_HIDDEN
094ff7c0 61struct bt_value *bt_attributes_borrow_field_value_by_name(
dac5c838 62 struct bt_value *attr_obj, const char *name);
44e0a4f5
JG
63
64BT_HIDDEN
50842bdc 65int bt_attributes_freeze(struct bt_value *attr_obj);
44e0a4f5
JG
66
67#ifdef __cplusplus
68}
69#endif
70
71#endif /* BABELTRACE_CTF_IR_ATTRIBUTES_H */
This page took 0.044439 seconds and 4 git commands to generate.