Commit | Line | Data |
---|---|---|
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 | ||
26 | from bt2.clock_class import * | |
4b552f8b | 27 | from bt2.clock_snapshot import * |
81447b5b | 28 | from bt2.component import * |
811644b8 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 | |
811644b8 | 40 | from bt2.event import _Event |
81447b5b | 41 | from bt2.event_class import * |
b4f45851 | 42 | from bt2.field_class import * |
d47b87ac | 43 | from bt2.field_path import * |
c4239792 | 44 | from bt2.field import * |
811644b8 PP |
45 | from bt2.graph import * |
46 | from bt2.logging import * | |
5602ef81 SM |
47 | from bt2.message import * |
48 | from bt2.message import _DiscardedEventsMessage | |
49 | from bt2.message import _DiscardedPacketsMessage | |
50 | from bt2.message_iterator import * | |
51 | from bt2.message_iterator import _UserMessageIterator | |
811644b8 | 52 | from bt2.packet import _Packet |
81447b5b | 53 | from bt2.plugin import * |
811644b8 | 54 | from bt2.port import * |
55bb57e0 | 55 | from bt2.py_plugin import * |
c7eee084 | 56 | from bt2.query_executor import * |
811644b8 | 57 | from bt2.stream import _Stream |
81447b5b PP |
58 | from bt2.stream_class import * |
59 | from bt2.trace import * | |
fbbe9302 | 60 | from bt2.trace_class import * |
5602ef81 | 61 | from bt2.trace_collection_message_iterator import * |
c4239792 SM |
62 | from bt2.value import * |
63 | from bt2.value import _Value | |
fdd3a2da | 64 | from bt2.value import _IntegerValue |
c6af194f | 65 | from bt2.clock_snapshot import _UnknownClockSnapshot |
81447b5b PP |
66 | |
67 | ||
68 | class Error(Exception): | |
69 | pass | |
70 | ||
71 | ||
72 | class CreationError(Error): | |
9ec609ec | 73 | '''Raised when object creation fails due to memory issues.''' |
81447b5b PP |
74 | |
75 | ||
d24d5663 | 76 | class InvalidObject(Error): |
c7eee084 PP |
77 | pass |
78 | ||
79 | ||
d24d5663 | 80 | class InvalidParams(Error): |
c7eee084 PP |
81 | pass |
82 | ||
83 | ||
d24d5663 | 84 | class OverflowError(OverflowError): |
81447b5b PP |
85 | pass |
86 | ||
87 | ||
d24d5663 | 88 | class Unsupported(Exception): |
81447b5b PP |
89 | pass |
90 | ||
91 | ||
d24d5663 | 92 | class TryAgain(Exception): |
81447b5b PP |
93 | pass |
94 | ||
95 | ||
d24d5663 PP |
96 | class Stop(StopIteration): |
97 | pass | |
98 | ||
99 | ||
100 | class IncompleteUserClass(Error): | |
811644b8 PP |
101 | pass |
102 | ||
103 | ||
d24d5663 | 104 | class Canceled(Exception): |
c7eee084 PP |
105 | pass |
106 | ||
107 | ||
2e90378a | 108 | class NonexistentClockSnapshot(Error): |
9ec609ec SM |
109 | pass |
110 | ||
111 | ||
d24d5663 | 112 | class LoadingError(Error): |
9736d991 PP |
113 | pass |
114 | ||
115 | ||
811644b8 PP |
116 | class _ListenerHandle: |
117 | def __init__(self, listener_id, obj): | |
118 | self._listener_id = listener_id | |
119 | self._obj = obj | |
120 | ||
121 | ||
0b03f63e PP |
122 | def _init_and_register_exit(): |
123 | import bt2.native_bt as _native_bt | |
124 | import atexit | |
125 | ||
d24d5663 | 126 | atexit.register(_native_bt.bt2_cc_exit_handler) |
0b03f63e PP |
127 | version = (_native_bt.version_get_major(), _native_bt.version_get_minor(), |
128 | _native_bt.version_get_patch(), _native_bt.version_get_extra()) | |
d24d5663 | 129 | _native_bt.bt2_cc_init_from_bt2() |
0b03f63e PP |
130 | |
131 | ||
132 | _init_and_register_exit() | |
133 | ||
811644b8 PP |
134 | |
135 | try: | |
136 | del native_bt | |
137 | except: | |
138 | pass |