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 * | |
f6a5e476 PP |
27 | from bt2.clock_class import _ClockValue |
28 | from bt2.clock_class_priority_map import * | |
81447b5b | 29 | from bt2.component import * |
f6a5e476 PP |
30 | from bt2.component import _FilterComponent |
31 | from bt2.component import _GenericFilterComponentClass | |
32 | from bt2.component import _GenericSinkComponentClass | |
33 | from bt2.component import _GenericSourceComponentClass | |
34 | from bt2.component import _SinkComponent | |
35 | from bt2.component import _SourceComponent | |
36 | from bt2.component import _UserFilterComponent | |
37 | from bt2.component import _UserSinkComponent | |
38 | from bt2.component import _UserSourceComponent | |
39 | from bt2.connection import * | |
40 | from bt2.connection import _Connection | |
41 | from bt2.connection import _PrivateConnection | |
81447b5b | 42 | from bt2.ctf_writer import * |
f6a5e476 PP |
43 | from bt2.ctf_writer import _CtfWriterStream |
44 | from bt2.event import _Event | |
81447b5b PP |
45 | from bt2.event_class import * |
46 | from bt2.field_types import * | |
f6a5e476 | 47 | from bt2.field_types import _FieldType |
81447b5b | 48 | from bt2.fields import * |
f6a5e476 PP |
49 | from bt2.fields import _ArrayField |
50 | from bt2.fields import _EnumerationField | |
51 | from bt2.fields import _Field | |
52 | from bt2.fields import _FloatingPointNumberField | |
53 | from bt2.fields import _IntegerField | |
54 | from bt2.fields import _SequenceField | |
55 | from bt2.fields import _StringField | |
56 | from bt2.fields import _StructureField | |
57 | from bt2.fields import _VariantField | |
58 | from bt2.graph import * | |
59 | from bt2.logging import * | |
81447b5b | 60 | from bt2.notification import * |
f6a5e476 PP |
61 | from bt2.notification import _DiscardedEventsNotification |
62 | from bt2.notification import _DiscardedPacketsNotification | |
81447b5b | 63 | from bt2.notification_iterator import * |
f6a5e476 PP |
64 | from bt2.notification_iterator import _UserNotificationIterator |
65 | from bt2.packet import _Packet | |
81447b5b | 66 | from bt2.plugin import * |
f6a5e476 PP |
67 | from bt2.port import * |
68 | from bt2.port import _InputPort | |
69 | from bt2.port import _OutputPort | |
70 | from bt2.port import _Port | |
71 | from bt2.port import _PrivateInputPort | |
72 | from bt2.port import _PrivateOutputPort | |
73 | from bt2.port import _PrivatePort | |
55bb57e0 | 74 | from bt2.py_plugin import * |
f6a5e476 | 75 | from bt2.stream import _Stream |
81447b5b PP |
76 | from bt2.stream_class import * |
77 | from bt2.trace import * | |
78 | from bt2.values import * | |
f6a5e476 | 79 | from bt2.values import _Value |
81447b5b PP |
80 | |
81 | ||
82 | class Error(Exception): | |
83 | pass | |
84 | ||
85 | ||
86 | class CreationError(Error): | |
87 | pass | |
88 | ||
89 | ||
f6a5e476 | 90 | class Frozen(Error): |
81447b5b PP |
91 | pass |
92 | ||
93 | ||
f6a5e476 | 94 | class NoSuchPlugin(Error): |
9a0a47ae PP |
95 | pass |
96 | ||
97 | ||
81447b5b PP |
98 | class UnsupportedFeature(Exception): |
99 | pass | |
100 | ||
101 | ||
f6a5e476 PP |
102 | class NoSinkComponent(Exception): |
103 | pass | |
104 | ||
105 | ||
81447b5b PP |
106 | class TryAgain(Exception): |
107 | pass | |
108 | ||
109 | ||
110 | class Stop(StopIteration): | |
111 | pass | |
112 | ||
113 | ||
f6a5e476 PP |
114 | class PortConnectionRefused(Exception): |
115 | pass | |
116 | ||
117 | ||
118 | class IncompleteUserClass(Error): | |
81447b5b PP |
119 | pass |
120 | ||
121 | ||
f6a5e476 PP |
122 | class GraphCanceled(Exception): |
123 | pass | |
124 | ||
125 | ||
126 | class NotificationIteratorCanceled(Exception): | |
127 | pass | |
128 | ||
129 | ||
130 | class ConnectionEnded(Exception): | |
131 | pass | |
132 | ||
133 | ||
134 | class _ListenerHandle: | |
135 | def __init__(self, listener_id, obj): | |
136 | self._listener_id = listener_id | |
137 | self._obj = obj | |
138 | ||
139 | ||
81447b5b PP |
140 | import bt2.native_bt as _native_bt |
141 | import atexit | |
142 | ||
143 | atexit.register(_native_bt.py3_cc_exit_handler) | |
f6a5e476 PP |
144 | version = (_native_bt.version_get_major(), _native_bt.version_get_minor(), |
145 | _native_bt.version_get_patch(), _native_bt.version_get_extra()) | |
81447b5b | 146 | _native_bt.py3_cc_init_from_bt2() |
f6a5e476 PP |
147 | del _native_bt |
148 | ||
149 | try: | |
150 | del native_bt | |
151 | except: | |
152 | pass |