X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bindings%2Fpython%2Fbt2%2Fbt2%2Ftrace_class.py;h=631334a7fa9b356e09347ca635f8f75a2a90e374;hb=3cdfbaeab23e6ed4268d606cb67c50ec9e8646a0;hp=4ee7702fba5d236a4f1d226a67c8f9dd78a2d01f;hpb=8c2367b884576ed438bc2e06cfc9205b2436838d;p=babeltrace.git diff --git a/bindings/python/bt2/bt2/trace_class.py b/bindings/python/bt2/bt2/trace_class.py index 4ee7702f..631334a7 100644 --- a/bindings/python/bt2/bt2/trace_class.py +++ b/bindings/python/bt2/bt2/trace_class.py @@ -165,7 +165,14 @@ class TraceClass(object._SharedObject, collections.abc.Mapping): return _TraceClassEnv(self) def create_stream_class(self, id=None, - assigns_automatic_stream_id=True): + name=None, + packet_context_field_class=None, + event_common_context_field_class=None, + default_clock_class=None, + assigns_automatic_event_class_id=True, + assigns_automatic_stream_id=True, + packets_have_default_beginning_clock_snapshot=False, + packets_have_default_end_clock_snapshot=False): if self.assigns_automatic_stream_class_id: if id is not None: @@ -181,7 +188,22 @@ class TraceClass(object._SharedObject, collections.abc.Mapping): sc = bt2.stream_class.StreamClass._create_from_ptr(sc_ptr) + if name is not None: + sc._name = name + + if packet_context_field_class is not None: + sc._packet_context_field_class = packet_context_field_class + + if event_common_context_field_class is not None: + sc._event_common_context_field_class = event_common_context_field_class + + if default_clock_class is not None: + sc._default_clock_class = default_clock_class + + sc._assigns_automatic_event_class_id = assigns_automatic_event_class_id sc._assigns_automatic_stream_id = assigns_automatic_stream_id + sc._packets_have_default_beginning_clock_snapshot = packets_have_default_beginning_clock_snapshot + sc._packets_have_default_end_clock_snapshot = packets_have_default_end_clock_snapshot return sc @@ -195,6 +217,25 @@ class TraceClass(object._SharedObject, collections.abc.Mapping): _assigns_automatic_stream_class_id = property(fset=_assigns_automatic_stream_class_id) + # Field class creation methods. + + def _check_create_status(self, ptr, type_name): + if ptr is None: + raise bt2.CreationError( + 'cannot create {} field class'.format(type_name)) + + def create_structure_field_class(self): + field_class_ptr = native_bt.field_class_structure_create(self._ptr) + self._check_create_status(field_class_ptr, 'structure') + + return bt2.field_class._StructureFieldClass._create_from_ptr(field_class_ptr) + + def create_string_field_class(self): + field_class_ptr = native_bt.field_class_string_create(self._ptr) + self._check_create_status(field_class_ptr, 'string') + + return bt2.field_class.StringFieldClass._create_from_ptr(field_class_ptr) + # Add a listener to be called when the trace class is destroyed. def add_destruction_listener(self, listener):