cdac06702fe7bee8e6ada98240641caffbe9872a
[babeltrace.git] / tests / python-plugin-provider / bt_plugin_test_python_plugin_provider.py
1 #
2 # Copyright (C) 2019 EfficiOS Inc.
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; only version 2
7 # of the License.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 #
18
19 import bt2
20
21
22 class MyIter(bt2._UserMessageIterator):
23 pass
24
25
26 @bt2.plugin_component_class
27 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
28 pass
29
30
31 @bt2.plugin_component_class
32 class MyFilter(bt2._UserFilterComponent, message_iterator_class=MyIter):
33 pass
34
35
36 @bt2.plugin_component_class
37 class MySink(bt2._UserSinkComponent):
38 def _user_consume(self):
39 pass
40
41
42 bt2.register_plugin(
43 __name__,
44 'sparkling',
45 author='Philippe Proulx',
46 description='A delicious plugin.',
47 version=(1, 2, 3, 'EXTRA'),
48 license='MIT',
49 )
This page took 0.029467 seconds and 4 git commands to generate.