1 #ifndef _BABELTRACE_CTF_EVENTS_H
2 #define _BABELTRACE_CTF_EVENTS_H
9 * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation
11 * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12 * Julien Desfossez <julien.desfossez@efficios.com>
14 * Permission is hereby granted, free of charge, to any person obtaining
15 * a copy of this software and associated documentation files (the
16 * "Software"), to deal in the Software without restriction, including
17 * without limitation the rights to use, copy, modify, merge, publish,
18 * distribute, sublicense, and/or sell copies of the Software, and to
19 * permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
22 * The above copyright notice and this permission notice shall be
23 * included in all copies or substantial portions of the Software.
27 #include <babeltrace/context.h>
28 #include <babeltrace/clock-types.h>
32 struct bt_ctf_event_decl
;
33 struct bt_ctf_field_decl
;
36 * the top-level scopes in CTF
39 BT_TRACE_PACKET_HEADER
= 0,
40 BT_STREAM_PACKET_CONTEXT
= 1,
41 BT_STREAM_EVENT_HEADER
= 2,
42 BT_STREAM_EVENT_CONTEXT
= 3,
48 * the supported CTF types
57 CTF_TYPE_UNTAGGED_VARIANT
,
65 * the supported CTF string encodings
67 enum ctf_string_encoding
{
75 * bt_ctf_get_top_level_scope: return a definition of the top-level scope
77 * Top-level scopes are defined in the bt_ctf_scope enum.
78 * In order to get a field or a field list, the user needs to pass a
79 * scope as argument, this scope can be a top-level scope or a scope
80 * relative to an arbitrary field. This function provides the mapping
81 * between the enum and the actual definition of top-level scopes.
82 * On error return NULL.
84 const struct definition
*bt_ctf_get_top_level_scope(const struct bt_ctf_event
*event
,
85 enum bt_ctf_scope scope
);
88 * bt_ctf_event_get_name: returns the name of the event or NULL on error
90 const char *bt_ctf_event_name(const struct bt_ctf_event
*event
);
93 * bt_ctf_get_cycles: returns the timestamp of the event as written
94 * in the packet (in cycles) or -1ULL on error.
96 uint64_t bt_ctf_get_cycles(const struct bt_ctf_event
*event
);
99 * bt_ctf_get_timestamp: returns the timestamp of the event offsetted
100 * with the system clock source (in ns) or -1ULL on error
102 uint64_t bt_ctf_get_timestamp(const struct bt_ctf_event
*event
);
105 * bt_ctf_get_field_list: obtain the list of fields for compound type
107 * This function can be used to obtain the list of fields
108 * contained within a compound type: array, sequence,
109 * structure, or variant.
111 * This function sets the "list" pointer to an array of definition
112 * pointers and set count to the number of elements in the array.
113 * Return 0 on success and a negative value on error.
115 * The content pointed to by "list" should *not* be freed. It stays
116 * valid as long as the event is unchanged (as long as the iterator
117 * from which the event is extracted is unchanged).
119 int bt_ctf_get_field_list(const struct bt_ctf_event
*event
,
120 const struct definition
*scope
,
121 struct definition
const * const **list
,
122 unsigned int *count
);
125 * bt_ctf_get_field: returns the definition of a specific field
127 const struct definition
*bt_ctf_get_field(const struct bt_ctf_event
*event
,
128 const struct definition
*scope
,
132 * bt_ctf_get_index: if the field is an array or a sequence, return the element
133 * at position index, otherwise return NULL;
135 const struct definition
*bt_ctf_get_index(const struct bt_ctf_event
*event
,
136 const struct definition
*field
,
140 * bt_ctf_field_name: returns the name of a field or NULL on error
142 const char *bt_ctf_field_name(const struct definition
*def
);
145 * bt_ctf_field_type: returns the type of a field or -1 if unknown
147 enum ctf_type_id
bt_ctf_field_type(const struct definition
*def
);
150 * bt_ctf_get_int_signedness: return the signedness of an integer
152 * return 0 if unsigned
156 int bt_ctf_get_int_signedness(const struct definition
*field
);
159 * bt_ctf_get_int_base: return the base of an int or a negative value on error
161 int bt_ctf_get_int_base(const struct definition
*field
);
164 * bt_ctf_get_int_byte_order: return the byte order of an int or a negative
167 int bt_ctf_get_int_byte_order(const struct definition
*field
);
170 * bt_ctf_get_int_len: return the size, in bits, of an int or a negative
173 ssize_t
bt_ctf_get_int_len(const struct definition
*field
);
176 * bt_ctf_get_encoding: return the encoding of an int or a string.
177 * return a negative value on error
179 enum ctf_string_encoding
bt_ctf_get_encoding(const struct definition
*field
);
182 * bt_ctf_get_array_len: return the len of an array or a negative
185 int bt_ctf_get_array_len(const struct definition
*field
);
188 * Field access functions
190 * These functions return the value associated with the field passed in
193 * If the field does not exist or is not of the type requested, the value
194 * returned is undefined. To check if an error occured, use the
195 * bt_ctf_field_get_error() function after accessing a field.
197 * bt_ctf_get_enum_int gets the integer field of an enumeration.
198 * bt_ctf_get_enum_str gets the string matching the current enumeration
199 * value, or NULL if the current value does not match any string.
201 uint64_t bt_ctf_get_uint64(const struct definition
*field
);
202 int64_t bt_ctf_get_int64(const struct definition
*field
);
203 const struct definition
*bt_ctf_get_enum_int(const struct definition
*field
);
204 const char *bt_ctf_get_enum_str(const struct definition
*field
);
205 char *bt_ctf_get_char_array(const struct definition
*field
);
206 char *bt_ctf_get_string(const struct definition
*field
);
209 * bt_ctf_field_get_error: returns the last error code encountered while
210 * accessing a field and reset the error flag.
211 * Return 0 if no error, a negative value otherwise.
213 int bt_ctf_field_get_error(void);
216 * bt_ctf_get_event_decl_list: set list pointer to an array of bt_ctf_event_decl
217 * pointers and set count to the number of elements in the array.
219 * Return 0 on success and a negative value on error.
221 int bt_ctf_get_event_decl_list(int handle_id
, struct bt_context
*ctx
,
222 struct bt_ctf_event_decl
* const **list
,
223 unsigned int *count
);
226 * bt_ctf_get_decl_event_name: return the name of the event or NULL on error
228 const char *bt_ctf_get_decl_event_name(const struct bt_ctf_event_decl
*event
);
231 * bt_ctf_get_decl_fields: set list pointer to an array of bt_ctf_field_decl
232 * pointers and set count to the number of elements in the array.
234 * Returns 0 on success and a negative value on error
236 int bt_ctf_get_decl_fields(struct bt_ctf_event_decl
*event_decl
,
237 enum bt_ctf_scope scope
,
238 struct bt_ctf_field_decl
const * const **list
,
239 unsigned int *count
);
242 * bt_ctf_get_decl_field_name: return the name of a field decl or NULL on error
244 const char *bt_ctf_get_decl_field_name(const struct bt_ctf_field_decl
*field
);
246 #endif /* _BABELTRACE_CTF_EVENTS_H */