Plugin development API: use self enumeration and plugin types
[babeltrace.git] / include / babeltrace / trace-ir / field-class.h
CommitLineData
939190b3
PP
1#ifndef BABELTRACE_TRACE_IR_FIELD_CLASSES_H
2#define BABELTRACE_TRACE_IR_FIELD_CLASSES_H
3
4/*
f2b0325d 5 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
939190b3
PP
6 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 *
939190b3
PP
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 *
26 * The Common Trace Format (CTF) Specification is available at
27 * http://www.efficios.com/ctf
28 */
29
8eee8ea2 30/* For bt_bool, bt_field_class */
939190b3
PP
31#include <babeltrace/types.h>
32
4b514ab3
PP
33/*
34 * For enum bt_field_class_status,
35 * enum bt_field_class_integer_preferred_display_base
36 */
0f15f666 37#include <babeltrace/trace-ir/field-class-const.h>
78cf9df6 38
939190b3
PP
39#include <stdint.h>
40#include <stddef.h>
41
42#ifdef __cplusplus
43extern "C" {
44#endif
45
8eee8ea2 46extern bt_field_class *bt_field_class_unsigned_integer_create(void);
939190b3 47
8eee8ea2 48extern bt_field_class *bt_field_class_signed_integer_create(void);
78cf9df6
PP
49
50extern void bt_field_class_integer_set_field_value_range(
8eee8ea2 51 bt_field_class *field_class, uint64_t size);
78cf9df6
PP
52
53extern void bt_field_class_integer_set_preferred_display_base(
8eee8ea2 54 bt_field_class *field_class,
78cf9df6
PP
55 enum bt_field_class_integer_preferred_display_base base);
56
8eee8ea2 57extern bt_field_class *bt_field_class_real_create(void);
78cf9df6
PP
58
59extern void bt_field_class_real_set_is_single_precision(
8eee8ea2 60 bt_field_class *field_class,
78cf9df6
PP
61 bt_bool is_single_precision);
62
8eee8ea2 63extern bt_field_class *bt_field_class_unsigned_enumeration_create(void);
78cf9df6 64
8eee8ea2 65extern bt_field_class *bt_field_class_signed_enumeration_create(void);
78cf9df6 66
4b514ab3 67extern enum bt_field_class_status bt_field_class_unsigned_enumeration_map_range(
8eee8ea2 68 bt_field_class *field_class, const char *label,
78cf9df6
PP
69 uint64_t range_lower, uint64_t range_upper);
70
4b514ab3 71extern enum bt_field_class_status bt_field_class_signed_enumeration_map_range(
8eee8ea2 72 bt_field_class *field_class, const char *label,
78cf9df6
PP
73 int64_t range_lower, int64_t range_upper);
74
8eee8ea2 75extern bt_field_class *bt_field_class_string_create(void);
78cf9df6 76
8eee8ea2 77extern bt_field_class *bt_field_class_structure_create(void);
78cf9df6 78
4b514ab3 79extern enum bt_field_class_status bt_field_class_structure_append_member(
8eee8ea2
PP
80 bt_field_class *struct_field_class,
81 const char *name, bt_field_class *field_class);
78cf9df6 82
8eee8ea2
PP
83extern bt_field_class *bt_field_class_static_array_create(
84 bt_field_class *elem_field_class, uint64_t length);
78cf9df6 85
8eee8ea2
PP
86extern bt_field_class *bt_field_class_dynamic_array_create(
87 bt_field_class *elem_field_class);
78cf9df6 88
4b514ab3
PP
89extern enum bt_field_class_status
90bt_field_class_dynamic_array_set_length_field_class(
8eee8ea2
PP
91 bt_field_class *field_class,
92 bt_field_class *length_field_class);
78cf9df6 93
8eee8ea2 94extern bt_field_class *bt_field_class_variant_create(void);
78cf9df6 95
4b514ab3
PP
96extern enum bt_field_class_status
97bt_field_class_variant_set_selector_field_class(bt_field_class *field_class,
8eee8ea2 98 bt_field_class *selector_field_class);
78cf9df6 99
4b514ab3 100extern enum bt_field_class_status bt_field_class_variant_append_option(
8eee8ea2
PP
101 bt_field_class *var_field_class,
102 const char *name, bt_field_class *field_class);
939190b3 103
939190b3
PP
104#ifdef __cplusplus
105}
106#endif
107
108#endif /* BABELTRACE_TRACE_IR_FIELD_CLASSES_H */
This page took 0.034453 seconds and 4 git commands to generate.