babeltrace headers sync
[lttngtop.git] / lib / babeltrace / ctf-ir / event-types-internal.h
CommitLineData
4a325d7e
JD
1#ifndef BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H
2#define BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H
3
4/*
5 * BabelTrace - CTF IR: Event types internal
6 *
7 * Copyright 2013, 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
30#include <babeltrace/ctf-writer/event-types.h>
31#include <babeltrace/ctf-writer/ref-internal.h>
32#include <babeltrace/ctf-writer/event-fields.h>
33#include <babeltrace/ctf-writer/writer.h>
34#include <babeltrace/ctf-writer/writer-internal.h>
35#include <babeltrace/babeltrace-internal.h>
36#include <babeltrace/types.h>
37#include <babeltrace/ctf/events.h>
38#include <glib.h>
39
40typedef void(*type_freeze_func)(struct bt_ctf_field_type *);
41typedef int(*type_serialize_func)(struct bt_ctf_field_type *,
42 struct metadata_context *);
43
44struct bt_ctf_field_type {
45 struct bt_ctf_ref ref_count;
46 struct bt_declaration *declaration;
47 type_freeze_func freeze;
48 type_serialize_func serialize;
49 /*
50 * A type can't be modified once it is added to an event or after a
51 * a field has been instanciated from it.
52 */
53 int frozen;
54};
55
56struct bt_ctf_field_type_integer {
57 struct bt_ctf_field_type parent;
58 struct declaration_integer declaration;
59};
60
61struct enumeration_mapping {
62 union {
63 uint64_t _unsigned;
64 int64_t _signed;
65 } range_start;
66
67 union {
68 uint64_t _unsigned;
69 int64_t _signed;
70 } range_end;
71 GQuark string;
72};
73
74struct bt_ctf_field_type_enumeration {
75 struct bt_ctf_field_type parent;
76 struct bt_ctf_field_type *container;
77 GPtrArray *entries; /* Array of pointers to struct enum_mapping */
78 struct declaration_enum declaration;
79};
80
81struct bt_ctf_field_type_floating_point {
82 struct bt_ctf_field_type parent;
83 struct declaration_float declaration;
84 struct declaration_integer sign;
85 struct declaration_integer mantissa;
86 struct declaration_integer exp;
87};
88
89struct structure_field {
90 GQuark name;
91 struct bt_ctf_field_type *type;
92};
93
94struct bt_ctf_field_type_structure {
95 struct bt_ctf_field_type parent;
96 GHashTable *field_name_to_index;
97 GPtrArray *fields; /* Array of pointers to struct structure_field */
98 struct declaration_enum declaration;
99};
100
101struct bt_ctf_field_type_variant {
102 struct bt_ctf_field_type parent;
103 GString *tag_name;
104 struct bt_ctf_field_type_enumeration *tag;
105 GHashTable *field_name_to_index;
106 GPtrArray *fields; /* Array of pointers to struct structure_field */
107 struct declaration_variant declaration;
108};
109
110struct bt_ctf_field_type_array {
111 struct bt_ctf_field_type parent;
112 struct bt_ctf_field_type *element_type;
113 unsigned int length; /* Number of elements */
114 struct declaration_array declaration;
115};
116
117struct bt_ctf_field_type_sequence {
118 struct bt_ctf_field_type parent;
119 struct bt_ctf_field_type *element_type;
120 GString *length_field_name;
121 struct declaration_sequence declaration;
122};
123
124struct bt_ctf_field_type_string {
125 struct bt_ctf_field_type parent;
126 struct declaration_string declaration;
127};
128
129BT_HIDDEN
130void bt_ctf_field_type_freeze(struct bt_ctf_field_type *type);
131
132BT_HIDDEN
133struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_signed(
134 struct bt_ctf_field_type_variant *variant, int64_t tag_value);
135
136BT_HIDDEN
137struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type_unsigned(
138 struct bt_ctf_field_type_variant *variant, uint64_t tag_value);
139
140BT_HIDDEN
141int bt_ctf_field_type_serialize(struct bt_ctf_field_type *type,
142 struct metadata_context *context);
143
144BT_HIDDEN
145int bt_ctf_field_type_validate(struct bt_ctf_field_type *type);
146
147BT_HIDDEN
148const char *bt_ctf_field_type_enumeration_get_mapping_name_unsigned(
149 struct bt_ctf_field_type_enumeration *enumeration_type,
150 uint64_t value);
151
152BT_HIDDEN
153const char *bt_ctf_field_type_enumeration_get_mapping_name_signed(
154 struct bt_ctf_field_type_enumeration *enumeration_type,
155 int64_t value);
156
157#endif /* BABELTRACE_CTF_IR_EVENT_TYPES_INTERNAL_H */
This page took 0.026988 seconds and 4 git commands to generate.