/usr/share/pyshared/celery/utils/timeutils.py is in python-celery 2.5.3-4.
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 | # -*- coding: utf-8 -*-
"""
celery.utils.timeutils
~~~~~~~~~~~~~~~~~~~~~~
This module contains various utilities relating to dates and times.
:copyright: (c) 2009 - 2012 by Ask Solem.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
from kombu.utils import cached_property
from datetime import datetime, timedelta
from dateutil import tz
from dateutil.parser import parse as parse_iso8601
from . import pluralize
try:
import pytz
except ImportError:
pytz = None # noqa
DAYNAMES = "sun", "mon", "tue", "wed", "thu", "fri", "sat"
WEEKDAYS = dict((name, dow) for name, dow in zip(DAYNAMES, range(7)))
RATE_MODIFIER_MAP = {"s": lambda n: n,
"m": lambda n: n / 60.0,
"h": lambda n: n / 60.0 / 60.0}
HAVE_TIMEDELTA_TOTAL_SECONDS = hasattr(timedelta, "total_seconds")
TIME_UNITS = (("day", 60 * 60 * 24.0, lambda n: "%.2f" % n),
("hour", 60 * 60.0, lambda n: "%.2f" % n),
("minute", 60.0, lambda n: "%.2f" % n),
("second", 1.0, lambda n: "%.2f" % n))
class UnknownTimezone(Exception):
"""No specification exists for the timezone specified. Consider
installing the pytz library to get access to more timezones."""
def _is_naive(dt):
return bool(dt.tzinfo)
class _Zone(object):
def tz_or_local(self, tzinfo=None):
if tzinfo is None:
return self.local
return self.get_timezone(tzinfo)
def to_local(self, dt, local=None, orig=None):
return dt.replace(tzinfo=orig or self.utc).astimezone(
self.tz_or_local(local))
def get_timezone(self, zone):
if isinstance(zone, basestring):
if pytz:
return pytz.timezone(zone)
zone = tz.gettz(zone)
if zone is None:
raise UnknownTimezone(UnknownTimezone.__doc__)
return zone
return zone
@cached_property
def local(self):
return tz.tzlocal()
@cached_property
def utc(self):
return self.get_timezone("UTC")
timezone = _Zone()
def maybe_timedelta(delta):
"""Coerces integer to timedelta if `delta` is an integer."""
if isinstance(delta, (int, float)):
return timedelta(seconds=delta)
return delta
if HAVE_TIMEDELTA_TOTAL_SECONDS: # pragma: no cover
def timedelta_seconds(delta):
"""Convert :class:`datetime.timedelta` to seconds.
Doesn't account for negative values.
"""
return max(delta.total_seconds(), 0)
else: # pragma: no cover
def timedelta_seconds(delta): # noqa
"""Convert :class:`datetime.timedelta` to seconds.
Doesn't account for negative values.
"""
if delta.days < 0:
return 0
return delta.days * 86400 + delta.seconds + (delta.microseconds / 10e5)
def delta_resolution(dt, delta):
"""Round a datetime to the resolution of a timedelta.
If the timedelta is in days, the datetime will be rounded
to the nearest days, if the timedelta is in hours the datetime
will be rounded to the nearest hour, and so on until seconds
which will just return the original datetime.
"""
delta = timedelta_seconds(delta)
resolutions = ((3, lambda x: x / 86400),
(4, lambda x: x / 3600),
(5, lambda x: x / 60))
args = dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second
for res, predicate in resolutions:
if predicate(delta) >= 1.0:
return datetime(*args[:res])
return dt
def remaining(start, ends_in, now=None, relative=False):
"""Calculate the remaining time for a start date and a timedelta.
e.g. "how many seconds left for 30 seconds after start?"
:param start: Start :class:`~datetime.datetime`.
:param ends_in: The end delta as a :class:`~datetime.timedelta`.
:keyword relative: If enabled the end time will be
calculated using :func:`delta_resolution` (i.e. rounded to the
resolution of `ends_in`).
:keyword now: Function returning the current time and date,
defaults to :func:`datetime.utcnow`.
"""
now = now or datetime.utcnow()
end_date = start + ends_in
if relative:
end_date = delta_resolution(end_date, ends_in)
return end_date - now
def rate(rate):
"""Parses rate strings, such as `"100/m"` or `"2/h"`
and converts them to seconds."""
if rate:
if isinstance(rate, basestring):
ops, _, modifier = rate.partition("/")
return RATE_MODIFIER_MAP[modifier or "s"](int(ops)) or 0
return rate or 0
return 0
def weekday(name):
"""Return the position of a weekday (0 - 7, where 0 is Sunday).
Example::
>>> weekday("sunday"), weekday("sun"), weekday("mon")
(0, 0, 1)
"""
abbreviation = name[0:3].lower()
try:
return WEEKDAYS[abbreviation]
except KeyError:
# Show original day name in exception, instead of abbr.
raise KeyError(name)
def humanize_seconds(secs, prefix=""):
"""Show seconds in human form, e.g. 60 is "1 minute", 7200 is "2
hours"."""
secs = float(secs)
for unit, divider, formatter in TIME_UNITS:
if secs >= divider:
w = secs / divider
return "%s%s %s" % (prefix, formatter(w),
pluralize(w, unit))
return "now"
def maybe_iso8601(dt):
"""`Either datetime | str -> datetime or None -> None`"""
if not dt:
return
if isinstance(dt, datetime):
return dt
return parse_iso8601(dt)
|