bt2: rename CreationError to MemoryError, handle it in and out of Python bindings
[babeltrace.git] / src / bindings / python / bt2 / bt2 / __init__.py.in
CommitLineData
81447b5b
PP
1# The MIT License (MIT)
2#
f6a5e476 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
26from bt2.clock_class import *
f192fc47 27from bt2.clock_snapshot import *
81447b5b 28from bt2.component import *
f6a5e476
PP
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
3b2be708 40from bt2.error import *
f6a5e476 41from bt2.event import _Event
81447b5b 42from bt2.event_class import *
32656995 43from bt2.field_class import *
c8820b76 44from bt2.field_path import *
ae0bfae8 45from bt2.field import *
f6a5e476 46from bt2.graph import *
025c8fb8 47from bt2.integer_range_set import *
f6a5e476 48from bt2.logging import *
fa4c33e3
SM
49from bt2.message import *
50from bt2.message import _DiscardedEventsMessage
51from bt2.message import _DiscardedPacketsMessage
37a93d41 52from bt2.message import _EventMessage
fa4c33e3
SM
53from bt2.message_iterator import *
54from bt2.message_iterator import _UserMessageIterator
f6a5e476 55from bt2.packet import _Packet
81447b5b 56from bt2.plugin import *
f6a5e476 57from bt2.port import *
55bb57e0 58from bt2.py_plugin import *
1286dcbb 59from bt2.query_executor import *
f6a5e476 60from bt2.stream import _Stream
81447b5b
PP
61from bt2.stream_class import *
62from bt2.trace import *
0bee8ea9 63from bt2.trace_class import *
fa4c33e3 64from bt2.trace_collection_message_iterator import *
ae0bfae8
SM
65from bt2.value import *
66from bt2.value import _Value
68d9d039 67from bt2.value import _IntegerValue
dcd94213 68from bt2.clock_snapshot import _UnknownClockSnapshot
81447b5b
PP
69
70
493428a0
SM
71class MemoryError(Error):
72 '''Raised when an operation fails due to memory issues.'''
81447b5b
PP
73
74
3b2be708 75class InvalidObject(Exception):
1286dcbb
PP
76 pass
77
78
3b2be708 79class InvalidParams(Exception):
1286dcbb
PP
80 pass
81
82
fb25b9e3 83class OverflowError(OverflowError):
81447b5b
PP
84 pass
85
86
fb25b9e3 87class Unsupported(Exception):
81447b5b
PP
88 pass
89
90
fb25b9e3 91class TryAgain(Exception):
81447b5b
PP
92 pass
93
94
fb25b9e3
PP
95class Stop(StopIteration):
96 pass
97
98
3b2be708 99class IncompleteUserClass(Exception):
f6a5e476
PP
100 pass
101
102
fb25b9e3 103class Canceled(Exception):
1286dcbb
PP
104 pass
105
106
3b2be708 107class NonexistentClockSnapshot(Exception):
0010c8b0
SM
108 pass
109
110
fb25b9e3 111class LoadingError(Error):
01f50d54
PP
112 pass
113
114
f6a5e476
PP
115class _ListenerHandle:
116 def __init__(self, listener_id, obj):
117 self._listener_id = listener_id
118 self._obj = obj
119
120
5c8b3186
PP
121def _init_and_register_exit():
122 import bt2.native_bt as _native_bt
123 import atexit
124
fb25b9e3 125 atexit.register(_native_bt.bt2_cc_exit_handler)
61d96b89
FD
126 version = (
127 _native_bt.version_get_major(),
128 _native_bt.version_get_minor(),
129 _native_bt.version_get_patch(),
130 _native_bt.version_get_extra(),
131 )
fb25b9e3 132 _native_bt.bt2_cc_init_from_bt2()
5c8b3186
PP
133
134
135_init_and_register_exit()
136
f6a5e476
PP
137
138try:
139 del native_bt
140except:
141 pass
This page took 0.046448 seconds and 4 git commands to generate.