d3141b86f0a79a0362c9cd3fc6ad18be343c41e2
[babeltrace.git] / bindings / python / bt2 / bt2 / event_class.py
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 from bt2 import native_bt, object, utils
24 import bt2.field_class
25 import bt2.value
26 import bt2.event
27 import bt2
28
29
30 class EventClassLogLevel:
31 EMERGENCY = native_bt.EVENT_CLASS_LOG_LEVEL_EMERGENCY
32 ALERT = native_bt.EVENT_CLASS_LOG_LEVEL_ALERT
33 CRITICAL = native_bt.EVENT_CLASS_LOG_LEVEL_CRITICAL
34 ERROR = native_bt.EVENT_CLASS_LOG_LEVEL_ERROR
35 WARNING = native_bt.EVENT_CLASS_LOG_LEVEL_WARNING
36 NOTICE = native_bt.EVENT_CLASS_LOG_LEVEL_NOTICE
37 INFO = native_bt.EVENT_CLASS_LOG_LEVEL_INFO
38 DEBUG_SYSTEM = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM
39 DEBUG_PROGRAM = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM
40 DEBUG_PROCESS = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS
41 DEBUG_MODULE = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE
42 DEBUG_UNIT = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT
43 DEBUG_FUNCTION = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION
44 DEBUG_LINE = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_LINE
45 DEBUG = native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG
46
47
48 class _EventClass(object._SharedObject):
49 _get_ref = staticmethod(native_bt.event_class_get_ref)
50 _put_ref = staticmethod(native_bt.event_class_put_ref)
51
52 @property
53 def stream_class(self):
54 sc_ptr = native_bt.event_class_borrow_stream_class(self._ptr)
55
56 if sc_ptr is not None:
57 return bt2.stream_class._StreamClass._create_from_ptr_and_get_ref(sc_ptr)
58
59 @property
60 def name(self):
61 return native_bt.event_class_get_name(self._ptr)
62
63 def _name(self, name):
64 utils._check_str(name)
65 return native_bt.event_class_set_name(self._ptr, name)
66
67 _name = property(fset=_name)
68
69 @property
70 def id(self):
71 id = native_bt.event_class_get_id(self._ptr)
72 return id if id >= 0 else None
73
74 @property
75 def log_level(self):
76 is_available, log_level = native_bt.event_class_get_log_level(self._ptr)
77
78 if is_available != native_bt.PROPERTY_AVAILABILITY_AVAILABLE:
79 return None
80
81 return _EVENT_CLASS_LOG_LEVEL_TO_OBJ[log_level]
82
83 def _log_level(self, log_level):
84 log_levels = (
85 EventClassLogLevel.EMERGENCY,
86 EventClassLogLevel.ALERT,
87 EventClassLogLevel.CRITICAL,
88 EventClassLogLevel.ERROR,
89 EventClassLogLevel.WARNING,
90 EventClassLogLevel.NOTICE,
91 EventClassLogLevel.INFO,
92 EventClassLogLevel.DEBUG_SYSTEM,
93 EventClassLogLevel.DEBUG_PROGRAM,
94 EventClassLogLevel.DEBUG_PROCESS,
95 EventClassLogLevel.DEBUG_MODULE,
96 EventClassLogLevel.DEBUG_UNIT,
97 EventClassLogLevel.DEBUG_FUNCTION,
98 EventClassLogLevel.DEBUG_LINE,
99 EventClassLogLevel.DEBUG,
100 )
101
102 if log_level not in log_levels:
103 raise ValueError("'{}' is not a valid log level".format(log_level))
104
105 native_bt.event_class_set_log_level(self._ptr, log_level)
106
107 _log_level = property(fset=_log_level)
108
109 @property
110 def emf_uri(self):
111 return native_bt.event_class_get_emf_uri(self._ptr)
112
113 def _emf_uri(self, emf_uri):
114 utils._check_str(emf_uri)
115 ret = native_bt.event_class_set_emf_uri(self._ptr, emf_uri)
116 utils._handle_ret(ret, "cannot set event class object's EMF URI")
117
118 _emf_uri = property(fset=_emf_uri)
119
120 @property
121 def specific_context_field_class(self):
122 fc_ptr = native_bt.event_class_borrow_specific_context_field_class_const(self._ptr)
123
124 if fc_ptr is None:
125 return
126
127 return bt2.field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
128
129 def _specific_context_field_class(self, context_field_class):
130 if context_field_class is not None:
131 utils._check_type(context_field_class, bt2.field_class._StructureFieldClass)
132 ret = native_bt.event_class_set_specific_context_field_class(self._ptr, context_field_class._ptr)
133 utils._handle_ret(ret, "cannot set event class object's context field class")
134
135 _specific_context_field_class = property(fset=_specific_context_field_class)
136
137 @property
138 def payload_field_class(self):
139 fc_ptr = native_bt.event_class_borrow_payload_field_class_const(self._ptr)
140
141 if fc_ptr is None:
142 return
143
144 return bt2.field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
145
146 def _payload_field_class(self, payload_field_class):
147 if payload_field_class is not None:
148 utils._check_type(payload_field_class, bt2.field_class._StructureFieldClass)
149 ret = native_bt.event_class_set_payload_field_class(self._ptr, payload_field_class._ptr)
150 utils._handle_ret(ret, "cannot set event class object's payload field class")
151
152 _payload_field_class = property(fset=_payload_field_class)
153
154
155 _EVENT_CLASS_LOG_LEVEL_TO_OBJ = {
156 native_bt.EVENT_CLASS_LOG_LEVEL_EMERGENCY: EventClassLogLevel.EMERGENCY,
157 native_bt.EVENT_CLASS_LOG_LEVEL_ALERT: EventClassLogLevel.ALERT,
158 native_bt.EVENT_CLASS_LOG_LEVEL_CRITICAL: EventClassLogLevel.CRITICAL,
159 native_bt.EVENT_CLASS_LOG_LEVEL_ERROR: EventClassLogLevel.ERROR,
160 native_bt.EVENT_CLASS_LOG_LEVEL_WARNING: EventClassLogLevel.WARNING,
161 native_bt.EVENT_CLASS_LOG_LEVEL_NOTICE: EventClassLogLevel.NOTICE,
162 native_bt.EVENT_CLASS_LOG_LEVEL_INFO: EventClassLogLevel.INFO,
163 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_SYSTEM: EventClassLogLevel.DEBUG_SYSTEM,
164 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_PROGRAM: EventClassLogLevel.DEBUG_PROGRAM,
165 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_PROCESS: EventClassLogLevel.DEBUG_PROCESS,
166 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_MODULE: EventClassLogLevel.DEBUG_MODULE,
167 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_UNIT: EventClassLogLevel.DEBUG_UNIT,
168 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_FUNCTION: EventClassLogLevel.DEBUG_FUNCTION,
169 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG_LINE: EventClassLogLevel.DEBUG_LINE,
170 native_bt.EVENT_CLASS_LOG_LEVEL_DEBUG: EventClassLogLevel.DEBUG,
171 }
This page took 0.03327 seconds and 4 git commands to generate.