1 # The MIT License (MIT)
3 # Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
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:
12 # The above copyright notice and this permission notice shall be included in
13 # all copies or substantial portions of the Software.
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
23 __version__
= '@PACKAGE_VERSION@'
26 from bt2
.interrupter
import *
27 from bt2
.clock_class
import *
28 from bt2
.clock_snapshot
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
.error
import *
42 from bt2
.error
import _Error
43 from bt2
.event
import _Event
44 from bt2
.event_class
import *
45 from bt2
.field_class
import *
46 from bt2
.field_path
import *
47 from bt2
.field
import *
48 from bt2
.graph
import *
49 from bt2
.integer_range_set
import *
50 from bt2
.logging
import *
51 from bt2
.message
import *
52 from bt2
.message
import _DiscardedEventsMessage
53 from bt2
.message
import _DiscardedPacketsMessage
54 from bt2
.message
import _EventMessage
55 from bt2
.message_iterator
import *
56 from bt2
.message_iterator
import _UserMessageIterator
57 from bt2
.packet
import _Packet
58 from bt2
.plugin
import *
59 from bt2
.port
import *
60 from bt2
.py_plugin
import *
61 from bt2
.query_executor
import *
62 from bt2
.stream
import _Stream
63 from bt2
.stream_class
import *
64 from bt2
.trace
import *
65 from bt2
.trace_class
import *
66 from bt2
.trace_collection_message_iterator
import *
67 from bt2
.value
import *
68 from bt2
.value
import _Value
69 from bt2
.value
import _IntegerValue
70 from bt2
.clock_snapshot
import _UnknownClockSnapshot
73 class _MemoryError(_Error
):
74 '''Raised when an operation fails due to memory issues.'''
77 class InvalidObject(Exception):
81 class InvalidParams(Exception):
85 class OverflowError(OverflowError):
89 class TryAgain(Exception):
93 class Stop(StopIteration):
97 class IncompleteUserClass(Exception):
101 class Canceled(Exception):
105 class _ListenerHandle
:
106 def __init__(self
, listener_id
, obj
):
107 self
._listener
_id
= listener_id
111 def _init_and_register_exit():
112 import bt2
.native_bt
as _native_bt
115 atexit
.register(_native_bt
.bt2_cc_exit_handler
)
117 _native_bt
.version_get_major(),
118 _native_bt
.version_get_minor(),
119 _native_bt
.version_get_patch(),
120 _native_bt
.version_get_extra(),
122 _native_bt
.bt2_cc_init_from_bt2()
125 _init_and_register_exit()