/usr/lib/python2.7/dist-packages/genpy/rostime.py is in python-genpy 0.5.7-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | # Software License Agreement (BSD License)
#
# Copyright (c) 2008, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of Willow Garage, Inc. nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
"""
ROS Time representation, including Duration
"""
import sys
if sys.version > '3':
long = int
def _canon(secs, nsecs):
#canonical form: nsecs is always positive, nsecs < 1 second
while nsecs >= 1000000000:
secs += 1
nsecs -= 1000000000
while nsecs < 0:
secs -= 1
nsecs += 1000000000
return secs,nsecs
class TVal(object):
"""
Base class of :class:`Time` and :class:`Duration` representations. Representation
is secs+nanoseconds since epoch.
"""
__slots__ = ['secs', 'nsecs']
# mimic same API as messages when being introspected
_slot_types = ['int32', 'int32']
def __init__(self, secs=0, nsecs=0):
"""
:param secs: seconds. If secs is a float, then nsecs must not be set or 0,
larger seconds will be of type long on 32-bit systems, ``int/long/float``
:param nsecs: nanoseconds, ``int``
"""
if type(secs) != int and type(secs) != long:
# float secs constructor
if nsecs != 0:
raise ValueError("if secs is a float, nsecs cannot be set")
float_secs = secs
secs = int(float_secs)
nsecs = int((float_secs - secs) * 1000000000)
self.secs, self.nsecs = _canon(secs, nsecs)
def is_zero(self):
"""
:returns: ``True`` if time is zero (secs and nsecs are zero), ``bool``
"""
return self.secs == 0 and self.nsecs == 0
def set(self, secs, nsecs):
"""
Set time using separate secs and nsecs values
:param secs: seconds since epoch, ``int``
:param nsecs: nanoseconds since seconds, ``int``
"""
self.secs = secs
self.nsecs = nsecs
def canon(self):
"""
Canonicalize the field representation in this instance. should
only be used when manually setting secs/nsecs slot values, as
in deserialization.
"""
self.secs, self.nsecs = _canon(self.secs, self.nsecs)
def to_sec(self):
"""
:returns: time as float seconds (same as time.time() representation), ``float``
"""
return float(self.secs) + float(self.nsecs) / 1e9
def to_nsec(self):
"""
:returns: time as nanoseconds, ``long``
"""
return self.secs * long(1e9) + self.nsecs
def __hash__(self):
"""
Time values are hashable. Time values with identical fields have the same hash.
"""
return ("%s.%s"%(self.secs, self.nsecs)) .__hash__()
def __str__(self):
return str(self.to_nsec())
def __repr__(self):
return "genpy.TVal[%d]"%self.to_nsec()
def __bool__(self):
"""
Return if time value is not zero
"""
return self.secs != 0 or self.nsecs != 0
def __nonzero__(self):
"""
Check if time value is not zero
"""
return self.secs or self.nsecs
def __lt__(self, other):
"""
< test for time values
"""
try:
return self.__cmp__(other) < 0
except TypeError:
return NotImplemented
def __le__(self, other):
"""
<= test for time values
"""
try:
return self.__cmp__(other) <= 0
except TypeError:
return NotImplemented
def __gt__(self, other):
"""
> test for time values
"""
try:
return self.__cmp__(other) > 0
except TypeError:
return NotImplemented
def __ge__(self, other):
"""
>= test for time values
"""
try:
return self.__cmp__(other) >= 0
except TypeError:
return NotImplemented
def __ne__(self, other):
return not self.__eq__(other)
def __cmp__(self, other):
if not isinstance(other, TVal):
raise TypeError("Cannot compare to non-TVal")
nanos = self.to_nsec() - other.to_nsec()
if nanos > 0:
return 1
if nanos == 0:
return 0
return -1
def __eq__(self, other):
if not isinstance(other, TVal):
return False
return self.to_nsec() == other.to_nsec()
class Time(TVal):
"""
Time contains the ROS-wide 'time' primitive representation, which
consists of two integers: seconds since epoch and nanoseconds since
seconds. Time instances are mutable.
"""
__slots__ = ['secs', 'nsecs']
def __init__(self, secs=0, nsecs=0):
"""
Constructor: secs and nsecs are integers. You may prefer to use the static L{from_sec()} factory
method instead.
:param secs: seconds since epoch, ``int``
:param nsecs: nanoseconds since seconds (since epoch), ``int``
"""
super(Time, self).__init__(secs, nsecs)
if self.secs < 0:
raise TypeError("time values must be positive")
def __getstate__(self):
"""
support for Python pickling
"""
return [self.secs, self.nsecs]
def __setstate__(self, state):
"""
support for Python pickling
"""
self.secs, self.nsecs = state
def from_sec(float_secs):
"""
Create new Time instance using time.time() value (float
seconds)
:param float_secs: time value in time.time() format, ``float``
:returns: :class:`Time` instance for specified time
"""
secs = int(float_secs)
nsecs = int((float_secs - secs) * 1000000000)
return Time(secs, nsecs)
from_sec = staticmethod(from_sec)
def to_time(self):
"""
Get Time in time.time() format. alias of L{to_sec()}
:returns: time in floating point secs (time.time() format), ``float``
"""
return self.to_sec()
def __repr__(self):
return "genpy.Time[%d]"%self.to_nsec()
def __add__(self, other):
"""
Add duration to this time
:param other: :class:`Duration`
"""
if not isinstance(other, Duration):
return NotImplemented
return Time(self.secs + other.secs, self.nsecs + other.nsecs)
def __sub__(self, other):
"""
Subtract time or duration from this time
:param other: :class:`Duration`/:class:`Time`
:returns: :class:`Duration` if other is a :class:`Time`, :class:`Time` if other is a :class:`Duration`
"""
if isinstance(other, Time):
return Duration(self.secs - other.secs, self.nsecs - other.nsecs)
elif isinstance(other, Duration):
return Time(self.secs - other.secs, self.nsecs - other.nsecs)
else:
return NotImplemented
def __cmp__(self, other):
"""
Compare to another time
:param other: :class:`Time`
"""
if not isinstance(other, Time):
raise TypeError("cannot compare to non-Time")
nanos = self.to_nsec() - other.to_nsec()
if nanos > 0:
return 1
if nanos == 0:
return 0
return -1
def __eq__(self, other):
"""
Equals test for Time. Comparison assumes that both time
instances are in canonical representation; only compares fields.
:param other: :class:`Time`
"""
if not isinstance(other, Time):
return False
return self.secs == other.secs and self.nsecs == other.nsecs
def __hash__(self):
return super(Time, self).__hash__()
class Duration(TVal):
"""
Duration represents the ROS 'duration' primitive, which consists
of two integers: seconds and nanoseconds. The Duration class
allows you to add and subtract Duration instances, including
adding and subtracting from :class:`Time` instances.
"""
__slots__ = ['secs', 'nsecs']
def __init__(self, secs=0, nsecs=0):
"""
Create new Duration instance. secs and nsecs are integers and correspond to the ROS 'duration' primitive.
:param secs: seconds, ``int``
:param nsecs: nanoseconds, ``int``
"""
super(Duration, self).__init__(secs, nsecs)
def __getstate__(self):
"""
support for Python pickling
"""
return [self.secs, self.nsecs]
def __setstate__(self, state):
"""
support for Python pickling
"""
self.secs, self.nsecs = state
def __repr__(self):
return "genpy.Duration[%d]"%self.to_nsec()
def from_sec(float_seconds):
"""
Create new Duration instance from float seconds format.
:param float_seconds: time value in specified as float seconds, ``float``
:returns: :class:`Duration` instance for specified float_seconds
"""
secs = int(float_seconds)
nsecs = int((float_seconds - secs) * 1000000000)
return Duration(secs, nsecs)
from_sec = staticmethod(from_sec)
def __neg__(self):
"""
:returns: Negative value of this :class:`Duration`
"""
return Duration(-self.secs, -self.nsecs)
def __abs__(self):
"""
Absolute value of this duration
:returns: positive :class:`Duration`
"""
if self.secs >= 0:
return self
return self.__neg__()
def __add__(self, other):
"""
Add duration to this duration, or this duration to a time, creating a new time value as a result.
:param other: duration or time, ``Duration``/``Time``
:returns: :class:`Duration` if other is a :class:`Duration`
instance, :class:`Time` if other is a :class:`Time`
"""
if isinstance(other, Time):
return other.__add__(self)
elif isinstance(other, Duration):
return Duration(self.secs+other.secs, self.nsecs+other.nsecs)
else:
return NotImplemented
def __sub__(self, other):
"""
Subtract duration from this duration, returning a new duration
:param other: duration
:returns: :class:`Duration`
"""
if not isinstance(other, Duration):
return NotImplemented
return Duration(self.secs-other.secs, self.nsecs-other.nsecs)
def __mul__(self, val):
"""
Multiply this duration by an integer or float
:param val: multiplication factor, ``int/float``
:returns: :class:`Duration` multiplied by val
"""
t = type(val)
if t in (int, long):
return Duration(self.secs * val, self.nsecs * val)
elif t == float:
return Duration.from_sec(self.to_sec() * val)
else:
return NotImplemented
def __floordiv__(self, val):
"""
Floor divide this duration by an integer or float
:param val: division factor, ``int/float``
:returns: :class:`Duration` divided by val
"""
t = type(val)
if t in (int, long):
return Duration(self.secs // val, self.nsecs // val)
elif t == float:
return Duration.from_sec(self.to_sec() // val)
else:
return NotImplemented
def __div__(self, val):
"""
Divide this duration by an integer or float
:param val: division factor, ``int/float``
:returns: :class:`Duration` divided by val
"""
# unlike __floordiv__, this uses true div for float arg.
# PEP 238
t = type(val)
if t in (int, long):
return Duration(self.secs // val, self.nsecs // val)
elif t == float:
return Duration.from_sec(self.to_sec() / val)
else:
return NotImplemented
def __truediv__(self, val):
"""
Divide this duration by an integer or float
:param val: division factor, ``int/float``
:returns: :class:`Duration` multiplied by val
"""
if type(val) in (int, long, float):
return Duration.from_sec(self.to_sec() / val)
else:
return NotImplemented
def __cmp__(self, other):
if not isinstance(other, Duration):
raise TypeError("Cannot compare to non-Duration")
nanos = self.to_nsec() - other.to_nsec()
if nanos > 0:
return 1
if nanos == 0:
return 0
return -1
def __eq__(self, other):
if not isinstance(other, Duration):
return False
return self.secs == other.secs and self.nsecs == other.nsecs
def __hash__(self):
return super(Duration, self).__hash__()
|