bt2: add `__hash__()` method on hashable fields
[babeltrace.git] / src / bindings / python / bt2 / bt2 / clock_class.py
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
23from bt2 import native_bt, object, utils
5783664e 24from bt2 import value as bt2_value
be7bbff9 25import uuid as uuidp
81447b5b 26
0b03f63e 27
81447b5b
PP
28class 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
eddea575 51class _ClockClassConst(object._SharedObject):
3cdfbaea
SM
52 _get_ref = staticmethod(native_bt.clock_class_get_ref)
53 _put_ref = staticmethod(native_bt.clock_class_put_ref)
eddea575
FD
54 _create_value_from_ptr_and_get_ref = staticmethod(
55 bt2_value._create_from_const_ptr_and_get_ref
56 )
3cdfbaea 57
5783664e
PP
58 @property
59 def user_attributes(self):
60 ptr = native_bt.clock_class_borrow_user_attributes(self._ptr)
61 assert ptr is not None
eddea575
FD
62 return self._create_value_from_ptr_and_get_ref(ptr)
63
64 @property
65 def name(self):
66 return native_bt.clock_class_get_name(self._ptr)
67
68 @property
69 def description(self):
70 return native_bt.clock_class_get_description(self._ptr)
71
72 @property
73 def frequency(self):
74 return native_bt.clock_class_get_frequency(self._ptr)
75
76 @property
77 def precision(self):
78 precision = native_bt.clock_class_get_precision(self._ptr)
79 return precision
80
81 @property
82 def offset(self):
83 offset_s, offset_cycles = native_bt.clock_class_get_offset(self._ptr)
84 return ClockClassOffset(offset_s, offset_cycles)
85
86 @property
87 def origin_is_unix_epoch(self):
88 return native_bt.clock_class_origin_is_unix_epoch(self._ptr)
89
90 @property
91 def uuid(self):
92 uuid_bytes = native_bt.clock_class_get_uuid(self._ptr)
93
94 if uuid_bytes is None:
95 return
96
97 return uuidp.UUID(bytes=uuid_bytes)
98
99 def cycles_to_ns_from_origin(self, cycles):
100 utils._check_uint64(cycles)
101 status, ns = native_bt.clock_class_cycles_to_ns_from_origin(self._ptr, cycles)
102 error_msg = "cannot convert clock value to nanoseconds from origin for given clock class"
103 utils._handle_func_status(status, error_msg)
104 return ns
105
106
107class _ClockClass(_ClockClassConst):
108 _create_value_from_ptr_and_get_ref = staticmethod(
109 bt2_value._create_from_ptr_and_get_ref
110 )
5783664e
PP
111
112 def _user_attributes(self, user_attributes):
113 value = bt2_value.create_value(user_attributes)
114 utils._check_type(value, bt2_value.MapValue)
115 native_bt.clock_class_set_user_attributes(self._ptr, value._ptr)
116
117 _user_attributes = property(fset=_user_attributes)
118
be7bbff9 119 def _name(self, name):
81447b5b 120 utils._check_str(name)
d24d5663 121 status = native_bt.clock_class_set_name(self._ptr, name)
cfbd7cf3 122 utils._handle_func_status(status, "cannot set clock class object's name")
81447b5b 123
be7bbff9
SM
124 _name = property(fset=_name)
125
be7bbff9 126 def _description(self, description):
81447b5b 127 utils._check_str(description)
d24d5663 128 status = native_bt.clock_class_set_description(self._ptr, description)
cfbd7cf3 129 utils._handle_func_status(status, "cannot set clock class object's description")
81447b5b 130
be7bbff9
SM
131 _description = property(fset=_description)
132
be7bbff9 133 def _frequency(self, frequency):
81447b5b 134 utils._check_uint64(frequency)
be7bbff9
SM
135 native_bt.clock_class_set_frequency(self._ptr, frequency)
136
137 _frequency = property(fset=_frequency)
81447b5b 138
be7bbff9 139 def _precision(self, precision):
81447b5b 140 utils._check_uint64(precision)
be7bbff9
SM
141 native_bt.clock_class_set_precision(self._ptr, precision)
142
143 _precision = property(fset=_precision)
81447b5b 144
be7bbff9 145 def _offset(self, offset):
81447b5b 146 utils._check_type(offset, ClockClassOffset)
be7bbff9
SM
147 native_bt.clock_class_set_offset(self._ptr, offset.seconds, offset.cycles)
148
149 _offset = property(fset=_offset)
81447b5b 150
be7bbff9
SM
151 def _origin_is_unix_epoch(self, origin_is_unix_epoch):
152 utils._check_bool(origin_is_unix_epoch)
cfbd7cf3
FD
153 native_bt.clock_class_set_origin_is_unix_epoch(
154 self._ptr, int(origin_is_unix_epoch)
155 )
be7bbff9
SM
156
157 _origin_is_unix_epoch = property(fset=_origin_is_unix_epoch)
81447b5b 158
be7bbff9 159 def _uuid(self, uuid):
81447b5b 160 utils._check_type(uuid, uuidp.UUID)
be7bbff9
SM
161 native_bt.clock_class_set_uuid(self._ptr, uuid.bytes)
162
163 _uuid = property(fset=_uuid)
This page took 0.05367 seconds and 4 git commands to generate.