bt2: Add `_Clock*Const` classes and adapt tests
[babeltrace.git] / src / bindings / python / bt2 / bt2 / trace.py
CommitLineData
81447b5b
PP
1# The MIT License (MIT)
2#
811644b8 3# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
81447b5b
PP
4#
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to deal
7# in the Software without restriction, including without limitation the rights
8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9# copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included in
13# all copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21# THE SOFTWARE.
22
23from bt2 import native_bt, object, utils
81447b5b 24import collections.abc
3fb99a22
PP
25from bt2 import value as bt2_value
26from bt2 import stream as bt2_stream
27from bt2 import trace_class as bt2_trace_class
28from bt2 import stream_class as bt2_stream_class
81447b5b 29import bt2
8c2367b8 30import functools
335a2da5
PP
31import uuid as uuidp
32
33
b7bc733b 34class _TraceEnvironment(collections.abc.MutableMapping):
335a2da5
PP
35 def __init__(self, trace):
36 self._trace = trace
37
38 def __getitem__(self, key):
39 utils._check_str(key)
40
41 borrow_entry_fn = native_bt.trace_borrow_environment_entry_value_by_name_const
42 value_ptr = borrow_entry_fn(self._trace._ptr, key)
43
44 if value_ptr is None:
45 raise KeyError(key)
46
3fb99a22 47 return bt2_value._create_from_ptr_and_get_ref(value_ptr)
335a2da5
PP
48
49 def __setitem__(self, key, value):
50 if isinstance(value, str):
51 set_env_entry_fn = native_bt.trace_set_environment_entry_string
52 elif isinstance(value, int):
53 set_env_entry_fn = native_bt.trace_set_environment_entry_integer
54 else:
55 raise TypeError('expected str or int, got {}'.format(type(value)))
56
57 status = set_env_entry_fn(self._trace._ptr, key, value)
cfbd7cf3 58 utils._handle_func_status(status, "cannot set trace object's environment entry")
335a2da5
PP
59
60 def __delitem__(self, key):
61 raise NotImplementedError
62
63 def __len__(self):
64 count = native_bt.trace_get_environment_entry_count(self._trace._ptr)
65 assert count >= 0
66 return count
67
68 def __iter__(self):
69 trace_ptr = self._trace_env._trace._ptr
70
71 for idx in range(len(self)):
72 borrow_entry_fn = native_bt.trace_borrow_environment_entry_by_index_const
73 entry_name, _ = borrow_entry_fn(trace_ptr, idx)
74 assert entry_name is not None
75 yield entry_name
81447b5b
PP
76
77
8c2367b8 78def _trace_destruction_listener_from_native(user_listener, trace_ptr):
3fb99a22 79 trace = _Trace._create_from_ptr_and_get_ref(trace_ptr)
8c2367b8 80 user_listener(trace)
81447b5b 81
81447b5b 82
2c6f8520 83class _Trace(object._SharedObject, collections.abc.Mapping):
8c2367b8
SM
84 _get_ref = staticmethod(native_bt.trace_get_ref)
85 _put_ref = staticmethod(native_bt.trace_put_ref)
811644b8
PP
86
87 def __len__(self):
8c2367b8
SM
88 count = native_bt.trace_get_stream_count(self._ptr)
89 assert count >= 0
811644b8
PP
90 return count
91
8c2367b8
SM
92 def __getitem__(self, id):
93 utils._check_uint64(id)
81447b5b 94
8c2367b8 95 stream_ptr = native_bt.trace_borrow_stream_by_id_const(self._ptr, id)
81447b5b 96
8c2367b8
SM
97 if stream_ptr is None:
98 raise KeyError(id)
81447b5b 99
3fb99a22 100 return bt2_stream._Stream._create_from_ptr_and_get_ref(stream_ptr)
81447b5b
PP
101
102 def __iter__(self):
8c2367b8
SM
103 for idx in range(len(self)):
104 stream_ptr = native_bt.trace_borrow_stream_by_index_const(self._ptr, idx)
105 assert stream_ptr is not None
81447b5b 106
8c2367b8
SM
107 id = native_bt.stream_get_id(stream_ptr)
108 assert id >= 0
81447b5b 109
8c2367b8 110 yield id
81447b5b 111
05abc762
PP
112 @property
113 def cls(self):
114 trace_class_ptr = native_bt.trace_borrow_class(self._ptr)
115 assert trace_class_ptr is not None
3fb99a22 116 return bt2_trace_class._TraceClass._create_from_ptr_and_get_ref(trace_class_ptr)
05abc762 117
5783664e
PP
118 @property
119 def user_attributes(self):
120 ptr = native_bt.trace_borrow_user_attributes(self._ptr)
121 assert ptr is not None
122 return bt2_value._create_from_ptr_and_get_ref(ptr)
123
124 def _user_attributes(self, user_attributes):
125 value = bt2_value.create_value(user_attributes)
126 utils._check_type(value, bt2_value.MapValue)
127 native_bt.trace_set_user_attributes(self._ptr, value._ptr)
128
129 _user_attributes = property(fset=_user_attributes)
130
81447b5b
PP
131 @property
132 def name(self):
50842bdc 133 return native_bt.trace_get_name(self._ptr)
81447b5b 134
8c2367b8 135 def _name(self, name):
81447b5b 136 utils._check_str(name)
d24d5663 137 status = native_bt.trace_set_name(self._ptr, name)
cfbd7cf3 138 utils._handle_func_status(status, "cannot set trace class object's name")
81447b5b 139
8c2367b8 140 _name = property(fset=_name)
811644b8 141
335a2da5
PP
142 @property
143 def uuid(self):
144 uuid_bytes = native_bt.trace_get_uuid(self._ptr)
145 if uuid_bytes is None:
146 return
147
148 return uuidp.UUID(bytes=uuid_bytes)
149
150 def _uuid(self, uuid):
151 utils._check_type(uuid, uuidp.UUID)
152 native_bt.trace_set_uuid(self._ptr, uuid.bytes)
153
154 _uuid = property(fset=_uuid)
155
156 @property
b7bc733b
PP
157 def environment(self):
158 return _TraceEnvironment(self)
335a2da5 159
5783664e 160 def create_stream(self, stream_class, id=None, name=None, user_attributes=None):
3fb99a22 161 utils._check_type(stream_class, bt2_stream_class._StreamClass)
81447b5b 162
8c2367b8
SM
163 if stream_class.assigns_automatic_stream_id:
164 if id is not None:
cfbd7cf3
FD
165 raise ValueError(
166 "id provided, but stream class assigns automatic stream ids"
167 )
81447b5b 168
8c2367b8
SM
169 stream_ptr = native_bt.stream_create(stream_class._ptr, self._ptr)
170 else:
171 if id is None:
cfbd7cf3
FD
172 raise ValueError(
173 "id not provided, but stream class does not assign automatic stream ids"
174 )
81447b5b 175
8c2367b8 176 utils._check_uint64(id)
cfbd7cf3
FD
177 stream_ptr = native_bt.stream_create_with_id(
178 stream_class._ptr, self._ptr, id
179 )
81447b5b 180
8c2367b8 181 if stream_ptr is None:
694c792b 182 raise bt2._MemoryError('cannot create stream object')
81447b5b 183
3fb99a22 184 stream = bt2_stream._Stream._create_from_ptr(stream_ptr)
81447b5b 185
8c2367b8
SM
186 if name is not None:
187 stream._name = name
81447b5b 188
5783664e
PP
189 if user_attributes is not None:
190 stream._user_attributes = user_attributes
191
8c2367b8 192 return stream
81447b5b 193
8c2367b8
SM
194 def add_destruction_listener(self, listener):
195 '''Add a listener to be called when the trace is destroyed.'''
196 if not callable(listener):
197 raise TypeError("'listener' parameter is not callable")
81447b5b 198
d24d5663 199 fn = native_bt.bt2_trace_add_destruction_listener
cfbd7cf3
FD
200 listener_from_native = functools.partial(
201 _trace_destruction_listener_from_native, listener
202 )
81447b5b 203
ee2cad25
SM
204 status, listener_id = fn(self._ptr, listener_from_native)
205 utils._handle_func_status(
206 status, 'cannot add destruction listener to trace object'
207 )
81447b5b 208
3fb99a22 209 return utils._ListenerHandle(listener_id, self)
This page took 0.058807 seconds and 4 git commands to generate.