Remove clock_class_priority_map.py
[babeltrace.git] / bindings / python / bt2 / bt2 / __init__.py.in
CommitLineData
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
26from bt2.clock_class import *
4b552f8b 27from bt2.clock_snapshot import *
81447b5b 28from bt2.component import *
811644b8
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
40from bt2.connection import _PrivateConnection
81447b5b 41from bt2.ctf_writer import *
811644b8
PP
42from bt2.ctf_writer import _CtfWriterStream
43from bt2.event import _Event
81447b5b 44from bt2.event_class import *
b4f45851
SM
45from bt2.field_class import *
46from bt2.field_class import _FieldClass
c4239792
SM
47from bt2.field import *
48from bt2.field import _ArrayField
49from bt2.field import _EnumerationField
50from bt2.field import _Field
51from bt2.field import _FloatingPointNumberField
52from bt2.field import _IntegerField
53from bt2.field import _SequenceField
54from bt2.field import _StringField
55from bt2.field import _StructureField
56from bt2.field import _VariantField
811644b8
PP
57from bt2.graph import *
58from bt2.logging import *
5602ef81
SM
59from bt2.message import *
60from bt2.message import _DiscardedEventsMessage
61from bt2.message import _DiscardedPacketsMessage
62from bt2.message_iterator import *
63from bt2.message_iterator import _UserMessageIterator
811644b8 64from bt2.packet import _Packet
81447b5b 65from bt2.plugin import *
811644b8
PP
66from bt2.port import *
67from bt2.port import _InputPort
68from bt2.port import _OutputPort
69from bt2.port import _Port
70from bt2.port import _PrivateInputPort
71from bt2.port import _PrivateOutputPort
72from bt2.port import _PrivatePort
55bb57e0 73from bt2.py_plugin import *
c7eee084 74from bt2.query_executor import *
811644b8 75from bt2.stream import _Stream
81447b5b
PP
76from bt2.stream_class import *
77from bt2.trace import *
5602ef81 78from bt2.trace_collection_message_iterator import *
c4239792
SM
79from bt2.value import *
80from bt2.value import _Value
81447b5b
PP
81
82
83class Error(Exception):
84 pass
85
86
87class CreationError(Error):
88 pass
89
90
811644b8 91class Frozen(Error):
81447b5b
PP
92 pass
93
94
c7eee084
PP
95class InvalidQueryObject(Error):
96 pass
97
98
99class InvalidQueryParams(Error):
100 pass
101
102
81447b5b
PP
103class UnsupportedFeature(Exception):
104 pass
105
106
811644b8
PP
107class NoSinkComponent(Exception):
108 pass
109
110
81447b5b
PP
111class TryAgain(Exception):
112 pass
113
114
115class Stop(StopIteration):
116 pass
117
118
811644b8
PP
119class PortConnectionRefused(Exception):
120 pass
121
122
123class IncompleteUserClass(Error):
81447b5b
PP
124 pass
125
126
1d915789
PP
127class CannotConsumeGraph(Error):
128 pass
129
130
811644b8
PP
131class GraphCanceled(Exception):
132 pass
133
134
c7eee084
PP
135class QueryExecutorCanceled(Exception):
136 pass
137
138
5602ef81 139class MessageIteratorCanceled(Exception):
811644b8
PP
140 pass
141
142
143class ConnectionEnded(Exception):
144 pass
145
146
147class _ListenerHandle:
148 def __init__(self, listener_id, obj):
149 self._listener_id = listener_id
150 self._obj = obj
151
152
0b03f63e
PP
153def _init_and_register_exit():
154 import bt2.native_bt as _native_bt
155 import atexit
156
157 atexit.register(_native_bt.py3_cc_exit_handler)
158 version = (_native_bt.version_get_major(), _native_bt.version_get_minor(),
159 _native_bt.version_get_patch(), _native_bt.version_get_extra())
160 _native_bt.py3_cc_init_from_bt2()
161
162
163_init_and_register_exit()
164
811644b8
PP
165
166try:
167 del native_bt
168except:
169 pass
This page took 0.042979 seconds and 4 git commands to generate.