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
| | /* Timestamp functions for Emacs
Copyright (C) 1985-1987, 1989, 1993-2024 Free Software Foundation, Inc.
This file is part of GNU Emacs.
GNU Emacs 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.
GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
/* Work around GCC bug 102671. */
#if 10 <= __GNUC__
# pragma GCC diagnostic ignored "-Wanalyzer-null-dereference"
#endif
#include "systime.h"
#include "blockinput.h"
#include "bignum.h"
#include "coding.h"
#include "lisp.h"
#include "pdumper.h"
#include <strftime.h>
#include <errno.h>
#include <limits.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef WINDOWSNT
extern clock_t sys_clock (void);
#endif
#ifdef HAVE_TIMEZONE_T
# include <sys/param.h>
# if defined __NetBSD_Version__ && __NetBSD_Version__ < 700000000
# define HAVE_TZALLOC_BUG true
# endif
#endif
#ifndef HAVE_TZALLOC_BUG
# define HAVE_TZALLOC_BUG false
#endif
enum { TM_YEAR_BASE = 1900 };
#ifndef HAVE_TM_GMTOFF
# define HAVE_TM_GMTOFF false
#endif
#ifndef TIME_T_MIN
# define TIME_T_MIN TYPE_MINIMUM (time_t)
#endif
#ifndef TIME_T_MAX
# define TIME_T_MAX TYPE_MAXIMUM (time_t)
#endif
/* Compile with -DFASTER_TIMEFNS=0 to disable common optimizations and
allow easier testing of some slow-path code. */
#ifndef FASTER_TIMEFNS
# define FASTER_TIMEFNS 1
#endif
/* current-time-list defaults to t, typically generating (HI LO US PS)
timestamps. To change the default to nil, generating (TICKS . HZ)
timestamps, compile with -DCURRENT_TIME_LIST=0. */
#ifndef CURRENT_TIME_LIST
enum { CURRENT_TIME_LIST = true };
#endif
#if FIXNUM_OVERFLOW_P (1000000000)
static Lisp_Object timespec_hz;
#else
# define timespec_hz make_fixnum (TIMESPEC_HZ)
#endif
#define TRILLION 1000000000000
#if FIXNUM_OVERFLOW_P (TRILLION)
static Lisp_Object trillion;
# define ztrillion (*xbignum_val (trillion))
#else
# define trillion make_fixnum (TRILLION)
# if ULONG_MAX < TRILLION || !FASTER_TIMEFNS
mpz_t ztrillion;
# endif
#endif
/* True if the nonzero Lisp integer HZ divides evenly into a trillion. */
static bool
trillion_factor (Lisp_Object hz)
{
if (FASTER_TIMEFNS)
{
if (FIXNUMP (hz))
return TRILLION % XFIXNUM (hz) == 0;
if (!FIXNUM_OVERFLOW_P (TRILLION))
return false;
}
verify (TRILLION <= INTMAX_MAX);
intmax_t ihz;
return integer_to_intmax (hz, &ihz) && TRILLION % ihz == 0;
}
/* Return a struct timeval that is roughly equivalent to T.
Use the least timeval not less than T.
Return an extremal value if the result would overflow. */
struct timeval
make_timeval (struct timespec t)
{
struct timeval tv;
tv.tv_sec = t.tv_sec;
tv.tv_usec = t.tv_nsec / 1000;
if (t.tv_nsec % 1000 != 0)
{
if (tv.tv_usec < 999999)
tv.tv_usec++;
else if (tv.tv_sec < TIME_T_MAX)
{
tv.tv_sec++;
tv.tv_usec = 0;
}
}
return tv;
}
/* Yield A's UTC offset, or an unspecified value if unknown. */
static long int
tm_gmtoff (struct tm *a)
{
#if HAVE_TM_GMTOFF
return a->tm_gmtoff;
#else
return 0;
#endif
}
/* Yield A - B, measured in seconds.
This function is copied from the GNU C Library. */
static int
tm_diff (struct tm *a, struct tm *b)
{
/* Compute intervening leap days correctly even if year is negative.
Take care to avoid int overflow in leap day calculations,
but it's OK to assume that A and B are close to each other. */
int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
int a100 = a4 / 25 - (a4 % 25 < 0);
int b100 = b4 / 25 - (b4 % 25 < 0);
int a400 = a100 >> 2;
int b400 = b100 >> 2;
int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
int years = a->tm_year - b->tm_year;
int days = (365 * years + intervening_leap_days
+ (a->tm_yday - b->tm_yday));
return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
+ (a->tm_min - b->tm_min))
+ (a->tm_sec - b->tm_sec));
}
enum { tzeqlen = sizeof "TZ=" - 1 };
/* Time zones equivalent to current local time and to UTC, respectively. */
static timezone_t local_tz;
static timezone_t const utc_tz = 0;
static struct tm *
emacs_localtime_rz (timezone_t tz, time_t const *t, struct tm *tm)
{
#ifdef WINDOWSNT
/* The Windows CRT functions are "optimized for speed", so they don't
check for timezone and DST changes if they were last called less
than 1 minute ago (see http://support.microsoft.com/kb/821231).
So all Emacs features that repeatedly call time functions (e.g.,
display-time) are in real danger of missing timezone and DST
changes. Calling tzset before each localtime call fixes that. */
tzset ();
#endif
tm = localtime_rz (tz, t, tm);
if (!tm && errno == ENOMEM)
memory_full (SIZE_MAX);
return tm;
}
static AVOID
invalid_time_zone_specification (Lisp_Object zone)
{
xsignal2 (Qerror, build_string ("Invalid time zone specification"), zone);
}
/* Free a timezone, except do not free the time zone for local time.
Freeing utc_tz is also a no-op. */
static void
xtzfree (timezone_t tz)
{
if (tz != local_tz)
tzfree (tz);
}
/* Convert the Lisp time zone rule ZONE to a timezone_t object.
The returned value either is 0, or is LOCAL_TZ, or is newly allocated.
If SETTZ, set Emacs local time to the time zone rule; otherwise,
the caller should eventually pass the returned value to xtzfree. */
static timezone_t
tzlookup (Lisp_Object zone, bool settz)
{
static char const tzbuf_format[] = "<%+.*"pI"d>%s%"pI"d:%02d:%02d";
char const *trailing_tzbuf_format = tzbuf_format + sizeof "<%+.*"pI"d" - 1;
char tzbuf[sizeof tzbuf_format + 2 * INT_STRLEN_BOUND (EMACS_INT)];
char const *zone_string;
timezone_t new_tz;
if (NILP (zone))
return local_tz;
else if (BASE_EQ (zone, make_fixnum (0)) || EQ (zone, Qt))
{
zone_string = "UTC0";
new_tz = utc_tz;
}
else
{
bool plain_integer = FIXNUMP (zone);
if (EQ (zone, Qwall))
zone_string = 0;
else if (STRINGP (zone))
zone_string = SSDATA (ENCODE_SYSTEM (zone));
else if (plain_integer || (CONSP (zone) && FIXNUMP (XCAR (zone))
&& CONSP (XCDR (zone))))
{
Lisp_Object abbr UNINIT;
if (!plain_integer)
{
abbr = XCAR (XCDR (zone));
zone = XCAR (zone);
}
EMACS_INT abszone = eabs (XFIXNUM (zone)), hour = abszone / (60 * 60);
int hour_remainder = abszone % (60 * 60);
int min = hour_remainder / 60, sec = hour_remainder % 60;
if (plain_integer)
{
int prec = 2;
EMACS_INT numzone = hour;
if (hour_remainder != 0)
{
prec += 2, numzone = 100 * numzone + min;
if (sec != 0)
prec += 2, numzone = 100 * numzone + sec;
}
sprintf (tzbuf, tzbuf_format, prec,
XFIXNUM (zone) < 0 ? -numzone : numzone,
&"-"[XFIXNUM (zone) < 0], hour, min, sec);
zone_string = tzbuf;
}
else
{
AUTO_STRING (leading, "<");
AUTO_STRING_WITH_LEN (trailing, tzbuf,
sprintf (tzbuf, trailing_tzbuf_format,
&"-"[XFIXNUM (zone) < 0],
hour, min, sec));
zone_string = SSDATA (concat3 (leading, ENCODE_SYSTEM (abbr),
trailing));
}
}
else
invalid_time_zone_specification (zone);
new_tz = tzalloc (zone_string);
if (HAVE_TZALLOC_BUG && !new_tz && errno != ENOMEM && plain_integer
&& XFIXNUM (zone) % (60 * 60) == 0)
{
/* tzalloc mishandles POSIX strings; fall back on tzdb if
possible (Bug#30738). */
sprintf (tzbuf, "Etc/GMT%+"pI"d", - (XFIXNUM (zone) / (60 * 60)));
new_tz = tzalloc (zone_string);
}
if (!new_tz)
{
if (errno == ENOMEM)
memory_full (SIZE_MAX);
invalid_time_zone_specification (zone);
}
}
if (settz)
{
block_input ();
emacs_setenv_TZ (zone_string);
tzset ();
timezone_t old_tz = local_tz;
local_tz = new_tz;
tzfree (old_tz);
unblock_input ();
}
return new_tz;
}
void
init_timefns (void)
{
#ifdef HAVE_UNEXEC
/* A valid but unlikely setting for the TZ environment variable.
It is OK (though a bit slower) if the user chooses this value. */
static char dump_tz_string[] = "TZ=UtC0";
/* When just dumping out, set the time zone to a known unlikely value
and skip the rest of this function. */
if (will_dump_with_unexec_p ())
{
xputenv (dump_tz_string);
tzset ();
return;
}
#endif
char *tz = getenv ("TZ");
#ifdef HAVE_UNEXEC
/* If the execution TZ happens to be the same as the dump TZ,
change it to some other value and then change it back,
to force the underlying implementation to reload the TZ info.
This is needed on implementations that load TZ info from files,
since the TZ file contents may differ between dump and execution. */
if (tz && strcmp (tz, &dump_tz_string[tzeqlen]) == 0)
{
++*tz;
tzset ();
--*tz;
}
#endif
/* Set the time zone rule now, so that the call to putenv is done
before multiple threads are active. */
tzlookup (tz ? build_string (tz) : Qwall, true);
}
/* Report that a time value is out of range for Emacs. */
static AVOID
time_overflow (void)
{
error ("Specified time is not representable");
}
static AVOID
time_error (int err)
{
switch (err)
{
case ENOMEM: memory_full (SIZE_MAX);
case EOVERFLOW: time_overflow ();
default: error ("Invalid time specification");
}
}
static AVOID
invalid_hz (Lisp_Object hz)
{
xsignal2 (Qerror, build_string ("Invalid time frequency"), hz);
}
/* Return the upper part of the time T (everything but the bottom 16 bits). */
static Lisp_Object
hi_time (time_t t)
{
return INT_TO_INTEGER (t >> LO_TIME_BITS);
}
/* Return the bottom bits of the time T. */
static Lisp_Object
lo_time (time_t t)
{
return make_fixnum (t & ((1 << LO_TIME_BITS) - 1));
}
/* When converting a double to a fraction TICKS / HZ, HZ is equal to
FLT_RADIX * P where 0 <= P < FLT_RADIX_POWER_SIZE. The tiniest
nonzero double uses the maximum P. */
enum { flt_radix_power_size = DBL_MANT_DIG - DBL_MIN_EXP + 1 };
/* A integer vector of size flt_radix_power_size. The Pth entry
equals FLT_RADIX**P. */
static Lisp_Object flt_radix_power;
/* Return NUMERATOR / DENOMINATOR, rounded to the nearest double.
Arguments must be Lisp integers, and DENOMINATOR must be positive. */
static double
frac_to_double (Lisp_Object numerator, Lisp_Object denominator)
{
intmax_t intmax_numerator, intmax_denominator;
if (FASTER_TIMEFNS
&& integer_to_intmax (numerator, &intmax_numerator)
&& integer_to_intmax (denominator, &intmax_denominator)
&& intmax_numerator % intmax_denominator == 0)
return intmax_numerator / intmax_denominator;
/* Compute number of base-FLT_RADIX digits in numerator and denominator. */
mpz_t const *n = bignum_integer (&mpz[0], numerator);
mpz_t const *d = bignum_integer (&mpz[1], denominator);
ptrdiff_t ndig = mpz_sizeinbase (*n, FLT_RADIX);
ptrdiff_t ddig = mpz_sizeinbase (*d, FLT_RADIX);
/* Scale with SCALE when doing integer division. That is, compute
(N * FLT_RADIX**SCALE) / D [or, if SCALE is negative, N / (D *
FLT_RADIX**-SCALE)] as a bignum, convert the bignum to double,
then divide the double by FLT_RADIX**SCALE. First scale N
(or scale D, if SCALE is negative) ... */
ptrdiff_t scale = ddig - ndig + DBL_MANT_DIG;
if (scale < 0)
{
mpz_mul_2exp (mpz[1], *d, - (scale * LOG2_FLT_RADIX));
d = &mpz[1];
}
else
{
/* min so we don't scale tiny numbers as if they were normalized. */
scale = min (scale, flt_radix_power_size - 1);
mpz_mul_2exp (mpz[0], *n, scale * LOG2_FLT_RADIX);
n = &mpz[0];
}
/* ... and then divide, with quotient Q and remainder R. */
mpz_t *q = &mpz[2];
mpz_t *r = &mpz[3];
mpz_tdiv_qr (*q, *r, *n, *d);
/* The amount to add to the absolute value of Q so that truncating
it to double will round correctly. */
int incr;
/* Round the quotient before converting it to double.
If the quotient is less than FLT_RADIX ** DBL_MANT_DIG,
round to the nearest integer; otherwise, it is less than
FLT_RADIX ** (DBL_MANT_DIG + 1) and round it to the nearest
multiple of FLT_RADIX. Break ties to even. */
if (mpz_sizeinbase (*q, FLT_RADIX) <= DBL_MANT_DIG)
{
/* Converting to double will use the whole quotient so add 1 to
its absolute value as per round-to-even; i.e., if the doubled
remainder exceeds the denominator, or exactly equals the
denominator and adding 1 would make the quotient even. */
mpz_mul_2exp (*r, *r, 1);
int cmp = mpz_cmpabs (*r, *d);
incr = cmp > 0 || (cmp == 0 && (FASTER_TIMEFNS && FLT_RADIX == 2
? mpz_odd_p (*q)
: mpz_tdiv_ui (*q, FLT_RADIX) & 1));
}
else
{
/* Converting to double will discard the quotient's low-order digit,
so add FLT_RADIX to its absolute value as per round-to-even. */
int lo_2digits = mpz_tdiv_ui (*q, FLT_RADIX * FLT_RADIX);
eassume (0 <= lo_2digits && lo_2digits < FLT_RADIX * FLT_RADIX);
int lo_digit = lo_2digits % FLT_RADIX;
incr = ((lo_digit > FLT_RADIX / 2
|| (lo_digit == FLT_RADIX / 2 && FLT_RADIX % 2 == 0
&& ((lo_2digits / FLT_RADIX) & 1
|| mpz_sgn (*r) != 0)))
? FLT_RADIX : 0);
}
/* Increment the absolute value of the quotient by INCR. */
if (!FASTER_TIMEFNS || incr != 0)
(mpz_sgn (*n) < 0 ? mpz_sub_ui : mpz_add_ui) (*q, *q, incr);
/* Rescale the integer Q back to double. This step does not round. */
return scalbn (mpz_get_d (*q), -scale);
}
/* Convert Z to time_t, returning true if it fits. */
static bool
mpz_time (mpz_t const z, time_t *t)
{
if (TYPE_SIGNED (time_t))
{
intmax_t i;
if (! (mpz_to_intmax (z, &i) && TIME_T_MIN <= i && i <= TIME_T_MAX))
return false;
*t = i;
}
else
{
uintmax_t i;
if (! (mpz_to_uintmax (z, &i) && i <= TIME_T_MAX))
return false;
*t = i;
}
return true;
}
/* Components of a Lisp timestamp (TICKS . HZ). Using this C struct can
avoid the consing overhead of creating (TICKS . HZ). */
struct ticks_hz
{
/* Clock count as a Lisp integer. */
Lisp_Object ticks;
/* Clock frequency (ticks per second) as a positive Lisp integer. */
Lisp_Object hz;
};
/* Convert (TICKS . HZ) to struct timespec, returning an invalid
timespec if the result would not fit. */
static struct timespec
ticks_hz_to_timespec (Lisp_Object ticks, Lisp_Object hz)
{
struct timespec result = invalid_timespec ();
int ns;
mpz_t *q = &mpz[0];
mpz_t const *qt = q;
/* Floor-divide (TICKS * TIMESPEC_HZ) by HZ,
yielding quotient Q (tv_sec) and remainder NS (tv_nsec).
Return an invalid timespec if Q does not fit in time_t.
For speed, prefer fixnum arithmetic if it works. */
if (FASTER_TIMEFNS && BASE_EQ (hz, timespec_hz))
{
if (FIXNUMP (ticks))
{
EMACS_INT s = XFIXNUM (ticks) / TIMESPEC_HZ;
ns = XFIXNUM (ticks) % TIMESPEC_HZ;
if (ns < 0)
s--, ns += TIMESPEC_HZ;
if ((TYPE_SIGNED (time_t) ? TIME_T_MIN <= s : 0 <= s)
&& s <= TIME_T_MAX)
{
result.tv_sec = s;
result.tv_nsec = ns;
}
return result;
}
else
ns = mpz_fdiv_q_ui (*q, *xbignum_val (ticks), TIMESPEC_HZ);
}
else if (FASTER_TIMEFNS && BASE_EQ (hz, make_fixnum (1)))
{
ns = 0;
if (FIXNUMP (ticks))
{
EMACS_INT s = XFIXNUM (ticks);
if ((TYPE_SIGNED (time_t) ? TIME_T_MIN <= s : 0 <= s)
&& s <= TIME_T_MAX)
{
result.tv_sec = s;
result.tv_nsec = ns;
}
return result;
}
else
qt = xbignum_val (ticks);
}
else
{
mpz_mul_ui (*q, *bignum_integer (q, ticks), TIMESPEC_HZ);
mpz_fdiv_q (*q, *q, *bignum_integer (&mpz[1], hz));
ns = mpz_fdiv_q_ui (*q, *q, TIMESPEC_HZ);
}
/* Check that Q fits in time_t, not merely in RESULT.tv_sec. With some MinGW
versions, tv_sec is a 64-bit type, whereas time_t is a 32-bit type. */
time_t sec;
if (mpz_time (*qt, &sec))
{
result.tv_sec = sec;
result.tv_nsec = ns;
}
return result;
}
/* C timestamp forms. This enum is passed to conversion functions to
specify the desired C timestamp form. */
enum cform
{
CFORM_TICKS_HZ, /* struct ticks_hz */
CFORM_TIMESPEC, /* struct timespec */
CFORM_SECS_ONLY, /* struct timespec but tv_nsec == 0 if timespec valid */
CFORM_DOUBLE /* double */
};
/* A C timestamp in one of the forms specified by enum cform. */
union c_time
{
struct ticks_hz th;
struct timespec ts;
double d;
};
/* From a valid timestamp (TICKS . HZ), generate the corresponding
time value in CFORM form. */
static union c_time
decode_ticks_hz (Lisp_Object ticks, Lisp_Object hz, enum cform cform)
{
switch (cform)
{
case CFORM_DOUBLE:
return (union c_time) { .d = frac_to_double (ticks, hz) };
case CFORM_TICKS_HZ:
return (union c_time) { .th = { .ticks = ticks, .hz = hz } };
default:
return (union c_time) { .ts = ticks_hz_to_timespec (ticks, hz) };
}
}
/* Convert the finite number T into a C time of form CFORM, truncating
toward minus infinity. Signal an error if unsuccessful. */
static union c_time
decode_float_time (double t, enum cform cform)
{
if (FASTER_TIMEFNS && cform == CFORM_DOUBLE)
return (union c_time) { .d = t };
Lisp_Object ticks, hz;
if (t == 0)
{
ticks = make_fixnum (0);
hz = make_fixnum (1);
}
else
{
int scale = double_integer_scale (t);
/* Because SCALE treats trailing zeros in T as significant,
on typical platforms with IEEE floating point
(time-convert 3.5 t) yields (7881299347898368 . 2251799813685248),
a precision of 2**-51 s, not (7 . 2), a precision of 0.5 s.
Although numerically correct, this generates largish integers.
On 64bit systems, this should not matter very much, tho. */
eassume (scale < flt_radix_power_size);
if (scale < 0)
{
/* T is finite but so large that HZ would be less than 1 if
T's precision were represented exactly. SCALE must be
nonnegative, as the (TICKS . HZ) representation requires
HZ to be at least 1. So use SCALE = 0, which converts T to
(T . 1), which is the exact numeric value with too-large HZ,
which is typically better than signaling overflow. */
scale = 0;
}
/* Compute TICKS, HZ such that TICKS / HZ exactly equals T, where HZ is
T's frequency or 1, whichever is greater. Here, “frequency” means
1/precision. Cache HZ values in flt_radix_power. */
double scaled = scalbn (t, scale);
eassert (trunc (scaled) == scaled);
ticks = double_to_integer (scaled);
hz = AREF (flt_radix_power, scale);
if (NILP (hz))
{
mpz_ui_pow_ui (mpz[0], FLT_RADIX, scale);
hz = make_integer_mpz ();
ASET (flt_radix_power, scale, hz);
}
}
return decode_ticks_hz (ticks, hz, cform);
}
/* Make a 4-element timestamp (HI LO US PS) from TICKS and HZ.
Drop any excess precision. */
static Lisp_Object
ticks_hz_list4 (Lisp_Object ticks, Lisp_Object hz)
{
/* mpz[0] = floor ((ticks * trillion) / hz). */
mpz_t const *zticks = bignum_integer (&mpz[0], ticks);
#if FASTER_TIMEFNS && TRILLION <= ULONG_MAX
mpz_mul_ui (mpz[0], *zticks, TRILLION);
#else
mpz_mul (mpz[0], *zticks, ztrillion);
#endif
mpz_fdiv_q (mpz[0], mpz[0], *bignum_integer (&mpz[1], hz));
/* mpz[0] = floor (mpz[0] / trillion), with US = the high six digits of the
12-digit remainder, and PS = the low six digits. */
#if FASTER_TIMEFNS && TRILLION <= ULONG_MAX
unsigned long int fullps = mpz_fdiv_q_ui (mpz[0], mpz[0], TRILLION);
int us = fullps / 1000000;
int ps = fullps % 1000000;
#else
mpz_fdiv_qr (mpz[0], mpz[1], mpz[0], ztrillion);
int ps = mpz_fdiv_q_ui (mpz[1], mpz[1], 1000000);
int us = mpz_get_ui (mpz[1]);
#endif
/* mpz[0] = floor (mpz[0] / 1 << LO_TIME_BITS), with lo = remainder. */
unsigned long ulo = mpz_get_ui (mpz[0]);
if (mpz_sgn (mpz[0]) < 0)
ulo = -ulo;
int lo = ulo & ((1 << LO_TIME_BITS) - 1);
mpz_fdiv_q_2exp (mpz[0], mpz[0], LO_TIME_BITS);
return list4 (make_integer_mpz (), make_fixnum (lo),
make_fixnum (us), make_fixnum (ps));
}
/* Set ROP to T. */
static void
mpz_set_time (mpz_t rop, time_t t)
{
if (EXPR_SIGNED (t))
mpz_set_intmax (rop, t);
else
mpz_set_uintmax (rop, t);
}
/* Store into mpz[0] a clock tick count for T, assuming a
TIMESPEC_HZ-frequency clock. Use mpz[1] as a temp. */
static void
timespec_mpz (struct timespec t)
{
/* mpz[0] = sec * TIMESPEC_HZ + nsec. */
mpz_set_ui (mpz[0], t.tv_nsec);
mpz_set_time (mpz[1], t.tv_sec);
mpz_addmul_ui (mpz[0], mpz[1], TIMESPEC_HZ);
}
/* Convert T to a Lisp integer counting TIMESPEC_HZ ticks. */
static Lisp_Object
timespec_ticks (struct timespec t)
{
/* For speed, use intmax_t arithmetic if it will do. */
intmax_t accum;
if (FASTER_TIMEFNS
&& !ckd_mul (&accum, t.tv_sec, TIMESPEC_HZ)
&& !ckd_add (&accum, accum, t.tv_nsec))
return make_int (accum);
/* Fall back on bignum arithmetic. */
timespec_mpz (t);
return make_integer_mpz ();
}
/* Return greatest common divisor of positive A and B. */
static EMACS_INT
emacs_gcd (EMACS_INT a, EMACS_INT b)
{
for (EMACS_INT r; (r = a % b) != 0; a = b, b = r)
continue;
return b;
}
/* Convert T to a Lisp integer counting HZ ticks, taking the floor.
Assume T is valid, but check HZ. */
static Lisp_Object
ticks_hz_hz_ticks (struct ticks_hz t, Lisp_Object hz)
{
/* The idea is to return the floor of ((T.ticks * HZ) / T.hz). */
/* For speed, just return T.ticks if T.hz == HZ. */
if (FASTER_TIMEFNS && BASE_EQ (t.hz, hz))
return t.ticks;
/* Check HZ for validity. */
if (FIXNUMP (hz))
{
if (XFIXNUM (hz) <= 0)
invalid_hz (hz);
/* For speed, use intmax_t arithmetic if it will do. */
if (FASTER_TIMEFNS && FIXNUMP (t.ticks) && FIXNUMP (t.hz))
{
/* Reduce T.hz and HZ by their GCD, to avoid some intmax_t
overflows that would occur in T.ticks * HZ. */
EMACS_INT ithz = XFIXNUM (t.hz), ihz = XFIXNUM (hz);
EMACS_INT d = emacs_gcd (ithz, ihz);
ithz /= d;
ihz /= d;
intmax_t ticks;
if (!ckd_mul (&ticks, XFIXNUM (t.ticks), ihz))
return make_int (ticks / ithz - (ticks % ithz < 0));
t.hz = make_fixnum (ithz);
hz = make_fixnum (ihz);
}
}
else if (! (BIGNUMP (hz) && 0 < mpz_sgn (*xbignum_val (hz))))
invalid_hz (hz);
/* Fall back on bignum arithmetic. */
mpz_mul (mpz[0],
*bignum_integer (&mpz[0], t.ticks),
*bignum_integer (&mpz[1], hz));
mpz_fdiv_q (mpz[0], mpz[0], *bignum_integer (&mpz[1], t.hz));
return make_integer_mpz ();
}
/* Convert T to a Lisp integer counting seconds, taking the floor. */
static Lisp_Object
ticks_hz_seconds (struct ticks_hz t)
{
/* The idea is to return the floor of T.ticks / T.hz. */
if (!FASTER_TIMEFNS)
return ticks_hz_hz_ticks (t, make_fixnum (1));
/* For speed, use EMACS_INT arithmetic if it will do. */
if (FIXNUMP (t.ticks) && FIXNUMP (t.hz))
return make_fixnum (XFIXNUM (t.ticks) / XFIXNUM (t.hz)
- (XFIXNUM (t.ticks) % XFIXNUM (t.hz) < 0));
/* For speed, inline what ticks_hz_hz_ticks would do. */
mpz_fdiv_q (mpz[0],
*bignum_integer (&mpz[0], t.ticks),
*bignum_integer (&mpz[1], t.hz));
return make_integer_mpz ();
}
/* Convert T to a Lisp timestamp. */
Lisp_Object
make_lisp_time (struct timespec t)
{
if (current_time_list)
{
time_t s = t.tv_sec;
int ns = t.tv_nsec;
return list4 (hi_time (s), lo_time (s),
make_fixnum (ns / 1000), make_fixnum (ns % 1000 * 1000));
}
else
return timespec_to_lisp (t);
}
/* Return (TICKS . HZ) for time T. */
Lisp_Object
timespec_to_lisp (struct timespec t)
{
return Fcons (timespec_ticks (t), timespec_hz);
}
/* An (error number, C timestamp) pair. */
struct err_time
{
int err;
union c_time time;
};
/* Lisp timestamp classification. */
enum timeform
{
TIMEFORM_INVALID = 0,
TIMEFORM_HI_LO, /* seconds in the form (HI << LO_TIME_BITS) + LO. */
TIMEFORM_HI_LO_US, /* seconds plus microseconds (HI LO US) */
TIMEFORM_NIL, /* current time in nanoseconds */
TIMEFORM_HI_LO_US_PS, /* seconds plus micro and picoseconds (HI LO US PS) */
TIMEFORM_FLOAT, /* time as a float */
TIMEFORM_TICKS_HZ /* fractional time: HI is ticks, LO is ticks per second */
};
/* From the non-float form FORM and the time components HIGH, LOW, USEC
and PSEC, generate the corresponding time value in CFORM form. If LOW is
floating point, the other components should be zero and FORM should
not be TIMEFORM_TICKS_HZ.
Return a (0, valid timestamp) pair if successful, an (error number,
unspecified timestamp) pair otherwise. */
static struct err_time
decode_time_components (enum timeform form,
Lisp_Object high, Lisp_Object low,
Lisp_Object usec, Lisp_Object psec,
enum cform cform)
{
Lisp_Object ticks, hz;
switch (form)
{
case TIMEFORM_INVALID:
return (struct err_time) { .err = EINVAL };
case TIMEFORM_TICKS_HZ:
if (! (INTEGERP (high)
&& !NILP (Fnatnump (low)) && !BASE_EQ (low, make_fixnum (0))))
return (struct err_time) { .err = EINVAL };
ticks = high;
hz = low;
break;
case TIMEFORM_FLOAT:
eassume (false);
case TIMEFORM_NIL:
ticks = timespec_ticks (current_timespec ());
hz = timespec_hz;
break;
default:
if (! (INTEGERP (high) && INTEGERP (low)
&& FIXNUMP (usec) && FIXNUMP (psec)))
return (struct err_time) { .err = EINVAL };
{
EMACS_INT us = XFIXNUM (usec);
EMACS_INT ps = XFIXNUM (psec);
/* Normalize out-of-range lower-order components by carrying
each overflow into the next higher-order component. */
us += ps / 1000000 - (ps % 1000000 < 0);
mpz_t *s = &mpz[1];
mpz_set_intmax (*s, us / 1000000 - (us % 1000000 < 0));
mpz_add (*s, *s, *bignum_integer (&mpz[0], low));
mpz_addmul_ui (*s, *bignum_integer (&mpz[0], high), 1 << LO_TIME_BITS);
ps = ps % 1000000 + 1000000 * (ps % 1000000 < 0);
us = us % 1000000 + 1000000 * (us % 1000000 < 0);
switch (form)
{
case TIMEFORM_HI_LO:
/* Floats and nil were handled above, so it was an integer. */
mpz_swap (mpz[0], *s);
hz = make_fixnum (1);
break;
case TIMEFORM_HI_LO_US:
mpz_set_ui (mpz[0], us);
mpz_addmul_ui (mpz[0], *s, 1000000);
hz = make_fixnum (1000000);
break;
case TIMEFORM_HI_LO_US_PS:
{
#if FASTER_TIMEFNS && TRILLION <= ULONG_MAX
unsigned long i = us;
mpz_set_ui (mpz[0], i * 1000000 + ps);
mpz_addmul_ui (mpz[0], *s, TRILLION);
#else
intmax_t i = us;
mpz_set_intmax (mpz[0], i * 1000000 + ps);
mpz_addmul (mpz[0], *s, ztrillion);
#endif
hz = trillion;
}
break;
default:
eassume (false);
}
ticks = make_integer_mpz ();
}
break;
}
return (struct err_time) { .time = decode_ticks_hz (ticks, hz, cform) };
}
/* A (Lisp timeform, C timestamp) pair. */
struct form_time
{
enum timeform form;
union c_time time;
};
/* Decode a Lisp timestamp SPECIFIED_TIME that represents a time.
Return a (form, time) pair that is the form of SPECIFIED-TIME
and the resulting C timestamp in CFORM form.
If CFORM == CFORM_SECS_ONLY, ignore and do not validate any sub-second
components of an old-format SPECIFIED_TIME.
Signal an error if unsuccessful. */
static struct form_time
decode_lisp_time (Lisp_Object specified_time, enum cform cform)
{
Lisp_Object high = make_fixnum (0);
Lisp_Object low = specified_time;
Lisp_Object usec = make_fixnum (0);
Lisp_Object psec = make_fixnum (0);
enum timeform form = TIMEFORM_HI_LO;
if (NILP (specified_time))
form = TIMEFORM_NIL;
else if (CONSP (specified_time))
{
high = XCAR (specified_time);
low = XCDR (specified_time);
if (CONSP (low))
{
Lisp_Object low_tail = XCDR (low);
low = XCAR (low);
if (cform != CFORM_SECS_ONLY)
{
if (CONSP (low_tail))
{
usec = XCAR (low_tail);
low_tail = XCDR (low_tail);
if (CONSP (low_tail))
{
psec = XCAR (low_tail);
form = TIMEFORM_HI_LO_US_PS;
}
else
form = TIMEFORM_HI_LO_US;
}
else if (!NILP (low_tail))
{
usec = low_tail;
form = TIMEFORM_HI_LO_US;
}
}
}
else
{
form = TIMEFORM_TICKS_HZ;
}
/* Require LOW to be an integer, as otherwise the computation
would be considerably trickier. */
if (! INTEGERP (low))
form = TIMEFORM_INVALID;
}
else if (FASTER_TIMEFNS && INTEGERP (specified_time))
return (struct form_time)
{
.form = form,
.time = decode_ticks_hz (specified_time, make_fixnum (1), cform)
};
else if (FLOATP (specified_time))
{
double d = XFLOAT_DATA (specified_time);
if (!isfinite (d))
time_error (isnan (d) ? EDOM : EOVERFLOW);
return (struct form_time)
{
.form = TIMEFORM_FLOAT,
.time = decode_float_time (d, cform)
};
}
struct err_time err_time
= decode_time_components (form, high, low, usec, psec, cform);
if (err_time.err)
time_error (err_time.err);
return (struct form_time) { .form = form, .time = err_time.time };
}
/* Convert a non-float Lisp timestamp SPECIFIED_TIME to double.
Signal an error if unsuccessful. */
double
float_time (Lisp_Object specified_time)
{
return decode_lisp_time (specified_time, CFORM_DOUBLE).time.d;
}
/* Convert (HIGH LOW USEC PSEC) to struct timespec.
Return a valid timestamp if successful, an invalid one otherwise. */
struct timespec
list4_to_timespec (Lisp_Object high, Lisp_Object low,
Lisp_Object usec, Lisp_Object psec)
{
struct err_time err_time
= decode_time_components (TIMEFORM_HI_LO_US_PS, high, low, usec, psec,
CFORM_TIMESPEC);
return err_time.err ? invalid_timespec () : err_time.time.ts;
}
/* Decode a Lisp list SPECIFIED_TIME that represents a time.
If SPECIFIED_TIME is nil, use the current time.
Decode to CFORM form.
Signal an error if SPECIFIED_TIME does not represent a time. */
static union c_time
lisp_time_struct (Lisp_Object specified_time, enum cform cform)
{
return decode_lisp_time (specified_time, cform).time;
}
/* Decode a Lisp list SPECIFIED_TIME that represents a time.
Discard any low-order (sub-ns) resolution.
If SPECIFIED_TIME is nil, use the current time.
Signal an error if SPECIFIED_TIME does not represent a timespec. */
struct timespec
lisp_time_argument (Lisp_Object specified_time)
{
struct timespec t = lisp_time_struct (specified_time, CFORM_TIMESPEC).ts;
if (! timespec_valid_p (t))
time_overflow ();
return t;
}
/* Like lisp_time_argument, except decode only the seconds part, and
do not check the subseconds part. */
static time_t
lisp_seconds_argument (Lisp_Object specified_time)
{
struct timespec t
= decode_lisp_time (specified_time, CFORM_SECS_ONLY).time.ts;
if (! timespec_valid_p (t))
time_overflow ();
return t.tv_sec;
}
/* Return the sum of the Lisp integers A and B.
Subtract instead of adding if SUBTRACT.
This function is tuned for small B. */
static Lisp_Object
lispint_arith (Lisp_Object a, Lisp_Object b, bool subtract)
{
bool mpz_done = false;
if (FASTER_TIMEFNS && FIXNUMP (b))
{
if (BASE_EQ (b, make_fixnum (0)))
return a;
/* For speed, use EMACS_INT arithmetic if it will do. */
if (FIXNUMP (a))
return make_int (subtract
? XFIXNUM (a) - XFIXNUM (b)
: XFIXNUM (a) + XFIXNUM (b));
/* For speed, use mpz_add_ui/mpz_sub_ui if it will do. */
if (eabs (XFIXNUM (b)) <= ULONG_MAX)
{
((XFIXNUM (b) < 0) == subtract ? mpz_add_ui : mpz_sub_ui)
(mpz[0], *xbignum_val (a), eabs (XFIXNUM (b)));
mpz_done = true;
}
}
/* Fall back on bignum arithmetic if necessary. */
if (!mpz_done)
(subtract ? mpz_sub : mpz_add) (mpz[0],
*bignum_integer (&mpz[0], a),
*bignum_integer (&mpz[1], b));
return make_integer_mpz ();
}
/* Given Lisp operands A and B, add their values, and return the
result as a Lisp timestamp. Subtract instead of adding if SUBTRACT. */
static Lisp_Object
time_arith (Lisp_Object a, Lisp_Object b, bool subtract)
{
struct form_time
fta = decode_lisp_time (a, CFORM_TICKS_HZ),
ftb = decode_lisp_time (b, CFORM_TICKS_HZ);
enum timeform aform = fta.form, bform = ftb.form;
struct ticks_hz ta = fta.time.th, tb = ftb.time.th;
Lisp_Object ticks, hz;
if (FASTER_TIMEFNS && BASE_EQ (ta.hz, tb.hz))
{
hz = ta.hz;
ticks = lispint_arith (ta.ticks, tb.ticks, subtract);
}
else
{
/* The plan is to decompose ta into na/da and tb into nb/db.
Start by computing da and db, their minimum (which will be
needed later) and the iticks temporary that will become
available once only their minimum is needed. */
mpz_t const *da = bignum_integer (&mpz[1], ta.hz);
mpz_t const *db = bignum_integer (&mpz[2], tb.hz);
bool da_lt_db = mpz_cmp (*da, *db) < 0;
mpz_t const *hzmin = da_lt_db ? da : db;
mpz_t *iticks = &mpz[da_lt_db + 1];
/* The plan is to compute (na * (db/g) + nb * (da/g)) / lcm (da, db)
where g = gcd (da, db). Start by computing g. */
mpz_t *g = &mpz[3];
mpz_gcd (*g, *da, *db);
/* fa = da/g, fb = db/g. */
mpz_t *fa = &mpz[4], *fb = &mpz[3];
mpz_divexact (*fa, *da, *g);
mpz_divexact (*fb, *db, *g);
/* ihz = fa * db. This is equal to lcm (da, db). */
mpz_t *ihz = &mpz[0];
mpz_mul (*ihz, *fa, *db);
/* iticks = (fb * na) OP (fa * nb), where OP is + or -. */
mpz_t const *na = bignum_integer (iticks, ta.ticks);
mpz_mul (*iticks, *fb, *na);
mpz_t const *nb = bignum_integer (&mpz[3], tb.ticks);
(subtract ? mpz_submul : mpz_addmul) (*iticks, *fa, *nb);
/* Normalize iticks/ihz by dividing both numerator and
denominator by ig = gcd (iticks, ihz). For speed, though,
skip this division if ihz = 1. */
mpz_t *ig = &mpz[3];
mpz_gcd (*ig, *iticks, *ihz);
if (!FASTER_TIMEFNS || mpz_cmp_ui (*ig, 1) > 0)
{
mpz_divexact (*iticks, *iticks, *ig);
mpz_divexact (*ihz, *ihz, *ig);
/* However, if dividing the denominator by ig would cause the
denominator to become less than hzmin, rescale the denominator
upwards by multiplying the normalized numerator and denominator
so that the resulting denominator becomes at least hzmin.
This rescaling avoids returning a timestamp that is less precise
than both a and b. */
if (!FASTER_TIMEFNS || mpz_cmp (*ihz, *hzmin) < 0)
{
/* Rescale straightforwardly. Although this might not
yield the minimal denominator that preserves numeric
value and is at least hzmin, calculating such a
denominator would be too expensive because it would
require testing multisets of factors of lcm (da, db). */
mpz_t *rescale = &mpz[3];
mpz_cdiv_q (*rescale, *hzmin, *ihz);
mpz_mul (*iticks, *iticks, *rescale);
mpz_mul (*ihz, *ihz, *rescale);
}
}
/* mpz[0] and iticks now correspond to the (HZ . TICKS) pair. */
hz = make_integer_mpz ();
mpz_swap (mpz[0], *iticks);
ticks = make_integer_mpz ();
}
/* Return an integer if the timestamp resolution is 1,
otherwise the (TICKS . HZ) form if !current_time_list or if
either input used (TICKS . HZ) form or the result can't be expressed
exactly in (HI LO US PS) form, otherwise the (HI LO US PS) form
for backward compatibility. */
return (BASE_EQ (hz, make_fixnum (1))
? ticks
: (!current_time_list
|| aform == TIMEFORM_TICKS_HZ
|| bform == TIMEFORM_TICKS_HZ
|| !trillion_factor (hz))
? Fcons (ticks, hz)
: ticks_hz_list4 (ticks, hz));
}
DEFUN ("time-add", Ftime_add, Stime_add, 2, 2, 0,
doc: /* Return the sum of two time values A and B, as a time value.
See `format-time-string' for the various forms of a time value.
For example, nil stands for the current time. */)
(Lisp_Object a, Lisp_Object b)
{
return time_arith (a, b, false);
}
DEFUN ("time-subtract", Ftime_subtract, Stime_subtract, 2, 2, 0,
doc: /* Return the difference between two time values A and B, as a time value.
You can use `float-time' to convert the difference into elapsed seconds.
See `format-time-string' for the various forms of a time value.
For example, nil stands for the current time. */)
(Lisp_Object a, Lisp_Object b)
{
/* Subtract nil from nil correctly, and handle other eq values
quicker while we're at it. This means (time-subtract X X) does
not signal an error if X is not a valid time value, but that's OK. */
if (BASE_EQ (a, b))
return make_lisp_time ((struct timespec) {0});
return time_arith (a, b, true);
}
/* Return negative, 0, positive if A < B, A == B, A > B respectively.
A and B should be Lisp time values. */
static EMACS_INT
time_cmp (Lisp_Object a, Lisp_Object b)
{
/* Compare nil to nil correctly, and handle other eq values quicker
while we're at it. This means (time-equal-p X X) does not signal
an error if X is not a valid time value, but that's OK. */
if (BASE_EQ (a, b))
return 0;
/* Compare (X . Z) to (Y . Z) quickly if X and Y are fixnums.
Do not inspect Z, as it is OK to not signal if A and B are invalid.
Also, compare X to Y quickly if X and Y are fixnums. */
if (FASTER_TIMEFNS)
{
Lisp_Object x = a, y = b;
if (CONSP (a) && CONSP (b) && BASE_EQ (XCDR (a), XCDR (b)))
x = XCAR (a), y = XCAR (b);
if (FIXNUMP (x) && FIXNUMP (y))
return XFIXNUM (x) - XFIXNUM (y);
}
/* Compare (ATICKS . AZ) to (BTICKS . BHZ) by comparing
ATICKS * BHZ to BTICKS * AHZ. */
struct ticks_hz ta = lisp_time_struct (a, CFORM_TICKS_HZ).th;
struct ticks_hz tb = lisp_time_struct (b, CFORM_TICKS_HZ).th;
mpz_t const *za = bignum_integer (&mpz[0], ta.ticks);
mpz_t const *zb = bignum_integer (&mpz[1], tb.ticks);
if (! (FASTER_TIMEFNS && BASE_EQ (ta.hz, tb.hz)))
{
/* This could be sped up by looking at the signs, sizes, and
number of bits of the two sides; see how GMP does mpq_cmp.
It may not be worth the trouble here, though. */
mpz_mul (mpz[0], *za, *bignum_integer (&mpz[2], tb.hz));
mpz_mul (mpz[1], *zb, *bignum_integer (&mpz[2], ta.hz));
za = &mpz[0];
zb = &mpz[1];
}
return mpz_cmp (*za, *zb);
}
DEFUN ("time-less-p", Ftime_less_p, Stime_less_p, 2, 2, 0,
doc: /* Return non-nil if time value A is less than time value B.
See `format-time-string' for the various forms of a time value.
For example, nil stands for the current time. */)
(Lisp_Object a, Lisp_Object b)
{
return time_cmp (a, b) < 0 ? Qt : Qnil;
}
DEFUN ("time-equal-p", Ftime_equal_p, Stime_equal_p, 2, 2, 0,
doc: /* Return non-nil if A and B are equal time values.
See `format-time-string' for the various forms of a time value. */)
(Lisp_Object a, Lisp_Object b)
{
/* A nil arg compares unequal to a non-nil arg. This also saves the
expense of current_timespec if either arg is nil. */
return NILP (a) == NILP (b) && time_cmp (a, b) == 0 ? Qt : Qnil;
}
\f
DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
doc: /* Return the current time, as a float number of seconds since the epoch.
If SPECIFIED-TIME is given, it is a time value to convert to float
instead of the current time. See `format-time-string' for the various
forms of a time value.
WARNING: Since the result is floating point, it may not be exact.
If precise time stamps are required, use either `time-convert',
or (if you need time as a string) `format-time-string'. */)
(Lisp_Object specified_time)
{
return (FLOATP (specified_time) ? specified_time
: make_float (float_time (specified_time)));
}
/* Write information into buffer S of size MAXSIZE, according to the
FORMAT of length FORMAT_LEN, using time information taken from *TP.
Use the time zone specified by TZ.
Use NS as the number of nanoseconds in the %N directive.
Return the number of bytes written, not including the terminating
'\0'. If S is NULL, nothing will be written anywhere; so to
determine how many bytes would be written, use NULL for S and
((size_t) -1) for MAXSIZE.
This function behaves like nstrftime, except it allows null
bytes in FORMAT. */
static size_t
emacs_nmemftime (char *s, size_t maxsize, const char *format,
size_t format_len, const struct tm *tp, timezone_t tz, int ns)
{
int saved_errno = errno;
size_t total = 0;
/* Loop through all the null-terminated strings in the format
argument. Normally there's just one null-terminated string, but
there can be arbitrarily many, concatenated together, if the
format contains '\0' bytes. nstrftime stops at the first
'\0' byte so we must invoke it separately for each such string. */
for (;;)
{
errno = 0;
size_t result = nstrftime (s, maxsize, format, tp, tz, ns);
if (result == 0 && errno != 0)
return result;
if (s)
s += result + 1;
maxsize -= result + 1;
total += result;
size_t len = strlen (format);
if (len == format_len)
break;
total++;
format += len + 1;
format_len -= len + 1;
}
errno = saved_errno;
return total;
}
static Lisp_Object
format_time_string (char const *format, ptrdiff_t formatlen,
struct timespec t, Lisp_Object zone, struct tm *tmp)
{
char buffer[4000];
char *buf = buffer;
ptrdiff_t size = sizeof buffer;
size_t len;
int ns = t.tv_nsec;
USE_SAFE_ALLOCA;
timezone_t tz = tzlookup (zone, false);
/* On some systems, like 32-bit MinGW, tv_sec of struct timespec is
a 64-bit type, but time_t is a 32-bit type. emacs_localtime_rz
expects a pointer to time_t value. */
time_t tsec = t.tv_sec;
tmp = emacs_localtime_rz (tz, &tsec, tmp);
if (! tmp)
{
int localtime_errno = errno;
xtzfree (tz);
time_error (localtime_errno);
}
synchronize_system_time_locale ();
while (true)
{
errno = 0;
len = emacs_nmemftime (buf, size, format, formatlen, tmp, tz, ns);
if (len != 0 || errno == 0)
break;
eassert (errno == ERANGE);
/* Buffer was too small, so make it bigger and try again. */
len = emacs_nmemftime (NULL, SIZE_MAX, format, formatlen, tmp, tz, ns);
if (STRING_BYTES_BOUND <= len)
{
xtzfree (tz);
string_overflow ();
}
size = len + 1;
buf = SAFE_ALLOCA (size);
}
xtzfree (tz);
AUTO_STRING_WITH_LEN (bufstring, buf, len);
Lisp_Object result = code_convert_string_norecord (bufstring,
Vlocale_coding_system, 0);
SAFE_FREE ();
return result;
}
DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
doc: /* Use FORMAT-STRING to format the time value TIME.
A time value that is omitted or nil stands for the current time,
a number stands for that many seconds, an integer pair (TICKS . HZ)
stands for TICKS/HZ seconds, and an integer list (HI LO US PS) stands
for HI*2**16 + LO + US/10**6 + PS/10**12 seconds. This function
treats seconds as time since the epoch of 1970-01-01 00:00:00 UTC.
The optional ZONE is omitted or nil for Emacs local time, t for
Universal Time, `wall' for system wall clock time, or a string as in
the TZ environment variable. It can also be a list (as from
`current-time-zone') or an integer (as from `decode-time') applied
without consideration for daylight saving time.
The value is a copy of FORMAT-STRING, but with certain constructs replaced
by text that describes the specified date and time in TIME:
%Y is the year, %y year without century, %C the century.
%G is the year corresponding to the ISO week, %g year corresponding
to the ISO week, without century.
%m is the numeric month.
%b and %h are the locale's abbreviated month name, %B the full name.
(%h is not supported on MS-Windows.)
%d is the day of the month, zero-padded, %e is blank-padded.
%u is the numeric day of week from 1 (Monday) to 7, %w from 0 (Sunday) to 6.
%a is the locale's abbreviated name of the day of week, %A the full name.
%U is the week number starting on Sunday, %W starting on Monday,
%V the week number according to ISO 8601.
%j is the day of the year.
%H is the hour on a 24-hour clock, %I is on a 12-hour clock, %k is like %H
only blank-padded, %l is like %I blank-padded.
%p is the locale's equivalent of either AM or PM.
%q is the calendar quarter (1–4).
%M is the minute (00-59).
%S is the second (00-59; 00-60 on platforms with leap seconds)
%s is the number of seconds since 1970-01-01 00:00:00 +0000.
%N is the nanosecond, %6N the microsecond, %3N the millisecond, etc.
%Z is the time zone abbreviation, %z is the numeric form.
%c is the locale's date and time format.
%x is the locale's "preferred" date format.
%D is like "%m/%d/%y".
%F is the ISO 8601 date format (like "%+4Y-%m-%d").
%R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p".
%X is the locale's "preferred" time format.
Finally, %n is a newline, %t is a tab, %% is a literal %, and
unrecognized %-sequences stand for themselves.
A %-sequence can contain optional flags, field width, and a modifier
(in that order) after the `%'. The flags are:
`-' Do not pad the field.
`_' Pad with spaces.
`0' Pad with zeros.
`+' Pad with zeros and put `+' before nonnegative year numbers with >4 digits.
`^' Use upper case characters if possible.
`#' Use opposite case characters if possible.
A field width N is an unsigned decimal integer with a leading digit
nonzero. %NX is like %X, but takes up at least N positions. The
field width is (on GNU/Linux and some other systems) in measured in
bytes, not characters. It depends on the locale what the width (in
characters) %NX will end up being, especially when there are non-ASCII
characters in %X.
The modifiers are:
`E' Use the locale's alternative version.
`O' Use the locale's number symbols.
For example, to produce full ISO 8601 format, use "%FT%T%z".
usage: (format-time-string FORMAT-STRING &optional TIME ZONE) */)
(Lisp_Object format_string, Lisp_Object timeval, Lisp_Object zone)
{
struct timespec t = lisp_time_argument (timeval);
struct tm tm;
CHECK_STRING (format_string);
format_string = code_convert_string_norecord (format_string,
Vlocale_coding_system, 1);
return format_time_string (SSDATA (format_string), SBYTES (format_string),
t, zone, &tm);
}
DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 3, 0,
doc: /* Decode a timestamp into (SEC MINUTE HOUR DAY MONTH YEAR DOW DST UTCOFF).
The optional TIME is the time value to convert. See
`format-time-string' for the various forms of a time value.
The optional ZONE is omitted or nil for Emacs local time, t for
Universal Time, `wall' for system wall clock time, or a string as in
the TZ environment variable. It can also be a list (as from
`current-time-zone') or an integer (the UTC offset in seconds) applied
without consideration for daylight saving time.
The optional FORM specifies the form of the SEC member. If `integer',
SEC is an integer; if t, SEC is an integer or (TICKS . HZ) timestamp
with the same precision as TIME. An omitted or nil FORM is currently
treated like `integer', but this may change in future Emacs versions.
To access (or alter) the elements in the time value, the
`decoded-time-second', `decoded-time-minute', `decoded-time-hour',
`decoded-time-day', `decoded-time-month', `decoded-time-year',
`decoded-time-weekday', `decoded-time-dst' and `decoded-time-zone'
accessors can be used.
The list has the following nine members: SEC is an integer or
Lisp timestamp representing a nonnegative value less than 60
\(or less than 61 if the operating system supports leap seconds).
MINUTE is an integer between 0 and 59. HOUR is an integer
between 0 and 23. DAY is an integer between 1 and 31. MONTH is an
integer between 1 and 12. YEAR is the year number, an integer; 0
represents 1 BC. DOW is the day of week, an integer between 0 and 6,
where 0 is Sunday. DST is t if daylight saving time is in effect,
nil if it is not in effect, and -1 if daylight saving information is
not available. UTCOFF is an integer indicating the UTC offset in
seconds, i.e., the number of seconds east of Greenwich. (Note that
Common Lisp has different meanings for DOW and UTCOFF, and its
SEC is always an integer between 0 and 59.)
usage: (decode-time &optional TIME ZONE FORM) */)
(Lisp_Object specified_time, Lisp_Object zone, Lisp_Object form)
{
/* Convert SPECIFIED_TIME to TIME_SPEC and HZ;
if HZ != 1 also set TH.ticks. */
time_t time_spec;
Lisp_Object hz;
struct ticks_hz th;
if (EQ (form, Qt))
{
th = lisp_time_struct (specified_time, CFORM_TICKS_HZ).th;
struct timespec ts = ticks_hz_to_timespec (th.ticks, th.hz);
if (! timespec_valid_p (ts))
time_overflow ();
time_spec = ts.tv_sec;
hz = th.hz;
}
else
{
time_spec = lisp_seconds_argument (specified_time);
hz = make_fixnum (1);
}
/* Compute broken-down local time LOCAL_TM from TIME_SPEC and ZONE. */
struct tm local_tm, gmt_tm;
timezone_t tz = tzlookup (zone, false);
struct tm *tm = emacs_localtime_rz (tz, &time_spec, &local_tm);
int localtime_errno = errno;
xtzfree (tz);
if (!tm)
time_error (localtime_errno);
/* Let YEAR = LOCAL_TM.tm_year + TM_YEAR_BASE. */
Lisp_Object year;
if (FASTER_TIMEFNS
&& MOST_NEGATIVE_FIXNUM - TM_YEAR_BASE <= local_tm.tm_year
&& local_tm.tm_year <= MOST_POSITIVE_FIXNUM - TM_YEAR_BASE)
{
/* Avoid overflow when INT_MAX - TM_YEAR_BASE < local_tm.tm_year. */
EMACS_INT tm_year_base = TM_YEAR_BASE;
year = make_fixnum (local_tm.tm_year + tm_year_base);
}
else
{
mpz_set_si (mpz[0], local_tm.tm_year);
mpz_add_ui (mpz[0], mpz[0], TM_YEAR_BASE);
year = make_integer_mpz ();
}
/* Compute SEC from LOCAL_TM.tm_sec and HZ. */
Lisp_Object sec;
if (BASE_EQ (hz, make_fixnum (1)))
sec = make_fixnum (local_tm.tm_sec);
else
{
/* Let TICKS = HZ * LOCAL_TM.tm_sec + mod (TH.ticks, HZ)
and SEC = (TICKS . HZ). */
Lisp_Object ticks;
intmax_t n;
if (FASTER_TIMEFNS && FIXNUMP (th.ticks) && FIXNUMP (hz)
&& !ckd_mul (&n, XFIXNUM (hz), local_tm.tm_sec)
&& !ckd_add (&n, n, (XFIXNUM (th.ticks) % XFIXNUM (hz)
+ (XFIXNUM (th.ticks) % XFIXNUM (hz) < 0
? XFIXNUM (hz) : 0))))
ticks = make_int (n);
else
{
mpz_fdiv_r (mpz[0],
*bignum_integer (&mpz[0], th.ticks),
*bignum_integer (&mpz[1], hz));
mpz_addmul_ui (mpz[0], *bignum_integer (&mpz[1], hz),
local_tm.tm_sec);
ticks = make_integer_mpz ();
}
sec = Fcons (ticks, hz);
}
return CALLN (Flist,
sec,
make_fixnum (local_tm.tm_min),
make_fixnum (local_tm.tm_hour),
make_fixnum (local_tm.tm_mday),
make_fixnum (local_tm.tm_mon + 1),
year,
make_fixnum (local_tm.tm_wday),
(local_tm.tm_isdst < 0 ? make_fixnum (-1)
: local_tm.tm_isdst == 0 ? Qnil : Qt),
(HAVE_TM_GMTOFF
? make_fixnum (tm_gmtoff (&local_tm))
: gmtime_r (&time_spec, &gmt_tm)
? make_fixnum (tm_diff (&local_tm, &gmt_tm))
: Qnil));
}
/* Return OBJ - OFFSET, checking that OBJ is a valid integer and that
the result is representable as an int. 0 <= OFFSET <= TM_YEAR_BASE. */
static int
check_tm_member (Lisp_Object obj, int offset)
{
if (FASTER_TIMEFNS && INT_MAX <= MOST_POSITIVE_FIXNUM - TM_YEAR_BASE)
{
CHECK_FIXNUM (obj);
EMACS_INT n = XFIXNUM (obj);
int i;
if (ckd_sub (&i, n, offset))
time_overflow ();
return i;
}
else
{
CHECK_INTEGER (obj);
mpz_sub_ui (mpz[0], *bignum_integer (&mpz[0], obj), offset);
intmax_t i;
if (! (mpz_to_intmax (mpz[0], &i) && INT_MIN <= i && i <= INT_MAX))
time_overflow ();
return i;
}
}
DEFUN ("encode-time", Fencode_time, Sencode_time, 1, MANY, 0,
doc: /* Convert TIME to a timestamp.
TIME is a list (SECOND MINUTE HOUR DAY MONTH YEAR IGNORED DST ZONE)
in the style of `decode-time', so that (encode-time (decode-time ...)) works.
In this list, ZONE can be nil for Emacs local time, t for Universal
Time, `wall' for system wall clock time, or a string as in the TZ
environment variable. ZONE can also be a list (as from
`current-time-zone') or an integer (as from `decode-time') applied
without consideration for daylight saving time. If ZONE specifies a
time zone with daylight-saving transitions, DST is t for daylight
saving time, nil for standard time, and -1 to cause the daylight
saving flag to be guessed.
TIME can also be a list (SECOND MINUTE HOUR DAY MONTH YEAR), which is
equivalent to (SECOND MINUTE HOUR DAY MONTH YEAR nil -1 nil).
As an obsolescent calling convention, if this function is called with
6 or more arguments, the first 6 arguments are SECOND, MINUTE, HOUR,
DAY, MONTH, and YEAR, and specify the components of a decoded time.
If there are more than 6 arguments the *last* argument is used as ZONE
and any other extra arguments are ignored, so that (apply
#\\='encode-time (decode-time ...)) works. In this obsolescent
convention, DST is -1 and ZONE defaults to nil.
The range of supported years is at least 1970 to the near future.
Out-of-range values for SECOND through MONTH are brought into range
via date arithmetic. This can be tricky especially when combined with
DST; see Info node `(elisp)Time Conversion' for details and caveats.
usage: (encode-time TIME &rest OBSOLESCENT-ARGUMENTS) */)
(ptrdiff_t nargs, Lisp_Object *args)
{
struct tm tm;
Lisp_Object zone = Qnil;
Lisp_Object a = args[0];
Lisp_Object secarg, minarg, hourarg, mdayarg, monarg, yeararg;
tm.tm_isdst = -1;
if (nargs == 1)
{
Lisp_Object tail = a;
for (int i = 0; i < 6; i++, tail = XCDR (tail))
CHECK_CONS (tail);
secarg = XCAR (a); a = XCDR (a);
minarg = XCAR (a); a = XCDR (a);
hourarg = XCAR (a); a = XCDR (a);
mdayarg = XCAR (a); a = XCDR (a);
monarg = XCAR (a); a = XCDR (a);
yeararg = XCAR (a); a = XCDR (a);
if (! NILP (a))
{
CHECK_CONS (a);
a = XCDR (a);
CHECK_CONS (a);
Lisp_Object dstflag = XCAR (a); a = XCDR (a);
CHECK_CONS (a);
zone = XCAR (a);
if (SYMBOLP (dstflag) && !FIXNUMP (zone) && !CONSP (zone))
tm.tm_isdst = !NILP (dstflag);
}
}
else if (nargs < 6)
xsignal2 (Qwrong_number_of_arguments, Qencode_time, make_fixnum (nargs));
else
{
if (6 < nargs)
zone = args[nargs - 1];
secarg = a;
minarg = args[1];
hourarg = args[2];
mdayarg = args[3];
monarg = args[4];
yeararg = args[5];
}
/* Let SEC = floor (TH.ticks / HZ), with SUBSECTICKS the remainder. */
struct ticks_hz th = decode_lisp_time (secarg, CFORM_TICKS_HZ).time.th;
Lisp_Object hz = th.hz, sec, subsecticks;
if (FASTER_TIMEFNS && BASE_EQ (hz, make_fixnum (1)))
{
sec = th.ticks;
subsecticks = make_fixnum (0);
}
else
{
mpz_fdiv_qr (mpz[0], mpz[1],
*bignum_integer (&mpz[0], th.ticks),
*bignum_integer (&mpz[1], hz));
sec = make_integer_mpz ();
mpz_swap (mpz[0], mpz[1]);
subsecticks = make_integer_mpz ();
}
tm.tm_sec = check_tm_member (sec, 0);
tm.tm_min = check_tm_member (minarg, 0);
tm.tm_hour = check_tm_member (hourarg, 0);
tm.tm_mday = check_tm_member (mdayarg, 0);
tm.tm_mon = check_tm_member (monarg, 1);
tm.tm_year = check_tm_member (yeararg, TM_YEAR_BASE);
timezone_t tz = tzlookup (zone, false);
tm.tm_wday = -1;
time_t value = mktime_z (tz, &tm);
int mktime_errno = errno;
xtzfree (tz);
if (tm.tm_wday < 0)
time_error (mktime_errno);
if (BASE_EQ (hz, make_fixnum (1)))
return (current_time_list
? list2 (hi_time (value), lo_time (value))
: INT_TO_INTEGER (value));
else
{
struct ticks_hz val1 = { INT_TO_INTEGER (value), make_fixnum (1) };
Lisp_Object secticks = ticks_hz_hz_ticks (val1, hz);
Lisp_Object ticks = lispint_arith (secticks, subsecticks, false);
return Fcons (ticks, hz);
}
}
DEFUN ("time-convert", Ftime_convert, Stime_convert, 1, 2, 0,
doc: /* Convert TIME value to a Lisp timestamp of the given FORM.
Truncate the returned value toward minus infinity.
If FORM is a positive integer, return a pair of integers (TICKS . FORM),
where TICKS is the number of clock ticks and FORM is the clock frequency
in ticks per second.
If FORM is t, return (TICKS . PHZ), where PHZ is a suitable clock
frequency in ticks per second.
If FORM is `integer', return an integer count of seconds.
If FORM is `list', return an integer list (HIGH LOW USEC PSEC), where
HIGH has the most significant bits of the seconds, LOW has the least
significant 16 bits, and USEC and PSEC are the microsecond and
picosecond counts.
If FORM is nil, the behavior depends on `current-time-list',
but new code should not rely on it. */)
(Lisp_Object time, Lisp_Object form)
{
/* FIXME: Any reason why we don't offer a `float` output format option as
well, since we accept it as input? */
struct form_time form_time = decode_lisp_time (time, CFORM_TICKS_HZ);
struct ticks_hz t = form_time.time.th;
form = (!NILP (form) ? maybe_remove_pos_from_symbol (form)
: current_time_list ? Qlist : Qt);
if (BASE_EQ (form, Qlist))
return ticks_hz_list4 (t.ticks, t.hz);
if (BASE_EQ (form, Qinteger))
return FASTER_TIMEFNS && INTEGERP (time) ? time : ticks_hz_seconds (t);
if (BASE_EQ (form, Qt))
form = t.hz;
if (FASTER_TIMEFNS
&& form_time.form == TIMEFORM_TICKS_HZ && BASE_EQ (form, XCDR (time)))
return time;
return Fcons (ticks_hz_hz_ticks (t, form), form);
}
DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
doc: /* Return the current time, as the number of seconds since 1970-01-01 00:00:00.
If the variable `current-time-list' is nil, the time is returned as a
pair of integers (TICKS . HZ), where TICKS counts clock ticks and HZ
is the clock ticks per second. Otherwise, the time is returned as a
list of integers (HIGH LOW USEC PSEC) where HIGH has the most
significant bits of the seconds, LOW has the least significant 16
bits, and USEC and PSEC are the microsecond and picosecond counts.
You can use `time-convert' to get a particular timestamp form
regardless of the value of `current-time-list'. */)
(void)
{
return make_lisp_time (current_timespec ());
}
#ifdef CLOCKS_PER_SEC
DEFUN ("current-cpu-time", Fcurrent_cpu_time, Scurrent_cpu_time, 0, 0, 0,
doc: /* Return the current CPU time along with its resolution.
The return value is a pair (CPU-TICKS . TICKS-PER-SEC).
The CPU-TICKS counter can wrap around, so values cannot be meaningfully
compared if too much time has passed between them. */)
(void)
{
return Fcons (make_int (clock ()), make_int (CLOCKS_PER_SEC));
}
#endif
DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string,
0, 2, 0,
doc: /* Return the current local time, as a human-readable string.
Programs can use this function to decode a time,
since the number of columns in each field is fixed
if the year is in the range 1000-9999.
The format is `Sun Sep 16 01:03:52 1973'.
However, see also the functions `decode-time' and `format-time-string'
which provide a much more powerful and general facility.
If SPECIFIED-TIME is given, it is the time value to format instead of
the current time. See `format-time-string' for the various forms of a
time value.
The optional ZONE is omitted or nil for Emacs local time, t for
Universal Time, `wall' for system wall clock time, or a string as in
the TZ environment variable. It can also be a list (as from
`current-time-zone') or an integer (as from `decode-time') applied
without consideration for daylight saving time. */)
(Lisp_Object specified_time, Lisp_Object zone)
{
time_t value = lisp_seconds_argument (specified_time);
timezone_t tz = tzlookup (zone, false);
/* Convert to a string in ctime format, except without the trailing
newline, and without the 4-digit year limit. Don't use asctime
or ctime, as they might dump core if the year is outside the
range -999 .. 9999. */
struct tm tm;
struct tm *tmp = emacs_localtime_rz (tz, &value, &tm);
int localtime_errno = errno;
xtzfree (tz);
if (! tmp)
time_error (localtime_errno);
static char const wday_name[][4] =
{ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
static char const mon_name[][4] =
{ "Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
intmax_t year_base = TM_YEAR_BASE;
char buf[sizeof "Mon Apr 30 12:49:17 " + INT_STRLEN_BOUND (int) + 1];
int len = sprintf (buf, "%s %s%3d %02d:%02d:%02d %"PRIdMAX,
wday_name[tm.tm_wday], mon_name[tm.tm_mon], tm.tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec,
tm.tm_year + year_base);
return make_unibyte_string (buf, len);
}
DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 2, 0,
doc: /* Return the offset and name for the local time zone.
This returns a list of the form (OFFSET NAME).
OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
A negative value means west of Greenwich.
NAME is a string giving the name of the time zone.
If SPECIFIED-TIME is given, the time zone offset is determined from it
instead of using the current time. The argument should be a Lisp
time value; see `format-time-string' for the various forms of a time
value.
The optional ZONE is omitted or nil for Emacs local time, t for
Universal Time, `wall' for system wall clock time, or a string as in
the TZ environment variable. It can also be a list (as from
`current-time-zone') or an integer (as from `decode-time') applied
without consideration for daylight saving time.
Some operating systems cannot provide all this information to Emacs;
in this case, `current-time-zone' returns a list containing nil for
the data it can't find. */)
(Lisp_Object specified_time, Lisp_Object zone)
{
struct timespec value;
struct tm local_tm, gmt_tm;
Lisp_Object zone_offset, zone_name;
zone_offset = Qnil;
value = make_timespec (lisp_seconds_argument (specified_time), 0);
zone_name = format_time_string ("%Z", sizeof "%Z" - 1, value,
zone, &local_tm);
/* gmtime_r expects a pointer to time_t, but tv_sec of struct
timespec on some systems (MinGW) is a 64-bit field. */
time_t tsec = value.tv_sec;
if (HAVE_TM_GMTOFF || gmtime_r (&tsec, &gmt_tm))
{
long int offset = (HAVE_TM_GMTOFF
? tm_gmtoff (&local_tm)
: tm_diff (&local_tm, &gmt_tm));
zone_offset = make_fixnum (offset);
if (SCHARS (zone_name) == 0)
{
/* No local time zone name is available; use numeric zone instead. */
long int hour = offset / 3600;
int min_sec = offset % 3600;
int amin_sec = min_sec < 0 ? - min_sec : min_sec;
int min = amin_sec / 60;
int sec = amin_sec % 60;
int min_prec = min_sec ? 2 : 0;
int sec_prec = sec ? 2 : 0;
char buf[sizeof "+0000" + INT_STRLEN_BOUND (long int)];
zone_name = make_formatted_string (buf, "%c%.2ld%.*d%.*d",
(offset < 0 ? '-' : '+'),
hour, min_prec, min, sec_prec, sec);
}
}
return list2 (zone_offset, zone_name);
}
DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule, 1, 1, 0,
doc: /* Set the Emacs local time zone using TZ, a string specifying a time zone rule.
If TZ is nil or `wall', use system wall clock time; this differs from
the usual Emacs convention where nil means current local time. If TZ
is t, use Universal Time. If TZ is a list (as from
`current-time-zone') or an integer (as from `decode-time'), use the
specified time zone without consideration for daylight saving time.
Instead of calling this function, you typically want something else.
To temporarily use a different time zone rule for just one invocation
of `decode-time', `encode-time', or `format-time-string', pass the
function a ZONE argument. To change local time consistently
throughout Emacs, call (setenv "TZ" TZ): this changes both the
environment of the Emacs process and the variable
`process-environment', whereas `set-time-zone-rule' affects only the
former. */)
(Lisp_Object tz)
{
tzlookup (NILP (tz) ? Qwall : tz, true);
return Qnil;
}
/* A buffer holding a string of the form "TZ=value", intended
to be part of the environment. If TZ is supposed to be unset,
the buffer string is "tZ=". */
static char *tzvalbuf;
/* Get the local time zone rule. */
char *
emacs_getenv_TZ (void)
{
return tzvalbuf[0] == 'T' ? tzvalbuf + tzeqlen : 0;
}
/* Set the local time zone rule to TZSTRING, which can be null to
denote wall clock time. Do not record the setting in LOCAL_TZ.
This function is not thread-safe, in theory because putenv is not,
but mostly because of the static storage it updates. Other threads
that invoke localtime etc. may be adversely affected while this
function is executing. */
int
emacs_setenv_TZ (const char *tzstring)
{
static ptrdiff_t tzvalbufsize;
ptrdiff_t tzstringlen = tzstring ? strlen (tzstring) : 0;
char *tzval = tzvalbuf;
bool new_tzvalbuf = tzvalbufsize <= tzeqlen + tzstringlen;
if (new_tzvalbuf)
{
/* Do not attempt to free the old tzvalbuf, since another thread
may be using it. In practice, the first allocation is large
enough and memory does not leak. */
tzval = xpalloc (NULL, &tzvalbufsize,
tzeqlen + tzstringlen - tzvalbufsize + 1, -1, 1);
tzvalbuf = tzval;
tzval[1] = 'Z';
tzval[2] = '=';
}
if (tzstring)
{
/* Modify TZVAL in place. Although this is dicey in a
multithreaded environment, we know of no portable alternative.
Calling putenv or setenv could crash some other thread. */
tzval[0] = 'T';
strcpy (tzval + tzeqlen, tzstring);
}
else
{
/* Turn 'TZ=whatever' into an empty environment variable 'tZ='.
Although this is also dicey, calling unsetenv here can crash Emacs.
See Bug#8705. */
tzval[0] = 't';
tzval[tzeqlen] = 0;
}
#ifndef WINDOWSNT
/* Modifying *TZVAL merely requires calling tzset (which is the
caller's responsibility). However, modifying TZVAL requires
calling putenv; although this is not thread-safe, in practice this
runs only on startup when there is only one thread. */
bool need_putenv = new_tzvalbuf;
#else
/* MS-Windows 'putenv' copies the argument string into a block it
allocates, so modifying *TZVAL will not change the environment.
However, the other threads run by Emacs on MS-Windows never call
'xputenv' or 'putenv' or 'unsetenv', so the original cause for the
dicey in-place modification technique doesn't exist there in the
first place. */
bool need_putenv = true;
#endif
if (need_putenv)
xputenv (tzval);
return 0;
}
#if (ULONG_MAX < TRILLION || !FASTER_TIMEFNS) && !defined ztrillion
# define NEED_ZTRILLION_INIT 1
#endif
#ifdef NEED_ZTRILLION_INIT
static void
syms_of_timefns_for_pdumper (void)
{
mpz_init_set_ui (ztrillion, 1000000);
mpz_mul_ui (ztrillion, ztrillion, 1000000);
}
#endif
void
syms_of_timefns (void)
{
#ifndef timespec_hz
timespec_hz = make_int (TIMESPEC_HZ);
staticpro (×pec_hz);
#endif
#ifndef trillion
trillion = make_int (1000000000000);
staticpro (&trillion);
#endif
DEFSYM (Qencode_time, "encode-time");
DEFVAR_BOOL ("current-time-list", current_time_list,
doc: /* Whether `current-time' should return list or (TICKS . HZ) form.
This boolean variable is a transition aid. If t, `current-time' and
related functions return timestamps in list form, typically
\(HIGH LOW USEC PSEC); otherwise, they use (TICKS . HZ) form.
Currently this variable defaults to t, for behavior compatible with
previous Emacs versions. Developers are encouraged to test
timestamp-related code with this variable set to nil, as it will
default to nil in a future Emacs version, and will be removed in some
version after that. */);
current_time_list = CURRENT_TIME_LIST;
defsubr (&Scurrent_time);
#ifdef CLOCKS_PER_SEC
defsubr (&Scurrent_cpu_time);
#endif
defsubr (&Stime_convert);
defsubr (&Stime_add);
defsubr (&Stime_subtract);
defsubr (&Stime_less_p);
defsubr (&Stime_equal_p);
defsubr (&Sformat_time_string);
defsubr (&Sfloat_time);
defsubr (&Sdecode_time);
defsubr (&Sencode_time);
defsubr (&Scurrent_time_string);
defsubr (&Scurrent_time_zone);
defsubr (&Sset_time_zone_rule);
flt_radix_power = make_nil_vector (flt_radix_power_size);
staticpro (&flt_radix_power);
#ifdef NEED_ZTRILLION_INIT
pdumper_do_now_and_after_load (syms_of_timefns_for_pdumper);
#endif
}
|