Apply black code formatter on all Python code
[babeltrace.git] / src / bindings / python / bt2 / bt2 / trace.py
1 # The MIT License (MIT)
2 #
3 # Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
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
23 from bt2 import native_bt, object, utils
24 import bt2.field_class
25 import collections.abc
26 import bt2.value
27 import bt2.stream
28 import bt2.trace_class
29 import bt2
30 import functools
31 import uuid as uuidp
32
33
34 class _TraceEnv(collections.abc.MutableMapping):
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
47 return bt2.value._create_from_ptr_and_get_ref(value_ptr)
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)
58 utils._handle_func_status(status, "cannot set trace object's environment entry")
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
76
77
78 def _trace_destruction_listener_from_native(user_listener, trace_ptr):
79 trace = bt2.trace._Trace._create_from_ptr_and_get_ref(trace_ptr)
80 user_listener(trace)
81
82
83 class _Trace(object._SharedObject, collections.abc.Mapping):
84 _get_ref = staticmethod(native_bt.trace_get_ref)
85 _put_ref = staticmethod(native_bt.trace_put_ref)
86
87 def __len__(self):
88 count = native_bt.trace_get_stream_count(self._ptr)
89 assert count >= 0
90 return count
91
92 def __getitem__(self, id):
93 utils._check_uint64(id)
94
95 stream_ptr = native_bt.trace_borrow_stream_by_id_const(self._ptr, id)
96
97 if stream_ptr is None:
98 raise KeyError(id)
99
100 return bt2.stream._Stream._create_from_ptr_and_get_ref(stream_ptr)
101
102 def __iter__(self):
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
106
107 id = native_bt.stream_get_id(stream_ptr)
108 assert id >= 0
109
110 yield id
111
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
116 return bt2.trace_class._TraceClass._create_from_ptr_and_get_ref(trace_class_ptr)
117
118 @property
119 def name(self):
120 return native_bt.trace_get_name(self._ptr)
121
122 def _name(self, name):
123 utils._check_str(name)
124 status = native_bt.trace_set_name(self._ptr, name)
125 utils._handle_func_status(status, "cannot set trace class object's name")
126
127 _name = property(fset=_name)
128
129 @property
130 def uuid(self):
131 uuid_bytes = native_bt.trace_get_uuid(self._ptr)
132 if uuid_bytes is None:
133 return
134
135 return uuidp.UUID(bytes=uuid_bytes)
136
137 def _uuid(self, uuid):
138 utils._check_type(uuid, uuidp.UUID)
139 native_bt.trace_set_uuid(self._ptr, uuid.bytes)
140
141 _uuid = property(fset=_uuid)
142
143 @property
144 def env(self):
145 return _TraceEnv(self)
146
147 def create_stream(self, stream_class, id=None, name=None):
148 utils._check_type(stream_class, bt2.stream_class._StreamClass)
149
150 if stream_class.assigns_automatic_stream_id:
151 if id is not None:
152 raise ValueError(
153 "id provided, but stream class assigns automatic stream ids"
154 )
155
156 stream_ptr = native_bt.stream_create(stream_class._ptr, self._ptr)
157 else:
158 if id is None:
159 raise ValueError(
160 "id not provided, but stream class does not assign automatic stream ids"
161 )
162
163 utils._check_uint64(id)
164 stream_ptr = native_bt.stream_create_with_id(
165 stream_class._ptr, self._ptr, id
166 )
167
168 if stream_ptr is None:
169 raise bt2.CreationError('cannot create stream object')
170
171 stream = bt2.stream._Stream._create_from_ptr(stream_ptr)
172
173 if name is not None:
174 stream._name = name
175
176 return stream
177
178 def add_destruction_listener(self, listener):
179 '''Add a listener to be called when the trace is destroyed.'''
180 if not callable(listener):
181 raise TypeError("'listener' parameter is not callable")
182
183 fn = native_bt.bt2_trace_add_destruction_listener
184 listener_from_native = functools.partial(
185 _trace_destruction_listener_from_native, listener
186 )
187
188 listener_id = fn(self._ptr, listener_from_native)
189 if listener_id is None:
190 utils._raise_bt2_error('cannot add destruction listener to trace object')
191
192 return bt2._ListenerHandle(listener_id, self)
This page took 0.035867 seconds and 4 git commands to generate.