Fix: lib: prevent infinite recursion when destroying trace classes and traces
[babeltrace.git] / bindings / python / bt2 / bt2 / __init__.py.in
... / ...
CommitLineData
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__version__ = '@PACKAGE_VERSION@'
24
25
26from bt2.clock_class import *
27from bt2.clock_snapshot import *
28from bt2.component import *
29from bt2.component import _FilterComponent
30from bt2.component import _GenericFilterComponentClass
31from bt2.component import _GenericSinkComponentClass
32from bt2.component import _GenericSourceComponentClass
33from bt2.component import _SinkComponent
34from bt2.component import _SourceComponent
35from bt2.component import _UserFilterComponent
36from bt2.component import _UserSinkComponent
37from bt2.component import _UserSourceComponent
38from bt2.connection import *
39from bt2.connection import _Connection
40from bt2.ctf_writer import *
41from bt2.ctf_writer import _CtfWriterStream
42from bt2.event import _Event
43from bt2.event_class import *
44from bt2.field_class import *
45from bt2.field_class import _FieldClass
46from bt2.field import *
47from bt2.field import _ArrayField
48from bt2.field import _EnumerationField
49from bt2.field import _Field
50from bt2.field import _FloatingPointNumberField
51from bt2.field import _IntegerField
52from bt2.field import _SequenceField
53from bt2.field import _StringField
54from bt2.field import _StructureField
55from bt2.field import _VariantField
56from bt2.graph import *
57from bt2.logging import *
58from bt2.message import *
59from bt2.message import _DiscardedEventsMessage
60from bt2.message import _DiscardedPacketsMessage
61from bt2.message_iterator import *
62from bt2.message_iterator import _UserMessageIterator
63from bt2.packet import _Packet
64from bt2.plugin import *
65from bt2.port import *
66from bt2.py_plugin import *
67from bt2.query_executor import *
68from bt2.stream import _Stream
69from bt2.stream_class import *
70from bt2.trace import *
71from bt2.trace_collection_message_iterator import *
72from bt2.value import *
73from bt2.value import _Value
74from bt2.value import _IntegerValue
75
76
77class Error(Exception):
78 pass
79
80
81class CreationError(Error):
82 pass
83
84
85class Frozen(Error):
86 pass
87
88
89class InvalidQueryObject(Error):
90 pass
91
92
93class InvalidQueryParams(Error):
94 pass
95
96
97class UnsupportedFeature(Exception):
98 pass
99
100
101class NoSinkComponent(Exception):
102 pass
103
104
105class TryAgain(Exception):
106 pass
107
108
109class Stop(StopIteration):
110 pass
111
112
113class PortConnectionRefused(Exception):
114 pass
115
116
117class IncompleteUserClass(Error):
118 pass
119
120
121class CannotConsumeGraph(Error):
122 pass
123
124
125class GraphCanceled(Exception):
126 pass
127
128
129class QueryExecutorCanceled(Exception):
130 pass
131
132
133class MessageIteratorCanceled(Exception):
134 pass
135
136
137class ConnectionEnded(Exception):
138 pass
139
140
141class _ListenerHandle:
142 def __init__(self, listener_id, obj):
143 self._listener_id = listener_id
144 self._obj = obj
145
146
147def _init_and_register_exit():
148 import bt2.native_bt as _native_bt
149 import atexit
150
151 atexit.register(_native_bt.py3_cc_exit_handler)
152 version = (_native_bt.version_get_major(), _native_bt.version_get_minor(),
153 _native_bt.version_get_patch(), _native_bt.version_get_extra())
154 _native_bt.py3_cc_init_from_bt2()
155
156
157_init_and_register_exit()
158
159
160try:
161 del native_bt
162except:
163 pass
This page took 0.02344 seconds and 4 git commands to generate.