forked from ospalh/anki-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metric_time.py
115 lines (96 loc) · 3.78 KB
/
metric_time.py
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
# -*- mode: python ; coding: utf-8 -*-
# © 2012 Roland Sieker <ospalh@gmail.com>
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
u"""Anki-2 add-on to show some times as fractional days."""
# Usually Python comes with 'batteries included', that is, with the
# Python standard library. Unfortunately, this is not the case for a
# typical Anki install. So bring along some files that are
# missing. Make sure we find them.
from aqt import mw # We need this early to get to the path
# These *are* available with standard Anki
import math
import os
import sys
from anki import utils, sched, stats
from anki.lang import _
# To override fmtTimeSpan that are already loaded:
from aqt import browser, deckbrowser, reviewer
# Now add the path, but only once. (Other add-ons by YT contain
# similar code.)
if not [pe for pe in sys.path if 'batteries' in pe]:
sys.path.append(os.path.join(mw.pm.addonFolder(), "batteries"))
# Now this should work. Include module to deal with numbers digit by
# digit.
from decimal import Decimal
"""Replace time values with just days or years."""
__version__ = "1.0.1"
day_format_separators = {-1: u'.', -3: u"’", -4: u"’", -6: u"’"}
# Year length taken from Wikipedia's tropical year article as "mean
# tropical year current value"
year = 365.2421897
# NIST value for tropical year
# year = 3.155693E+07 / 86400.0
# which is 5.567e-05 days or 4.81s longer
def omag(x):
"""Return the order of magnitude of a number."""
try:
return int(math.floor(math.log10(abs(x))))
except ValueError:
return 0
def days_from_s(seconds, sigfig=2, short=False, maybe_show_years=True):
"""
Return a value formated in a specific way.
Returns a string that represents the number of days given as an
argument formated in a specific way that should make parsing the
decimal part of the age easier for humans.
"""
days = seconds / 86400.0
if days > year and maybe_show_years:
if short:
return"{0:.1f}".format(days / year) + _(" a")
else:
return"{0:.1f} ".format(days / year) + _("years")
# Calculate how many digits to show. Show full precision of days,
# limited for shorter times.
show_digits = max(sigfig - omag(days) - 1, 0)
out_string = ''
if 0 == show_digits:
out_string = str(int(round(days, 0)))
else:
decimal_days = Decimal(str(days)) \
.quantize(Decimal('0.' + '0' * (show_digits - 1) + '1'))
dec_sign, dec_digits, dec_exponent = decimal_days.as_tuple()
ndig = len(dec_digits)
if dec_sign:
out_string = '-'
for pad in range(0, dec_exponent + ndig - 1, -1):
try:
out_string += day_format_separators[pad]
except KeyError:
pass
out_string += '0'
for ex, dg in enumerate(dec_digits):
# Add a decorator if it is the right position
try:
out_string += \
day_format_separators[-ex + dec_exponent + ndig - 1]
except KeyError:
pass
out_string += str(dg)
if short:
out_string += _(" d")
else:
out_string += _(" days")
return out_string
def metric_time_span(time, pad=0, point=0, short=False, after=False, unit=99):
u"""Return a time span as a fraction of days."""
return days_from_s(time, short=short, maybe_show_years=True)
old_fmt_time_span = utils.fmtTimeSpan
utils.fmtTimeSpan = metric_time_span
# We have to override these by hand, as they have already been
# included when this file is loaded.
browser.fmtTimeSpan = metric_time_span
deckbrowser.fmtTimeSpan = metric_time_span
reviewer.fmtTimeSpan = metric_time_span
sched.fmtTimeSpan = metric_time_span
stats.fmtTimeSpan = metric_time_span