lib: remove LOADING_ERROR status
[babeltrace.git] / src / 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.error import *
41from bt2.error import _Error
42from bt2.event import _Event
43from bt2.event_class import *
44from bt2.field_class import *
45from bt2.field_path import *
46from bt2.field import *
47from bt2.graph import *
48from bt2.integer_range_set import *
49from bt2.logging import *
50from bt2.message import *
51from bt2.message import _DiscardedEventsMessage
52from bt2.message import _DiscardedPacketsMessage
53from bt2.message import _EventMessage
54from bt2.message_iterator import *
55from bt2.message_iterator import _UserMessageIterator
56from bt2.packet import _Packet
57from bt2.plugin import *
58from bt2.port import *
59from bt2.py_plugin import *
60from bt2.query_executor import *
61from bt2.stream import _Stream
62from bt2.stream_class import *
63from bt2.trace import *
64from bt2.trace_class import *
65from bt2.trace_collection_message_iterator import *
66from bt2.value import *
67from bt2.value import _Value
68from bt2.value import _IntegerValue
69from bt2.clock_snapshot import _UnknownClockSnapshot
70
71
72class _MemoryError(_Error):
73 '''Raised when an operation fails due to memory issues.'''
74
75
76class InvalidObject(Exception):
77 pass
78
79
80class InvalidParams(Exception):
81 pass
82
83
84class OverflowError(OverflowError):
85 pass
86
87
88class Unsupported(Exception):
89 pass
90
91
92class TryAgain(Exception):
93 pass
94
95
96class Stop(StopIteration):
97 pass
98
99
100class IncompleteUserClass(Exception):
101 pass
102
103
104class Canceled(Exception):
105 pass
106
107
108class _ListenerHandle:
109 def __init__(self, listener_id, obj):
110 self._listener_id = listener_id
111 self._obj = obj
112
113
114def _init_and_register_exit():
115 import bt2.native_bt as _native_bt
116 import atexit
117
118 atexit.register(_native_bt.bt2_cc_exit_handler)
119 version = (
120 _native_bt.version_get_major(),
121 _native_bt.version_get_minor(),
122 _native_bt.version_get_patch(),
123 _native_bt.version_get_extra(),
124 )
125 _native_bt.bt2_cc_init_from_bt2()
126
127
128_init_and_register_exit()
129
130
131try:
132 del native_bt
133except:
134 pass
This page took 0.023268 seconds and 4 git commands to generate.