/var/lib/gnumed/server/pycommon/gmDateTime.py is in gnumed-server 19.6-1.
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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 | __doc__ = """
GNUmed date/time handling.
This modules provides access to date/time handling
and offers an fuzzy timestamp implementation
It utilizes
- Python time
- Python datetime
- mxDateTime
Note that if you want locale-aware formatting you need to call
locale.setlocale(locale.LC_ALL, '')
somewhere before importing this script.
Note regarding UTC offsets
--------------------------
Looking from Greenwich:
WEST (IOW "behind"): negative values
EAST (IOW "ahead"): positive values
This is in compliance with what datetime.tzinfo.utcoffset()
does but NOT what time.altzone/time.timezone do !
This module also implements a class which allows the
programmer to define the degree of fuzziness, uncertainty
or imprecision of the timestamp contained within.
This is useful in fields such as medicine where only partial
timestamps may be known for certain events.
Other useful links:
http://joda-time.sourceforge.net/key_instant.html
"""
#===========================================================================
__author__ = "K. Hilbert <Karsten.Hilbert@gmx.net>"
__license__ = "GPL v2 or later (details at http://www.gnu.org)"
# stdlib
import sys, datetime as pyDT, time, os, re as regex, locale, logging
# 3rd party
import mx.DateTime as mxDT
import psycopg2 # this will go once datetime has timezone classes
if __name__ == '__main__':
sys.path.insert(0, '../../')
from Gnumed.pycommon import gmI18N
_log = logging.getLogger('gm.datetime')
_log.info(u'mx.DateTime version: %s', mxDT.__version__)
dst_locally_in_use = None
dst_currently_in_effect = None
current_local_utc_offset_in_seconds = None
current_local_timezone_interval = None
current_local_iso_numeric_timezone_string = None
current_local_timezone_name = None
py_timezone_name = None
py_dst_timezone_name = None
cLocalTimezone = psycopg2.tz.LocalTimezone # remove as soon as datetime supports timezone classes
cFixedOffsetTimezone = psycopg2.tz.FixedOffsetTimezone # remove as soon as datetime supports timezone classes
gmCurrentLocalTimezone = 'gmCurrentLocalTimezone not initialized'
( acc_years,
acc_months,
acc_weeks,
acc_days,
acc_hours,
acc_minutes,
acc_seconds,
acc_subseconds
) = range(1,9)
_accuracy_strings = {
1: 'years',
2: 'months',
3: 'weeks',
4: 'days',
5: 'hours',
6: 'minutes',
7: 'seconds',
8: 'subseconds'
}
gregorian_month_length = {
1: 31,
2: 28, # FIXME: make leap year aware
3: 31,
4: 30,
5: 31,
6: 30,
7: 31,
8: 31,
9: 30,
10: 31,
11: 30,
12: 31
}
avg_days_per_gregorian_year = 365
avg_days_per_gregorian_month = 30
avg_seconds_per_day = 24 * 60 * 60
days_per_week = 7
#===========================================================================
# module init
#---------------------------------------------------------------------------
def init():
_log.debug('mx.DateTime.now(): [%s]' % mxDT.now())
_log.debug('datetime.now() : [%s]' % pyDT.datetime.now())
_log.debug('time.localtime() : [%s]' % str(time.localtime()))
_log.debug('time.gmtime() : [%s]' % str(time.gmtime()))
try:
_log.debug('$TZ: [%s]' % os.environ['TZ'])
except KeyError:
_log.debug('$TZ not defined')
_log.debug('time.daylight: [%s] (whether or not DST is locally used at all)' % time.daylight)
_log.debug('time.timezone: [%s] seconds' % time.timezone)
_log.debug('time.altzone : [%s] seconds' % time.altzone)
_log.debug('time.tzname : [%s / %s] (non-DST / DST)' % time.tzname)
_log.debug('mx.DateTime.now().gmtoffset(): [%s]' % mxDT.now().gmtoffset())
global py_timezone_name
py_timezone_name = time.tzname[0].decode(gmI18N.get_encoding(), 'replace')
global py_dst_timezone_name
py_dst_timezone_name = time.tzname[1].decode(gmI18N.get_encoding(), 'replace')
global dst_locally_in_use
dst_locally_in_use = (time.daylight != 0)
global dst_currently_in_effect
dst_currently_in_effect = bool(time.localtime()[8])
_log.debug('DST currently in effect: [%s]' % dst_currently_in_effect)
if (not dst_locally_in_use) and dst_currently_in_effect:
_log.error('system inconsistency: DST not in use - but DST currently in effect ?')
global current_local_utc_offset_in_seconds
msg = 'DST currently%sin effect: using UTC offset of [%s] seconds instead of [%s] seconds'
if dst_currently_in_effect:
current_local_utc_offset_in_seconds = time.altzone * -1
_log.debug(msg % (' ', time.altzone * -1, time.timezone * -1))
else:
current_local_utc_offset_in_seconds = time.timezone * -1
_log.debug(msg % (' not ', time.timezone * -1, time.altzone * -1))
if current_local_utc_offset_in_seconds > 0:
_log.debug('UTC offset is positive, assuming EAST of Greenwich (clock is "ahead")')
elif current_local_utc_offset_in_seconds < 0:
_log.debug('UTC offset is negative, assuming WEST of Greenwich (clock is "behind")')
else:
_log.debug('UTC offset is ZERO, assuming Greenwich Time')
global current_local_timezone_interval
current_local_timezone_interval = mxDT.now().gmtoffset()
_log.debug('ISO timezone: [%s] (taken from mx.DateTime.now().gmtoffset())' % current_local_timezone_interval)
global current_local_iso_numeric_timezone_string
current_local_iso_numeric_timezone_string = str(current_local_timezone_interval).replace(',', '.')
global current_local_timezone_name
try:
current_local_timezone_name = os.environ['TZ'].decode(gmI18N.get_encoding(), 'replace')
except KeyError:
if dst_currently_in_effect:
current_local_timezone_name = time.tzname[1].decode(gmI18N.get_encoding(), 'replace')
else:
current_local_timezone_name = time.tzname[0].decode(gmI18N.get_encoding(), 'replace')
# do some magic to convert Python's timezone to a valid ISO timezone
# is this safe or will it return things like 13.5 hours ?
#_default_client_timezone = "%+.1f" % (-tz / 3600.0)
#_log.info('assuming default client time zone of [%s]' % _default_client_timezone)
global gmCurrentLocalTimezone
gmCurrentLocalTimezone = cFixedOffsetTimezone (
offset = (current_local_utc_offset_in_seconds / 60),
name = current_local_iso_numeric_timezone_string
)
#===========================================================================
# mxDateTime conversions
#---------------------------------------------------------------------------
def mxdt2py_dt(mxDateTime):
if isinstance(mxDateTime, pyDT.datetime):
return mxDateTime
try:
tz_name = str(mxDateTime.gmtoffset()).replace(',', '.')
except mxDT.Error:
_log.debug('mx.DateTime cannot gmtoffset() this timestamp, assuming local time')
tz_name = current_local_iso_numeric_timezone_string
if dst_currently_in_effect:
tz = cFixedOffsetTimezone (
offset = ((time.altzone * -1) / 60),
name = tz_name
)
else:
tz = cFixedOffsetTimezone (
offset = ((time.timezone * -1) / 60),
name = tz_name
)
try:
return pyDT.datetime (
year = mxDateTime.year,
month = mxDateTime.month,
day = mxDateTime.day,
tzinfo = tz
)
except:
_log.debug (u'error converting mx.DateTime.DateTime to Python: %s-%s-%s %s:%s %s.%s',
mxDateTime.year,
mxDateTime.month,
mxDateTime.day,
mxDateTime.hour,
mxDateTime.minute,
mxDateTime.second,
mxDateTime.tz
)
raise
#===========================================================================
def format_dob(dob, format='%Y %b %d', encoding=None, none_string=None, dob_is_estimated=False):
if dob is None:
if none_string is None:
return _('** DOB unknown **')
return none_string
dob_txt = pydt_strftime(dob, format = format, encoding = encoding, accuracy = acc_days)
if dob_is_estimated:
return u'%s%s' % (u'\u2248', dob_txt)
return dob_txt
#---------------------------------------------------------------------------
def pydt_strftime(dt=None, format='%Y %b %d %H:%M.%S', encoding=None, accuracy=None):
if dt is None:
dt = pydt_now_here()
if encoding is None:
encoding = gmI18N.get_encoding()
try:
return dt.strftime(format).decode(encoding, 'replace')
except ValueError:
_log.exception('Python cannot strftime() this <datetime>')
if accuracy == acc_days:
return u'%04d-%02d-%02d' % (
dt.year,
dt.month,
dt.day
)
if accuracy == acc_minutes:
return u'%04d-%02d-%02d %02d:%02d' % (
dt.year,
dt.month,
dt.day,
dt.hour,
dt.minute
)
return u'%04d-%02d-%02d %02d:%02d:%02d' % (
dt.year,
dt.month,
dt.day,
dt.hour,
dt.minute,
dt.second
)
#---------------------------------------------------------------------------
def pydt_replace(dt=None, year=None, month=None, day=None, hour=None, minute=None, second=None, microsecond=None, tzinfo=None, strict=True):
# normalization required because .replace() does not
# deal with keyword arguments being None ...
if year is None:
year = dt.year
if month is None:
month = dt.month
if day is None:
day = dt.day
if hour is None:
hour = dt.hour
if minute is None:
minute = dt.minute
if second is None:
second = dt.second
if microsecond is None:
microsecond = dt.microsecond
if tzinfo is None:
tzinfo = dt.tzinfo # can fail on naive dt's
if strict:
return dt.replace(year = year, month = month, day = day, hour = hour, minute = minute, second = second, microsecond = microsecond, tzinfo = tzinfo)
try:
return dt.replace(year = year, month = month, day = day, hour = hour, minute = minute, second = second, microsecond = microsecond, tzinfo = tzinfo)
except ValueError:
_log.debug('error replacing datetime member(s): %s', locals())
# (target/existing) day did not exist in target month
if month == 2:
if day > 28:
if is_leap_year(year):
day = 29
else:
day = 28
else:
if day == 31:
day = 30
return dt.replace(year = year, month = month, day = day, hour = hour, minute = minute, second = second, microsecond = microsecond, tzinfo = tzinfo)
#---------------------------------------------------------------------------
def pydt_now_here():
"""Returns NOW @ HERE (IOW, in the local timezone."""
return pyDT.datetime.now(gmCurrentLocalTimezone)
#---------------------------------------------------------------------------
def pydt_max_here():
return pyDT.datetime.max.replace(tzinfo = gmCurrentLocalTimezone)
#---------------------------------------------------------------------------
def wx_now_here(wx=None):
"""Returns NOW @ HERE (IOW, in the local timezone."""
return py_dt2wxDate(py_dt = pydt_now_here(), wx = wx)
#===========================================================================
# wxPython conversions
#---------------------------------------------------------------------------
def wxDate2py_dt(wxDate=None):
if not wxDate.IsValid():
raise ValueError (u'invalid wxDate: %s-%s-%s %s:%s %s.%s',
wxDate.GetYear(),
wxDate.GetMonth(),
wxDate.GetDay(),
wxDate.GetHour(),
wxDate.GetMinute(),
wxDate.GetSecond(),
wxDate.GetMillisecond()
)
try:
return pyDT.datetime (
year = wxDate.GetYear(),
month = wxDate.GetMonth() + 1,
day = wxDate.GetDay(),
tzinfo = gmCurrentLocalTimezone
)
except:
_log.debug (u'error converting wxDateTime to Python: %s-%s-%s %s:%s %s.%s',
wxDate.GetYear(),
wxDate.GetMonth(),
wxDate.GetDay(),
wxDate.GetHour(),
wxDate.GetMinute(),
wxDate.GetSecond(),
wxDate.GetMillisecond()
)
raise
#---------------------------------------------------------------------------
def py_dt2wxDate(py_dt=None, wx=None):
_log.debug(u'setting wx.DateTime from: %s-%s-%s', py_dt.year, py_dt.month, py_dt.day)
# Robin Dunn says that for SetYear/*Month/*Day the wx.DateTime MUST already
# be valid (by definition) or, put the other way round, you must Set() day,
# month, and year at once
wxdt = wx.DateTimeFromDMY(py_dt.day, py_dt.month-1, py_dt.year)
return wxdt
#===========================================================================
# interval related
#---------------------------------------------------------------------------
def format_interval(interval=None, accuracy_wanted=None, none_string=None, verbose=False):
if accuracy_wanted is None:
accuracy_wanted = acc_seconds
if interval is None:
if none_string is not None:
return none_string
years, days = divmod(interval.days, avg_days_per_gregorian_year)
months, days = divmod(days, avg_days_per_gregorian_month)
weeks, days = divmod(days, days_per_week)
days, secs = divmod((days * avg_seconds_per_day) + interval.seconds, avg_seconds_per_day)
hours, secs = divmod(secs, 3600)
mins, secs = divmod(secs, 60)
tmp = u''
if years > 0:
if verbose:
if years > 1:
tag = u' ' + _('years')
else:
tag = u' ' + _('year')
else:
tag = _('interval_format_tag::years::y')[-1:]
tmp += u'%s%s' % (int(years), tag)
if accuracy_wanted < acc_months:
return tmp.strip()
if months > 0:
if verbose:
if months > 1:
tag = u' ' + _('months')
else:
tag = u' ' + _('month')
else:
tag = _('interval_format_tag::months::m')[-1:]
tmp += u' %s%s' % (int(months), tag)
if accuracy_wanted < acc_weeks:
return tmp.strip()
if weeks > 0:
if verbose:
if weeks > 1:
tag = u' ' + _('weeks')
else:
tag = u' ' + _('week')
else:
tag = _('interval_format_tag::weeks::w')[-1:]
tmp += u' %s%s' % (int(weeks), tag)
if accuracy_wanted < acc_days:
return tmp.strip()
if days > 0:
if verbose:
if days > 1:
tag = u' ' + _('days')
else:
tag = u' ' + _('day')
else:
tag = _('interval_format_tag::days::d')[-1:]
tmp += u' %s%s' % (int(days), tag)
if accuracy_wanted < acc_hours:
return tmp.strip()
if hours > 0:
if verbose:
if hours > 1:
tag = u' ' + _('hours')
else:
tag = u' ' + _('hour')
else:
tag = u'/24'
tmp += u' %s%s' % (int(hours), tag)
if accuracy_wanted < acc_minutes:
return tmp.strip()
if mins > 0:
if verbose:
if mins > 1:
tag = u' ' + _('minutes')
else:
tag = u' ' + _('minute')
else:
tag = u'/60'
tmp += u' %s%s' % (int(mins), tag)
if accuracy_wanted < acc_seconds:
return tmp.strip()
if secs > 0:
if verbose:
if secs > 1:
tag = u' ' + _('seconds')
else:
tag = u' ' + _('second')
else:
tag = u's'
tmp += u' %s%s' % (int(mins), tag)
return tmp.strip()
#---------------------------------------------------------------------------
def format_interval_medically(interval=None):
"""Formats an interval.
This isn't mathematically correct but close enough for display.
"""
# more than 1 year ?
if interval.days > 363:
years, days = divmod(interval.days, 364)
leap_days, tmp = divmod(years, 4)
months, day = divmod((days + leap_days), 30.33)
if int(months) == 0:
return u"%s%s" % (int(years), _('interval_format_tag::years::y')[-1:])
return u"%s%s %s%s" % (int(years), _('interval_format_tag::years::y')[-1:], int(months), _('interval_format_tag::months::m')[-1:])
# more than 30 days / 1 month ?
if interval.days > 30:
months, days = divmod(interval.days, 30.33)
weeks, days = divmod(days, 7)
if int(weeks + days) == 0:
result = u'%smo' % int(months)
else:
result = u'%s%s' % (int(months), _('interval_format_tag::months::m')[-1:])
if int(weeks) != 0:
result += u' %s%s' % (int(weeks), _('interval_format_tag::weeks::w')[-1:])
if int(days) != 0:
result += u' %s%s' % (int(days), _('interval_format_tag::days::d')[-1:])
return result
# between 7 and 30 days ?
if interval.days > 7:
return u"%s%s" % (interval.days, _('interval_format_tag::days::d')[-1:])
# between 1 and 7 days ?
if interval.days > 0:
hours, seconds = divmod(interval.seconds, 3600)
if hours == 0:
return '%s%s' % (interval.days, _('interval_format_tag::days::d')[-1:])
return "%s%s (%sh)" % (interval.days, _('interval_format_tag::days::d')[-1:], int(hours))
# between 5 hours and 1 day
if interval.seconds > (5*3600):
return "%sh" % int(interval.seconds // 3600)
# between 1 and 5 hours
if interval.seconds > 3600:
hours, seconds = divmod(interval.seconds, 3600)
minutes = seconds // 60
if minutes == 0:
return '%sh' % int(hours)
return "%s:%02d" % (int(hours), int(minutes))
# minutes only
if interval.seconds > (5*60):
return "0:%02d" % (int(interval.seconds // 60))
# seconds
minutes, seconds = divmod(interval.seconds, 60)
if minutes == 0:
return '%ss' % int(seconds)
if seconds == 0:
return '0:%02d' % int(minutes)
return "%s.%ss" % (int(minutes), int(seconds))
#---------------------------------------------------------------------------
def is_leap_year(year):
# year is multiple of 4 ?
div, remainder = divmod(year, 4)
# no -> not a leap year
if remainder > 0:
return False
# year is a multiple of 100 ?
div, remainder = divmod(year, 100)
# no -> IS a leap year
if remainder > 0:
return True
# year is a multiple of 400 ?
div, remainder = divmod(year, 400)
# yes -> IS a leap year
if remainder == 0:
return True
return False
#---------------------------------------------------------------------------
def calculate_apparent_age(start=None, end=None):
"""The result of this is a tuple (years, ..., seconds) as one would
'expect' an age to look like, that is, simple differences between
the fields:
(years, months, days, hours, minutes, seconds)
This does not take into account time zones which may
shift the result by one day.
<start> and <end> must by python datetime instances
<end> is assumed to be "now" if not given
"""
if end is None:
end = pyDT.datetime.now(gmCurrentLocalTimezone)
if end < start:
raise ValueError('calculate_apparent_age(): <end> (%s) before <start> (%s)' % (end, start))
if end == start:
return (0, 0, 0, 0, 0, 0)
# steer clear of leap years
if end.month == 2:
if end.day == 29:
if not is_leap_year(start.year):
end = end.replace(day = 28)
# years
years = end.year - start.year
end = end.replace(year = start.year)
if end < start:
years = years - 1
# months
if end.month == start.month:
if end < start:
months = 11
else:
months = 0
else:
months = end.month - start.month
if months < 0:
months = months + 12
if end.day > gregorian_month_length[start.month]:
end = end.replace(month = start.month, day = gregorian_month_length[start.month])
else:
end = end.replace(month = start.month)
if end < start:
months = months - 1
# days
if end.day == start.day:
if end < start:
days = gregorian_month_length[start.month] - 1
else:
days = 0
else:
days = end.day - start.day
if days < 0:
days = days + gregorian_month_length[start.month]
end = end.replace(day = start.day)
if end < start:
days = days - 1
# hours
if end.hour == start.hour:
hours = 0
else:
hours = end.hour - start.hour
if hours < 0:
hours = hours + 24
end = end.replace(hour = start.hour)
if end < start:
hours = hours - 1
# minutes
if end.minute == start.minute:
minutes = 0
else:
minutes = end.minute - start.minute
if minutes < 0:
minutes = minutes + 60
end = end.replace(minute = start.minute)
if end < start:
minutes = minutes - 1
# seconds
if end.second == start.second:
seconds = 0
else:
seconds = end.second - start.second
if seconds < 0:
seconds = seconds + 60
end = end.replace(second = start.second)
if end < start:
seconds = seconds - 1
return (years, months, days, hours, minutes, seconds)
#---------------------------------------------------------------------------
def format_apparent_age_medically(age=None):
"""<age> must be a tuple as created by calculate_apparent_age()"""
(years, months, days, hours, minutes, seconds) = age
# at least 1 year ?
if years > 0:
if months == 0:
return u'%s%s' % (
years,
_('y::year_abbreviation').replace('::year_abbreviation', u'')
)
return u'%s%s %s%s' % (
years,
_('y::year_abbreviation').replace('::year_abbreviation', u''),
months,
_('m::month_abbreviation').replace('::month_abbreviation', u'')
)
# at least 1 month ?
if months > 0:
if days == 0:
return u'%s%s' % (
months,
_('mo::month_only_abbreviation').replace('::month_only_abbreviation', u'')
)
result = u'%s%s' % (
months,
_('m::month_abbreviation').replace('::month_abbreviation', u'')
)
weeks, days = divmod(days, 7)
if int(weeks) != 0:
result += u'%s%s' % (
int(weeks),
_('w::week_abbreviation').replace('::week_abbreviation', u'')
)
if int(days) != 0:
result += u'%s%s' % (
int(days),
_('d::day_abbreviation').replace('::day_abbreviation', u'')
)
return result
# between 7 days and 1 month
if days > 7:
return u"%s%s" % (
days,
_('d::day_abbreviation').replace('::day_abbreviation', u'')
)
# between 1 and 7 days ?
if days > 0:
if hours == 0:
return u'%s%s' % (
days,
_('d::day_abbreviation').replace('::day_abbreviation', u'')
)
return u'%s%s (%s%s)' % (
days,
_('d::day_abbreviation').replace('::day_abbreviation', u''),
hours,
_('h::hour_abbreviation').replace('::hour_abbreviation', u'')
)
# between 5 hours and 1 day
if hours > 5:
return u'%s%s' % (
hours,
_('h::hour_abbreviation').replace('::hour_abbreviation', u'')
)
# between 1 and 5 hours
if hours > 1:
if minutes == 0:
return u'%s%s' % (
hours,
_('h::hour_abbreviation').replace('::hour_abbreviation', u'')
)
return u'%s:%02d' % (
hours,
minutes
)
# between 5 and 60 minutes
if minutes > 5:
return u"0:%02d" % minutes
# less than 5 minutes
if minutes == 0:
return u'%s%s' % (
seconds,
_('s::second_abbreviation').replace('::second_abbreviation', u'')
)
if seconds == 0:
return u"0:%02d" % minutes
return "%s.%s%s" % (
minutes,
seconds,
_('s::second_abbreviation').replace('::second_abbreviation', u'')
)
#---------------------------------------------------------------------------
def str2interval(str_interval=None):
unit_keys = {
'year': _('yYaA_keys_year'),
'month': _('mM_keys_month'),
'week': _('wW_keys_week'),
'day': _('dD_keys_day'),
'hour': _('hH_keys_hour')
}
str_interval = str_interval.strip()
# "(~)35(yY)" - at age 35 years
keys = '|'.join(list(unit_keys['year'].replace('_keys_year', u'')))
if regex.match(u'^~*(\s|\t)*\d+(%s)*$' % keys, str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(days = (int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]) * avg_days_per_gregorian_year))
# "(~)12mM" - at age 12 months
keys = '|'.join(list(unit_keys['month'].replace('_keys_month', u'')))
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*(%s)+$' % keys, str_interval, flags = regex.LOCALE | regex.UNICODE):
years, months = divmod (
int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]),
12
)
return pyDT.timedelta(days = ((years * avg_days_per_gregorian_year) + (months * avg_days_per_gregorian_month)))
# weeks
keys = '|'.join(list(unit_keys['week'].replace('_keys_week', u'')))
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*(%s)+$' % keys, str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(weeks = int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]))
# days
keys = '|'.join(list(unit_keys['day'].replace('_keys_day', u'')))
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*(%s)+$' % keys, str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(days = int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]))
# hours
keys = '|'.join(list(unit_keys['hour'].replace('_keys_hour', u'')))
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*(%s)+$' % keys, str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(hours = int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]))
# x/12 - months
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*/(\s|\t)*12$', str_interval, flags = regex.LOCALE | regex.UNICODE):
years, months = divmod (
int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]),
12
)
return pyDT.timedelta(days = ((years * avg_days_per_gregorian_year) + (months * avg_days_per_gregorian_month)))
# x/52 - weeks
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*/(\s|\t)*52$', str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(weeks = int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]))
# x/7 - days
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*/(\s|\t)*7$', str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(days = int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]))
# x/24 - hours
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*/(\s|\t)*24$', str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(hours = int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]))
# x/60 - minutes
if regex.match(u'^~*(\s|\t)*\d+(\s|\t)*/(\s|\t)*60$', str_interval, flags = regex.LOCALE | regex.UNICODE):
return pyDT.timedelta(minutes = int(regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)[0]))
# nYnM - years, months
keys_year = '|'.join(list(unit_keys['year'].replace('_keys_year', u'')))
keys_month = '|'.join(list(unit_keys['month'].replace('_keys_month', u'')))
if regex.match(u'^~*(\s|\t)*\d+(%s|\s|\t)+\d+(\s|\t)*(%s)+$' % (keys_year, keys_month), str_interval, flags = regex.LOCALE | regex.UNICODE):
parts = regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)
years, months = divmod(int(parts[1]), 12)
years += int(parts[0])
return pyDT.timedelta(days = ((years * avg_days_per_gregorian_year) + (months * avg_days_per_gregorian_month)))
# nMnW - months, weeks
keys_month = '|'.join(list(unit_keys['month'].replace('_keys_month', u'')))
keys_week = '|'.join(list(unit_keys['week'].replace('_keys_week', u'')))
if regex.match(u'^~*(\s|\t)*\d+(%s|\s|\t)+\d+(\s|\t)*(%s)+$' % (keys_month, keys_week), str_interval, flags = regex.LOCALE | regex.UNICODE):
parts = regex.findall(u'\d+', str_interval, flags = regex.LOCALE | regex.UNICODE)
months, weeks = divmod(int(parts[1]), 4)
months += int(parts[0])
return pyDT.timedelta(days = ((months * avg_days_per_gregorian_month) + (weeks * days_per_week)))
return None
#===========================================================================
# string -> date parser
#---------------------------------------------------------------------------
def __single_char2py_dt(str2parse, trigger_chars=None):
"""This matches on single characters.
Spaces and tabs are discarded.
Default is 'ndmy':
n - _N_ow
d - to_D_ay
m - to_M_orrow Someone please suggest a synonym ! ("2" does not cut it ...)
y - _Y_esterday
This also defines the significance of the order of the characters.
"""
if trigger_chars is None:
trigger_chars = _('ndmy (single character date triggers)')[:4].lower()
str2parse = str2parse.strip().lower()
if len(str2parse) != 1:
return []
if str2parse not in trigger_chars:
return []
now = mxDT.now()
enc = gmI18N.get_encoding()
# FIXME: handle uebermorgen/vorgestern ?
# right now
if str2parse == trigger_chars[0]:
return [{
'data': mxdt2py_dt(now),
'label': _('right now (%s, %s)') % (now.strftime('%A').decode(enc), now)
}]
# today
if str2parse == trigger_chars[1]:
return [{
'data': mxdt2py_dt(now),
'label': _('today (%s)') % now.strftime('%A, %Y-%m-%d').decode(enc)
}]
# tomorrow
if str2parse == trigger_chars[2]:
ts = now + mxDT.RelativeDateTime(days = +1)
return [{
'data': mxdt2py_dt(ts),
'label': _('tomorrow (%s)') % ts.strftime('%A, %Y-%m-%d').decode(enc)
}]
# yesterday
if str2parse == trigger_chars[3]:
ts = now + mxDT.RelativeDateTime(days = -1)
return [{
'data': mxdt2py_dt(ts),
'label': _('yesterday (%s)') % ts.strftime('%A, %Y-%m-%d').decode(enc)
}]
return []
#---------------------------------------------------------------------------
def __single_dot2py_dt(str2parse):
"""Expand fragments containing a single dot.
Standard colloquial date format in Germany: day.month.year
"14."
- the 14th of the current month
- the 14th of next month
"-14."
- the 14th of last month
"""
str2parse = str2parse.strip()
if not str2parse.endswith(u'.'):
return []
str2parse = str2parse[:-1]
try:
day_val = int(str2parse)
except ValueError:
return []
if (day_val < -31) or (day_val > 31) or (day_val == 0):
return []
now = mxDT.now()
enc = gmI18N.get_encoding()
matches = []
# day X of last month only
if day_val < 0:
ts = now + mxDT.RelativeDateTime(day = abs(day_val), months = -1)
if abs(day_val) <= gregorian_month_length[ts.month]:
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s-%s-%s: a %s last month') % (ts.year, ts.month, ts.day, ts.strftime('%A').decode(enc))
})
# day X of this month
if day_val > 0:
ts = now + mxDT.RelativeDateTime(day = day_val)
if day_val <= gregorian_month_length[ts.month]:
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s-%s-%s: a %s this month') % (ts.year, ts.month, ts.day, ts.strftime('%A').decode(enc))
})
# day X of next month
if day_val > 0:
ts = now + mxDT.RelativeDateTime(day = day_val, months = +1)
if day_val <= gregorian_month_length[ts.month]:
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s-%s-%s: a %s next month') % (ts.year, ts.month, ts.day, ts.strftime('%A').decode(enc))
})
# day X of last month
if day_val > 0:
ts = now + mxDT.RelativeDateTime(day = day_val, months = -1)
if day_val <= gregorian_month_length[ts.month]:
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s-%s-%s: a %s last month') % (ts.year, ts.month, ts.day, ts.strftime('%A').decode(enc))
})
return matches
#---------------------------------------------------------------------------
def __single_slash2py_dt(str2parse):
"""Expand fragments containing a single slash.
"5/"
- 2005/ (2000 - 2025)
- 1995/ (1990 - 1999)
- Mai/current year
- Mai/next year
- Mai/last year
- Mai/200x
- Mai/20xx
- Mai/199x
- Mai/198x
- Mai/197x
- Mai/19xx
5/1999
6/2004
"""
str2parse = str2parse.strip()
now = mxDT.now()
enc = gmI18N.get_encoding()
# 5/1999
if regex.match(r"^\d{1,2}(\s|\t)*/+(\s|\t)*\d{4}$", str2parse, flags = regex.LOCALE | regex.UNICODE):
parts = regex.findall(r'\d+', str2parse, flags = regex.LOCALE | regex.UNICODE)
ts = now + mxDT.RelativeDateTime(year = int(parts[1]), month = int(parts[0]))
return [{
'data': mxdt2py_dt(ts),
'label': ts.strftime('%Y-%m-%d').decode(enc)
}]
matches = []
# 5/
if regex.match(r"^\d{1,2}(\s|\t)*/+$", str2parse, flags = regex.LOCALE | regex.UNICODE):
val = int(str2parse.rstrip(u'/').strip())
# "55/" -> "1955"
if val < 100 and val >= 0:
matches.append ({
'data': None,
'label': '%s-' % (val + 1900)
})
# "11/" -> "2011"
if val < 26 and val >= 0:
matches.append ({
'data': None,
'label': '%s-' % (val + 2000)
})
# "5/" -> "1995"
if val < 10 and val >= 0:
matches.append ({
'data': None,
'label': '%s-' % (val + 1990)
})
if val < 13 and val > 0:
# "11/" -> "11/this year"
matches.append ({
'data': None,
'label': '%s-%.2d-' % (now.year, val)
})
# "11/" -> "11/next year"
ts = now + mxDT.RelativeDateTime(years = 1)
matches.append ({
'data': None,
'label': '%s-%.2d-' % (ts.year, val)
})
# "11/" -> "11/last year"
ts = now + mxDT.RelativeDateTime(years = -1)
matches.append ({
'data': None,
'label': '%s-%.2d-' % (ts.year, val)
})
# "11/" -> "201?-11-"
matches.append ({
'data': None,
'label': '201?-%.2d-' % val
})
# "11/" -> "200?-11-"
matches.append ({
'data': None,
'label': '200?-%.2d-' % val
})
# "11/" -> "20??-11-"
matches.append ({
'data': None,
'label': '20??-%.2d-' % val
})
# "11/" -> "199?-11-"
matches.append ({
'data': None,
'label': '199?-%.2d-' % val
})
# "11/" -> "198?-11-"
matches.append ({
'data': None,
'label': '198?-%.2d-' % val
})
# "11/" -> "198?-11-"
matches.append ({
'data': None,
'label': '197?-%.2d-' % val
})
# "11/" -> "19??-11-"
matches.append ({
'data': None,
'label': '19??-%.2d-' % val
})
return matches
#---------------------------------------------------------------------------
def __numbers_only2py_dt(str2parse):
"""This matches on single numbers.
Spaces or tabs are discarded.
"""
try:
val = int(str2parse.strip())
except ValueError:
return []
# strftime() returns str but in the localized encoding,
# so we may need to decode that to unicode
enc = gmI18N.get_encoding()
now = mxDT.now()
matches = []
# that year
if (1850 < val) and (val < 2100):
ts = now + mxDT.RelativeDateTime(year = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': ts.strftime('%Y-%m-%d')
})
# day X of this month
if (val > 0) and (val <= gregorian_month_length[now.month]):
ts = now + mxDT.RelativeDateTime(day = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%d. of %s (this month): a %s') % (val, ts.strftime('%B').decode(enc), ts.strftime('%A').decode(enc))
})
# day X of next month
if (val > 0) and (val < 32):
ts = now + mxDT.RelativeDateTime(months = 1, day = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%d. of %s (next month): a %s') % (val, ts.strftime('%B').decode(enc), ts.strftime('%A').decode(enc))
})
# day X of last month
if (val > 0) and (val < 32):
ts = now + mxDT.RelativeDateTime(months = -1, day = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%d. of %s (last month): a %s') % (val, ts.strftime('%B').decode(enc), ts.strftime('%A').decode(enc))
})
# X days from now
if (val > 0) and (val <= 400): # more than a year ahead in days ?? nah !
ts = now + mxDT.RelativeDateTime(days = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('in %d day(s): %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
})
if (val < 0) and (val >= -400): # more than a year back in days ?? nah !
ts = now - mxDT.RelativeDateTime(days = abs(val))
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%d day(s) ago: %s') % (abs(val), ts.strftime('%A, %Y-%m-%d').decode(enc))
})
# X weeks from now
if (val > 0) and (val <= 50): # pregnancy takes about 40 weeks :-)
ts = now + mxDT.RelativeDateTime(weeks = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('in %d week(s): %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
})
if (val < 0) and (val >= -50): # pregnancy takes about 40 weeks :-)
ts = now - mxDT.RelativeDateTime(weeks = abs(val))
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%d week(s) ago: %s') % (abs(val), ts.strftime('%A, %Y-%m-%d').decode(enc))
})
# month X of ...
if (val < 13) and (val > 0):
# ... this year
ts = now + mxDT.RelativeDateTime(month = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s (%s this year)') % (ts.strftime('%Y-%m-%d'), ts.strftime('%B').decode(enc))
})
# ... next year
ts = now + mxDT.RelativeDateTime(years = 1, month = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s (%s next year)') % (ts.strftime('%Y-%m-%d'), ts.strftime('%B').decode(enc))
})
# ... last year
ts = now + mxDT.RelativeDateTime(years = -1, month = val)
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s (%s last year)') % (ts.strftime('%Y-%m-%d'), ts.strftime('%B').decode(enc))
})
# fragment expansion
matches.append ({
'data': None,
'label': '200?-%s' % val
})
matches.append ({
'data': None,
'label': '199?-%s' % val
})
matches.append ({
'data': None,
'label': '198?-%s' % val
})
matches.append ({
'data': None,
'label': '19??-%s' % val
})
# day X of ...
if (val < 8) and (val > 0):
# ... this week
ts = now + mxDT.RelativeDateTime(weekday = (val-1, 0))
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s this week (%s of %s)') % (ts.strftime('%A').decode(enc), ts.day, ts.strftime('%B').decode(enc))
})
# ... next week
ts = now + mxDT.RelativeDateTime(weeks = +1, weekday = (val-1, 0))
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s next week (%s of %s)') % (ts.strftime('%A').decode(enc), ts.day, ts.strftime('%B').decode(enc))
})
# ... last week
ts = now + mxDT.RelativeDateTime(weeks = -1, weekday = (val-1, 0))
matches.append ({
'data': mxdt2py_dt(ts),
'label': _('%s last week (%s of %s)') % (ts.strftime('%A').decode(enc), ts.day, ts.strftime('%B').decode(enc))
})
if (val < 100) and (val > 0):
matches.append ({
'data': None,
'label': '%s-' % (1900 + val)
})
if val == 201:
tmp = {
'data': mxdt2py_dt(now),
'label': now.strftime('%Y-%m-%d')
}
matches.append(tmp)
matches.append ({
'data': None,
'label': now.strftime('%Y-%m')
})
matches.append ({
'data': None,
'label': now.strftime('%Y')
})
matches.append ({
'data': None,
'label': '%s-' % (now.year + 1)
})
matches.append ({
'data': None,
'label': '%s-' % (now.year - 1)
})
if val < 200 and val >= 190:
for i in range(10):
matches.append ({
'data': None,
'label': '%s%s-' % (val, i)
})
return matches
#---------------------------------------------------------------------------
def __explicit_offset2py_dt(str2parse, offset_chars=None):
"""
Default is 'hdwmy':
h - hours
d - days
w - weeks
m - months
y - years
This also defines the significance of the order of the characters.
"""
if offset_chars is None:
offset_chars = _('hdwmy (single character date offset triggers)')[:5].lower()
str2parse = str2parse.strip()
# "+/-XXd/w/m/t"
if not regex.match(r"^(\+|-)?(\s|\t)*\d{1,3}(\s|\t)*[%s]$" % offset_chars, str2parse, flags = regex.LOCALE | regex.UNICODE):
return []
# into the past ?
if str2parse.startswith(u'-'):
is_future = False
str2parse = str2parse[1:].strip()
else:
is_future = True
str2parse = str2parse.replace(u'+', u'').strip()
val = int(regex.findall(u'\d{1,3}', str2parse, flags = regex.LOCALE | regex.UNICODE)[0])
offset_char = regex.findall(u'[%s]' % offset_chars, str2parse, flags = regex.LOCALE | regex.UNICODE)[0].lower()
now = mxDT.now()
enc = gmI18N.get_encoding()
ts = None
# hours
if offset_char == offset_chars[0]:
if is_future:
ts = now + mxDT.RelativeDateTime(hours = val)
label = _('in %d hour(s): %s') % (val, ts.strftime('%H:%M'))
else:
ts = now - mxDT.RelativeDateTime(hours = val)
label = _('%d hour(s) ago: %s') % (val, ts.strftime('%H:%M'))
# days
elif offset_char == offset_chars[1]:
if is_future:
ts = now + mxDT.RelativeDateTime(days = val)
label = _('in %d day(s): %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(days = val)
label = _('%d day(s) ago: %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
# weeks
elif offset_char == offset_chars[2]:
if is_future:
ts = now + mxDT.RelativeDateTime(weeks = val)
label = _('in %d week(s): %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(weeks = val)
label = _('%d week(s) ago: %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
# months
elif offset_char == offset_chars[3]:
if is_future:
ts = now + mxDT.RelativeDateTime(months = val)
label = _('in %d month(s): %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(months = val)
label = _('%d month(s) ago: %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
# years
elif offset_char == offset_chars[4]:
if is_future:
ts = now + mxDT.RelativeDateTime(years = val)
label = _('in %d year(s): %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(years = val)
label = _('%d year(s) ago: %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
if ts is None:
return []
return [{
'data': mxdt2py_dt(ts),
'label': label
}]
#---------------------------------------------------------------------------
def str2pydt_matches(str2parse=None, patterns=None):
"""Turn a string into candidate dates and auto-completions the user is likely to type.
You MUST have called locale.setlocale(locale.LC_ALL, '')
somewhere in your code previously.
@param patterns: list of time.strptime compatible date pattern
@type patterns: list
"""
matches = []
matches.extend(__single_dot2py_dt(str2parse))
matches.extend(__numbers_only2py_dt(str2parse))
matches.extend(__single_slash2py_dt(str2parse))
matches.extend(__single_char2py_dt(str2parse))
matches.extend(__explicit_offset2py_dt(str2parse))
# try mxDT parsers
try:
date = mxDT.Parser.DateFromString (
text = str2parse,
formats = ('euro', 'iso', 'us', 'altus', 'altiso', 'lit', 'altlit', 'eurlit')
)
matches.append ({
'data': mxdt2py_dt(date),
'label': date.strftime('%Y-%m-%d')
})
except (ValueError, OverflowError, mxDT.RangeError):
pass
# apply explicit patterns
if patterns is None:
patterns = []
patterns.append('%Y-%m-%d')
patterns.append('%y-%m-%d')
patterns.append('%Y/%m/%d')
patterns.append('%y/%m/%d')
patterns.append('%d-%m-%Y')
patterns.append('%d-%m-%y')
patterns.append('%d/%m/%Y')
patterns.append('%d/%m/%y')
patterns.append('%m-%d-%Y')
patterns.append('%m-%d-%y')
patterns.append('%m/%d/%Y')
patterns.append('%m/%d/%y')
patterns.append('%Y.%m.%d')
patterns.append('%y.%m.%d')
for pattern in patterns:
try:
date = pyDT.datetime.strptime(str2parse, pattern).replace (
hour = 11,
minute = 11,
second = 11,
tzinfo = gmCurrentLocalTimezone
)
matches.append ({
'data': date,
'label': pydt_strftime(date, format = '%Y-%m-%d', accuracy = acc_days)
})
except AttributeError:
# strptime() only available starting with Python 2.5
break
except OverflowError:
# time.mktime() cannot handle dates older than a platform-dependant limit :-(
continue
except ValueError:
# C-level overflow
continue
return matches
#===========================================================================
# string -> fuzzy timestamp parser
#---------------------------------------------------------------------------
def __explicit_offset(str2parse, offset_chars=None):
"""
Default is 'hdwm':
h - hours
d - days
w - weeks
m - months
y - years
This also defines the significance of the order of the characters.
"""
if offset_chars is None:
offset_chars = _('hdwmy (single character date offset triggers)')[:5].lower()
# "+/-XXd/w/m/t"
if not regex.match(u"^(\s|\t)*(\+|-)?(\s|\t)*\d{1,2}(\s|\t)*[%s](\s|\t)*$" % offset_chars, str2parse, flags = regex.LOCALE | regex.UNICODE):
return []
val = int(regex.findall(u'\d{1,2}', str2parse, flags = regex.LOCALE | regex.UNICODE)[0])
offset_char = regex.findall(u'[%s]' % offset_chars, str2parse, flags = regex.LOCALE | regex.UNICODE)[0].lower()
now = mxDT.now()
enc = gmI18N.get_encoding()
# allow past ?
is_future = True
if str2parse.find('-') > -1:
is_future = False
ts = None
# hours
if offset_char == offset_chars[0]:
if is_future:
ts = now + mxDT.RelativeDateTime(hours = val)
label = _('in %d hour(s) - %s') % (val, ts.strftime('%H:%M'))
else:
ts = now - mxDT.RelativeDateTime(hours = val)
label = _('%d hour(s) ago - %s') % (val, ts.strftime('%H:%M'))
accuracy = acc_subseconds
# days
elif offset_char == offset_chars[1]:
if is_future:
ts = now + mxDT.RelativeDateTime(days = val)
label = _('in %d day(s) - %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(days = val)
label = _('%d day(s) ago - %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
accuracy = acc_days
# weeks
elif offset_char == offset_chars[2]:
if is_future:
ts = now + mxDT.RelativeDateTime(weeks = val)
label = _('in %d week(s) - %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(weeks = val)
label = _('%d week(s) ago - %s)') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
accuracy = acc_days
# months
elif offset_char == offset_chars[3]:
if is_future:
ts = now + mxDT.RelativeDateTime(months = val)
label = _('in %d month(s) - %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(months = val)
label = _('%d month(s) ago - %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
accuracy = acc_days
# years
elif offset_char == offset_chars[4]:
if is_future:
ts = now + mxDT.RelativeDateTime(years = val)
label = _('in %d year(s) - %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
else:
ts = now - mxDT.RelativeDateTime(years = val)
label = _('%d year(s) ago - %s') % (val, ts.strftime('%A, %Y-%m-%d').decode(enc))
accuracy = acc_months
if ts is None:
return []
tmp = {
'data': cFuzzyTimestamp(timestamp = ts, accuracy = accuracy),
'label': label
}
return [tmp]
#---------------------------------------------------------------------------
def __single_slash(str2parse):
"""Expand fragments containing a single slash.
"5/"
- 2005/ (2000 - 2025)
- 1995/ (1990 - 1999)
- Mai/current year
- Mai/next year
- Mai/last year
- Mai/200x
- Mai/20xx
- Mai/199x
- Mai/198x
- Mai/197x
- Mai/19xx
"""
matches = []
now = mxDT.now()
if regex.match(u"^(\s|\t)*\d{1,2}(\s|\t)*/+(\s|\t)*$", str2parse, flags = regex.LOCALE | regex.UNICODE):
val = int(regex.findall(u'\d+', str2parse, flags = regex.LOCALE | regex.UNICODE)[0])
if val < 100 and val >= 0:
matches.append ({
'data': None,
'label': '%s/' % (val + 1900)
})
if val < 26 and val >= 0:
matches.append ({
'data': None,
'label': '%s/' % (val + 2000)
})
if val < 10 and val >= 0:
matches.append ({
'data': None,
'label': '%s/' % (val + 1990)
})
if val < 13 and val > 0:
matches.append ({
'data': cFuzzyTimestamp(timestamp = now, accuracy = acc_months),
'label': '%.2d/%s' % (val, now.year)
})
ts = now + mxDT.RelativeDateTime(years = 1)
matches.append ({
'data': cFuzzyTimestamp(timestamp = ts, accuracy = acc_months),
'label': '%.2d/%s' % (val, ts.year)
})
ts = now + mxDT.RelativeDateTime(years = -1)
matches.append ({
'data': cFuzzyTimestamp(timestamp = ts, accuracy = acc_months),
'label': '%.2d/%s' % (val, ts.year)
})
matches.append ({
'data': None,
'label': '%.2d/200' % val
})
matches.append ({
'data': None,
'label': '%.2d/20' % val
})
matches.append ({
'data': None,
'label': '%.2d/199' % val
})
matches.append ({
'data': None,
'label': '%.2d/198' % val
})
matches.append ({
'data': None,
'label': '%.2d/197' % val
})
matches.append ({
'data': None,
'label': '%.2d/19' % val
})
elif regex.match(u"^(\s|\t)*\d{1,2}(\s|\t)*/+(\s|\t)*\d{4}(\s|\t)*$", str2parse, flags = regex.LOCALE | regex.UNICODE):
parts = regex.findall(u'\d+', str2parse, flags = regex.LOCALE | regex.UNICODE)
fts = cFuzzyTimestamp (
timestamp = mxDT.now() + mxDT.RelativeDateTime(year = int(parts[1]), month = int(parts[0])),
accuracy = acc_months
)
matches.append ({
'data': fts,
'label': fts.format_accurately()
})
return matches
#---------------------------------------------------------------------------
def __numbers_only(str2parse):
"""This matches on single numbers.
Spaces or tabs are discarded.
"""
if not regex.match(u"^(\s|\t)*\d{1,4}(\s|\t)*$", str2parse, flags = regex.LOCALE | regex.UNICODE):
return []
# strftime() returns str but in the localized encoding,
# so we may need to decode that to unicode
enc = gmI18N.get_encoding()
now = mxDT.now()
val = int(regex.findall(u'\d{1,4}', str2parse, flags = regex.LOCALE | regex.UNICODE)[0])
matches = []
# that year
if (1850 < val) and (val < 2100):
ts = now + mxDT.RelativeDateTime(year = val)
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_years
)
tmp = {
'data': target_date,
'label': '%s' % target_date
}
matches.append(tmp)
# day X of this month
if val <= gregorian_month_length[now.month]:
ts = now + mxDT.RelativeDateTime(day = val)
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_days
)
tmp = {
'data': target_date,
'label': _('%d. of %s (this month) - a %s') % (val, ts.strftime('%B').decode(enc), ts.strftime('%A').decode(enc))
}
matches.append(tmp)
# day X of next month
if val <= gregorian_month_length[(now + mxDT.RelativeDateTime(months = 1)).month]:
ts = now + mxDT.RelativeDateTime(months = 1, day = val)
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_days
)
tmp = {
'data': target_date,
'label': _('%d. of %s (next month) - a %s') % (val, ts.strftime('%B').decode(enc), ts.strftime('%A').decode(enc))
}
matches.append(tmp)
# day X of last month
if val <= gregorian_month_length[(now + mxDT.RelativeDateTime(months = -1)).month]:
ts = now + mxDT.RelativeDateTime(months = -1, day = val)
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_days
)
tmp = {
'data': target_date,
'label': _('%d. of %s (last month) - a %s') % (val, ts.strftime('%B').decode(enc), ts.strftime('%A').decode(enc))
}
matches.append(tmp)
# X days from now
if val <= 400: # more than a year ahead in days ?? nah !
ts = now + mxDT.RelativeDateTime(days = val)
target_date = cFuzzyTimestamp (
timestamp = ts
)
tmp = {
'data': target_date,
'label': _('in %d day(s) - %s') % (val, target_date.timestamp.strftime('%A, %Y-%m-%d').decode(enc))
}
matches.append(tmp)
# X weeks from now
if val <= 50: # pregnancy takes about 40 weeks :-)
ts = now + mxDT.RelativeDateTime(weeks = val)
target_date = cFuzzyTimestamp (
timestamp = ts
)
tmp = {
'data': target_date,
'label': _('in %d week(s) - %s') % (val, target_date.timestamp.strftime('%A, %Y-%m-%d').decode(enc))
}
matches.append(tmp)
# month X of ...
if val < 13:
# ... this year
ts = now + mxDT.RelativeDateTime(month = val)
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_months
)
tmp = {
'data': target_date,
'label': _('%s (%s this year)') % (target_date, ts.strftime('%B').decode(enc))
}
matches.append(tmp)
# ... next year
ts = now + mxDT.RelativeDateTime(years = 1, month = val)
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_months
)
tmp = {
'data': target_date,
'label': _('%s (%s next year)') % (target_date, ts.strftime('%B').decode(enc))
}
matches.append(tmp)
# ... last year
ts = now + mxDT.RelativeDateTime(years = -1, month = val)
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_months
)
tmp = {
'data': target_date,
'label': _('%s (%s last year)') % (target_date, ts.strftime('%B').decode(enc))
}
matches.append(tmp)
# fragment expansion
matches.append ({
'data': None,
'label': '%s/200' % val
})
matches.append ({
'data': None,
'label': '%s/199' % val
})
matches.append ({
'data': None,
'label': '%s/198' % val
})
matches.append ({
'data': None,
'label': '%s/19' % val
})
# day X of ...
if val < 8:
# ... this week
ts = now + mxDT.RelativeDateTime(weekday = (val-1, 0))
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_days
)
tmp = {
'data': target_date,
'label': _('%s this week (%s of %s)') % (ts.strftime('%A').decode(enc), ts.day, ts.strftime('%B').decode(enc))
}
matches.append(tmp)
# ... next week
ts = now + mxDT.RelativeDateTime(weeks = +1, weekday = (val-1, 0))
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_days
)
tmp = {
'data': target_date,
'label': _('%s next week (%s of %s)') % (ts.strftime('%A').decode(enc), ts.day, ts.strftime('%B').decode(enc))
}
matches.append(tmp)
# ... last week
ts = now + mxDT.RelativeDateTime(weeks = -1, weekday = (val-1, 0))
target_date = cFuzzyTimestamp (
timestamp = ts,
accuracy = acc_days
)
tmp = {
'data': target_date,
'label': _('%s last week (%s of %s)') % (ts.strftime('%A').decode(enc), ts.day, ts.strftime('%B').decode(enc))
}
matches.append(tmp)
if val < 100:
matches.append ({
'data': None,
'label': '%s/' % (1900 + val)
})
if val == 200:
tmp = {
'data': cFuzzyTimestamp(timestamp = now, accuracy = acc_days),
'label': '%s' % target_date
}
matches.append(tmp)
matches.append ({
'data': cFuzzyTimestamp(timestamp = now, accuracy = acc_months),
'label': '%.2d/%s' % (now.month, now.year)
})
matches.append ({
'data': None,
'label': '%s/' % now.year
})
matches.append ({
'data': None,
'label': '%s/' % (now.year + 1)
})
matches.append ({
'data': None,
'label': '%s/' % (now.year - 1)
})
if val < 200 and val >= 190:
for i in range(10):
matches.append ({
'data': None,
'label': '%s%s/' % (val, i)
})
return matches
#---------------------------------------------------------------------------
def __single_dot(str2parse):
"""Expand fragments containing a single dot.
Standard colloquial date format in Germany: day.month.year
"14."
- 14th current month this year
- 14th next month this year
"""
if not regex.match(u"^(\s|\t)*\d{1,2}\.{1}(\s|\t)*$", str2parse, flags = regex.LOCALE | regex.UNICODE):
return []
val = int(regex.findall(u'\d+', str2parse, flags = regex.LOCALE | regex.UNICODE)[0])
now = mxDT.now()
enc = gmI18N.get_encoding()
matches = []
# day X of this month
ts = now + mxDT.RelativeDateTime(day = val)
if val > 0 and val <= gregorian_month_length[ts.month]:
matches.append ({
'data': cFuzzyTimestamp(timestamp = ts, accuracy = acc_days),
'label': '%s.%s.%s - a %s this month' % (ts.day, ts.month, ts.year, ts.strftime('%A').decode(enc))
})
# day X of next month
ts = now + mxDT.RelativeDateTime(day = val, months = +1)
if val > 0 and val <= gregorian_month_length[ts.month]:
matches.append ({
'data': cFuzzyTimestamp(timestamp = ts, accuracy = acc_days),
'label': '%s.%s.%s - a %s next month' % (ts.day, ts.month, ts.year, ts.strftime('%A').decode(enc))
})
# day X of last month
ts = now + mxDT.RelativeDateTime(day = val, months = -1)
if val > 0 and val <= gregorian_month_length[ts.month]:
matches.append ({
'data': cFuzzyTimestamp(timestamp = ts, accuracy = acc_days),
'label': '%s.%s.%s - a %s last month' % (ts.day, ts.month, ts.year, ts.strftime('%A').decode(enc))
})
return matches
#---------------------------------------------------------------------------
def str2fuzzy_timestamp_matches(str2parse=None, default_time=None, patterns=None):
"""
Turn a string into candidate fuzzy timestamps and auto-completions the user is likely to type.
You MUST have called locale.setlocale(locale.LC_ALL, '')
somewhere in your code previously.
@param default_time: if you want to force the time part of the time
stamp to a given value and the user doesn't type any time part
this value will be used
@type default_time: an mx.DateTime.DateTimeDelta instance
@param patterns: list of [time.strptime compatible date/time pattern, accuracy]
@type patterns: list
"""
matches = __single_dot(str2parse)
matches.extend(__numbers_only(str2parse))
matches.extend(__single_slash(str2parse))
ms = __single_char2py_dt(str2parse)
for m in ms:
matches.append ({
'data': cFuzzyTimestamp (
timestamp = m['data'],
accuracy = acc_days
),
'label': m['label']
})
matches.extend(__explicit_offset(str2parse))
# try mxDT parsers
try:
# date ?
date_only = mxDT.Parser.DateFromString (
text = str2parse,
formats = ('euro', 'iso', 'us', 'altus', 'altiso', 'lit', 'altlit', 'eurlit')
)
# time, too ?
time_part = mxDT.Parser.TimeFromString(text = str2parse)
datetime = date_only + time_part
if datetime == date_only:
accuracy = acc_days
if isinstance(default_time, mxDT.DateTimeDeltaType):
datetime = date_only + default_time
accuracy = acc_minutes
else:
accuracy = acc_subseconds
fts = cFuzzyTimestamp (
timestamp = datetime,
accuracy = accuracy
)
matches.append ({
'data': fts,
'label': fts.format_accurately()
})
except (ValueError, mxDT.RangeError):
pass
if patterns is None:
patterns = []
patterns.append(['%Y-%m-%d', acc_days])
patterns.append(['%y-%m-%d', acc_days])
patterns.append(['%Y/%m/%d', acc_days])
patterns.append(['%y/%m/%d', acc_days])
patterns.append(['%d-%m-%Y', acc_days])
patterns.append(['%d-%m-%y', acc_days])
patterns.append(['%d/%m/%Y', acc_days])
patterns.append(['%d/%m/%y', acc_days])
patterns.append(['%m-%d-%Y', acc_days])
patterns.append(['%m-%d-%y', acc_days])
patterns.append(['%m/%d/%Y', acc_days])
patterns.append(['%m/%d/%y', acc_days])
patterns.append(['%Y.%m.%d', acc_days])
patterns.append(['%y.%m.%d', acc_days])
for pattern in patterns:
try:
fts = cFuzzyTimestamp (
timestamp = pyDT.datetime.fromtimestamp(time.mktime(time.strptime(str2parse, pattern[0]))),
accuracy = pattern[1]
)
matches.append ({
'data': fts,
'label': fts.format_accurately()
})
except AttributeError:
# strptime() only available starting with Python 2.5
break
except OverflowError:
# time.mktime() cannot handle dates older than a platform-dependant limit :-(
continue
except ValueError:
# C-level overflow
continue
return matches
#===========================================================================
# fuzzy timestamp class
#---------------------------------------------------------------------------
class cFuzzyTimestamp:
# FIXME: add properties for year, month, ...
"""A timestamp implementation with definable inaccuracy.
This class contains an mxDateTime.DateTime instance to
hold the actual timestamp. It adds an accuracy attribute
to allow the programmer to set the precision of the
timestamp.
The timestamp will have to be initialzed with a fully
precise value (which may, of course, contain partially
fake data to make up for missing values). One can then
set the accuracy value to indicate up to which part of
the timestamp the data is valid. Optionally a modifier
can be set to indicate further specification of the
value (such as "summer", "afternoon", etc).
accuracy values:
1: year only
...
7: everything including milliseconds value
Unfortunately, one cannot directly derive a class from mx.DateTime.DateTime :-(
"""
#-----------------------------------------------------------------------
def __init__(self, timestamp=None, accuracy=acc_subseconds, modifier=''):
if timestamp is None:
timestamp = mxDT.now()
accuracy = acc_subseconds
modifier = ''
if (accuracy < 1) or (accuracy > 8):
raise ValueError('%s.__init__(): <accuracy> must be between 1 and 8' % self.__class__.__name__)
if isinstance(timestamp, pyDT.datetime):
timestamp = mxDT.DateTime(timestamp.year, timestamp.month, timestamp.day, timestamp.hour, timestamp.minute, timestamp.second)
if type(timestamp) != mxDT.DateTimeType:
raise TypeError('%s.__init__(): <timestamp> must be of mx.DateTime.DateTime or datetime.datetime type' % self.__class__.__name__)
self.timestamp = timestamp
self.accuracy = accuracy
self.modifier = modifier
#-----------------------------------------------------------------------
# magic API
#-----------------------------------------------------------------------
def __str__(self):
"""Return string representation meaningful to a user, also for %s formatting."""
return self.format_accurately()
#-----------------------------------------------------------------------
def __repr__(self):
"""Return string meaningful to a programmer to aid in debugging."""
tmp = '<[%s]: timestamp [%s], accuracy [%s] (%s), modifier [%s] at %s>' % (
self.__class__.__name__,
repr(self.timestamp),
self.accuracy,
_accuracy_strings[self.accuracy],
self.modifier,
id(self)
)
return tmp
#-----------------------------------------------------------------------
# external API
#-----------------------------------------------------------------------
def strftime(self, format_string):
if self.accuracy == 7:
return self.timestamp.strftime(format_string)
return self.format_accurately()
#-----------------------------------------------------------------------
def Format(self, format_string):
return self.strftime(format_string)
#-----------------------------------------------------------------------
def format_accurately(self, accuracy=None):
if accuracy is None:
accuracy = self.accuracy
if accuracy == acc_years:
return unicode(self.timestamp.year)
if accuracy == acc_months:
return unicode(self.timestamp.strftime('%m/%Y')) # FIXME: use 3-letter month ?
if accuracy == acc_weeks:
return unicode(self.timestamp.strftime('%m/%Y')) # FIXME: use 3-letter month ?
if accuracy == acc_days:
return unicode(self.timestamp.strftime('%Y-%m-%d'))
if accuracy == acc_hours:
return unicode(self.timestamp.strftime("%Y-%m-%d %I%p"))
if accuracy == acc_minutes:
return unicode(self.timestamp.strftime("%Y-%m-%d %H:%M"))
if accuracy == acc_seconds:
return unicode(self.timestamp.strftime("%Y-%m-%d %H:%M:%S"))
if accuracy == acc_subseconds:
return unicode(self.timestamp)
raise ValueError, '%s.format_accurately(): <accuracy> (%s) must be between 1 and 7' % (
self.__class__.__name__,
accuracy
)
#-----------------------------------------------------------------------
def get_mxdt(self):
return self.timestamp
#-----------------------------------------------------------------------
def get_pydt(self):
try:
gmtoffset = self.timestamp.gmtoffset()
except mxDT.Error:
# Windows cannot deal with dates < 1970, so
# when that happens switch to now()
now = mxDT.now()
gmtoffset = now.gmtoffset()
tz = cFixedOffsetTimezone(gmtoffset.minutes, self.timestamp.tz)
secs, msecs = divmod(self.timestamp.second, 1)
ts = pyDT.datetime (
year = self.timestamp.year,
month = self.timestamp.month,
day = self.timestamp.day,
hour = self.timestamp.hour,
minute = self.timestamp.minute,
second = int(secs),
microsecond = int(msecs * 1000),
tzinfo = tz
)
return ts
#===========================================================================
# main
#---------------------------------------------------------------------------
if __name__ == '__main__':
if len(sys.argv) < 2:
sys.exit()
if sys.argv[1] != "test":
sys.exit()
#-----------------------------------------------------------------------
intervals_as_str = [
'7', '12', ' 12', '12 ', ' 12 ', ' 12 ', '0', '~12', '~ 12', ' ~ 12', ' ~ 12 ',
'12a', '12 a', '12 a', '12j', '12J', '12y', '12Y', ' ~ 12 a ', '~0a',
'12m', '17 m', '12 m', '17M', ' ~ 17 m ', ' ~ 3 / 12 ', '7/12', '0/12',
'12w', '17 w', '12 w', '17W', ' ~ 17 w ', ' ~ 15 / 52', '2/52', '0/52',
'12d', '17 d', '12 t', '17D', ' ~ 17 T ', ' ~ 12 / 7', '3/7', '0/7',
'12h', '17 h', '12 H', '17H', ' ~ 17 h ', ' ~ 36 / 24', '7/24', '0/24',
' ~ 36 / 60', '7/60', '190/60', '0/60',
'12a1m', '12 a 1 M', '12 a17m', '12j 12m', '12J7m', '12y7m', '12Y7M', ' ~ 12 a 37 m ', '~0a0m',
'10m1w',
'invalid interval input'
]
#-----------------------------------------------------------------------
def test_format_interval():
for tmp in intervals_as_str:
intv = str2interval(str_interval = tmp)
for acc in _accuracy_strings.keys():
print '[%s]: "%s" -> "%s"' % (acc, tmp, format_interval(intv, acc))
#-----------------------------------------------------------------------
def test_format_interval_medically():
intervals = [
pyDT.timedelta(seconds = 1),
pyDT.timedelta(seconds = 5),
pyDT.timedelta(seconds = 30),
pyDT.timedelta(seconds = 60),
pyDT.timedelta(seconds = 94),
pyDT.timedelta(seconds = 120),
pyDT.timedelta(minutes = 5),
pyDT.timedelta(minutes = 30),
pyDT.timedelta(minutes = 60),
pyDT.timedelta(minutes = 90),
pyDT.timedelta(minutes = 120),
pyDT.timedelta(minutes = 200),
pyDT.timedelta(minutes = 400),
pyDT.timedelta(minutes = 600),
pyDT.timedelta(minutes = 800),
pyDT.timedelta(minutes = 1100),
pyDT.timedelta(minutes = 2000),
pyDT.timedelta(minutes = 3500),
pyDT.timedelta(minutes = 4000),
pyDT.timedelta(hours = 1),
pyDT.timedelta(hours = 2),
pyDT.timedelta(hours = 4),
pyDT.timedelta(hours = 8),
pyDT.timedelta(hours = 12),
pyDT.timedelta(hours = 20),
pyDT.timedelta(hours = 23),
pyDT.timedelta(hours = 24),
pyDT.timedelta(hours = 25),
pyDT.timedelta(hours = 30),
pyDT.timedelta(hours = 48),
pyDT.timedelta(hours = 98),
pyDT.timedelta(hours = 120),
pyDT.timedelta(days = 1),
pyDT.timedelta(days = 2),
pyDT.timedelta(days = 4),
pyDT.timedelta(days = 16),
pyDT.timedelta(days = 29),
pyDT.timedelta(days = 30),
pyDT.timedelta(days = 31),
pyDT.timedelta(days = 37),
pyDT.timedelta(days = 40),
pyDT.timedelta(days = 47),
pyDT.timedelta(days = 126),
pyDT.timedelta(days = 127),
pyDT.timedelta(days = 128),
pyDT.timedelta(days = 300),
pyDT.timedelta(days = 359),
pyDT.timedelta(days = 360),
pyDT.timedelta(days = 361),
pyDT.timedelta(days = 362),
pyDT.timedelta(days = 363),
pyDT.timedelta(days = 364),
pyDT.timedelta(days = 365),
pyDT.timedelta(days = 366),
pyDT.timedelta(days = 367),
pyDT.timedelta(days = 400),
pyDT.timedelta(weeks = 52 * 30),
pyDT.timedelta(weeks = 52 * 79, days = 33)
]
idx = 1
for intv in intervals:
print '%s) %s -> %s' % (idx, intv, format_interval_medically(intv))
idx += 1
#-----------------------------------------------------------------------
def test_str2interval():
print "testing str2interval()"
print "----------------------"
for interval_as_str in intervals_as_str:
print "input: <%s>" % interval_as_str
print " ==>", str2interval(str_interval=interval_as_str)
return True
#-------------------------------------------------
def test_date_time():
print "DST currently in effect:", dst_currently_in_effect
print "current UTC offset:", current_local_utc_offset_in_seconds, "seconds"
print "current timezone (interval):", current_local_timezone_interval
print "current timezone (ISO conformant numeric string):", current_local_iso_numeric_timezone_string
print "local timezone class:", cLocalTimezone
print ""
tz = cLocalTimezone()
print "local timezone instance:", tz
print " (total) UTC offset:", tz.utcoffset(pyDT.datetime.now())
print " DST adjustment:", tz.dst(pyDT.datetime.now())
print " timezone name:", tz.tzname(pyDT.datetime.now())
print ""
print "current local timezone:", gmCurrentLocalTimezone
print " (total) UTC offset:", gmCurrentLocalTimezone.utcoffset(pyDT.datetime.now())
print " DST adjustment:", gmCurrentLocalTimezone.dst(pyDT.datetime.now())
print " timezone name:", gmCurrentLocalTimezone.tzname(pyDT.datetime.now())
print ""
print "now here:", pydt_now_here()
print ""
#-------------------------------------------------
def test_str2fuzzy_timestamp_matches():
print "testing function str2fuzzy_timestamp_matches"
print "--------------------------------------------"
val = None
while val != 'exit':
val = raw_input('Enter date fragment ("exit" quits): ')
matches = str2fuzzy_timestamp_matches(str2parse = val)
for match in matches:
print 'label shown :', match['label']
print 'data attached:', match['data'], match['data'].timestamp
print ""
print "---------------"
#-------------------------------------------------
def test_cFuzzyTimeStamp():
print "testing fuzzy timestamp class"
print "-----------------------------"
ts = mxDT.now()
print "mx.DateTime timestamp", type(ts)
print " print ... :", ts
print " print '%%s' %% ...: %s" % ts
print " str() :", str(ts)
print " repr() :", repr(ts)
fts = cFuzzyTimestamp()
print "\nfuzzy timestamp <%s '%s'>" % ('class', fts.__class__.__name__)
for accuracy in range(1,8):
fts.accuracy = accuracy
print " accuracy : %s (%s)" % (accuracy, _accuracy_strings[accuracy])
print " format_accurately:", fts.format_accurately()
print " strftime() :", fts.strftime('%Y %b %d %H:%M:%S')
print " print ... :", fts
print " print '%%s' %% ... : %s" % fts
print " str() :", str(fts)
print " repr() :", repr(fts)
raw_input('press ENTER to continue')
#-------------------------------------------------
def test_get_pydt():
print "testing platform for handling dates before 1970"
print "-----------------------------------------------"
ts = mxDT.DateTime(1935, 4, 2)
fts = cFuzzyTimestamp(timestamp=ts)
print "fts :", fts
print "fts.get_pydt():", fts.get_pydt()
#-------------------------------------------------
def test_calculate_apparent_age():
# test leap year glitches
start = pydt_now_here().replace(year = 2000).replace(month = 2).replace(day = 29)
end = pydt_now_here().replace(year = 2012).replace(month = 2).replace(day = 27)
print "start is leap year: 29.2.2000"
print " ", calculate_apparent_age(start = start, end = end)
print " ", format_apparent_age_medically(calculate_apparent_age(start = start))
start = pydt_now_here().replace(month = 10).replace(day = 23).replace(year = 1974)
end = pydt_now_here().replace(year = 2012).replace(month = 2).replace(day = 29)
print "end is leap year: 29.2.2012"
print " ", calculate_apparent_age(start = start, end = end)
print " ", format_apparent_age_medically(calculate_apparent_age(start = start))
start = pydt_now_here().replace(year = 2000).replace(month = 2).replace(day = 29)
end = pydt_now_here().replace(year = 2012).replace(month = 2).replace(day = 29)
print "start is leap year: 29.2.2000"
print "end is leap year: 29.2.2012"
print " ", calculate_apparent_age(start = start, end = end)
print " ", format_apparent_age_medically(calculate_apparent_age(start = start))
print "leap year tests worked"
start = pydt_now_here().replace(month = 10).replace(day = 23).replace(year = 1974)
print calculate_apparent_age(start = start)
print format_apparent_age_medically(calculate_apparent_age(start = start))
start = pydt_now_here().replace(month = 3).replace(day = 13).replace(year = 1979)
print calculate_apparent_age(start = start)
print format_apparent_age_medically(calculate_apparent_age(start = start))
start = pydt_now_here().replace(month = 2, day = 2).replace(year = 1979)
end = pydt_now_here().replace(month = 3).replace(day = 31).replace(year = 1979)
print calculate_apparent_age(start = start, end = end)
start = pydt_now_here().replace(month = 7, day = 21).replace(year = 2009)
print format_apparent_age_medically(calculate_apparent_age(start = start))
print "-------"
start = pydt_now_here().replace(month = 1).replace(day = 23).replace(hour = 12).replace(minute = 11).replace(year = 2011)
print calculate_apparent_age(start = start)
print format_apparent_age_medically(calculate_apparent_age(start = start))
#-------------------------------------------------
def test_str2pydt():
print "testing function str2pydt_matches"
print "---------------------------------"
val = None
while val != 'exit':
val = raw_input('Enter date fragment ("exit" quits): ')
matches = str2pydt_matches(str2parse = val)
for match in matches:
print 'label shown :', match['label']
print 'data attached:', match['data']
print ""
print "---------------"
#-------------------------------------------------
def test_pydt_strftime():
dt = pydt_now_here()
print pydt_strftime(dt)
print pydt_strftime(dt, accuracy = acc_days)
print pydt_strftime(dt, accuracy = acc_minutes)
print pydt_strftime(dt, accuracy = acc_seconds)
dt = dt.replace(year = 1899)
print pydt_strftime(dt)
print pydt_strftime(dt, accuracy = acc_days)
print pydt_strftime(dt, accuracy = acc_minutes)
print pydt_strftime(dt, accuracy = acc_seconds)
#-------------------------------------------------
def test_is_leap_year():
for year in range(1995, 2017):
print year, "leaps:", is_leap_year(year)
#-------------------------------------------------
# GNUmed libs
gmI18N.activate_locale()
gmI18N.install_domain('gnumed')
init()
#test_date_time()
#test_str2fuzzy_timestamp_matches()
#test_cFuzzyTimeStamp()
#test_get_pydt()
#test_str2interval()
#test_format_interval()
#test_format_interval_medically()
test_str2pydt()
#test_pydt_strftime()
#test_calculate_apparent_age()
#test_is_leap_year()
#===========================================================================
|