bt2: add user attributes property support
[babeltrace.git] / src / bindings / python / bt2 / bt2 / stream.py
index 4710aeaaa0cb51e215279694d25588f3d3491c82..264d5477f45fc948253db6abb702f3d071003c18 100644 (file)
@@ -25,6 +25,7 @@ from bt2 import object as bt2_object
 from bt2 import packet as bt2_packet
 from bt2 import trace as bt2_trace
 from bt2 import stream_class as bt2_stream_class
+from bt2 import value as bt2_value
 import bt2
 
 
@@ -50,6 +51,19 @@ class _Stream(bt2_object._SharedObject):
 
     _name = property(fset=_name)
 
+    @property
+    def user_attributes(self):
+        ptr = native_bt.stream_borrow_user_attributes(self._ptr)
+        assert ptr is not None
+        return bt2_value._create_from_ptr_and_get_ref(ptr)
+
+    def _user_attributes(self, user_attributes):
+        value = bt2_value.create_value(user_attributes)
+        utils._check_type(value, bt2_value.MapValue)
+        native_bt.stream_set_user_attributes(self._ptr, value._ptr)
+
+    _user_attributes = property(fset=_user_attributes)
+
     @property
     def id(self):
         id = native_bt.stream_get_id(self._ptr)
This page took 0.022772 seconds and 4 git commands to generate.