X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=bindings%2Fpython%2Fbt2%2Fbt2%2Fevent.py;fp=bindings%2Fpython%2Fbt2%2Fbt2%2Fevent.py;h=0000000000000000000000000000000000000000;hp=4ff398b7565d291154c82c58b4d06ff71a1c0732;hb=578e048b5debf169e286e5b5cc747b5d6c16886d;hpb=68b66a256a54d32992dfefeaad11eea88b7df234 diff --git a/bindings/python/bt2/bt2/event.py b/bindings/python/bt2/bt2/event.py deleted file mode 100644 index 4ff398b7..00000000 --- a/bindings/python/bt2/bt2/event.py +++ /dev/null @@ -1,115 +0,0 @@ -# The MIT License (MIT) -# -# Copyright (c) 2016-2017 Philippe Proulx -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -from bt2 import native_bt, object, utils -import bt2.clock_class -import bt2.event_class -import bt2.packet -import bt2.stream -import bt2.field -import bt2.clock_snapshot -import bt2 - - -class _Event(object._UniqueObject): - @property - def cls(self): - event_class_ptr = native_bt.event_borrow_class(self._ptr) - assert event_class_ptr is not None - return bt2.event_class._EventClass._create_from_ptr_and_get_ref(event_class_ptr) - - @property - def name(self): - return self.cls.name - - @property - def id(self): - return self.cls.id - - @property - def packet(self): - packet_ptr = native_bt.event_borrow_packet(self._ptr) - assert packet_ptr is not None - return bt2.packet._Packet._create_from_ptr_and_get_ref(packet_ptr) - - @property - def stream(self): - stream_ptr = native_bt.event_borrow_stream(self._ptr) - assert stream_ptr is not None - return bt2._Stream._create_from_ptr_and_get_ref(stream_ptr) - - @property - def common_context_field(self): - field_ptr = native_bt.event_borrow_common_context_field(self._ptr) - - if field_ptr is None: - return - - return bt2.field._create_field_from_ptr(field_ptr, self._owner_ptr, - self._owner_get_ref, - self._owner_put_ref) - - @property - def specific_context_field(self): - field_ptr = native_bt.event_borrow_specific_context_field(self._ptr) - - if field_ptr is None: - return - - return bt2.field._create_field_from_ptr(field_ptr, self._owner_ptr, - self._owner_get_ref, - self._owner_put_ref) - - @property - def payload_field(self): - field_ptr = native_bt.event_borrow_payload_field(self._ptr) - - if field_ptr is None: - return - - return bt2.field._create_field_from_ptr(field_ptr, self._owner_ptr, - self._owner_get_ref, - self._owner_put_ref) - - def __getitem__(self, key): - utils._check_str(key) - payload_field = self.payload_field - - if payload_field is not None and key in payload_field: - return payload_field[key] - - specific_context_field = self.specific_context_field - - if specific_context_field is not None and key in specific_context_field: - return specific_context_field[key] - - common_context_field = self.common_context_field - - if common_context_field is not None and key in common_context_field: - return common_context_field[key] - - packet_context_field = self.packet.context_field - - if packet_context_field is not None and key in packet_context_field: - return packet_context_field[key] - - raise KeyError(key)