lib: strictly type function return status enumerations
[babeltrace.git] / src / bindings / python / bt2 / bt2 / clock_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
25 import uuid as uuidp
26
27
28 class ClockClassOffset:
29 def __init__(self, seconds=0, cycles=0):
30 utils._check_int64(seconds)
31 utils._check_int64(cycles)
32 self._seconds = seconds
33 self._cycles = cycles
34
35 @property
36 def seconds(self):
37 return self._seconds
38
39 @property
40 def cycles(self):
41 return self._cycles
42
43 def __eq__(self, other):
44 if not isinstance(other, self.__class__):
45 # not comparing apples to apples
46 return False
47
48 return (self.seconds, self.cycles) == (other.seconds, other.cycles)
49
50
51 class _ClockClass(object._SharedObject):
52 _get_ref = staticmethod(native_bt.clock_class_get_ref)
53 _put_ref = staticmethod(native_bt.clock_class_put_ref)
54
55 @property
56 def name(self):
57 return native_bt.clock_class_get_name(self._ptr)
58
59 def _name(self, name):
60 utils._check_str(name)
61 status = native_bt.clock_class_set_name(self._ptr, name)
62 utils._handle_func_status(status,
63 "cannot set clock class object's name")
64
65 _name = property(fset=_name)
66
67 @property
68 def description(self):
69 return native_bt.clock_class_get_description(self._ptr)
70
71 def _description(self, description):
72 utils._check_str(description)
73 status = native_bt.clock_class_set_description(self._ptr, description)
74 utils._handle_func_status(status,
75 "cannot set clock class object's description")
76
77 _description = property(fset=_description)
78
79 @property
80 def frequency(self):
81 return native_bt.clock_class_get_frequency(self._ptr)
82
83 def _frequency(self, frequency):
84 utils._check_uint64(frequency)
85 native_bt.clock_class_set_frequency(self._ptr, frequency)
86
87 _frequency = property(fset=_frequency)
88
89 @property
90 def precision(self):
91 precision = native_bt.clock_class_get_precision(self._ptr)
92 return precision
93
94 def _precision(self, precision):
95 utils._check_uint64(precision)
96 native_bt.clock_class_set_precision(self._ptr, precision)
97
98 _precision = property(fset=_precision)
99
100 @property
101 def offset(self):
102 offset_s, offset_cycles = native_bt.clock_class_get_offset(self._ptr)
103 return ClockClassOffset(offset_s, offset_cycles)
104
105 def _offset(self, offset):
106 utils._check_type(offset, ClockClassOffset)
107 native_bt.clock_class_set_offset(self._ptr, offset.seconds, offset.cycles)
108
109 _offset = property(fset=_offset)
110
111 @property
112 def origin_is_unix_epoch(self):
113 return native_bt.clock_class_origin_is_unix_epoch(self._ptr)
114
115 def _origin_is_unix_epoch(self, origin_is_unix_epoch):
116 utils._check_bool(origin_is_unix_epoch)
117 native_bt.clock_class_set_origin_is_unix_epoch(self._ptr, int(origin_is_unix_epoch))
118
119 _origin_is_unix_epoch = property(fset=_origin_is_unix_epoch)
120
121 @property
122 def uuid(self):
123 uuid_bytes = native_bt.clock_class_get_uuid(self._ptr)
124
125 if uuid_bytes is None:
126 return
127
128 return uuidp.UUID(bytes=uuid_bytes)
129
130 def _uuid(self, uuid):
131 utils._check_type(uuid, uuidp.UUID)
132 native_bt.clock_class_set_uuid(self._ptr, uuid.bytes)
133
134 _uuid = property(fset=_uuid)
135
136 def cycles_to_ns_from_origin(self, cycles):
137 utils._check_uint64(cycles)
138 status, ns = native_bt.clock_class_cycles_to_ns_from_origin(self._ptr, cycles)
139 error_msg = "cannot convert clock value to nanoseconds from origin for given clock class"
140 utils._handle_func_status(status, error_msg)
141 return ns
This page took 0.032335 seconds and 4 git commands to generate.