bt2: Adapt test_field_class.py and make it pass
[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_snapshot import *
28 from bt2.component import *
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
40 from bt2.ctf_writer import *
41 from bt2.ctf_writer import _CtfWriterStream
42 from bt2.event import _Event
43 from bt2.event_class import *
44 from bt2.field_class import *
45 from bt2.field_path import *
46 from bt2.field import *
47 from bt2.field import _ArrayField
48 from bt2.field import _EnumerationField
49 from bt2.field import _Field
50 from bt2.field import _RealField
51 from bt2.field import _IntegerField
52 from bt2.field import _SequenceField
53 from bt2.field import _StringField
54 from bt2.field import _StructureField
55 from bt2.field import _VariantField
56 from bt2.graph import *
57 from bt2.logging import *
58 from bt2.message import *
59 from bt2.message import _DiscardedEventsMessage
60 from bt2.message import _DiscardedPacketsMessage
61 from bt2.message_iterator import *
62 from bt2.message_iterator import _UserMessageIterator
63 from bt2.packet import _Packet
64 from bt2.plugin import *
65 from bt2.port import *
66 from bt2.py_plugin import *
67 from bt2.query_executor import *
68 from bt2.stream import _Stream
69 from bt2.stream_class import *
70 from bt2.trace import *
71 from bt2.trace_class import *
72 from bt2.trace_collection_message_iterator import *
73 from bt2.value import *
74 from bt2.value import _Value
75 from bt2.value import _IntegerValue
76
77
78 class Error(Exception):
79 pass
80
81
82 class CreationError(Error):
83 pass
84
85
86 class Frozen(Error):
87 pass
88
89
90 class InvalidQueryObject(Error):
91 pass
92
93
94 class InvalidQueryParams(Error):
95 pass
96
97
98 class UnsupportedFeature(Exception):
99 pass
100
101
102 class TryAgain(Exception):
103 pass
104
105
106 class Stop(StopIteration):
107 pass
108
109
110 class PortConnectionRefused(Exception):
111 pass
112
113
114 class IncompleteUserClass(Error):
115 pass
116
117
118 class CannotConsumeGraph(Error):
119 pass
120
121
122 class GraphCanceled(Exception):
123 pass
124
125
126 class QueryExecutorCanceled(Exception):
127 pass
128
129
130 class MessageIteratorCanceled(Exception):
131 pass
132
133
134 class ConnectionEnded(Exception):
135 pass
136
137
138 class _ListenerHandle:
139 def __init__(self, listener_id, obj):
140 self._listener_id = listener_id
141 self._obj = obj
142
143
144 def _init_and_register_exit():
145 import bt2.native_bt as _native_bt
146 import atexit
147
148 atexit.register(_native_bt.py3_cc_exit_handler)
149 version = (_native_bt.version_get_major(), _native_bt.version_get_minor(),
150 _native_bt.version_get_patch(), _native_bt.version_get_extra())
151 _native_bt.py3_cc_init_from_bt2()
152
153
154 _init_and_register_exit()
155
156
157 try:
158 del native_bt
159 except:
160 pass
This page took 0.033004 seconds and 5 git commands to generate.