Commit | Line | Data |
---|---|---|
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 | ||
26 | from bt2.clock_class import * | |
f192fc47 | 27 | from bt2.clock_snapshot import * |
81447b5b | 28 | from bt2.component import * |
f6a5e476 PP |
29 | from bt2.component import _FilterComponent |
30 | from bt2.component import _GenericFilterComponentClass | |
31 | from bt2.component import _GenericSinkComponentClass | |
32 | from bt2.component import _GenericSourceComponentClass | |
33 | from bt2.component import _SinkComponent | |
34 | from bt2.component import _SourceComponent | |
35 | from bt2.component import _UserFilterComponent | |
36 | from bt2.component import _UserSinkComponent | |
37 | from bt2.component import _UserSourceComponent | |
38 | from bt2.connection import * | |
39 | from bt2.connection import _Connection | |
f6a5e476 | 40 | from bt2.event import _Event |
81447b5b | 41 | from bt2.event_class import * |
32656995 | 42 | from bt2.field_class import * |
c8820b76 | 43 | from bt2.field_path import * |
ae0bfae8 | 44 | from bt2.field import * |
f6a5e476 | 45 | from bt2.graph import * |
025c8fb8 | 46 | from bt2.integer_range_set import * |
f6a5e476 | 47 | from bt2.logging import * |
fa4c33e3 SM |
48 | from bt2.message import * |
49 | from bt2.message import _DiscardedEventsMessage | |
50 | from bt2.message import _DiscardedPacketsMessage | |
37a93d41 | 51 | from bt2.message import _EventMessage |
fa4c33e3 SM |
52 | from bt2.message_iterator import * |
53 | from bt2.message_iterator import _UserMessageIterator | |
f6a5e476 | 54 | from bt2.packet import _Packet |
81447b5b | 55 | from bt2.plugin import * |
f6a5e476 | 56 | from bt2.port import * |
55bb57e0 | 57 | from bt2.py_plugin import * |
1286dcbb | 58 | from bt2.query_executor import * |
f6a5e476 | 59 | from bt2.stream import _Stream |
81447b5b PP |
60 | from bt2.stream_class import * |
61 | from bt2.trace import * | |
0bee8ea9 | 62 | from bt2.trace_class import * |
fa4c33e3 | 63 | from bt2.trace_collection_message_iterator import * |
ae0bfae8 SM |
64 | from bt2.value import * |
65 | from bt2.value import _Value | |
68d9d039 | 66 | from bt2.value import _IntegerValue |
dcd94213 | 67 | from bt2.clock_snapshot import _UnknownClockSnapshot |
81447b5b PP |
68 | |
69 | ||
70 | class Error(Exception): | |
71 | pass | |
72 | ||
73 | ||
74 | class CreationError(Error): | |
0010c8b0 | 75 | '''Raised when object creation fails due to memory issues.''' |
81447b5b PP |
76 | |
77 | ||
fb25b9e3 | 78 | class InvalidObject(Error): |
1286dcbb PP |
79 | pass |
80 | ||
81 | ||
fb25b9e3 | 82 | class InvalidParams(Error): |
1286dcbb PP |
83 | pass |
84 | ||
85 | ||
fb25b9e3 | 86 | class OverflowError(OverflowError): |
81447b5b PP |
87 | pass |
88 | ||
89 | ||
fb25b9e3 | 90 | class Unsupported(Exception): |
81447b5b PP |
91 | pass |
92 | ||
93 | ||
fb25b9e3 | 94 | class TryAgain(Exception): |
81447b5b PP |
95 | pass |
96 | ||
97 | ||
fb25b9e3 PP |
98 | class Stop(StopIteration): |
99 | pass | |
100 | ||
101 | ||
102 | class IncompleteUserClass(Error): | |
f6a5e476 PP |
103 | pass |
104 | ||
105 | ||
fb25b9e3 | 106 | class Canceled(Exception): |
1286dcbb PP |
107 | pass |
108 | ||
109 | ||
77037b2b | 110 | class NonexistentClockSnapshot(Error): |
0010c8b0 SM |
111 | pass |
112 | ||
113 | ||
fb25b9e3 | 114 | class LoadingError(Error): |
01f50d54 PP |
115 | pass |
116 | ||
117 | ||
f6a5e476 PP |
118 | class _ListenerHandle: |
119 | def __init__(self, listener_id, obj): | |
120 | self._listener_id = listener_id | |
121 | self._obj = obj | |
122 | ||
123 | ||
5c8b3186 PP |
124 | def _init_and_register_exit(): |
125 | import bt2.native_bt as _native_bt | |
126 | import atexit | |
127 | ||
fb25b9e3 | 128 | atexit.register(_native_bt.bt2_cc_exit_handler) |
61d96b89 FD |
129 | version = ( |
130 | _native_bt.version_get_major(), | |
131 | _native_bt.version_get_minor(), | |
132 | _native_bt.version_get_patch(), | |
133 | _native_bt.version_get_extra(), | |
134 | ) | |
fb25b9e3 | 135 | _native_bt.bt2_cc_init_from_bt2() |
5c8b3186 PP |
136 | |
137 | ||
138 | _init_and_register_exit() | |
139 | ||
f6a5e476 PP |
140 | |
141 | try: | |
142 | del native_bt | |
143 | except: | |
144 | pass |