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