bt2: clean available `bt2` package names
[babeltrace.git] / src / bindings / python / bt2 / bt2 / port.py
CommitLineData
f6a5e476
PP
1# The MIT License (MIT)
2#
3# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
4#
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to deal
7# in the Software without restriction, including without limitation the rights
8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9# copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included in
13# all copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21# THE SOFTWARE.
22
bc5c9924 23from bt2 import native_bt, object
c946c9de
PP
24from bt2 import component as bt2_component
25from bt2 import connection as bt2_connection
26from bt2 import message_iterator as bt2_message_iterator
27from bt2 import message as bt2_message
f6a5e476
PP
28import bt2
29
30
824ce8b6
SM
31def _create_from_ptr_and_get_ref(ptr, port_type):
32 cls = _PORT_TYPE_TO_PYCLS.get(port_type, None)
33
34 if cls is None:
fb25b9e3 35 raise TypeError('unknown port type: {}'.format(port_type))
824ce8b6
SM
36
37 return cls._create_from_ptr_and_get_ref(ptr)
38
39
40def _create_self_from_ptr_and_get_ref(ptr, port_type):
41 cls = _PORT_TYPE_TO_USER_PYCLS.get(port_type, None)
42
43 if cls is None:
fb25b9e3 44 raise TypeError('unknown port type: {}'.format(port_type))
824ce8b6
SM
45
46 return cls._create_from_ptr_and_get_ref(ptr)
47
48
c3044a97 49class _Port(object._SharedObject):
bc5c9924
SM
50 @classmethod
51 def _get_ref(cls, ptr):
52 ptr = cls._as_port_ptr(ptr)
53 return native_bt.port_get_ref(ptr)
f6a5e476 54
bc5c9924
SM
55 @classmethod
56 def _put_ref(cls, ptr):
57 ptr = cls._as_port_ptr(ptr)
58 return native_bt.port_put_ref(ptr)
f6a5e476
PP
59
60 @property
61 def name(self):
bc5c9924
SM
62 ptr = self._as_port_ptr(self._ptr)
63 name = native_bt.port_get_name(ptr)
64 assert name is not None
65 return name
f6a5e476
PP
66
67 @property
68 def connection(self):
bc5c9924
SM
69 ptr = self._as_port_ptr(self._ptr)
70 conn_ptr = native_bt.port_borrow_connection_const(ptr)
f6a5e476
PP
71
72 if conn_ptr is None:
73 return
74
c946c9de 75 return bt2_connection._Connection._create_from_ptr_and_get_ref(conn_ptr)
f6a5e476
PP
76
77 @property
78 def is_connected(self):
79 return self.connection is not None
80
f6a5e476
PP
81
82class _InputPort(_Port):
bc5c9924 83 _as_port_ptr = staticmethod(native_bt.port_input_as_port_const)
f6a5e476
PP
84
85
86class _OutputPort(_Port):
bc5c9924 87 _as_port_ptr = staticmethod(native_bt.port_output_as_port_const)
26c5273a 88
26c5273a 89
bc5c9924
SM
90class _UserComponentPort(_Port):
91 @classmethod
92 def _as_port_ptr(cls, ptr):
93 ptr = cls._as_self_port_ptr(ptr)
94 return native_bt.self_component_port_as_port(ptr)
f6a5e476
PP
95
96 @property
97 def connection(self):
bc5c9924
SM
98 ptr = self._as_port_ptr(self._ptr)
99 conn_ptr = native_bt.port_borrow_connection_const(ptr)
f6a5e476
PP
100
101 if conn_ptr is None:
102 return
103
c946c9de 104 return bt2_connection._Connection._create_from_ptr_and_get_ref(conn_ptr)
f6a5e476 105
03ec9ebd
SM
106 @property
107 def user_data(self):
108 ptr = self._as_self_port_ptr(self._ptr)
109 return native_bt.self_component_port_get_data(ptr)
110
f6a5e476 111
bc5c9924 112class _UserComponentInputPort(_UserComponentPort, _InputPort):
61d96b89
FD
113 _as_self_port_ptr = staticmethod(
114 native_bt.self_component_port_input_as_self_component_port
115 )
f6a5e476
PP
116
117
bc5c9924 118class _UserComponentOutputPort(_UserComponentPort, _OutputPort):
61d96b89
FD
119 _as_self_port_ptr = staticmethod(
120 native_bt.self_component_port_output_as_self_component_port
121 )
824ce8b6
SM
122
123
124_PORT_TYPE_TO_PYCLS = {
125 native_bt.PORT_TYPE_INPUT: _InputPort,
126 native_bt.PORT_TYPE_OUTPUT: _OutputPort,
127}
128
129
130_PORT_TYPE_TO_USER_PYCLS = {
131 native_bt.PORT_TYPE_INPUT: _UserComponentInputPort,
132 native_bt.PORT_TYPE_OUTPUT: _UserComponentOutputPort,
133}
This page took 0.041389 seconds and 4 git commands to generate.