Re-organize sources
[babeltrace.git] / src / bindings / python / bt2 / bt2 / plugin.py
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
23 from bt2 import native_bt, object, utils
24 import collections.abc
25 import bt2.component
26 import os.path
27 import bt2
28
29
30 def find_plugins(path, recurse=True):
31 utils._check_str(path)
32 utils._check_bool(recurse)
33 plugin_set_ptr = None
34
35 if os.path.isfile(path):
36 plugin_set_ptr = native_bt.plugin_find_all_from_file(path)
37 elif os.path.isdir(path):
38 plugin_set_ptr = native_bt.plugin_find_all_from_dir(path, int(recurse))
39
40 if plugin_set_ptr is None:
41 return
42
43 return _PluginSet._create_from_ptr(plugin_set_ptr)
44
45
46 def find_plugin(name):
47 utils._check_str(name)
48 ptr = native_bt.plugin_find(name)
49
50 if ptr is None:
51 return
52
53 return _Plugin._create_from_ptr(ptr)
54
55
56 class _PluginSet(object._SharedObject, collections.abc.Sequence):
57 _put_ref = staticmethod(native_bt.plugin_set_put_ref)
58 _get_ref = staticmethod(native_bt.plugin_set_get_ref)
59
60 def __len__(self):
61 count = native_bt.plugin_set_get_plugin_count(self._ptr)
62 assert(count >= 0)
63 return count
64
65 def __getitem__(self, index):
66 utils._check_uint64(index)
67
68 if index >= len(self):
69 raise IndexError
70
71 plugin_ptr = native_bt.plugin_set_borrow_plugin_by_index_const(self._ptr, index)
72 assert plugin_ptr is not None
73 return _Plugin._create_from_ptr_and_get_ref(plugin_ptr)
74
75
76 class _PluginVersion:
77 def __init__(self, major, minor, patch, extra):
78 self._major = major
79 self._minor = minor
80 self._patch = patch
81 self._extra = extra
82
83 @property
84 def major(self):
85 return self._major
86
87 @property
88 def minor(self):
89 return self._minor
90
91 @property
92 def patch(self):
93 return self._patch
94
95 @property
96 def extra(self):
97 return self._extra
98
99 def __str__(self):
100 extra = ''
101
102 if self._extra is not None:
103 extra = self._extra
104
105 return '{}.{}.{}{}'.format(self._major, self._minor, self._patch, extra)
106
107
108 class _PluginComponentClassesIterator(collections.abc.Iterator):
109 def __init__(self, plugin_comp_cls):
110 self._plugin_comp_cls = plugin_comp_cls
111 self._at = 0
112
113 def __next__(self):
114 plugin_ptr = self._plugin_comp_cls._plugin._ptr
115 total = self._plugin_comp_cls._component_class_count(plugin_ptr)
116
117 if self._at == total:
118 raise StopIteration
119
120 comp_cls_ptr = self._plugin_comp_cls._borrow_component_class_by_index(plugin_ptr, self._at)
121 assert comp_cls_ptr is not None
122 self._at += 1
123
124 comp_cls_type = self._plugin_comp_cls._comp_cls_type
125 comp_cls_pycls = bt2.component._COMP_CLS_TYPE_TO_GENERIC_COMP_CLS_PYCLS[comp_cls_type]
126 comp_cls_ptr = comp_cls_pycls._as_component_class_ptr(comp_cls_ptr)
127 name = native_bt.component_class_get_name(comp_cls_ptr)
128 assert name is not None
129 return name
130
131
132 class _PluginComponentClasses(collections.abc.Mapping):
133 def __init__(self, plugin):
134 self._plugin = plugin
135
136 def __getitem__(self, key):
137 utils._check_str(key)
138 cc_ptr = self._borrow_component_class_by_name(self._plugin._ptr, key)
139
140 if cc_ptr is None:
141 raise KeyError(key)
142
143 return bt2.component._create_component_class_from_ptr_and_get_ref(cc_ptr, self._comp_cls_type)
144
145 def __len__(self):
146 return self._component_class_count(self._plugin._ptr)
147
148 def __iter__(self):
149 return _PluginComponentClassesIterator(self)
150
151
152 class _PluginSourceComponentClasses(_PluginComponentClasses):
153 _component_class_count = staticmethod(native_bt.plugin_get_source_component_class_count)
154 _borrow_component_class_by_name = staticmethod(native_bt.plugin_borrow_source_component_class_by_name_const)
155 _borrow_component_class_by_index = staticmethod(native_bt.plugin_borrow_source_component_class_by_index_const)
156 _comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
157
158
159 class _PluginFilterComponentClasses(_PluginComponentClasses):
160 _component_class_count = staticmethod(native_bt.plugin_get_filter_component_class_count)
161 _borrow_component_class_by_name = staticmethod(native_bt.plugin_borrow_filter_component_class_by_name_const)
162 _borrow_component_class_by_index = staticmethod(native_bt.plugin_borrow_filter_component_class_by_index_const)
163 _comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
164
165
166 class _PluginSinkComponentClasses(_PluginComponentClasses):
167 _component_class_count = staticmethod(native_bt.plugin_get_sink_component_class_count)
168 _borrow_component_class_by_name = staticmethod(native_bt.plugin_borrow_sink_component_class_by_name_const)
169 _borrow_component_class_by_index = staticmethod(native_bt.plugin_borrow_sink_component_class_by_index_const)
170 _comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SINK
171
172
173 class _Plugin(object._SharedObject):
174 _put_ref = staticmethod(native_bt.plugin_put_ref)
175 _get_ref = staticmethod(native_bt.plugin_get_ref)
176
177 @property
178 def name(self):
179 name = native_bt.plugin_get_name(self._ptr)
180 assert(name is not None)
181 return name
182
183 @property
184 def author(self):
185 return native_bt.plugin_get_author(self._ptr)
186
187 @property
188 def license(self):
189 return native_bt.plugin_get_license(self._ptr)
190
191 @property
192 def description(self):
193 return native_bt.plugin_get_description(self._ptr)
194
195 @property
196 def path(self):
197 return native_bt.plugin_get_path(self._ptr)
198
199 @property
200 def version(self):
201 status, major, minor, patch, extra = native_bt.plugin_get_version_wrapper(self._ptr)
202
203 if status == native_bt.PROPERTY_AVAILABILITY_NOT_AVAILABLE:
204 return
205
206 return _PluginVersion(major, minor, patch, extra)
207
208 @property
209 def source_component_classes(self):
210 return _PluginSourceComponentClasses(self)
211
212 @property
213 def filter_component_classes(self):
214 return _PluginFilterComponentClasses(self)
215
216 @property
217 def sink_component_classes(self):
218 return _PluginSinkComponentClasses(self)
This page took 0.034072 seconds and 4 git commands to generate.