bt2: Adapt test_event.py and make it pass
[babeltrace.git] / bindings / python / bt2 / bt2 / clock_snapshot.py
CommitLineData
79c39ab9
PP
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
23from bt2 import native_bt, object, utils
24import uuid as uuidp
25import numbers
26import bt2
27
28
4b552f8b
SM
29def _create_clock_snapshot_from_ptr(ptr):
30 clock_snapshot = _ClockSnapshot._create_from_ptr(ptr)
31 return clock_snapshot
79c39ab9
PP
32
33
78288f58 34class _ClockSnapshot(object._UniqueObject):
79c39ab9
PP
35 def __init__(self, clock_class_ptr, cycles):
36 utils._check_uint64(cycles)
4b552f8b 37 ptr = native_bt.clock_snapshot_create(clock_class_ptr, cycles)
79c39ab9
PP
38
39 if ptr is None:
40 raise bt2.CreationError('cannot create clock value object')
41
42 super().__init__(ptr)
43
44 @property
45 def clock_class(self):
4b552f8b 46 ptr = native_bt.clock_snapshot_get_class(self._ptr)
79c39ab9 47 assert(ptr)
15012c4b 48 return bt2.ClockClass._create_from_ptr(ptr)
79c39ab9
PP
49
50 @property
2ae9f48c
SM
51 def value(self):
52 return native_bt.clock_snapshot_get_value(self._ptr)
79c39ab9
PP
53
54 @property
55 def ns_from_epoch(self):
4b552f8b 56 ret, ns = native_bt.clock_snapshot_get_value_ns_from_epoch(self._ptr)
79c39ab9
PP
57 utils._handle_ret(ret, "cannot get clock value object's nanoseconds from Epoch")
58 return ns
59
60 def __eq__(self, other):
61 if isinstance(other, numbers.Integral):
62 return int(other) == self.cycles
63
64 if not isinstance(other, self.__class__):
65 # not comparing apples to apples
66 return False
67
68 if self.addr == other.addr:
69 return True
70
71 self_props = self.clock_class, self.cycles
72 other_props = other.clock_class, other.cycles
73 return self_props == other_props
74
75 def __copy__(self):
76 return self.clock_class(self.cycles)
77
78 def __deepcopy__(self, memo):
79 cpy = self.__copy__()
80 memo[id(self)] = cpy
81 return cpy
This page took 0.032499 seconds and 4 git commands to generate.