lib: add boolean field class and field types
[babeltrace.git] / include / babeltrace2 / trace-ir / field-class.h
CommitLineData
924dc299
PP
1#ifndef BABELTRACE2_TRACE_IR_FIELD_CLASS_H
2#define BABELTRACE2_TRACE_IR_FIELD_CLASS_H
5cd6d0e5
PP
3
4/*
bbb7b5f0 5 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
5cd6d0e5 6 *
5cd6d0e5
PP
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
5cd6d0e5
PP
24 */
25
4fa90f32
PP
26#ifndef __BT_IN_BABELTRACE_H
27# error "Please include <babeltrace2/babeltrace.h> instead."
28#endif
29
d24d5663
PP
30#include <stdint.h>
31#include <stddef.h>
32
3fadfbc0 33#include <babeltrace2/types.h>
3fadfbc0 34#include <babeltrace2/trace-ir/field-class-const.h>
40f4ba76 35
5cd6d0e5
PP
36#ifdef __cplusplus
37extern "C" {
38#endif
39
5cebbe7f
PP
40extern bt_field_class *bt_field_class_bool_create(
41 bt_trace_class *trace_class);
42
9c08c816 43extern bt_field_class *bt_field_class_integer_unsigned_create(
1122a43a 44 bt_trace_class *trace_class);
5cd6d0e5 45
9c08c816 46extern bt_field_class *bt_field_class_integer_signed_create(
1122a43a 47 bt_trace_class *trace_class);
40f4ba76
PP
48
49extern void bt_field_class_integer_set_field_value_range(
b19ff26f 50 bt_field_class *field_class, uint64_t size);
40f4ba76
PP
51
52extern void bt_field_class_integer_set_preferred_display_base(
b19ff26f 53 bt_field_class *field_class,
4cdfc5e8 54 bt_field_class_integer_preferred_display_base base);
40f4ba76 55
1122a43a 56extern bt_field_class *bt_field_class_real_create(bt_trace_class *trace_class);
40f4ba76
PP
57
58extern void bt_field_class_real_set_is_single_precision(
b19ff26f 59 bt_field_class *field_class,
40f4ba76
PP
60 bt_bool is_single_precision);
61
9c08c816 62extern bt_field_class *bt_field_class_enumeration_unsigned_create(
1122a43a 63 bt_trace_class *trace_class);
40f4ba76 64
9c08c816 65extern bt_field_class *bt_field_class_enumeration_signed_create(
1122a43a 66 bt_trace_class *trace_class);
40f4ba76 67
45c51519
PP
68typedef enum bt_field_class_enumeration_add_mapping_status {
69 BT_FIELD_CLASS_ENUMERATION_ADD_MAPPING_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
70 BT_FIELD_CLASS_ENUMERATION_ADD_MAPPING_STATUS_OK = __BT_FUNC_STATUS_OK,
71} bt_field_class_enumeration_add_mapping_status;
d24d5663 72
45c51519 73extern bt_field_class_enumeration_add_mapping_status
9c08c816 74bt_field_class_enumeration_unsigned_add_mapping(
b19ff26f 75 bt_field_class *field_class, const char *label,
45c51519 76 const bt_integer_range_set_unsigned *range_set);
40f4ba76 77
45c51519 78extern bt_field_class_enumeration_add_mapping_status
9c08c816 79bt_field_class_enumeration_signed_add_mapping(
b19ff26f 80 bt_field_class *field_class, const char *label,
45c51519 81 const bt_integer_range_set_signed *range_set);
40f4ba76 82
1122a43a
PP
83extern bt_field_class *bt_field_class_string_create(
84 bt_trace_class *trace_class);
40f4ba76 85
1122a43a
PP
86extern bt_field_class *bt_field_class_structure_create(
87 bt_trace_class *trace_class);
40f4ba76 88
d24d5663
PP
89typedef enum bt_field_class_structure_append_member_status {
90 BT_FIELD_CLASS_STRUCTURE_APPEND_MEMBER_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
91 BT_FIELD_CLASS_STRUCTURE_APPEND_MEMBER_STATUS_OK = __BT_FUNC_STATUS_OK,
92} bt_field_class_structure_append_member_status;
93
94extern bt_field_class_structure_append_member_status
95bt_field_class_structure_append_member(
b19ff26f
PP
96 bt_field_class *struct_field_class,
97 const char *name, bt_field_class *field_class);
40f4ba76 98
1e6fd1d7
PP
99extern bt_field_class_structure_member *
100bt_field_class_structure_borrow_member_by_index(
101 bt_field_class *field_class, uint64_t index);
740faaf4 102
1e6fd1d7
PP
103extern bt_field_class_structure_member *
104bt_field_class_structure_borrow_member_by_name(
740faaf4
PP
105 bt_field_class *field_class, const char *name);
106
9c08c816 107extern bt_field_class *bt_field_class_array_static_create(
1122a43a 108 bt_trace_class *trace_class,
b19ff26f 109 bt_field_class *elem_field_class, uint64_t length);
40f4ba76 110
9c08c816 111extern bt_field_class *bt_field_class_array_dynamic_create(
1122a43a 112 bt_trace_class *trace_class,
1367bc7c
PP
113 bt_field_class *elem_field_class,
114 bt_field_class *length_field_class);
40f4ba76 115
740faaf4
PP
116extern bt_field_class *bt_field_class_array_borrow_element_field_class(
117 bt_field_class *field_class);
118
1122a43a 119extern bt_field_class *bt_field_class_variant_create(
45c51519 120 bt_trace_class *trace_class,
b19ff26f 121 bt_field_class *selector_field_class);
40f4ba76 122
45c51519
PP
123typedef enum bt_field_class_variant_without_selector_append_option_status {
124 BT_FIELD_CLASS_VARIANT_WITHOUT_SELECTOR_APPEND_OPTION_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
125 BT_FIELD_CLASS_VARIANT_WITHOUT_SELECTOR_APPEND_OPTION_STATUS_OK = __BT_FUNC_STATUS_OK,
126} bt_field_class_variant_without_selector_append_option_status;
d24d5663 127
45c51519
PP
128extern bt_field_class_variant_without_selector_append_option_status
129bt_field_class_variant_without_selector_append_option(
130 bt_field_class *var_field_class, const char *name,
131 bt_field_class *field_class);
5cd6d0e5 132
45c51519
PP
133typedef enum bt_field_class_variant_with_selector_append_option_status {
134 BT_FIELD_CLASS_VARIANT_WITH_SELECTOR_APPEND_OPTION_STATUS_MEMORY_ERROR = __BT_FUNC_STATUS_MEMORY_ERROR,
135 BT_FIELD_CLASS_VARIANT_WITH_SELECTOR_APPEND_OPTION_STATUS_OK = __BT_FUNC_STATUS_OK,
136} bt_field_class_variant_with_selector_append_option_status;
740faaf4 137
45c51519 138extern bt_field_class_variant_with_selector_append_option_status
9c08c816 139bt_field_class_variant_with_selector_unsigned_append_option(
45c51519
PP
140 bt_field_class *var_field_class, const char *name,
141 bt_field_class *field_class,
142 const bt_integer_range_set_unsigned *range_set);
1e6fd1d7 143
45c51519 144extern bt_field_class_variant_with_selector_append_option_status
9c08c816 145bt_field_class_variant_with_selector_signed_append_option(
45c51519
PP
146 bt_field_class *var_field_class, const char *name,
147 bt_field_class *field_class,
148 const bt_integer_range_set_signed *range_set);
740faaf4 149
5cd6d0e5
PP
150#ifdef __cplusplus
151}
152#endif
153
924dc299 154#endif /* BABELTRACE2_TRACE_IR_FIELD_CLASS_H */
This page took 0.043774 seconds and 4 git commands to generate.