python: make all _get_ref/_put_ref proper static methods
[babeltrace.git] / src / bindings / python / bt2 / bt2 / connection.py
CommitLineData
0235b0db 1# SPDX-License-Identifier: MIT
811644b8
PP
2#
3# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
811644b8 4
57081273 5from bt2 import native_bt
3fb99a22
PP
6from bt2 import port as bt2_port
7from bt2 import object as bt2_object
811644b8
PP
8
9
c7e5224b 10class _ConnectionConst(bt2_object._SharedObject):
9dee90bd
SM
11 @staticmethod
12 def _get_ref(ptr):
13 native_bt.connection_get_ref(ptr)
14
15 @staticmethod
16 def _put_ref(ptr):
17 native_bt.connection_put_ref(ptr)
811644b8
PP
18
19 @property
20 def downstream_port(self):
2c67587a 21 port_ptr = native_bt.connection_borrow_downstream_port_const(self._ptr)
5813b3a3 22 return bt2_port._create_from_const_ptr_and_get_ref(
cfbd7cf3
FD
23 port_ptr, native_bt.PORT_TYPE_INPUT
24 )
811644b8
PP
25
26 @property
27 def upstream_port(self):
2c67587a 28 port_ptr = native_bt.connection_borrow_upstream_port_const(self._ptr)
5813b3a3 29 return bt2_port._create_from_const_ptr_and_get_ref(
cfbd7cf3
FD
30 port_ptr, native_bt.PORT_TYPE_OUTPUT
31 )
This page took 0.0688 seconds and 4 git commands to generate.