mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04:00
8d9d62caf5
Fixed issue #52
177 lines
5.2 KiB
Python
177 lines
5.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
SubRip's time format parser: HH:MM:SS,mmm
|
|
"""
|
|
import re
|
|
from datetime import time
|
|
|
|
from pysrt.srtexc import InvalidTimeString
|
|
from pysrt.comparablemixin import ComparableMixin
|
|
from pysrt.compat import str, basestring
|
|
|
|
class TimeItemDescriptor(object):
|
|
# pylint: disable-msg=R0903
|
|
def __init__(self, ratio, super_ratio=0):
|
|
self.ratio = int(ratio)
|
|
self.super_ratio = int(super_ratio)
|
|
|
|
def _get_ordinal(self, instance):
|
|
if self.super_ratio:
|
|
return instance.ordinal % self.super_ratio
|
|
return instance.ordinal
|
|
|
|
def __get__(self, instance, klass):
|
|
if instance is None:
|
|
raise AttributeError
|
|
return self._get_ordinal(instance) // self.ratio
|
|
|
|
def __set__(self, instance, value):
|
|
part = self._get_ordinal(instance) - instance.ordinal % self.ratio
|
|
instance.ordinal += value * self.ratio - part
|
|
|
|
|
|
class SubRipTime(ComparableMixin):
|
|
TIME_PATTERN = '%02d:%02d:%02d,%03d'
|
|
TIME_REPR = 'SubRipTime(%d, %d, %d, %d)'
|
|
RE_TIME_SEP = re.compile(r'\:|\.|\,')
|
|
RE_INTEGER = re.compile(r'^(\d+)')
|
|
SECONDS_RATIO = 1000
|
|
MINUTES_RATIO = SECONDS_RATIO * 60
|
|
HOURS_RATIO = MINUTES_RATIO * 60
|
|
|
|
hours = TimeItemDescriptor(HOURS_RATIO)
|
|
minutes = TimeItemDescriptor(MINUTES_RATIO, HOURS_RATIO)
|
|
seconds = TimeItemDescriptor(SECONDS_RATIO, MINUTES_RATIO)
|
|
milliseconds = TimeItemDescriptor(1, SECONDS_RATIO)
|
|
|
|
def __init__(self, hours=0, minutes=0, seconds=0, milliseconds=0):
|
|
"""
|
|
SubRipTime(hours, minutes, seconds, milliseconds)
|
|
|
|
All arguments are optional and have a default value of 0.
|
|
"""
|
|
super(SubRipTime, self).__init__()
|
|
self.ordinal = hours * self.HOURS_RATIO \
|
|
+ minutes * self.MINUTES_RATIO \
|
|
+ seconds * self.SECONDS_RATIO \
|
|
+ milliseconds
|
|
|
|
def __repr__(self):
|
|
return self.TIME_REPR % tuple(self)
|
|
|
|
def __str__(self):
|
|
if self.ordinal < 0:
|
|
# Represent negative times as zero
|
|
return str(SubRipTime.from_ordinal(0))
|
|
return self.TIME_PATTERN % tuple(self)
|
|
|
|
def _compare(self, other, method):
|
|
return super(SubRipTime, self)._compare(self.coerce(other), method)
|
|
|
|
def _cmpkey(self):
|
|
return self.ordinal
|
|
|
|
def __add__(self, other):
|
|
return self.from_ordinal(self.ordinal + self.coerce(other).ordinal)
|
|
|
|
def __iadd__(self, other):
|
|
self.ordinal += self.coerce(other).ordinal
|
|
return self
|
|
|
|
def __sub__(self, other):
|
|
return self.from_ordinal(self.ordinal - self.coerce(other).ordinal)
|
|
|
|
def __isub__(self, other):
|
|
self.ordinal -= self.coerce(other).ordinal
|
|
return self
|
|
|
|
def __mul__(self, ratio):
|
|
return self.from_ordinal(int(round(self.ordinal * ratio)))
|
|
|
|
def __imul__(self, ratio):
|
|
self.ordinal = int(round(self.ordinal * ratio))
|
|
return self
|
|
|
|
@classmethod
|
|
def coerce(cls, other):
|
|
"""
|
|
Coerce many types to SubRipTime instance.
|
|
Supported types:
|
|
- str/unicode
|
|
- int/long
|
|
- datetime.time
|
|
- any iterable
|
|
- dict
|
|
"""
|
|
if isinstance(other, SubRipTime):
|
|
return other
|
|
if isinstance(other, basestring):
|
|
return cls.from_string(other)
|
|
if isinstance(other, int):
|
|
return cls.from_ordinal(other)
|
|
if isinstance(other, time):
|
|
return cls.from_time(other)
|
|
try:
|
|
return cls(**other)
|
|
except TypeError:
|
|
return cls(*other)
|
|
|
|
def __iter__(self):
|
|
yield self.hours
|
|
yield self.minutes
|
|
yield self.seconds
|
|
yield self.milliseconds
|
|
|
|
def shift(self, *args, **kwargs):
|
|
"""
|
|
shift(hours, minutes, seconds, milliseconds)
|
|
|
|
All arguments are optional and have a default value of 0.
|
|
"""
|
|
if 'ratio' in kwargs:
|
|
self *= kwargs.pop('ratio')
|
|
self += self.__class__(*args, **kwargs)
|
|
|
|
@classmethod
|
|
def from_ordinal(cls, ordinal):
|
|
"""
|
|
int -> SubRipTime corresponding to a total count of milliseconds
|
|
"""
|
|
return cls(milliseconds=int(ordinal))
|
|
|
|
@classmethod
|
|
def from_string(cls, source):
|
|
"""
|
|
str/unicode(HH:MM:SS,mmm) -> SubRipTime corresponding to serial
|
|
raise InvalidTimeString
|
|
"""
|
|
items = cls.RE_TIME_SEP.split(source)
|
|
if len(items) != 4:
|
|
raise InvalidTimeString
|
|
return cls(*(cls.parse_int(i) for i in items))
|
|
|
|
@classmethod
|
|
def parse_int(cls, digits):
|
|
try:
|
|
return int(digits)
|
|
except ValueError:
|
|
match = cls.RE_INTEGER.match(digits)
|
|
if match:
|
|
return int(match.group())
|
|
return 0
|
|
|
|
@classmethod
|
|
def from_time(cls, source):
|
|
"""
|
|
datetime.time -> SubRipTime corresponding to time object
|
|
"""
|
|
return cls(hours=source.hour, minutes=source.minute,
|
|
seconds=source.second, milliseconds=source.microsecond // 1000)
|
|
|
|
def to_time(self):
|
|
"""
|
|
Convert SubRipTime instance into a pure datetime.time object
|
|
"""
|
|
return time(self.hours, self.minutes, self.seconds,
|
|
self.milliseconds * 1000)
|