Python bt2 fix: _ClockValue is no longer part of bt2.clock_class
[babeltrace.git] / bindings / python / bt2 / bt2 / __init__.py.in
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
26 from bt2.clock_class import *
27 from bt2.clock_class_priority_map import *
28 from bt2.clock_value import *
29 from bt2.component import *
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
42 from bt2.ctf_writer import *
43 from bt2.ctf_writer import _CtfWriterStream
44 from bt2.event import _Event
45 from bt2.event_class import *
46 from bt2.field_types import *
47 from bt2.field_types import _FieldType
48 from bt2.fields import *
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 *
60 from bt2.notification import *
61 from bt2.notification import _DiscardedEventsNotification
62 from bt2.notification import _DiscardedPacketsNotification
63 from bt2.notification_iterator import *
64 from bt2.notification_iterator import _UserNotificationIterator
65 from bt2.packet import _Packet
66 from bt2.plugin import *
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
74 from bt2.py_plugin import *
75 from bt2.query_executor import *
76 from bt2.stream import _Stream
77 from bt2.stream_class import *
78 from bt2.trace import *
79 from bt2.values import *
80 from bt2.values import _Value
81
82
83 class Error(Exception):
84 pass
85
86
87 class CreationError(Error):
88 pass
89
90
91 class Frozen(Error):
92 pass
93
94
95 class NoSuchPlugin(Error):
96 pass
97
98
99 class InvalidQueryObject(Error):
100 pass
101
102
103 class InvalidQueryParams(Error):
104 pass
105
106
107 class UnsupportedFeature(Exception):
108 pass
109
110
111 class NoSinkComponent(Exception):
112 pass
113
114
115 class TryAgain(Exception):
116 pass
117
118
119 class Stop(StopIteration):
120 pass
121
122
123 class PortConnectionRefused(Exception):
124 pass
125
126
127 class IncompleteUserClass(Error):
128 pass
129
130
131 class CannotConsumeGraph(Error):
132 pass
133
134
135 class GraphCanceled(Exception):
136 pass
137
138
139 class QueryExecutorCanceled(Exception):
140 pass
141
142
143 class NotificationIteratorCanceled(Exception):
144 pass
145
146
147 class ConnectionEnded(Exception):
148 pass
149
150
151 class _ListenerHandle:
152 def __init__(self, listener_id, obj):
153 self._listener_id = listener_id
154 self._obj = obj
155
156
157 import bt2.native_bt as _native_bt
158 import atexit
159
160 atexit.register(_native_bt.py3_cc_exit_handler)
161 version = (_native_bt.version_get_major(), _native_bt.version_get_minor(),
162 _native_bt.version_get_patch(), _native_bt.version_get_extra())
163 _native_bt.py3_cc_init_from_bt2()
164 del _native_bt
165
166 try:
167 del native_bt
168 except:
169 pass
This page took 0.03483 seconds and 4 git commands to generate.