Python-bindings: Move declaration bindings out of the _Definition class
[babeltrace.git] / bindings / python / babeltrace.i.in
CommitLineData
24a3136a
DS
1/*
2 * babeltrace.i.in
3 *
4 * Babeltrace Python Module interface file
5 *
6 * Copyright 2012 EfficiOS Inc.
7 *
8 * Author: Danny Serres <danny.serres@efficios.com>
74ea15ad 9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
24a3136a
DS
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
22
23%define DOCSTRING
24"BABELTRACE_VERSION_STR
25
26Babeltrace is a trace viewer and converter reading and writing the
27Common Trace Format (CTF). Its main use is to pretty-print CTF
28traces into a human-readable text output.
29
74ea15ad 30To use this module, the first step is to create a TraceCollection and add a
24a3136a
DS
31trace to it."
32%enddef
33
34%module(docstring=DOCSTRING) babeltrace
35
36%include "typemaps.i"
37%{
38#define SWIG_FILE_WITH_INIT
39#include <babeltrace/babeltrace.h>
40#include <babeltrace/babeltrace-internal.h>
41#include <babeltrace/trace-handle.h>
42#include <babeltrace/trace-handle-internal.h>
43#include <babeltrace/context.h>
44#include <babeltrace/context-internal.h>
45#include <babeltrace/iterator.h>
46#include <babeltrace/iterator-internal.h>
47#include <babeltrace/format.h>
48#include <babeltrace/list.h>
24a3136a
DS
49#include <babeltrace/types.h>
50#include <babeltrace/ctf/iterator.h>
51#include "python-complements.h"
ec8c88d7
JG
52#include <babeltrace/ctf-writer/clock.h>
53#include <babeltrace/ctf-writer/event-fields.h>
54#include <babeltrace/ctf-writer/event-types.h>
55#include <babeltrace/ctf-writer/event.h>
56#include <babeltrace/ctf-writer/stream.h>
57#include <babeltrace/ctf-writer/writer.h>
24a3136a
DS
58%}
59
60typedef unsigned long long uint64_t;
61typedef long long int64_t;
62typedef int bt_intern_str;
63
cebae8c3
JG
64/* =================================================================
65 PYTHON-COMPLEMENTS.H
66 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
67*/
68
69FILE *_bt_file_open(char *file_path, char *mode);
70void _bt_file_close(FILE *fp);
71struct bt_definition **_bt_python_field_listcaller(
72 const struct bt_ctf_event *ctf_event,
73 const struct bt_definition *scope,
74 unsigned int *OUTPUT);
75struct bt_definition *_bt_python_field_one_from_list(
76 struct bt_definition **list, int index);
77struct bt_ctf_event_decl **_bt_python_event_decl_listcaller(
78 int handle_id,
79 struct bt_context *ctx,
80 unsigned int *OUTPUT);
81struct bt_ctf_event_decl *_bt_python_decl_one_from_list(
82 struct bt_ctf_event_decl **list, int index);
83struct bt_ctf_field_decl **_by_python_field_decl_listcaller(
84 struct bt_ctf_event_decl *event_decl,
85 enum bt_ctf_scope scope,
86 unsigned int *OUTPUT);
87struct bt_ctf_field_decl *_bt_python_field_decl_one_from_list(
88 struct bt_ctf_field_decl **list, int index);
89struct definition_array *_bt_python_get_array_from_def(
90 struct bt_definition *field);
91struct definition_sequence *_bt_python_get_sequence_from_def(
92 struct bt_definition *field);
ec8c88d7
JG
93int _bt_python_field_integer_get_signedness(const struct bt_ctf_field *field);
94enum ctf_type_id _bt_python_get_field_type(const struct bt_ctf_field *field);
cebae8c3 95
24a3136a
DS
96/* =================================================================
97 CONTEXT.H, CONTEXT-INTERNAL.H
98 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
99*/
100
101%rename("_bt_context_create") bt_context_create(void);
102%rename("_bt_context_add_trace") bt_context_add_trace(
103 struct bt_context *ctx, const char *path, const char *format,
2c0df204
XH
104 void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence),
105 struct bt_mmap_stream_list *stream_list, FILE *metadata);
24a3136a
DS
106%rename("_bt_context_remove_trace") bt_context_remove_trace(
107 struct bt_context *ctx, int trace_id);
108%rename("_bt_context_get") bt_context_get(struct bt_context *ctx);
109%rename("_bt_context_put") bt_context_put(struct bt_context *ctx);
110%rename("_bt_ctf_event_get_context") bt_ctf_event_get_context(
111 const struct bt_ctf_event *event);
112
113struct bt_context *bt_context_create(void);
114int bt_context_add_trace(struct bt_context *ctx, const char *path, const char *format,
2c0df204
XH
115 void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence),
116 struct bt_mmap_stream_list *stream_list, FILE *metadata);
24a3136a
DS
117void bt_context_remove_trace(struct bt_context *ctx, int trace_id);
118void bt_context_get(struct bt_context *ctx);
119void bt_context_put(struct bt_context *ctx);
120struct bt_context *bt_ctf_event_get_context(const struct bt_ctf_event *event);
121
74ea15ad 122// class TraceCollection to prevent direct access to struct bt_context
24a3136a 123%pythoncode%{
74ea15ad 124class TraceCollection:
24a3136a 125 """
74ea15ad 126 The TraceCollection is the object that contains all currently opened traces.
24a3136a
DS
127 """
128
129 def __init__(self):
74ea15ad 130 self._tc = _bt_context_create()
24a3136a
DS
131
132 def __del__(self):
74ea15ad 133 _bt_context_put(self._tc)
24a3136a 134
74ea15ad 135 def add_trace(self, path, format_str):
24a3136a 136 """
74ea15ad 137 Add a trace by path to the TraceCollection.
24a3136a
DS
138
139 Open a trace.
140
141 path is the path to the trace, it is not recursive.
142 If "path" is None, stream_list is used instead as a list
143 of mmap streams to open for the trace.
144
145 format is a string containing the format name in which the trace was
146 produced.
147
24a3136a
DS
148 Return: the corresponding TraceHandle on success or None on error.
149 """
464425e1 150 ret = _bt_context_add_trace(self._tc, path, format_str, None, None, None)
24a3136a
DS
151 if ret < 0:
152 return None
153
154 th = TraceHandle.__new__(TraceHandle)
155 th._id = ret
464425e1 156 th._trace_collection = self
24a3136a
DS
157 return th
158
159 def add_traces_recursive(self, path, format_str):
160 """
161 Open a trace recursively.
162
163 Find each trace present in the subdirectory starting from the given
74ea15ad 164 path, and add them to the TraceCollection.
24a3136a
DS
165
166 Return a dict of TraceHandle instances (the full path is the key).
167 Return None on error.
168 """
169
170 import os
171
172 trace_handles = {}
173
174 noTrace = True
175 error = False
176
177 for fullpath, dirs, files in os.walk(path):
178 if "metadata" in files:
179 trace_handle = self.add_trace(fullpath, format_str)
180 if trace_handle is None:
181 error = True
182 continue
183
184 trace_handles[fullpath] = trace_handle
185 noTrace = False
186
187 if noTrace and error:
188 return None
189 return trace_handles
190
191 def remove_trace(self, trace_handle):
192 """
74ea15ad 193 Remove a trace from the TraceCollection.
24a3136a
DS
194 Effectively closing the trace.
195 """
196 try:
74ea15ad 197 _bt_context_remove_trace(self._tc, trace_handle._id)
24a3136a
DS
198 except AttributeError:
199 raise TypeError("in remove_trace, "
200 "argument 2 must be a TraceHandle instance")
74ea15ad
JG
201
202 @property
203 def events(self):
204 """
205 Generator function to iterate over the events of open in the current
206 TraceCollection.
207 """
208 begin_pos_ptr = _bt_iter_pos()
209 end_pos_ptr = _bt_iter_pos()
210 begin_pos_ptr.type = SEEK_BEGIN
211 end_pos_ptr.type = SEEK_LAST
212
213 for event in self._events(begin_pos_ptr, end_pos_ptr):
214 yield event
215
216 def events_timestamps(self, timestamp_begin, timestamp_end):
217 """
218 Generator function to iterate over the events of open in the current
219 TraceCollection from timestamp_begin to timestamp_end.
220 """
221 begin_pos_ptr = _bt_iter_pos()
222 end_pos_ptr = _bt_iter_pos()
223 begin_pos_ptr.type = end_pos_ptr.type = SEEK_TIME
224 begin_pos_ptr.u.seek_time = timestamp_begin
225 end_pos_ptr.u.seek_time = timestamp_end
226
227 for event in self._events(begin_pos_ptr, end_pos_ptr):
228 yield event
229
230 @property
231 def timestamp_begin(self):
232 pos_ptr = _bt_iter_pos()
233 pos_ptr.type = SEEK_BEGIN
234 return self._timestamp_at_pos(pos_ptr)
235
236 @property
237 def timestamp_end(self):
238 pos_ptr = _bt_iter_pos()
239 pos_ptr.type = SEEK_LAST
240 return self._timestamp_at_pos(pos_ptr)
241
242 def _timestamp_at_pos(self, pos_ptr):
243 ctf_it_ptr = _bt_ctf_iter_create(self._tc, pos_ptr, pos_ptr)
244 if ctf_it_ptr is None:
245 raise NotImplementedError("Creation of multiple iterators is unsupported.")
246 ev_ptr = _bt_ctf_iter_read_event(ctf_it_ptr)
247 _bt_ctf_iter_destroy(ctf_it_ptr)
248 if ev_ptr is None:
249 return None;
250
251 def _events(self, begin_pos_ptr, end_pos_ptr):
252 ctf_it_ptr = _bt_ctf_iter_create(self._tc, begin_pos_ptr, end_pos_ptr)
253 if ctf_it_ptr is None:
254 raise NotImplementedError(
255 "Creation of multiple iterators is unsupported.")
256
257 while True:
258 ev_ptr = _bt_ctf_iter_read_event(ctf_it_ptr)
259 if ev_ptr is None:
260 break
261
78d714e8 262 ev = Event.__new__(Event)
74ea15ad
JG
263 ev._e = ev_ptr
264 try:
265 yield ev
266 except GeneratorExit:
267 break
268
269 ret = _bt_iter_next(_bt_ctf_get_iter(ctf_it_ptr))
270 if ret != 0:
271 break
272
273 _bt_ctf_iter_destroy(ctf_it_ptr)
274
24a3136a
DS
275%}
276
277
278
279/* =================================================================
280 FORMAT.H, REGISTRY
281 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
282*/
283
284%rename("lookup_format") bt_lookup_format(bt_intern_str qname);
285%rename("_bt_print_format_list") bt_fprintf_format_list(FILE *fp);
286%rename("register_format") bt_register_format(struct format *format);
cc26a15a 287%rename("unregister_format") bt_unregister_format(struct bt_format *format);
24a3136a
DS
288
289extern struct format *bt_lookup_format(bt_intern_str qname);
290extern void bt_fprintf_format_list(FILE *fp);
2c0df204 291extern int bt_register_format(struct bt_format *format);
cc26a15a 292extern void bt_unregister_format(struct bt_format *format);
24a3136a 293
24a3136a
DS
294%pythoncode %{
295
296def print_format_list(babeltrace_file):
297 """
298 Print a list of available formats to file.
299
300 babeltrace_file must be a File instance opened in write mode.
301 """
302 try:
303 if babeltrace_file._file is not None:
304 _bt_print_format_list(babeltrace_file._file)
305 except AttributeError:
306 raise TypeError("in print_format_list, "
307 "argument 1 must be a File instance")
308
309%}
310
311
312/* =================================================================
313 ITERATOR.H, ITERATOR-INTERNAL.H
314 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
315*/
316
317%rename("_bt_iter_create") bt_iter_create(struct bt_context *ctx,
318 const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos);
319%rename("_bt_iter_destroy") bt_iter_destroy(struct bt_iter *iter);
320%rename("_bt_iter_next") bt_iter_next(struct bt_iter *iter);
321%rename("_bt_iter_get_pos") bt_iter_get_pos(struct bt_iter *iter);
322%rename("_bt_iter_free_pos") bt_iter_free_pos(struct bt_iter_pos *pos);
323%rename("_bt_iter_set_pos") bt_iter_set_pos(struct bt_iter *iter,
324 const struct bt_iter_pos *pos);
325%rename("_bt_iter_create_time_pos") bt_iter_create_time_pos(struct bt_iter *iter,
326 uint64_t timestamp);
327
328struct bt_iter *bt_iter_create(struct bt_context *ctx,
329 const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos);
330void bt_iter_destroy(struct bt_iter *iter);
331int bt_iter_next(struct bt_iter *iter);
332struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter);
333void bt_iter_free_pos(struct bt_iter_pos *pos);
334int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos);
335struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter, uint64_t timestamp);
336
337%rename("_bt_iter_pos") bt_iter_pos;
338%rename("SEEK_TIME") BT_SEEK_TIME;
339%rename("SEEK_RESTORE") BT_SEEK_RESTORE;
340%rename("SEEK_CUR") BT_SEEK_CUR;
341%rename("SEEK_BEGIN") BT_SEEK_BEGIN;
ef42f9eb 342%rename("SEEK_LAST") BT_SEEK_LAST;
24a3136a
DS
343
344// This struct is taken from iterator.h
345// All changes to the struct must also be made here
346struct bt_iter_pos {
347 enum {
348 BT_SEEK_TIME, /* uses u.seek_time */
349 BT_SEEK_RESTORE, /* uses u.restore */
350 BT_SEEK_CUR,
351 BT_SEEK_BEGIN,
ef42f9eb 352 BT_SEEK_LAST
24a3136a
DS
353 } type;
354 union {
355 uint64_t seek_time;
356 struct bt_saved_pos *restore;
357 } u;
358};
359
24a3136a
DS
360/* =================================================================
361 TRACE-HANDLE.H, TRACE-HANDLE-INTERNAL.H
362 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
363*/
364
365%rename("_bt_trace_handle_create") bt_trace_handle_create(struct bt_context *ctx);
366%rename("_bt_trace_handle_destroy") bt_trace_handle_destroy(struct bt_trace_handle *bt);
367struct bt_trace_handle *bt_trace_handle_create(struct bt_context *ctx);
368void bt_trace_handle_destroy(struct bt_trace_handle *bt);
369
370%rename("_bt_trace_handle_get_path") bt_trace_handle_get_path(struct bt_context *ctx,
371 int handle_id);
372%rename("_bt_trace_handle_get_timestamp_begin") bt_trace_handle_get_timestamp_begin(
373 struct bt_context *ctx, int handle_id, enum bt_clock_type type);
374%rename("_bt_trace_handle_get_timestamp_end") bt_trace_handle_get_timestamp_end(
375 struct bt_context *ctx, int handle_id, enum bt_clock_type type);
24a3136a
DS
376const char *bt_trace_handle_get_path(struct bt_context *ctx, int handle_id);
377uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, int handle_id,
378 enum bt_clock_type type);
379uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, int handle_id,
380 enum bt_clock_type type);
381
382%rename("_bt_ctf_event_get_handle_id") bt_ctf_event_get_handle_id(
383 const struct bt_ctf_event *event);
384int bt_ctf_event_get_handle_id(const struct bt_ctf_event *event);
385
386
387%pythoncode%{
388
464425e1
JG
389# Based on enum bt_clock_type in clock-type.h­
390class ClockType:
391 CLOCK_CYCLES = 0
392 CLOCK_REAL = 1
393
24a3136a
DS
394class TraceHandle(object):
395 """
396 The TraceHandle allows the user to manipulate a trace file directly.
397 It is a unique identifier representing a trace file.
398 Do not instantiate.
399 """
400
401 def __init__(self):
402 raise NotImplementedError("TraceHandle cannot be instantiated")
403
404 def __repr__(self):
288209fb 405 return "Babeltrace TraceHandle: trace_id('{0}')".format(self._id)
24a3136a 406
464425e1
JG
407 @property
408 def id(self):
24a3136a
DS
409 """Return the TraceHandle id."""
410 return self._id
411
464425e1
JG
412 @property
413 def path(self):
24a3136a 414 """Return the path of a TraceHandle."""
464425e1 415 return _bt_trace_handle_get_path(self._trace_collection._tc, self._id)
24a3136a 416
464425e1
JG
417 @property
418 def timestamp_begin(self):
24a3136a 419 """Return the creation time of the buffers of a trace."""
464425e1
JG
420 return _bt_trace_handle_get_timestamp_begin(
421 self._trace_collection._tc, self._id, ClockType.CLOCK_REAL)
24a3136a 422
464425e1
JG
423 @property
424 def timestamp_end(self):
24a3136a 425 """Return the destruction timestamp of the buffers of a trace."""
464425e1
JG
426 return _bt_trace_handle_get_timestamp_end(
427 self._trace_collection._tc, self._id, ClockType.CLOCK_REAL)
24a3136a 428
8bb27181
JG
429 @property
430 def events(self):
431 """
432 Generator returning all events (EventDeclaration) in a trace.
433 """
434 ret = _bt_python_event_decl_listcaller(self.id, self._trace_collection._tc)
435
436 if not isinstance(ret, list):
437 return
438
439 ptr_list, count = ret
440 for i in range(count):
441 tmp = EventDeclaration.__new__(EventDeclaration)
442 tmp._ed = _bt_python_decl_one_from_list(ptr_list, i)
443 yield tmp
444
24a3136a
DS
445%}
446
447
448
449// =================================================================
450// CTF
451// =================================================================
452
453/* =================================================================
454 ITERATOR.H, EVENTS.H
455 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
456*/
457
458//Iterator
459%rename("_bt_ctf_iter_create") bt_ctf_iter_create(struct bt_context *ctx,
460 const struct bt_iter_pos *begin_pos,
461 const struct bt_iter_pos *end_pos);
462%rename("_bt_ctf_get_iter") bt_ctf_get_iter(struct bt_ctf_iter *iter);
463%rename("_bt_ctf_iter_destroy") bt_ctf_iter_destroy(struct bt_ctf_iter *iter);
464%rename("_bt_ctf_iter_read_event") bt_ctf_iter_read_event(struct bt_ctf_iter *iter);
465
466struct bt_ctf_iter *bt_ctf_iter_create(struct bt_context *ctx,
467 const struct bt_iter_pos *begin_pos,
468 const struct bt_iter_pos *end_pos);
469struct bt_iter *bt_ctf_get_iter(struct bt_ctf_iter *iter);
470void bt_ctf_iter_destroy(struct bt_ctf_iter *iter);
471struct bt_ctf_event *bt_ctf_iter_read_event(struct bt_ctf_iter *iter);
472
473
474//Events
24a3136a
DS
475%rename("_bt_ctf_get_top_level_scope") bt_ctf_get_top_level_scope(const struct
476 bt_ctf_event *event, enum bt_ctf_scope scope);
477%rename("_bt_ctf_event_name") bt_ctf_event_name(const struct bt_ctf_event *ctf_event);
478%rename("_bt_ctf_get_timestamp") bt_ctf_get_timestamp(
479 const struct bt_ctf_event *ctf_event);
480%rename("_bt_ctf_get_cycles") bt_ctf_get_cycles(
481 const struct bt_ctf_event *ctf_event);
482
483%rename("_bt_ctf_get_field") bt_ctf_get_field(const struct bt_ctf_event *ctf_event,
2c0df204 484 const struct bt_definition *scope, const char *field);
24a3136a 485%rename("_bt_ctf_get_index") bt_ctf_get_index(const struct bt_ctf_event *ctf_event,
2c0df204
XH
486 const struct bt_definition *field, unsigned int index);
487%rename("_bt_ctf_field_name") bt_ctf_field_name(const struct bt_definition *field);
488%rename("_bt_ctf_field_type") bt_ctf_field_type(const struct bt_declaration *field);
24a3136a 489%rename("_bt_ctf_get_int_signedness") bt_ctf_get_int_signedness(
2c0df204
XH
490 const struct bt_declaration *field);
491%rename("_bt_ctf_get_int_base") bt_ctf_get_int_base(const struct bt_declaration *field);
24a3136a 492%rename("_bt_ctf_get_int_byte_order") bt_ctf_get_int_byte_order(
2c0df204
XH
493 const struct bt_declaration *field);
494%rename("_bt_ctf_get_int_len") bt_ctf_get_int_len(const struct bt_declaration *field);
4191bcd2
XH
495%rename("_bt_ctf_get_enum_int") bt_ctf_get_enum_int(const struct bt_definition *field);
496%rename("_bt_ctf_get_enum_str") bt_ctf_get_enum_str(const struct bt_definition *field);
2c0df204
XH
497%rename("_bt_ctf_get_encoding") bt_ctf_get_encoding(const struct bt_declaration *field);
498%rename("_bt_ctf_get_array_len") bt_ctf_get_array_len(const struct bt_declaration *field);
499%rename("_bt_ctf_get_uint64") bt_ctf_get_uint64(const struct bt_definition *field);
500%rename("_bt_ctf_get_int64") bt_ctf_get_int64(const struct bt_definition *field);
501%rename("_bt_ctf_get_char_array") bt_ctf_get_char_array(const struct bt_definition *field);
502%rename("_bt_ctf_get_string") bt_ctf_get_string(const struct bt_definition *field);
e5a73b90 503%rename("_bt_ctf_get_float") bt_ctf_get_float(const struct bt_definition *field);
812e6682 504%rename("_bt_ctf_get_variant") bt_ctf_get_variant(const struct bt_definition *field);
24a3136a
DS
505%rename("_bt_ctf_field_get_error") bt_ctf_field_get_error(void);
506%rename("_bt_ctf_get_decl_event_name") bt_ctf_get_decl_event_name(const struct
507 bt_ctf_event_decl *event);
508%rename("_bt_ctf_get_decl_field_name") bt_ctf_get_decl_field_name(
509 const struct bt_ctf_field_decl *field);
f01efa78 510%rename("_bt_ctf_get_decl_from_def") bt_ctf_get_decl_from_def(
2c0df204 511 const struct bt_definition *field);
8bb27181
JG
512%rename("_bt_ctf_get_decl_from_field_decl") bt_ctf_get_decl_from_field_decl(
513 const struct bt_ctf_field_decl *field);
3c2ce778 514%rename("_bt_array_index") bt_array_index(struct definition_array *array, uint64_t i);
786207e0
XH
515%rename("_bt_sequence_len") bt_sequence_len(struct definition_sequence *sequence);
516%rename("_bt_sequence_index") bt_sequence_index(struct definition_sequence *sequence, uint64_t i);
3a068915
JG
517%rename("_bt_ctf_get_struct_field_count") bt_ctf_get_struct_field_count(const struct bt_definition *structure);
518%rename("_bt_ctf_get_struct_field_index") bt_ctf_get_struct_field_index(const struct bt_definition *structure, uint64_t i);
24a3136a 519
2c0df204 520const struct bt_definition *bt_ctf_get_top_level_scope(const struct bt_ctf_event *ctf_event,
24a3136a
DS
521 enum bt_ctf_scope scope);
522const char *bt_ctf_event_name(const struct bt_ctf_event *ctf_event);
523uint64_t bt_ctf_get_timestamp(const struct bt_ctf_event *ctf_event);
524uint64_t bt_ctf_get_cycles(const struct bt_ctf_event *ctf_event);
2c0df204
XH
525const struct bt_definition *bt_ctf_get_field(const struct bt_ctf_event *ctf_event,
526 const struct bt_definition *scope,
24a3136a 527 const char *field);
2c0df204
XH
528const struct bt_definition *bt_ctf_get_index(const struct bt_ctf_event *ctf_event,
529 const struct bt_definition *field,
24a3136a 530 unsigned int index);
2c0df204
XH
531const char *bt_ctf_field_name(const struct bt_definition *field);
532enum ctf_type_id bt_ctf_field_type(const struct bt_declaration *field);
533int bt_ctf_get_int_signedness(const struct bt_declaration *field);
534int bt_ctf_get_int_base(const struct bt_declaration *field);
535int bt_ctf_get_int_byte_order(const struct bt_declaration *field);
536ssize_t bt_ctf_get_int_len(const struct bt_declaration *field);
4191bcd2
XH
537const struct bt_definition *bt_ctf_get_enum_int(const struct bt_definition *field);
538const char *bt_ctf_get_enum_str(const struct bt_definition *field);
2c0df204
XH
539enum ctf_string_encoding bt_ctf_get_encoding(const struct bt_declaration *field);
540int bt_ctf_get_array_len(const struct bt_declaration *field);
3c2ce778 541struct bt_definition *bt_array_index(struct definition_array *array, uint64_t i);
2c0df204
XH
542uint64_t bt_ctf_get_uint64(const struct bt_definition *field);
543int64_t bt_ctf_get_int64(const struct bt_definition *field);
544char *bt_ctf_get_char_array(const struct bt_definition *field);
545char *bt_ctf_get_string(const struct bt_definition *field);
e5a73b90 546double bt_ctf_get_float(const struct bt_definition *field);
812e6682 547const struct bt_definition *bt_ctf_get_variant(const struct bt_definition *field);
24a3136a
DS
548int bt_ctf_field_get_error(void);
549const char *bt_ctf_get_decl_event_name(const struct bt_ctf_event_decl *event);
550const char *bt_ctf_get_decl_field_name(const struct bt_ctf_field_decl *field);
2c0df204 551const struct bt_declaration *bt_ctf_get_decl_from_def(const struct bt_definition *field);
8bb27181 552const struct bt_declaration *bt_ctf_get_decl_from_field_decl(const struct bt_ctf_field_decl *field);
786207e0
XH
553uint64_t bt_sequence_len(struct definition_sequence *sequence);
554struct bt_definition *bt_sequence_index(struct definition_sequence *sequence, uint64_t i);
3a068915
JG
555uint64_t bt_ctf_get_struct_field_count(const struct bt_definition *structure);
556const struct bt_definition *bt_ctf_get_struct_field_index(const struct bt_definition *structure, uint64_t i);
24a3136a
DS
557
558%pythoncode%{
559
24d5c942
JG
560class CTFStringEncoding:
561 NONE = 0
562 UTF8 = 1
563 ASCII = 2
564 UNKNOWN = 3
565
8bb27181
JG
566# Based on the enum in ctf-writer/writer.h
567class ByteOrder:
568 BYTE_ORDER_NATIVE = 0
569 BYTE_ORDER_LITTLE_ENDIAN = 1
570 BYTE_ORDER_BIG_ENDIAN = 2
571 BYTE_ORDER_NETWORK = 3
572 BYTE_ORDER_UNKNOWN = 4 # Python-specific entry
573
24d5c942
JG
574#enum equivalent, accessible constants
575#These are taken directly from ctf/events.h
576#All changes to enums must also be made here
577class CTFTypeId:
578 UNKNOWN = 0
579 INTEGER = 1
580 FLOAT = 2
581 ENUM = 3
582 STRING = 4
583 STRUCT = 5
584 UNTAGGED_VARIANT = 6
585 VARIANT = 7
586 ARRAY = 8
587 SEQUENCE = 9
588 NR_CTF_TYPES = 10
589
8bb27181
JG
590 def type_name(id):
591 name = "UNKNOWN_TYPE"
24d5c942
JG
592 constants = [attr for attr in dir(CTFTypeId) if not callable(getattr(CTFTypeId, attr)) and not attr.startswith("__")]
593 for attr in constants:
594 if getattr(CTFTypeId, attr) == id:
595 name = attr
596 break
597 return name
598
8bb27181 599class CTFScope:
78d714e8
JG
600 TRACE_PACKET_HEADER = 0
601 STREAM_PACKET_CONTEXT = 1
602 STREAM_EVENT_HEADER = 2
603 STREAM_EVENT_CONTEXT = 3
604 EVENT_CONTEXT = 4
605 EVENT_FIELDS = 5
606
8bb27181
JG
607 def scope_name(scope):
608 name = "UNKNOWN_SCOPE"
609 constants = [attr for attr in dir(CTFScope) if not callable(getattr(CTFScope, attr)) and not attr.startswith("__")]
610 for attr in constants:
611 if getattr(CTFScope, attr) == scope:
612 name = attr
613 break
614 return name
615
e404272a 616# Priority of the scopes when searching for event fields
8bb27181
JG
617_scopes = [CTFScope.EVENT_FIELDS, CTFScope.EVENT_CONTEXT, CTFScope.STREAM_EVENT_CONTEXT,
618 CTFScope.STREAM_EVENT_HEADER, CTFScope.STREAM_PACKET_CONTEXT, CTFScope.TRACE_PACKET_HEADER]
e404272a 619
78d714e8
JG
620import collections
621class Event(collections.Mapping):
622 """
623 This class represents an event from the trace.
624 It is obtained using the TraceCollection generator functions.
625 Do not instantiate.
626 """
78d714e8
JG
627 def __init__(self):
628 raise NotImplementedError("Event cannot be instantiated")
629
630 @property
631 def name(self):
632 """Return the name of the event or None on error."""
633 return _bt_ctf_event_name(self._e)
634
635 @property
636 def cycles(self):
24a3136a 637 """
78d714e8
JG
638 Return the timestamp of the event as written in
639 the packet (in cycles) or -1ULL on error.
24a3136a 640 """
78d714e8 641 return _bt_ctf_get_cycles(self._e)
24a3136a 642
78d714e8
JG
643 @property
644 def timestamp(self):
645 """
646 Return the timestamp of the event offset with the
647 system clock source or -1ULL on error.
648 """
649 return _bt_ctf_get_timestamp(self._e)
650
651 def field_with_scope(self, field_name, scope):
652 """
653 Get field_name's value in scope.
654 None is returned if no field matches field_name.
655 """
e404272a 656 if not scope in _scopes:
78d714e8
JG
657 raise ValueError("Invalid scope provided")
658 field = self._field_with_scope(field_name, scope)
659 if field is not None:
660 return field.value
661 return None
662
663 def field_list_with_scope(self, scope):
664 """Return a list of field names in scope."""
e404272a 665 if not scope in _scopes:
78d714e8
JG
666 raise ValueError("Invalid scope provided")
667 field_names = []
668 for field in self._field_list_with_scope(scope):
669 field_names.append(field.name)
670 return field_names
671
672 @property
673 def handle(self):
674 """
675 Get the TraceHandle associated with this event
676 Return None on error
677 """
678 ret = _bt_ctf_event_get_handle_id(self._e)
679 if ret < 0:
786207e0
XH
680 return None
681
78d714e8
JG
682 th = TraceHandle.__new__(TraceHandle)
683 th._id = ret
684 th._trace_collection = self.get_trace_collection()
685 return th
686
687 @property
688 def trace_collection(self):
689 """
690 Get the TraceCollection associated with this event.
691 Return None on error.
24a3136a 692 """
78d714e8
JG
693 trace_collection = TraceCollection()
694 trace_collection._tc = _bt_ctf_event_get_context(self._e);
695 if trace_collection._tc is None:
696 return None
697 else:
698 return trace_collection
699
700 def __getitem__(self, field_name):
24a3136a 701 """
78d714e8
JG
702 Get field_name's value. If the field_name exists in multiple
703 scopes, the first field found is returned. The scopes are searched
704 in the following order:
705 1) EVENT_FIELDS
706 2) EVENT_CONTEXT
707 3) STREAM_EVENT_CONTEXT
708 4) STREAM_EVENT_HEADER
709 5) STREAM_PACKET_CONTEXT
710 6) TRACE_PACKET_HEADER
711 None is returned if no field matches field_name.
712
713 Use field_with_scope() to explicitly access fields in a given
714 scope.
715 """
716 field = self._field(field_name)
717 if field is not None:
718 return field.value
719 raise KeyError(field_name)
720
721 def __iter__(self):
722 for key in self.keys():
723 yield key
724
725 def __len__(self):
726 count = 0
e404272a 727 for scope in _scopes:
78d714e8
JG
728 scope_ptr = _bt_ctf_get_top_level_scope(self._e, scope)
729 ret = _bt_python_field_listcaller(self._e, scope_ptr)
730 if isinstance(ret, list):
731 count += ret[1]
732 return count
733
734 def __contains__(self, field_name):
735 return self._field(field_name) is not None
736
737 def keys(self):
738 """Return a list of field names."""
739 field_names = set()
e404272a 740 for scope in _scopes:
78d714e8
JG
741 for name in self.field_list_with_scope(scope):
742 field_names.add(name)
743 return list(field_names)
744
745 def get(self, field_name, default = None):
746 field = self._field(field_name)
747 if field is None:
748 return default
749 return field.value
750
751 def items(self):
752 for field in self.keys():
753 yield (field, self[field])
754
755 def _field_with_scope(self, field_name, scope):
756 scope_ptr = _bt_ctf_get_top_level_scope(self._e, scope)
757 if scope_ptr is None:
758 return None
759
760 definition_ptr = _bt_ctf_get_field(self._e, scope_ptr, field_name)
761 if definition_ptr is None:
762 return None
24a3136a 763
78d714e8
JG
764 field = _Definition(definition_ptr, scope)
765 return field
766
767 def _field(self, field_name):
768 field = None
e404272a 769 for scope in _scopes:
78d714e8
JG
770 field = self._field_with_scope(field_name, scope)
771 if field is not None:
772 break
773 return field
774
775 def _field_list_with_scope(self, scope):
776 fields = []
777 scope_ptr = _bt_ctf_get_top_level_scope(self._e, scope)
778
779 # Returns a list [list_ptr, count]. If list_ptr is NULL, SWIG will only
780 # provide the "count" return value
781 count = 0
782 list_ptr = None
783 ret = _bt_python_field_listcaller(self._e, scope_ptr)
784 if isinstance(ret, list):
785 list_ptr, count = ret
786
787 for i in range(count):
788 definition_ptr = _bt_python_field_one_from_list(list_ptr, i)
789 if definition_ptr is not None:
790 definition = _Definition(definition_ptr, scope)
791 fields.append(definition)
792 return fields
793
794class FieldError(Exception):
795 def __init__(self, value):
796 self.value = value
797
798 def __str__(self):
799 return repr(self.value)
800
cb1fcc68 801class EventDeclaration(object):
78d714e8
JG
802 """Event declaration class. Do not instantiate."""
803
804 def __init__(self):
cb1fcc68 805 raise NotImplementedError("EventDeclaration cannot be instantiated")
78d714e8 806
cb1fcc68
JG
807 @property
808 def name(self):
78d714e8 809 """Return the name of the event or None on error"""
cb1fcc68 810 return _bt_ctf_get_decl_event_name(self._ed)
78d714e8 811
8bb27181
JG
812 @property
813 def fields(self):
24a3136a 814 """
8bb27181
JG
815 Generator returning all FieldDeclarations of an event, going through
816 each scope in the following order:
817 1) EVENT_FIELDS
818 2) EVENT_CONTEXT
819 3) STREAM_EVENT_CONTEXT
820 4) STREAM_EVENT_HEADER
821 5) STREAM_PACKET_CONTEXT
822 6) TRACE_PACKET_HEADER
823 """
824 for scope in _scopes:
825 for declaration in self.fields_scope(scope):
826 yield declaration
827
828 def fields_scope(self, scope):
829 """
830 Generator returning FieldDeclarations of the current event in scope.
24a3136a 831 """
cb1fcc68 832 ret = _by_python_field_decl_listcaller(self._ed, scope)
24a3136a 833
cb1fcc68 834 if not isinstance(ret, list):
8bb27181 835 return
24a3136a 836
cb1fcc68 837 list_ptr, count = ret
cb1fcc68 838 for i in range(count):
8bb27181
JG
839 field_declaration_ptr = _bt_python_field_decl_one_from_list(list_ptr, i)
840 if field_declaration_ptr is not None:
841 declaration_ptr = _bt_ctf_get_decl_from_field_decl(field_declaration_ptr)
842 field_declaration = _create_field_declaration(declaration_ptr, _bt_ctf_get_decl_field_name(field_declaration_ptr), scope)
843 yield field_declaration
cb1fcc68
JG
844
845class FieldDeclaration(object):
846 """Field declaration class. Do not instantiate."""
78d714e8 847 def __init__(self):
cb1fcc68 848 raise NotImplementedError("FieldDeclaration cannot be instantiated")
78d714e8 849
8bb27181
JG
850 def __repr__(self):
851 return "({0}) {1} {2}".format(CTFScope.scope_name(self.scope), CTFTypeId.type_name(self.type), self.name)
852
cb1fcc68
JG
853 @property
854 def name(self):
8bb27181
JG
855 """Return the name of a FieldDeclaration or None on error."""
856 return self._name
857
858 @property
859 def type(self):
860 """
861 Return the FieldDeclaration's type. One of the entries in class
862 CTFTypeId.
863 """
864 return _bt_ctf_field_type(self._fd)
865
866 @property
867 def scope(self):
868 """
869 Return the FieldDeclaration's scope.
870 """
871 return self._s
872
873class IntegerFieldDeclaration(FieldDeclaration):
874 """Do not instantiate."""
875 def __init__(self):
876 raise NotImplementedError("IntegerFieldDeclaration cannot be instantiated")
877
878 @property
879 def signedness(self):
880 """
881 Return the signedness of an integer:
882 0 if unsigned; 1 if signed; -1 on error.
883 """
884 return _bt_ctf_get_int_signedness(self._fd)
885
886 @property
887 def base(self):
888 """Return the base of an int or a negative value on error."""
889 return _bt_ctf_get_int_base(self._fd)
890
891 @property
892 def byte_order(self):
893 """
894 Return the byte order. One of class ByteOrder's entries.
895 """
896 ret = _bt_ctf_get_int_byte_order(self._fd)
897 if ret == 1234:
898 return ByteOrder.BYTE_ORDER_LITTLE_ENDIAN
899 elif ret == 4321:
900 return ByteOrder.BYTE_ORDER_BIG_ENDIAN
901 else:
902 return ByteOrder.BYTE_ORDER_UNKNOWN
903
904 @property
905 def length(self):
906 """
907 Return the size, in bits, of an int or a negative
908 value on error.
909 """
910 return _bt_ctf_get_int_len(self._fd)
911
912 @property
913 def encoding(self):
914 """
915 Return the encoding. One of class CTFStringEncoding's entries.
916 Return a negative value on error.
917 """
918 return _bt_ctf_get_encoding(self._fd)
919
920class EnumerationFieldDeclaration(FieldDeclaration):
921 """Do not instantiate."""
922 def __init__(self):
923 raise NotImplementedError("EnumerationFieldDeclaration cannot be instantiated")
924
925class ArrayFieldDeclaration(FieldDeclaration):
926 """Do not instantiate."""
927 def __init__(self):
928 raise NotImplementedError("ArrayFieldDeclaration cannot be instantiated")
929
930 @property
931 def length(self):
932 """
933 Return the length of an array or a negative
934 value on error.
935 """
936 return _bt_ctf_get_array_len(self._fd)
937
938class SequenceFieldDeclaration(FieldDeclaration):
939 """Do not instantiate."""
940 def __init__(self):
941 raise NotImplementedError("SequenceFieldDeclaration cannot be instantiated")
942
943class FloatFieldDeclaration(FieldDeclaration):
944 """Do not instantiate."""
945 def __init__(self):
946 raise NotImplementedError("FloatFieldDeclaration cannot be instantiated")
947
948class StructureFieldDeclaration(FieldDeclaration):
949 """Do not instantiate."""
950 def __init__(self):
951 raise NotImplementedError("StructureFieldDeclaration cannot be instantiated")
952
953class StringFieldDeclaration(FieldDeclaration):
954 """Do not instantiate."""
955 def __init__(self):
956 raise NotImplementedError("StringFieldDeclaration cannot be instantiated")
957
958class VariantFieldDeclaration(FieldDeclaration):
959 """Do not instantiate."""
960 def __init__(self):
961 raise NotImplementedError("VariantFieldDeclaration cannot be instantiated")
78d714e8
JG
962
963def field_error():
964 """
965 Return the last error code encountered while
966 accessing a field and reset the error flag.
967 Return 0 if no error, a negative value otherwise.
968 """
969 return _bt_ctf_field_get_error()
970
8bb27181 971def _create_field_declaration(declaration_ptr, name, scope):
78d714e8 972 """
8bb27181 973 Private field declaration factory.
78d714e8 974 """
8bb27181
JG
975 if declaration_ptr is None:
976 raise ValueError("declaration_ptr must be valid")
977 if not scope in _scopes:
978 raise ValueError("Invalid scope provided")
979
980 type = _bt_ctf_field_type(declaration_ptr)
981 declaration = None
982 if type == CTFTypeId.INTEGER:
983 declaration = IntegerFieldDeclaration.__new__(IntegerFieldDeclaration)
984 elif type == CTFTypeId.ENUM:
985 declaration = EnumerationFieldDeclaration.__new__(EnumerationFieldDeclaration)
986 elif type == CTFTypeId.ARRAY:
987 declaration = ArrayFieldDeclaration.__new__(ArrayFieldDeclaration)
988 elif type == CTFTypeId.SEQUENCE:
989 declaration = SequenceFieldDeclaration.__new__(SequenceFieldDeclaration)
990 elif type == CTFTypeId.FLOAT:
991 declaration = FloatFieldDeclaration.__new__(FloatFieldDeclaration)
992 elif type == CTFTypeId.STRUCT:
993 declaration = StructureFieldDeclaration.__new__(StructureFieldDeclaration)
994 elif type == CTFTypeId.STRING:
995 declaration = StringFieldDeclaration.__new__(StringFieldDeclaration)
996 elif type == CTFTypeId.VARIANT:
997 declaration = VariantFieldDeclaration.__new__(VariantFieldDeclaration)
998 else:
999 return declaration
1000
1001 declaration._fd = declaration_ptr
1002 declaration._s = scope
1003 declaration._name = name
1004 return declaration
78d714e8
JG
1005
1006class _Definition(object):
1007 def __init__(self, definition_ptr, scope):
1008 self._d = definition_ptr
1009 self._s = scope
e404272a 1010 if not scope in _scopes:
78d714e8
JG
1011 ValueError("Invalid scope provided")
1012
78d714e8
JG
1013 @property
1014 def name(self):
1015 """Return the name of a field or None on error."""
1016 return _bt_ctf_field_name(self._d)
1017
1018 @property
1019 def type(self):
1020 """Return the type of a field or -1 if unknown."""
1021 return _bt_ctf_field_type(_bt_ctf_get_decl_from_def(self._d))
1022
8bb27181
JG
1023 @property
1024 def declaration(self):
1025 """Return the associated Definition object."""
1026 return _create_field_declaration(_bt_ctf_get_decl_from_def(self._d), self.name, self.scope)
78d714e8 1027
8bb27181 1028 def _get_enum_str(self):
78d714e8
JG
1029 """
1030 Return the string matching the current enumeration.
1031 Return None on error.
1032 """
1033 return _bt_ctf_get_enum_str(self._d)
1034
8bb27181 1035 def _get_array_element_at(self, index):
78d714e8
JG
1036 """
1037 Return the array's element at position index.
1038 Return None on error
1039 """
1040 array_ptr = _bt_python_get_array_from_def(self._d)
1041 if array_ptr is None:
1042 return None
1043
1044 definition_ptr = _bt_array_index(array_ptr, index)
1045 if definition_ptr is None:
1046 return None
1047 return _Definition(definition_ptr, self.scope)
1048
8bb27181 1049 def _get_sequence_len(self):
78d714e8
JG
1050 """
1051 Return the len of a sequence or a negative
1052 value on error.
1053 """
1054 seq = _bt_python_get_sequence_from_def(self._d)
1055 return _bt_sequence_len(seq)
1056
8bb27181 1057 def _get_sequence_element_at(self, index):
78d714e8
JG
1058 """
1059 Return the sequence's element at position index,
1060 otherwise return None
1061 """
1062 seq = _bt_python_get_sequence_from_def(self._d)
1063 if seq is not None:
1064 definition_ptr = _bt_sequence_index(seq, index)
1065 if definition_ptr is not None:
1066 return _Definition(definition_ptr, self.scope)
1067 return None
1068
8bb27181 1069 def _get_uint64(self):
78d714e8
JG
1070 """
1071 Return the value associated with the field.
1072 If the field does not exist or is not of the type requested,
1073 the value returned is undefined. To check if an error occured,
1074 use the field_error() function after accessing a field.
1075 """
1076 return _bt_ctf_get_uint64(self._d)
1077
8bb27181 1078 def _get_int64(self):
78d714e8
JG
1079 """
1080 Return the value associated with the field.
1081 If the field does not exist or is not of the type requested,
1082 the value returned is undefined. To check if an error occured,
1083 use the field_error() function after accessing a field.
1084 """
1085 return _bt_ctf_get_int64(self._d)
1086
8bb27181 1087 def _get_char_array(self):
78d714e8
JG
1088 """
1089 Return the value associated with the field.
1090 If the field does not exist or is not of the type requested,
1091 the value returned is undefined. To check if an error occurred,
1092 use the field_error() function after accessing a field.
1093 """
1094 return _bt_ctf_get_char_array(self._d)
1095
8bb27181 1096 def _get_str(self):
78d714e8
JG
1097 """
1098 Return the value associated with the field.
1099 If the field does not exist or is not of the type requested,
1100 the value returned is undefined. To check if an error occurred,
1101 use the field_error() function after accessing a field.
1102 """
1103 return _bt_ctf_get_string(self._d)
1104
8bb27181 1105 def _get_float(self):
78d714e8
JG
1106 """
1107 Return the value associated with the field.
1108 If the field does not exist or is not of the type requested,
1109 the value returned is undefined. To check if an error occurred,
1110 use the field_error() function after accessing a field.
1111 """
1112 return _bt_ctf_get_float(self._d)
1113
8bb27181 1114 def _get_variant(self):
78d714e8
JG
1115 """
1116 Return the variant's selected field.
1117 If the field does not exist or is not of the type requested,
1118 the value returned is undefined. To check if an error occurred,
1119 use the field_error() function after accessing a field.
1120 """
1121 return _bt_ctf_get_variant(self._d)
1122
8bb27181 1123 def _get_struct_field_count(self):
78d714e8
JG
1124 """
1125 Return the number of fields contained in the structure.
1126 If the field does not exist or is not of the type requested,
1127 the value returned is undefined.
1128 """
1129 return _bt_ctf_get_struct_field_count(self._d)
1130
8bb27181 1131 def _get_struct_field_at(self, i):
78d714e8
JG
1132 """
1133 Return the structure's field at position i.
1134 If the field does not exist or is not of the type requested,
1135 the value returned is undefined. To check if an error occurred,
1136 use the field_error() function after accessing a field.
1137 """
1138 return _bt_ctf_get_struct_field_index(self._d, i)
1139
1140 @property
1141 def value(self):
1142 """
1143 Return the value associated with the field according to its type.
1144 Return None on error.
1145 """
1146 id = self.type
1147 value = None
1148 if id == CTFTypeId.STRING:
8bb27181 1149 value = self._get_str()
78d714e8
JG
1150 elif id == CTFTypeId.ARRAY:
1151 value = []
8bb27181
JG
1152 for i in range(self.declaration.length):
1153 element = self._get_array_element_at(i)
78d714e8
JG
1154 value.append(element.value)
1155 elif id == CTFTypeId.INTEGER:
8bb27181
JG
1156 if self.declaration.signedness == 0:
1157 value = self._get_uint64()
78d714e8 1158 else:
8bb27181 1159 value = self._get_int64()
78d714e8 1160 elif id == CTFTypeId.ENUM:
8bb27181 1161 value = self._get_enum_str()
78d714e8 1162 elif id == CTFTypeId.SEQUENCE:
8bb27181 1163 seq_len = self._get_sequence_len()
78d714e8
JG
1164 value = []
1165 for i in range(seq_len):
8bb27181 1166 evDef = self._get_sequence_element_at(i)
78d714e8
JG
1167 value.append(evDef.value)
1168 elif id == CTFTypeId.FLOAT:
8bb27181 1169 value = self._get_float()
78d714e8 1170 elif id == CTFTypeId.VARIANT:
8bb27181
JG
1171 variant = _Definition.__new__(_Definition)
1172 variant._d = self._get_variant();
78d714e8
JG
1173 value = variant.value
1174 elif id == CTFTypeId.STRUCT:
1175 value = {}
8bb27181
JG
1176 for i in range(self._get_struct_field_count()):
1177 member = _Definition(self._get_struct_field_at(i), self.scope)
78d714e8
JG
1178 value[member.name] = member.value
1179
1180 if field_error():
8bb27181 1181 raise FieldError("Error occurred while accessing field {} of type {}".format(self.name, CTFTypeId.type_name(self.declaration.type)))
78d714e8
JG
1182 return value
1183
1184 @property
1185 def scope(self):
1186 """Return the scope of a field or None on error."""
1187 return self._s
1188
24a3136a
DS
1189%}
1190
1191
ec8c88d7
JG
1192// =================================================================
1193// CTF Writer
1194// =================================================================
1195
1196/* =================================================================
1197 CLOCK.H
1198 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
1199*/
1200%rename("_bt_ctf_clock_create") bt_ctf_clock_create(const char *name);
1201%rename("_bt_ctf_clock_set_description") bt_ctf_clock_set_description(struct bt_ctf_clock *clock, const char *desc);
1202%rename("_bt_ctf_clock_set_frequency") bt_ctf_clock_set_frequency(struct bt_ctf_clock *clock, uint64_t freq);
1203%rename("_bt_ctf_clock_set_precision") bt_ctf_clock_set_precision(struct bt_ctf_clock *clock, uint64_t precision);
1204%rename("_bt_ctf_clock_set_offset_s") bt_ctf_clock_set_offset_s(struct bt_ctf_clock *clock, uint64_t offset_s);
1205%rename("_bt_ctf_clock_set_offset") bt_ctf_clock_set_offset(struct bt_ctf_clock *clock, uint64_t offset);
1206%rename("_bt_ctf_clock_set_is_absolute") bt_ctf_clock_set_is_absolute(struct bt_ctf_clock *clock, int is_absolute);
1207%rename("_bt_ctf_clock_set_time") bt_ctf_clock_set_time(struct bt_ctf_clock *clock, uint64_t time);
1208%rename("_bt_ctf_clock_get") bt_ctf_clock_get(struct bt_ctf_clock *clock);
1209%rename("_bt_ctf_clock_put") bt_ctf_clock_put(struct bt_ctf_clock *clock);
1210
1211struct bt_ctf_clock *bt_ctf_clock_create(const char *name);
1212int bt_ctf_clock_set_description(struct bt_ctf_clock *clock, const char *desc);
1213int bt_ctf_clock_set_frequency(struct bt_ctf_clock *clock, uint64_t freq);
1214int bt_ctf_clock_set_precision(struct bt_ctf_clock *clock, uint64_t precision);
1215int bt_ctf_clock_set_offset_s(struct bt_ctf_clock *clock, uint64_t offset_s);
1216int bt_ctf_clock_set_offset(struct bt_ctf_clock *clock, uint64_t offset);
1217int bt_ctf_clock_set_is_absolute(struct bt_ctf_clock *clock, int is_absolute);
1218int bt_ctf_clock_set_time(struct bt_ctf_clock *clock, uint64_t time);
1219void bt_ctf_clock_get(struct bt_ctf_clock *clock);
1220void bt_ctf_clock_put(struct bt_ctf_clock *clock);
1221
1222/* =================================================================
1223 EVENT-TYPES.H
1224 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
1225*/
1226%rename("_bt_ctf_field_type_integer_create") bt_ctf_field_type_integer_create(unsigned int size);
1227%rename("_bt_ctf_field_type_integer_set_signed") bt_ctf_field_type_integer_set_signed(struct bt_ctf_field_type *integer, int is_signed);
1228%rename("_bt_ctf_field_type_integer_set_base") bt_ctf_field_type_integer_set_base(struct bt_ctf_field_type *integer, enum bt_ctf_integer_base base);
1229%rename("_bt_ctf_field_type_integer_set_encoding") bt_ctf_field_type_integer_set_encoding(struct bt_ctf_field_type *integer, enum ctf_string_encoding encoding);
1230%rename("_bt_ctf_field_type_enumeration_create") bt_ctf_field_type_enumeration_create(struct bt_ctf_field_type *integer_container_type);
1231%rename("_bt_ctf_field_type_enumeration_add_mapping") bt_ctf_field_type_enumeration_add_mapping(struct bt_ctf_field_type *enumeration, const char *string, int64_t range_start, int64_t range_end);
1232%rename("_bt_ctf_field_type_floating_point_create") bt_ctf_field_type_floating_point_create(void);
1233%rename("_bt_ctf_field_type_floating_point_set_exponent_digits") bt_ctf_field_type_floating_point_set_exponent_digits(struct bt_ctf_field_type *floating_point, unsigned int exponent_digits);
1234%rename("_bt_ctf_field_type_floating_point_set_mantissa_digits") bt_ctf_field_type_floating_point_set_mantissa_digits(struct bt_ctf_field_type *floating_point, unsigned int mantissa_digits);
1235%rename("_bt_ctf_field_type_structure_create") bt_ctf_field_type_structure_create(void);
1236%rename("_bt_ctf_field_type_structure_add_field") bt_ctf_field_type_structure_add_field(struct bt_ctf_field_type *structure, struct bt_ctf_field_type *field_type, const char *field_name);
1237%rename("_bt_ctf_field_type_variant_create") bt_ctf_field_type_variant_create(struct bt_ctf_field_type *enum_tag, const char *tag_name);
1238%rename("_bt_ctf_field_type_variant_add_field") bt_ctf_field_type_variant_add_field(struct bt_ctf_field_type *variant, struct bt_ctf_field_type *field_type, const char *field_name);
1239%rename("_bt_ctf_field_type_array_create") bt_ctf_field_type_array_create(struct bt_ctf_field_type *element_type, unsigned int length);
1240%rename("_bt_ctf_field_type_sequence_create") bt_ctf_field_type_sequence_create(struct bt_ctf_field_type *element_type, const char *length_field_name);
1241%rename("_bt_ctf_field_type_string_create") bt_ctf_field_type_string_create(void);
1242%rename("_bt_ctf_field_type_string_set_encoding") bt_ctf_field_type_string_set_encoding(struct bt_ctf_field_type *string, enum ctf_string_encoding encoding);
1243%rename("_bt_ctf_field_type_set_alignment") bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *type, unsigned int alignment);
1244%rename("_bt_ctf_field_type_set_byte_order") bt_ctf_field_type_set_byte_order(struct bt_ctf_field_type *type, enum bt_ctf_byte_order byte_order);
1245%rename("_bt_ctf_field_type_get") bt_ctf_field_type_get(struct bt_ctf_field_type *type);
1246%rename("_bt_ctf_field_type_put") bt_ctf_field_type_put(struct bt_ctf_field_type *type);
1247
1248struct bt_ctf_field_type *bt_ctf_field_type_integer_create(unsigned int size);
1249int bt_ctf_field_type_integer_set_signed(struct bt_ctf_field_type *integer, int is_signed);
1250int bt_ctf_field_type_integer_set_base(struct bt_ctf_field_type *integer, enum bt_ctf_integer_base base);
1251int bt_ctf_field_type_integer_set_encoding(struct bt_ctf_field_type *integer, enum ctf_string_encoding encoding);
1252struct bt_ctf_field_type *bt_ctf_field_type_enumeration_create(struct bt_ctf_field_type *integer_container_type);
1253int bt_ctf_field_type_enumeration_add_mapping(struct bt_ctf_field_type *enumeration, const char *string, int64_t range_start, int64_t range_end);
1254struct bt_ctf_field_type *bt_ctf_field_type_floating_point_create(void);
1255int bt_ctf_field_type_floating_point_set_exponent_digits(struct bt_ctf_field_type *floating_point, unsigned int exponent_digits);
1256int bt_ctf_field_type_floating_point_set_mantissa_digits(struct bt_ctf_field_type *floating_point, unsigned int mantissa_digits);
1257struct bt_ctf_field_type *bt_ctf_field_type_structure_create(void);
1258int bt_ctf_field_type_structure_add_field(struct bt_ctf_field_type *structure, struct bt_ctf_field_type *field_type, const char *field_name);
1259struct bt_ctf_field_type *bt_ctf_field_type_variant_create(struct bt_ctf_field_type *enum_tag, const char *tag_name);
1260int bt_ctf_field_type_variant_add_field(struct bt_ctf_field_type *variant, struct bt_ctf_field_type *field_type, const char *field_name);
1261struct bt_ctf_field_type *bt_ctf_field_type_array_create(struct bt_ctf_field_type *element_type, unsigned int length);
1262struct bt_ctf_field_type *bt_ctf_field_type_sequence_create(struct bt_ctf_field_type *element_type, const char *length_field_name);
1263struct bt_ctf_field_type *bt_ctf_field_type_string_create(void);
1264int bt_ctf_field_type_string_set_encoding(struct bt_ctf_field_type *string, enum ctf_string_encoding encoding);
1265int bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *type, unsigned int alignment);
1266int bt_ctf_field_type_set_byte_order(struct bt_ctf_field_type *type, enum bt_ctf_byte_order byte_order);
1267void bt_ctf_field_type_get(struct bt_ctf_field_type *type);
1268void bt_ctf_field_type_put(struct bt_ctf_field_type *type);
1269
1270/* =================================================================
1271 EVENT-FIELDS.H
1272 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
1273*/
1274%rename("_bt_ctf_field_create") bt_ctf_field_create(struct bt_ctf_field_type *type);
1275%rename("_bt_ctf_field_structure_get_field") bt_ctf_field_structure_get_field(struct bt_ctf_field *structure, const char *name);
1276%rename("_bt_ctf_field_array_get_field") bt_ctf_field_array_get_field(struct bt_ctf_field *array, uint64_t index);
1277%rename("_bt_ctf_field_sequence_set_length") bt_ctf_field_sequence_set_length(struct bt_ctf_field *sequence, struct bt_ctf_field *length_field);
1278%rename("_bt_ctf_field_sequence_get_field") bt_ctf_field_sequence_get_field(struct bt_ctf_field *sequence, uint64_t index);
1279%rename("_bt_ctf_field_variant_get_field") bt_ctf_field_variant_get_field(struct bt_ctf_field *variant, struct bt_ctf_field *tag);
1280%rename("_bt_ctf_field_enumeration_get_container") bt_ctf_field_enumeration_get_container(struct bt_ctf_field *enumeration);
1281%rename("_bt_ctf_field_signed_integer_set_value") bt_ctf_field_signed_integer_set_value(struct bt_ctf_field *integer, int64_t value);
1282%rename("_bt_ctf_field_unsigned_integer_set_value") bt_ctf_field_unsigned_integer_set_value(struct bt_ctf_field *integer, uint64_t value);
1283%rename("_bt_ctf_field_floating_point_set_value") bt_ctf_field_floating_point_set_value(struct bt_ctf_field *floating_point, double value);
1284%rename("_bt_ctf_field_string_set_value") bt_ctf_field_string_set_value(struct bt_ctf_field *string, const char *value);
1285%rename("_bt_ctf_field_get") bt_ctf_field_get(struct bt_ctf_field *field);
1286%rename("_bt_ctf_field_put") bt_ctf_field_put(struct bt_ctf_field *field);
1287
1288struct bt_ctf_field *bt_ctf_field_create(struct bt_ctf_field_type *type);
1289struct bt_ctf_field *bt_ctf_field_structure_get_field(struct bt_ctf_field *structure, const char *name);
1290struct bt_ctf_field *bt_ctf_field_array_get_field(struct bt_ctf_field *array, uint64_t index);
1291int bt_ctf_field_sequence_set_length(struct bt_ctf_field *sequence, struct bt_ctf_field *length_field);
1292struct bt_ctf_field *bt_ctf_field_sequence_get_field(struct bt_ctf_field *sequence, uint64_t index);
1293struct bt_ctf_field *bt_ctf_field_variant_get_field(struct bt_ctf_field *variant, struct bt_ctf_field *tag);
1294struct bt_ctf_field *bt_ctf_field_enumeration_get_container(struct bt_ctf_field *enumeration);
1295int bt_ctf_field_signed_integer_set_value(struct bt_ctf_field *integer, int64_t value);
1296int bt_ctf_field_unsigned_integer_set_value(struct bt_ctf_field *integer, uint64_t value);
1297int bt_ctf_field_floating_point_set_value(struct bt_ctf_field *floating_point, double value);
1298int bt_ctf_field_string_set_value(struct bt_ctf_field *string, const char *value);
1299void bt_ctf_field_get(struct bt_ctf_field *field);
1300void bt_ctf_field_put(struct bt_ctf_field *field);
1301
1302/* =================================================================
1303 EVENT.H
1304 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
1305*/
1306%rename("_bt_ctf_event_class_create") bt_ctf_event_class_create(const char *name);
1307%rename("_bt_ctf_event_class_add_field") bt_ctf_event_class_add_field(struct bt_ctf_event_class *event_class, struct bt_ctf_field_type *type, const char *name);
1308%rename("_bt_ctf_event_class_get") bt_ctf_event_class_get(struct bt_ctf_event_class *event_class);
1309%rename("_bt_ctf_event_class_put") bt_ctf_event_class_put(struct bt_ctf_event_class *event_class);
1310%rename("_bt_ctf_event_create") bt_ctf_event_create(struct bt_ctf_event_class *event_class);
1311%rename("_bt_ctf_event_set_payload") bt_ctf_event_set_payload(struct bt_ctf_event *event, const char *name, struct bt_ctf_field *value);
1312%rename("_bt_ctf_event_get_payload") bt_ctf_event_get_payload(struct bt_ctf_event *event, const char *name);
1313%rename("_bt_ctf_event_get") bt_ctf_event_get(struct bt_ctf_event *event);
1314%rename("_bt_ctf_event_put") bt_ctf_event_put(struct bt_ctf_event *event);
1315
1316struct bt_ctf_event_class *bt_ctf_event_class_create(const char *name);
1317int bt_ctf_event_class_add_field(struct bt_ctf_event_class *event_class, struct bt_ctf_field_type *type, const char *name);
1318void bt_ctf_event_class_get(struct bt_ctf_event_class *event_class);
1319void bt_ctf_event_class_put(struct bt_ctf_event_class *event_class);
1320struct bt_ctf_event *bt_ctf_event_create(struct bt_ctf_event_class *event_class);
1321int bt_ctf_event_set_payload(struct bt_ctf_event *event, const char *name, struct bt_ctf_field *value);
1322struct bt_ctf_field *bt_ctf_event_get_payload(struct bt_ctf_event *event, const char *name);
1323void bt_ctf_event_get(struct bt_ctf_event *event);
1324void bt_ctf_event_put(struct bt_ctf_event *event);
1325
1326/* =================================================================
1327 STREAM.H
1328 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
1329*/
1330%rename("_bt_ctf_stream_class_create") bt_ctf_stream_class_create(const char *name);
1331%rename("_bt_ctf_stream_class_set_clock") bt_ctf_stream_class_set_clock(struct bt_ctf_stream_class *stream_class, struct bt_ctf_clock *clock);
1332%rename("_bt_ctf_stream_class_add_event_class") bt_ctf_stream_class_add_event_class(struct bt_ctf_stream_class *stream_class, struct bt_ctf_event_class *event_class);
1333%rename("_bt_ctf_stream_class_get") bt_ctf_stream_class_get(struct bt_ctf_stream_class *stream_class);
1334%rename("_bt_ctf_stream_class_put") bt_ctf_stream_class_put(struct bt_ctf_stream_class *stream_class);
1335%rename("_bt_ctf_stream_append_discarded_events") bt_ctf_stream_append_discarded_events(struct bt_ctf_stream *stream, uint64_t event_count);
1336%rename("_bt_ctf_stream_append_event") bt_ctf_stream_append_event(struct bt_ctf_stream *stream, struct bt_ctf_event *event);
1337%rename("_bt_ctf_stream_flush") bt_ctf_stream_flush(struct bt_ctf_stream *stream);
1338%rename("_bt_ctf_stream_get") bt_ctf_stream_get(struct bt_ctf_stream *stream);
1339%rename("_bt_ctf_stream_put") bt_ctf_stream_put(struct bt_ctf_stream *stream);
1340
1341struct bt_ctf_stream_class *bt_ctf_stream_class_create(const char *name);
1342int bt_ctf_stream_class_set_clock(struct bt_ctf_stream_class *stream_class, struct bt_ctf_clock *clock);
1343int bt_ctf_stream_class_add_event_class(struct bt_ctf_stream_class *stream_class, struct bt_ctf_event_class *event_class);
1344void bt_ctf_stream_class_get(struct bt_ctf_stream_class *stream_class);
1345void bt_ctf_stream_class_put(struct bt_ctf_stream_class *stream_class);
1346void bt_ctf_stream_append_discarded_events(struct bt_ctf_stream *stream, uint64_t event_count);
1347int bt_ctf_stream_append_event(struct bt_ctf_stream *stream, struct bt_ctf_event *event);
1348int bt_ctf_stream_flush(struct bt_ctf_stream *stream);
1349void bt_ctf_stream_get(struct bt_ctf_stream *stream);
1350void bt_ctf_stream_put(struct bt_ctf_stream *stream);
1351
1352/* =================================================================
1353 WRITER.H
1354 ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
1355*/
1356%rename("_bt_ctf_writer_create") bt_ctf_writer_create(const char *path);
1357%rename("_bt_ctf_writer_create_stream") bt_ctf_writer_create_stream(struct bt_ctf_writer *writer, struct bt_ctf_stream_class *stream_class);
1358%rename("_bt_ctf_writer_add_environment_field") bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer, const char *name, const char *value);
1359%rename("_bt_ctf_writer_add_clock") bt_ctf_writer_add_clock(struct bt_ctf_writer *writer, struct bt_ctf_clock *clock);
1360%newobject bt_ctf_writer_get_metadata_string;
1361%rename("_bt_ctf_writer_get_metadata_string") bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer);
1362%rename("_bt_ctf_writer_flush_metadata") bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer);
1363%rename("_bt_ctf_writer_set_byte_order") bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer, enum bt_ctf_byte_order byte_order);
1364%rename("_bt_ctf_writer_get") bt_ctf_writer_get(struct bt_ctf_writer *writer);
1365%rename("_bt_ctf_writer_put") bt_ctf_writer_put(struct bt_ctf_writer *writer);
1366
1367struct bt_ctf_writer *bt_ctf_writer_create(const char *path);
1368struct bt_ctf_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer, struct bt_ctf_stream_class *stream_class);
1369int bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer, const char *name, const char *value);
1370int bt_ctf_writer_add_clock(struct bt_ctf_writer *writer, struct bt_ctf_clock *clock);
1371char *bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer);
1372void bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer);
1373int bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer, enum bt_ctf_byte_order byte_order);
1374void bt_ctf_writer_get(struct bt_ctf_writer *writer);
1375void bt_ctf_writer_put(struct bt_ctf_writer *writer);
1376
1377%pythoncode %{
1378
1379class CTFWriter:
ec8c88d7
JG
1380
1381 class Clock:
1382 def __init__(self, name):
1383 self._c = _bt_ctf_clock_create(name)
1384 if self._c is None:
1385 raise ValueError("Invalid clock name.")
1386
1387 def __del__(self):
1388 _bt_ctf_clock_put(self._c)
1389
1390 """
1391 Set the clock's description. The description appears in the clock's TSDL
1392 meta-data.
1393 """
1394 def set_description(self, desc):
1395 ret = _bt_ctf_clock_set_description(self._c, desc)
1396 if ret < 0:
1397 raise ValueError("Invalid clock description.")
1398
1399 """
1400 Set the clock's frequency (Hz).
1401 """
1402 def set_frequency(self, freq):
1403 ret = _bt_ctf_clock_set_frequency(self._c, freq)
1404 if ret < 0:
1405 raise ValueError("Invalid frequency value.")
1406
1407 """
1408 Set the clock's precision (in clock ticks).
1409 """
1410 def set_precision(self, precision):
1411 ret = _bt_ctf_clock_set_precision(self._c, precision)
1412
1413 """
1414 Set the clock's offset in seconds from POSIX.1 Epoch.
1415 """
1416 def set_offset_seconds(self, offset_s):
1417 ret = _bt_ctf_clock_set_offset_s(self._c, offset_s)
1418 if ret < 0:
1419 raise ValueError("Invalid offset value.")
1420
1421 """
1422 Set the clock's offset in ticks from POSIX.1 Epoch + offset in seconds.
1423 """
1424 def set_offset_seconds(self, offset):
1425 ret = _bt_ctf_clock_set_offset(self._c, offset)
1426 if ret < 0:
1427 raise ValueError("Invalid offset value.")
1428
1429 """
1430 Set a clock's absolute attribute. A clock is absolute if the clock
1431 is a global reference across the trace's other clocks.
1432 """
1433 def set_is_absolute(self, is_absolute):
1434 ret = _bt_ctf_clock_set_is_absolute(self._c, is_absolute)
1435 if ret < 0:
1436 raise ValueError("Could not set the clock's absolute attribute.")
1437
1438 """
1439 Set the current time in nanoseconds since the clock's origin (offset and
1440 offset_s attributes). The clock's value will be sampled as events are
1441 appended to a stream.
1442 """
1443 def set_time(self, time):
1444 ret = _bt_ctf_clock_set_time(self._c, time)
1445 if ret < 0:
1446 raise ValueError("Invalid time value.")
1447
1448 class FieldType:
1449 """
1450 FieldType should not be instantiated directly. Please instantiate
1451 one of the concrete FieldType classes.
1452 """
1453 class IntegerBase:
1454 # These values are based on the bt_ctf_integer_base enum
1455 # declared in event-types.h.
1456 INTEGER_BASE_UNKNOWN = -1
1457 INTEGER_BASE_BINARY = 2
1458 INTEGER_BASE_OCTAL = 8
1459 INTEGER_BASE_DECIMAL = 10
1460 INTEGER_BASE_HEXADECIMAL = 16
1461
1462 def __init__(self):
1463 if self._ft is None:
1464 raise ValueError("FieldType creation failed.")
1465
1466 def __del__(self):
1467 _bt_ctf_field_type_put(self._ft)
1468
1469 """
1470 Set the field type's alignment. Defaults to 1 (bit-aligned). However,
1471 some types, such as structures and string, may impose other alignment
1472 constraints.
1473 """
1474 def set_alignment(self, alignment):
1475 ret = _bt_ctf_field_type_set_alignment(self._ft, alignment)
1476 if ret < 0:
1477 raise ValueError("Invalid alignment value.")
1478
1479 """
1480 Set the field type's byte order. Use constants defined in the ByteOrder
1481 class.
1482 """
1483 def set_byte_order(self, byte_order):
1484 ret = _bt_ctf_field_type_set_byte_order(self._ft, byte_order)
1485 if ret < 0:
1486 raise ValueError("Could not set byte order value.")
1487
1488 class FieldTypeInteger(FieldType):
1489 """
1490 Create a new integer field type of the given size.
1491 """
1492 def __init__(self, size):
1493 self._ft = _bt_ctf_field_type_integer_create(size)
1494 super().__init__()
1495
1496 """
1497 Set an integer type's signedness attribute.
1498 """
1499 def set_signed(self, signed):
1500 ret = _bt_ctf_field_type_integer_set_signed(self._ft, signed)
1501 if ret < 0:
1502 raise ValueError("Could not set signed attribute.")
1503
1504 """
1505 Set the integer type's base used to pretty-print the resulting trace.
1506 The base must be a constant of the IntegerBase class.
1507 """
1508 def set_base(self, base):
1509 ret = _bt_ctf_field_type_integer_set_base(self._ft, base)
1510 if ret < 0:
1511 raise ValueError("Could not set base value.")
1512
1513 """
1514 An integer encoding may be set to signal that the integer must be printed
1515 as a text character. Must be a constant from the CTFStringEncoding class.
1516 """
1517 def set_encoding(self, encoding):
1518 ret = _bt_ctf_field_type_integer_set_encoding(self._ft, encoding)
1519 if ret < 0:
1520 raise ValueError("Could not set integer encoding.")
1521
1522 class FieldTypeEnumeration(FieldType):
1523 """
1524 Create a new enumeration field type with the given underlying type.
1525 """
1526 def __init__(self, integer_type):
1527 if integer_type is None or not isinstance(integer_type, CTFWriter.FieldTypeInteger):
1528 raise TypeError("Invalid integer container.")
1529
1530 self._ft = _bt_ctf_field_type_enumeration_create(integer_type._ft)
1531 super().__init__()
1532
1533 """
1534 Add a mapping to the enumeration. The range's values are inclusive.
1535 """
1536 def add_mapping(self, name, range_start, range_end):
1537 ret = _bt_ctf_field_type_enumeration_add_mapping(self._ft, name, range_start, range_end)
1538 if ret < 0:
1539 raise ValueError("Could not add mapping to enumeration type.")
1540
1541 class FieldTypeFloatingPoint(FieldType):
1542 FLT_EXP_DIG = 8
1543 DBL_EXP_DIG = 11
1544 FLT_MANT_DIG = 24
1545 DBL_MANT_DIG = 53
1546
1547 """
1548 Create a new floating point field type.
1549 """
1550 def __init__(self):
1551 self._ft = _bt_ctf_field_type_floating_point_create()
1552 super().__init__()
1553
1554 """
1555 Set the number of exponent digits to use to store the floatingpoint field.
1556 The only values currently supported are FLT_EXP_DIG and DBL_EXP_DIG which
1557 are defined as constants of this class.
1558 """
1559 def set_exponent_digits(self, exponent_digits):
1560 ret = _bt_ctf_field_type_floating_point_set_exponent_digits(self._ft, exponent_digits)
1561 if ret < 0:
1562 raise ValueError("Could not set exponent digit count.")
1563
1564 """
1565 Set the numberof mantissa digits to use to store the floatingpoint field.
1566 The only values currently supported are FLT_MANT_DIG and DBL_MANT_DIG which
1567 are defined as constants of this class.
1568 """
1569 def set_mantissa_digits(self, mantissa_digits):
1570 ret = _bt_ctf_field_type_floating_point_set_mantissa_digits(self._ft, mantissa_digits)
1571 if ret < 0:
1572 raise ValueError("Could not set mantissa digit count.")
1573
1574 class FieldTypeStructure(FieldType):
1575 """
1576 Create a new structure field type.
1577 """
1578 def __init__(self):
1579 self._ft = _bt_ctf_field_type_structure_create()
1580 super().__init__()
1581
1582 """
1583 Add a field of type "field_type" to the structure.
1584 """
1585 def add_field(self, field_type, field_name):
1586 ret = _bt_ctf_field_type_structure_add_field(self._ft, field_type._ft, field_name)
1587 if ret < 0:
1588 raise ValueError("Could not add field to structure.")
1589
1590 class FieldTypeVariant(FieldType):
1591 """
1592 Create a new variant field type.
1593 """
1594 def __init__(self, enum_tag, tag_name):
1595 if enum_tag is None or not isinstance(enum_tag, CTFWriter.FieldTypeEnumeration):
1596 raise TypeError("Invalid tag type; must be of type FieldTypeEnumeration.")
1597
1598 self._ft = _bt_ctf_field_type_variant_create(enum_tag._ft, tag_name)
1599 super().__init__()
1600
1601 """
1602 Add a field of type "field_type" to the variant.
1603 """
1604 def add_field(self, field_type, field_name):
1605 ret = _bt_ctf_field_type_variant_add_field(self._ft, field_type._ft, field_name)
1606 if ret < 0:
1607 raise ValueError("Could not add field to variant.")
1608
1609 class FieldTypeArray(FieldType):
1610 """
1611 Create a new array field type.
1612 """
1613 def __init__(self, element_type, length):
1614 self._ft = _bt_ctf_field_type_array_create(element_type._ft, length)
1615 super().__init__()
1616
1617 class FieldTypeSequence(FieldType):
1618 """
1619 Create a new sequence field type.
1620 """
1621 def __init__(self, element_type, length_field_name):
1622 self._ft = _bt_ctf_field_type_sequence_create(element_type._ft, length_field_name)
1623 super().__init__()
1624
1625 class FieldTypeString(FieldType):
1626 """
1627 Create a new string field type.
1628 """
1629 def __init__(self):
1630 self._ft = _bt_ctf_field_type_string_create()
1631 super().__init__()
1632
1633 """
1634 Set a string type's encoding. Must be a constant from the CTFStringEncoding class.
1635 """
1636 def set_encoding(self, encoding):
1637 ret = _bt_ctf_field_type_string_set_encoding(self._ft, encoding)
1638 if ret < 0:
1639 raise ValueError("Could not set string encoding.")
1640
1641 """
1642 Create an instance of a field.
1643 """
1644 @staticmethod
1645 def create_field(self, field_type):
1646 if field_type is None or not isinstance(field_type, CTFWriter.FieldType):
1647 raise TypeError("Invalid field_type. Type must be a FieldType-derived class.")
1648
1649 if isinstance(field_type, CTFWriter.FieldTypeInteger):
1650 return CTFWriter.FieldInteger(field_type)
1651 elif isinstance(field_type, CTFWriter.FieldTypeEnumeration):
1652 return CTFWriter.FieldEnumeration(field_type)
1653 elif isinstance(field_type, CTFWriter.FieldTypeFloatingPoint):
1654 return CTFWriter.FieldFloatingPoint(field_type)
1655 elif isinstance(field_type, CTFWriter.FieldTypeStructure):
1656 return CTFWriter.FieldStructure(field_type)
1657 elif isinstance(field_type, CTFWriter.FieldTypeVariant):
1658 return CTFWriter.FieldVariant(field_type)
1659 elif isinstance(field_type, CTFWriter.FieldTypeArray):
1660 return CTFWriter.FieldArray(field_type)
1661 elif isinstance(field_type, CTFWriter.FieldTypeSequence):
1662 return CTFWriter.FieldSequence(field_type)
1663 elif isinstance(field_type, CTFWriter.FieldTypeString):
1664 return CTFWriter.FieldString(field_type)
1665
1666 class Field:
1667 """
1668 Base class, do not instantiate.
1669 """
1670 def __init__(self, field_type):
1671 if not isinstance(field_type, CTFWriter.FieldType):
1672 raise TypeError("Invalid field_type argument.")
1673
1674 self._f = _bt_ctf_field_create(field_type._ft)
1675 if self._f is None:
1676 raise ValueError("Field creation failed.")
1677
1678 def __del__(self):
1679 _bt_ctf_field_put(self._f)
1680
1681 @staticmethod
1682 def _create_field_from_native_instance(native_field_instance):
1683 type_dict = {
1684 CTFTypeId.INTEGER : CTFWriter.FieldInteger,
1685 CTFTypeId.FLOAT : CTFWriter.FieldFloatingPoint,
1686 CTFTypeId.ENUM : CTFWriter.FieldEnumeration,
1687 CTFTypeId.STRING : CTFWriter.FieldString,
1688 CTFTypeId.STRUCT : CTFWriter.FieldStructure,
1689 CTFTypeId.VARIANT : CTFWriter.FieldVariant,
1690 CTFTypeId.ARRAY : CTFWriter.FieldArray,
1691 CTFTypeId.SEQUENCE : CTFWriter.FieldSequence
1692 }
1693
1694 field_type = _bt_python_get_field_type(native_field_instance)
1695 if field_type == CTFTypeId.UNKNOWN:
1696 raise TypeError("Invalid field instance")
1697
1698 field = CTFWriter.Field.__new__(CTFWriter.Field)
1699 field._f = native_field_instance
1700 field.__class__ = type_dict[field_type]
1701 return field
1702
1703 class FieldInteger(Field):
1704 """
1705 Set an integer field's value.
1706 """
1707 def set_value(self, value):
1708 signedness = _bt_python_field_integer_get_signedness(self._f)
1709 if signedness < 0:
1710 raise TypeError("Invalid integer instance.")
1711
1712 if signedness == 0:
1713 ret = _bt_ctf_field_unsigned_integer_set_value(self._f, value)
1714 else:
1715 ret = _bt_ctf_field_signed_integer_set_value(self._f, value)
1716
1717 if ret < 0:
1718 raise ValueError("Could not set integer field value.")
1719
1720 class FieldEnumeration(Field):
1721 """
1722 Return the enumeration's underlying container field (an integer field).
1723 """
1724 def get_container(self):
1725 container = CTFWriter.FieldInteger.__new__(CTFWriter.FieldInteger)
1726 container._f = _bt_ctf_field_enumeration_get_container(self._f)
1727 if container._f is None:
1728 raise TypeError("Invalid enumeration field type.")
1729 return container
1730
1731 class FieldFloatingPoint(Field):
1732 """
1733 Set a floating point field's value.
1734 """
1735 def set_value(self, value):
1736 ret = _bt_ctf_field_floating_point_set_value(self._f, value)
1737 if ret < 0:
1738 raise ValueError("Could not set floating point field value.")
1739
1740 class FieldStructure(Field):
1741 """
1742 Get the structure's field corresponding to the provided field name.
1743 """
1744 def get_field(self, field_name):
1745 native_instance = _bt_ctf_field_structure_get_field(self._f, field_name)
1746 if native_instance is None:
1747 raise ValueError("Invalid field_name provided.")
1748 return CTFWriter.Field._create_field_from_native_instance(native_instance)
1749
1750 class FieldVariant(Field):
1751 """
1752 Return the variant's selected field. The "tag" field is the selector enum field.
1753 """
1754 def get_field(self, tag):
1755 native_instance = _bt_ctf_field_variant_get_field(self._f, tag._f)
1756 if native_instance is None:
1757 raise ValueError("Invalid tag provided.")
1758 return CTFWriter.Field._create_field_from_native_instance(native_instance)
1759
1760 class FieldArray(Field):
1761 """
1762 Return the array's field at position "index".
1763 """
1764 def get_field(self, index):
1765 native_instance = _bt_ctf_field_array_get_field(self._f, index)
1766 if native_instance is None:
1767 raise IndexError("Invalid index provided.")
1768 return CTFWriter.Field._create_field_from_native_instance(native_instance)
1769
1770 class FieldSequence(Field):
1771 """
1772 Set the sequence's length field (IntegerField).
1773 """
1774 def set_length(self, length):
1775 if not isinstance(length, CTFWriter.FieldInteger):
1776 raise TypeError("Invalid length field.")
1777 ret = _bt_ctf_field_sequence_set_length(self._f, length._f)
1778 if ret < 0:
1779 raise ValueError("Could not set sequence length.")
1780
1781 """
1782 Return the sequence's field at position "index".
1783 """
1784 def get_field(self, index):
1785 native_instance = _bt_ctf_field_sequence_get_field(self._f, index)
1786 if native_instance is None:
1787 raise ValueError("Could not get sequence element at index.")
1788 return CTFWriter.Field._create_field_from_native_instance(native_instance)
1789
1790 class FieldString(Field):
1791 """
1792 Set a string field's value.
1793 """
1794 def set_value(self, value):
1795 ret = _bt_ctf_field_string_set_value(self._f, value)
1796 if ret < 0:
1797 raise ValueError("Could not set string field value.")
1798
1799 class EventClass:
1800 """
1801 Create a new event class of the given name.
1802 """
1803 def __init__(self, name):
1804 self._ec = _bt_ctf_event_class_create(name)
1805 if self._ec is None:
1806 raise ValueError("Event class creation failed.")
1807
1808 def __del__(self):
1809 _bt_ctf_event_class_put(self._ec)
1810
1811 """
1812 Add a field of type "field_type" to the event class.
1813 """
1814 def add_field(self, field_type, field_name):
1815 ret = _bt_ctf_event_class_add_field(self._ec, field_type._ft, field_name)
1816 if ret < 0:
1817 raise ValueError("Could not add field to event class.")
1818
1819 class Event:
1820 """
1821 Create a new event of the given event class.
1822 """
1823 def __init__(self, event_class):
1824 if not isinstance(event_class, CTFWriter.EventClass):
1825 raise TypeError("Invalid event_class argument.")
1826
1827 self._e = _bt_ctf_event_create(event_class._ec)
1828 if self._e is None:
1829 raise ValueError("Event creation failed.")
1830
1831 def __del__(self):
1832 _bt_ctf_event_put(self._e)
1833
1834 """
1835 Set a manually created field as an event's payload.
1836 """
1837 def set_payload(self, field_name, value):
1838 if not isinstance(value, CTFWriter.Field):
1839 raise TypeError("Invalid value type.")
1840 ret = _bt_ctf_event_set_payload(self._e, field_name, value._f)
1841 if ret < 0:
1842 raise ValueError("Could not set event field payload.")
1843
1844 """
1845 Set a manually created field as an event's payload.
1846 """
1847 def get_payload(self, field_name):
1848 native_instance = _bt_ctf_event_get_payload(self._e, field_name)
1849 if native_instance is None:
1850 raise ValueError("Could not get event payload.")
1851 return CTFWriter.Field._create_field_from_native_instance(native_instance)
1852
1853 class StreamClass:
1854 """
1855 Create a new stream class of the given name.
1856 """
1857 def __init__(self, name):
1858 self._sc = _bt_ctf_stream_class_create(name)
1859 if self._sc is None:
1860 raise ValueError("Stream class creation failed.")
1861
1862 def __del__(self):
1863 _bt_ctf_stream_class_put(self._sc)
1864
1865 """
1866 Assign a clock to a stream class.
1867 """
1868 def set_clock(self, clock):
1869 if not isinstance(clock, CTFWriter.Clock):
1870 raise TypeError("Invalid clock type.")
1871
1872 ret = _bt_ctf_stream_class_set_clock(self._sc, clock._c)
1873 if ret < 0:
1874 raise ValueError("Could not set stream class clock.")
1875
1876 """
1877 Add an event class to a stream class. New events can be added even after a
1878 stream has beem instanciated and events have been appended. However, a stream
1879 will not accept events of a class that has not been registered beforehand.
1880 """
1881 def add_event_class(self, event_class):
1882 if not isinstance(event_class, CTFWriter.EventClass):
1883 raise TypeError("Invalid event_class type.")
1884
1885 ret = _bt_ctf_stream_class_add_event_class(self._sc, event_class._ec)
1886 if ret < 0:
1887 raise ValueError("Could not add event class.")
1888
1889 class Stream:
1890 """
1891 Create a stream of the given class.
1892 """
1893 def __init__(self, stream_class):
1894 if not isinstance(stream_class, CTFWriter.StreamClass):
1895 raise TypeError("Invalid stream_class type.")
1896
1897 self._s = _bt_ctf_stream_create(stream_class._sc)
1898 if self._s is None:
1899 raise ValueError("Stream creation failed.")
1900
1901 def __del__(self):
1902 _bt_ctf_stream_put(self._s)
1903
1904 """
1905 Increase the current packet's discarded event count.
1906 """
1907 def append_discarded_events(self, event_count):
1908 ret = _bt_ctf_stream_append_discarded_events(self._s, event_count)
1909 if ret < 0:
1910 raise ValueError("Could not append discarded events.")
1911
1912 """
1913 Append "event" to the stream's current packet. The stream's associated clock
1914 will be sampled during this call. The event shall not be modified after
1915 being appended to a stream.
1916 """
1917 def append_event(self, event):
1918 ret = _bt_ctf_stream_append_event(self._s, event._e)
1919 if ret < 0:
1920 raise ValueError("Could not append event to stream.")
1921
1922 """
1923 The stream's current packet's events will be flushed to disk. Events
1924 subsequently appended to the stream will be added to a new packet.
1925 """
1926 def flush(self):
1927 ret = _bt_ctf_stream_flush(self._s)
1928 if ret < 0:
1929 raise ValueError("Could not flush stream.")
1930
1931 class Writer:
1932 """
1933 Create a new writer that will produce a trace in the given path.
1934 """
1935 def __init__(self, path):
1936 self._w = _bt_ctf_writer_create(path)
1937 if self._w is None:
1938 raise ValueError("Writer creation failed.")
1939
1940 def __del__(self):
1941 _bt_ctf_writer_put(self._w)
1942
1943 """
1944 Create a new stream instance and register it to the writer.
1945 """
1946 def create_stream(self, stream_class):
1947 if not isinstance(stream_class, CTFWriter.StreamClass):
1948 raise TypeError("Invalid stream_class type.")
1949
1950 stream = CTFWriter.Stream.__new__(CTFWriter.Stream)
1951 stream._s = _bt_ctf_writer_create_stream(self._w, stream_class._sc)
1952 return stream
1953
1954 """
1955 Add an environment field to the trace.
1956 """
1957 def add_environment_field(self, name, value):
1958 ret = _bt_ctf_writer_add_environment_field(self._w, name, value)
1959 if ret < 0:
1960 raise ValueError("Could not add environment field to trace.")
1961
1962 """
1963 Add a clock to the trace. Clocks assigned to stream classes must be
1964 registered to the writer.
1965 """
1966 def add_clock(self, clock):
1967 ret = _bt_ctf_writer_add_clock(self._w, clock._c)
1968 if ret < 0:
1969 raise ValueError("Could not add clock to Writer.")
1970
1971 """
1972 Get the trace's TSDL meta-data.
1973 """
1974 def get_metadata(self):
1975 return _bt_ctf_writer_get_metadata_string(self._w)
1976
1977 """
1978 Flush the trace's metadata to the metadata file.
1979 """
1980 def flush_metadata(self):
1981 _bt_ctf_writer_flush_metadata(self._w)
1982
1983 """
1984 Set the trace's byte order. Must be a constant from the ByteOrder
1985 class. Defaults to BYTE_ORDER_NATIVE, the host machine's endianness.
1986 """
1987 def set_byte_order(self, byte_order):
1988 ret = _bt_ctf_writer_set_byte_order(self._w, byte_order)
1989 if ret < 0:
1990 raise ValueError("Could not set trace's byte order.")
1991
1992%}
This page took 0.105767 seconds and 4 git commands to generate.