Erik Grinaker is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againpython-chrono / chrono / time.py
- Tag
- 0.3.0
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 | # -*- coding: utf-8 -*-
#
# python-chrono - a Python module for easy and convenient date/time handling
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from __future__ import absolute_import
from . import calendar
from . import clock
from . import error
from . import formatter
from . import utility
import chrono
import datetime
import time as timemod
class Time(object):
"""
A class for time handling. For general usage, see the description of
:class:`chrono.Date` in the :ref:`usage` section, which works in much the
same way as :class:`chrono.Time`.
Valid values for *time* can be:
* string: parses time from a string using the given parser (defaults
to the value of :attr:`chrono.DEFAULT_PARSER`, normally
:class:`chrono.parser.CommonParser`)
* **True**: sets the time to the current time
* :class:`chrono.Time`: sets time from another Time object
* :class:`datetime.datetime`: sets time from a :class:`datetime.datetime`
object
* :class:`datetime.time`: sets time from a :class:`datetime.time` object
* :class:`time.struct_time`: sets time from a :class:`time.struct_time`
object
* **None**: creates a time with empty attributes
* **False**: creates a time with empty attributes
The class can also be instantiated using the keyword arguments
*hour*, *minute*, and *second*::
Time(hour=16, minute=27, second=43)
If both *time* and keywords are specified, *time* takes precedence.
*parser* determines which parser to use for parsing times from strings.
By default the value of :attr:`chrono.DEFAULT_PARSER` is used - normally
:class:`chrono.parser.CommonParser`, which supports the most common date
and time formats. See :mod:`chrono.parser` for a list of available parsers.
"""
hour = None
"Hour, range 0-23"
minute = None
"Minute, range 0-59"
parser = None
"""
Parser to use for parsing times from strings. See :mod:`chrono.parser` for
available parsers.
"""
second = None
"Second, range 0-59"
def __cmp__(self, other):
if not isinstance(other, Time):
other = Time(other)
if not self.is_set() and not other.is_set():
return 0
elif not other.is_set():
return 1
elif not self.is_set():
return -1
if self.hour != other.hour:
return utility.cmp(self.hour, other.hour)
elif self.minute != other.minute:
return utility.cmp(self.minute, other.minute)
else:
return utility.cmp(self.second, other.second)
def __eq__(self, other):
return self.__cmp__(other) == 0
def __ge__(self, other):
return self.__cmp__(other) >= 0
def __gt__(self, other):
return self.__cmp__(other) > 0
def __init__(self, time=None, parser=None, **kwargs):
self.parser = parser or chrono.DEFAULT_PARSER
if isinstance(time, str):
self.set_string(time)
elif time is True:
self.set_now()
elif isinstance(time, Time):
self.set(time.hour, time.minute, time.second)
elif isinstance(time, datetime.time):
self.set_datetime(time)
elif isinstance(time, datetime.datetime):
self.set_datetime(time)
elif isinstance(time, timemod.struct_time):
self.set_struct_time(time)
elif ("hour" in kwargs or "minute" in kwargs or "second" in kwargs):
self.set(
kwargs.get("hour"), kwargs.get("minute"), kwargs.get("second")
)
elif time is False:
pass
elif time is None:
pass
else:
raise TypeError("Invalid type for Time parameter")
def __le__(self, other):
return self.__cmp__(other) <= 0
def __lt__(self, other):
return self.__cmp__(other) < 0
def __ne__(self, other):
return self.__cmp__(other) != 0
def __repr__(self):
args = []
if self.hour != None:
args.append("hour={0}".format(self.hour))
if self.minute != None:
args.append("minute={0}".format(self.minute))
if self.second != None:
args.append("second={0}".format(self.second))
return "chrono.Time({0})".format(", ".join(args))
def __setattr__(self, name, value):
# set None values directly
if value is None:
object.__setattr__(self, name, value)
elif name == "hour":
while value >= 24:
value -= 24
while value < 0:
value += 24
object.__setattr__(self, name, value)
elif name == "minute":
h = self.hour or 0
while value >= 60:
h += 1
value -= 60
while value < 0:
h -= 1
value += 60
# set hour, but only if already set
if self.hour is not None:
self.hour = h
object.__setattr__(self, "minute", value)
elif name == "second":
m = self.minute or 0
while value >= 60:
m += 1
value -= 60
while value < 0:
m -= 1
value += 60
# set minute, but only if already set
if self.minute is not None:
self.minute = m
object.__setattr__(self, "second", value)
# set other attributes directly
else:
object.__setattr__(self, name, value)
def __str__(self):
try:
return self.get_string()
except error.NoDateTimeError:
return ""
def assert_set(self):
"""
Makes sure the object has a full time set, ie the attributes
:attr:`chrono.Time.hour`, :attr:`chrono.Time.minute`, and
:attr:`chrono.Time.second` are not **None**.
Raises :exc:`chrono.error.NoDateTimeError` on missing attributes.
"""
if not self.is_set():
raise error.NoDateTimeError(
"Time object doesn't contain complete time data"
)
def clear(self):
"""
Clears the time, by setting :attr:`chrono.Time.hour`,
:attr:`chrono.Time.minute` and :attr:`chrono.Time.second`
to **None**.
"""
self.hour = None
self.minute = None
self.second = None
def format(self, template):
"""
Formats the time using *template*, replacing variables as
supported by :class:`chrono.formatter.Formatter`.
Raises :exc:`chrono.error.NoDateTimeError` on missing time data.
"""
self.assert_set()
return formatter.Formatter(calendar.ISOCalendar).format(
template, None, None, None, self.hour, self.minute, self.second
)
def get(self):
"""
Returns the time as a tuple of hour, minute, and second.
Raises :exc:`chrono.error.NoDateTimeError` on missing time data.
"""
self.assert_set()
return (self.hour, self.minute, self.second)
def get_datetime(self):
"""
Returns a :class:`datetime.time` instance based on the time.
Raises :exc:`chrono.error.NoDateTimeError` on missing time data.
"""
self.assert_set()
return datetime.time(self.hour, self.minute, self.second)
def get_julian(self):
"""
Returns a julian time for the set time, as a float between
0 and 1.
Raises :exc:`chrono.error.NoDateTimeError` on missing time data.
"""
self.assert_set()
return clock.Clock.julian(self.hour, self.minute, self.second)
def get_string(self):
"""
Returns a string represenation (*hh:mm:ss*) of the time.
Raises :exc:`chrono.error.NoDateTimeError` on missing time data.
"""
return self.format("$0hour:$0minute:$0second")
def is_set(self):
"""
Returns **True** if a time is set, ie if the attributes
:attr:`chrono.Time.hour`, :attr:`chrono.Time.minute`
and :attr:`chrono.Time.second` are not **None**. Otherwise
returns **False**.
"""
return self.hour != None and self.minute != None and \
self.second != None
def set(self, hour, minute, second):
"""
Sets the time.
Raises :exc:`chrono.error.HourError`, :exc:`chrono.error.MinuteError`,
or :exc:`chrono.error.SecondError` for invalid values.
"""
hour = utility.int_hour(hour)
minute = utility.int_minute(minute)
second = utility.int_second(second)
clock.Clock.validate(hour, minute, second)
self.clear()
self.hour = hour
self.minute = minute
self.second = second
def set_datetime(self, datetime):
"""
Sets the time from a :class:`datetime.time` or
:class:`datetime.datetime` object.
"""
self.set(datetime.hour, datetime.minute, datetime.second)
def set_julian(self, julian):
"""
Sets the time from a julian time, as a float between 0 and 1.
If *julian* is greather than 1, only the decimal part will be
used.
Raises :exc:`chrono.error.TimeError` on invalid julian time.
"""
h, m, s = clock.Clock.julian_to_time(julian)
self.set(h, m, s)
def set_now(self):
"""
Sets the time to the current time.
"""
t = datetime.datetime.now()
self.set(t.hour, t.minute, t.second)
def set_string(self, string):
"""
Sets the time from a string, parsed with the parser set in
:attr:`chrono.Date.parser` - by default the parser set in
:attr:`chrono.DEFAULT_PARSER`, normally
:class:`chrono.parser.CommonParser`.
Raises :exc:`chrono.error.ParseError` for invalid input format,
:exc:`TypeError` for invalid input type, and
:exc:`chrono.error.HourError`, :exc:`chrono.error.MinuteError`,
or :exc:`chrono.error.SecondError` for invalid time values.
"""
h, m, s = self.parser.parse_time(string)
self.set(h, m, s)
def set_struct_time(self, struct_time):
"""
Sets the time from a :class:`time.struct_time` (as returned by
various Python functions).
"""
self.set(
struct_time.tm_hour,
struct_time.tm_min,
struct_time.tm_sec
)
|