lib: add bt_{graph,query_executor}_add_interrupter()
[babeltrace.git] / src / bindings / python / bt2 / bt2 / __init__.py.in
CommitLineData
81447b5b
PP
1# The MIT License (MIT)
2#
811644b8 3# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
81447b5b
PP
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__version__ = '@PACKAGE_VERSION@'
24
25
1e920353 26from bt2.interrupter import *
81447b5b 27from bt2.clock_class import *
4b552f8b 28from bt2.clock_snapshot import *
81447b5b 29from bt2.component import *
811644b8
PP
30from bt2.component import _FilterComponent
31from bt2.component import _GenericFilterComponentClass
32from bt2.component import _GenericSinkComponentClass
33from bt2.component import _GenericSourceComponentClass
34from bt2.component import _SinkComponent
35from bt2.component import _SourceComponent
36from bt2.component import _UserFilterComponent
37from bt2.component import _UserSinkComponent
38from bt2.component import _UserSourceComponent
39from bt2.connection import *
40from bt2.connection import _Connection
ce4923b0 41from bt2.error import *
694c792b 42from bt2.error import _Error
811644b8 43from bt2.event import _Event
81447b5b 44from bt2.event_class import *
b4f45851 45from bt2.field_class import *
d47b87ac 46from bt2.field_path import *
c4239792 47from bt2.field import *
811644b8 48from bt2.graph import *
19bb8b5a 49from bt2.integer_range_set import *
811644b8 50from bt2.logging import *
5602ef81
SM
51from bt2.message import *
52from bt2.message import _DiscardedEventsMessage
53from bt2.message import _DiscardedPacketsMessage
26fc5aed 54from bt2.message import _EventMessage
5602ef81
SM
55from bt2.message_iterator import *
56from bt2.message_iterator import _UserMessageIterator
811644b8 57from bt2.packet import _Packet
81447b5b 58from bt2.plugin import *
811644b8 59from bt2.port import *
55bb57e0 60from bt2.py_plugin import *
c7eee084 61from bt2.query_executor import *
811644b8 62from bt2.stream import _Stream
81447b5b
PP
63from bt2.stream_class import *
64from bt2.trace import *
fbbe9302 65from bt2.trace_class import *
5602ef81 66from bt2.trace_collection_message_iterator import *
c4239792
SM
67from bt2.value import *
68from bt2.value import _Value
fdd3a2da 69from bt2.value import _IntegerValue
c6af194f 70from bt2.clock_snapshot import _UnknownClockSnapshot
81447b5b
PP
71
72
694c792b 73class _MemoryError(_Error):
4acc866e 74 '''Raised when an operation fails due to memory issues.'''
81447b5b
PP
75
76
ce4923b0 77class InvalidObject(Exception):
c7eee084
PP
78 pass
79
80
ce4923b0 81class InvalidParams(Exception):
c7eee084
PP
82 pass
83
84
d24d5663 85class OverflowError(OverflowError):
81447b5b
PP
86 pass
87
88
d24d5663 89class TryAgain(Exception):
81447b5b
PP
90 pass
91
92
d24d5663
PP
93class Stop(StopIteration):
94 pass
95
96
ce4923b0 97class IncompleteUserClass(Exception):
811644b8
PP
98 pass
99
100
811644b8
PP
101class _ListenerHandle:
102 def __init__(self, listener_id, obj):
103 self._listener_id = listener_id
104 self._obj = obj
105
106
0b03f63e
PP
107def _init_and_register_exit():
108 import bt2.native_bt as _native_bt
109 import atexit
110
d24d5663 111 atexit.register(_native_bt.bt2_cc_exit_handler)
cfbd7cf3
FD
112 version = (
113 _native_bt.version_get_major(),
114 _native_bt.version_get_minor(),
115 _native_bt.version_get_patch(),
116 _native_bt.version_get_extra(),
117 )
d24d5663 118 _native_bt.bt2_cc_init_from_bt2()
0b03f63e
PP
119
120
121_init_and_register_exit()
122
811644b8
PP
123
124try:
125 del native_bt
126except:
127 pass
This page took 0.048199 seconds and 4 git commands to generate.