tap-driver.sh: flush stdout after each test result
[babeltrace.git] / bindings / python / bt2 / bt2 / trace.py
index aa2757c0c170bc3fca77a07b616efaaf9088262c..5830ec3f8bc0b694dc3a1d081aae9fd5a9e1bad6 100644 (file)
@@ -25,16 +25,17 @@ import bt2.field_class
 import collections.abc
 import bt2.value
 import bt2.stream
+import bt2.trace_class
 import bt2
 import functools
 
 
 def _trace_destruction_listener_from_native(user_listener, trace_ptr):
-    trace = bt2.trace.Trace._create_from_ptr_and_get_ref(trace_ptr)
+    trace = bt2.trace._Trace._create_from_ptr_and_get_ref(trace_ptr)
     user_listener(trace)
 
 
-class Trace(object._SharedObject, collections.abc.Mapping):
+class _Trace(object._SharedObject, collections.abc.Mapping):
     _get_ref = staticmethod(native_bt.trace_get_ref)
     _put_ref = staticmethod(native_bt.trace_put_ref)
 
@@ -63,6 +64,12 @@ class Trace(object._SharedObject, collections.abc.Mapping):
 
             yield id
 
+    @property
+    def cls(self):
+        trace_class_ptr = native_bt.trace_borrow_class(self._ptr)
+        assert trace_class_ptr is not None
+        return bt2.trace_class._TraceClass._create_from_ptr_and_get_ref(trace_class_ptr)
+
     @property
     def name(self):
         return native_bt.trace_get_name(self._ptr)
@@ -75,16 +82,16 @@ class Trace(object._SharedObject, collections.abc.Mapping):
     _name = property(fset=_name)
 
     def create_stream(self, stream_class, id=None, name=None):
-        utils._check_type(stream_class, bt2.stream_class.StreamClass)
+        utils._check_type(stream_class, bt2.stream_class._StreamClass)
 
         if stream_class.assigns_automatic_stream_id:
             if id is not None:
-                raise bt2.CreationError("id provided, but stream class assigns automatic stream ids")
+                raise ValueError("id provided, but stream class assigns automatic stream ids")
 
             stream_ptr = native_bt.stream_create(stream_class._ptr, self._ptr)
         else:
             if id is None:
-                raise bt2.CreationError("id not provided, but stream class does not assign automatic stream ids")
+                raise ValueError("id not provided, but stream class does not assign automatic stream ids")
 
             utils._check_uint64(id)
             stream_ptr = native_bt.stream_create_with_id(stream_class._ptr, self._ptr, id)
This page took 0.023445 seconds and 4 git commands to generate.