d5274ae49d3cef72591ea88526fedf1b2d2db83c
[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,
28 message_iterator_class=MyIter):
29 pass
30
31
32 @bt2.plugin_component_class
33 class MyFilter(bt2._UserFilterComponent,
34 message_iterator_class=MyIter):
35 pass
36
37
38 @bt2.plugin_component_class
39 class MySink(bt2._UserSinkComponent):
40 def _consume(self):
41 pass
42
43 def _graph_is_configured(self):
44 pass
45
46
47 bt2.register_plugin(__name__, 'sparkling', author='Philippe Proulx',
48 description='A delicious plugin.',
49 version=(1, 2, 3, 'EXTRA'),
50 license='MIT')
This page took 0.030081 seconds and 3 git commands to generate.