14#include "private/qcalendarmath_p.h"
15#include "private/qdatetime_p.h"
16#if QT_CONFIG(datetimeparser)
17#include "private/qdatetimeparser_p.h"
20#include "private/qcore_mac_p.h"
22#include "private/qgregoriancalendar_p.h"
23#include "private/qlocale_tools_p.h"
24#include "private/qlocaltime_p.h"
25#include "private/qnumeric_p.h"
26#include "private/qstringconverter_p.h"
27#include "private/qstringiterator_p.h"
28#if QT_CONFIG(timezone)
29#include "private/qtimezoneprivate_p.h"
34# include <qt_windows.h>
37#include <private/qtools_p.h>
41using namespace Qt::StringLiterals;
42using namespace QtPrivate::DateTimeConstants;
43using namespace QtMiscUtils;
46
47
50
51
52static_assert(std::is_trivially_copyable_v<QCalendar::YearMonthDay>);
54static inline QDate
fixedDate(QCalendar::YearMonthDay parts, QCalendar cal)
56 if ((parts.year < 0 && !cal.isProleptic()) || (parts.year == 0 && !cal.hasYearZero()))
59 parts.day = qMin(parts.day, cal.daysInMonth(parts.month, parts.year));
60 return cal.dateFromParts(parts);
63static inline QDate
fixedDate(QCalendar::YearMonthDay parts)
66 parts.day = qMin(parts.day, QGregorianCalendar::monthLength(parts.month, parts.year));
67 const auto jd = QGregorianCalendar::julianFromParts(parts.year, parts.month, parts.day);
69 return QDate::fromJulianDay(*jd);
75
76
78#if QT_CONFIG(textdate)
79static const char qt_shortMonthNames[][4] = {
80 "Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
81 "Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
84static int fromShortMonthName(QStringView monthName)
86 for (
unsigned int i = 0; i <
sizeof(qt_shortMonthNames) /
sizeof(qt_shortMonthNames[0]); ++i) {
87 if (monthName == QLatin1StringView(qt_shortMonthNames[i], 3))
94#if QT_CONFIG(datestring)
96using ParsedInt = QSimpleParsedNumber<qulonglong>;
99
100
101ParsedInt readInt(QLatin1StringView text)
107 if (text.isEmpty() || !isAsciiDigit(text.front().toLatin1()))
110 QSimpleParsedNumber res = qstrntoull(text.data(), text.size(), 10);
111 return res.used == text.size() ? res : ParsedInt{};
114ParsedInt readInt(QStringView text)
124 QVarLengthArray<
char> latin1(text.size());
125 QLatin1::convertFromUnicode(latin1.data(), text);
126 return readInt(QLatin1StringView{latin1.data(), latin1.size()});
131struct ParsedRfcDateTime {
137static int shortDayFromName(QStringView name)
139 const char16_t shortDayNames[] = u"MonTueWedThuFriSatSun";
140 for (
int i = 0; i < 7; i++) {
141 if (name == QStringView(shortDayNames + 3 * i, 3))
147static ParsedRfcDateTime rfcDateImpl(QStringView s)
151 ParsedRfcDateTime result;
153 QVarLengthArray<QStringView, 6> words;
155 auto tokens = s.tokenize(u' ', Qt::SkipEmptyParts);
156 auto it = tokens.begin();
157 for (
int i = 0; i < 6 && it != tokens.end(); ++i, ++it)
158 words.emplace_back(*it);
160 if (words.size() < 3 || it != tokens.end())
162 const QChar colon(u':');
166 const auto isShortName = [](QStringView name) {
167 return (name.size() == 3 && name[0].isUpper()
168 && name[1].isLower() && name[2].isLower());
172
173
178 const QStringView maybeDayName = words.front();
179 if (maybeDayName.endsWith(u',')) {
180 dayName = maybeDayName.chopped(1);
181 words.erase(words.begin());
182 }
else if (!maybeDayName.front().isDigit()) {
183 dayName = maybeDayName;
184 words.erase(words.begin());
187 if (words.size() < 3 || words.size() > 5)
191 int dayIndex, monthIndex;
201 yearIndex = words.size() > 3 && words.at(2).contains(colon) ? 3 : 2;
203 if (words.at(yearIndex).size() != 4)
207 if (!dayName.isEmpty()) {
208 if (!isShortName(dayName))
210 dayOfWeek = shortDayFromName(dayName);
215 const int day = words.at(dayIndex).toInt(&ok);
218 const int year = words.at(yearIndex).toInt(&ok);
221 const QStringView monthName = words.at(monthIndex);
222 if (!isShortName(monthName))
224 int month = fromShortMonthName(monthName);
228 date = QDate(year, month, day);
229 if (dayOfWeek && date.dayOfWeek() != dayOfWeek)
232 words.remove(yearIndex);
237 if (words.size() && words.at(0).contains(colon)) {
238 const QStringView when = words.front();
239 words.erase(words.begin());
240 if (when.size() < 5 || when[2] != colon
241 || (when.size() == 8 ? when[5] != colon : when.size() > 5)) {
244 const int hour = when.first(2).toInt(&ok);
247 const int minute = when.sliced(3, 2).toInt(&ok);
250 const auto secs = when.size() == 8 ? when.last(2).toInt(&ok) : 0;
253 time = QTime(hour, minute, secs);
259 const QStringView zone = words.front();
260 words.erase(words.begin());
261 if (words.size() || !(zone.size() == 3 || zone.size() == 5))
266 else if (zone[0] != u'+')
268 const int hour = zone.sliced(1, 2).toInt(&ok);
271 const auto minute = zone.size() == 5 ? zone.last(2).toInt(&ok) : 0;
274 offset = (hour * 60 + minute) * 60;
281 result.utcOffset = offset;
289 return QString::asprintf(
"%c%02d%s%02d",
290 offset >= 0 ?
'+' :
'-',
291 qAbs(offset) /
int(SECS_PER_HOUR),
293 format == Qt::TextDate ?
"" :
":",
294 (qAbs(offset) / 60) % 60);
297#if QT_CONFIG(datestring)
299static int fromOffsetString(QStringView offsetString,
bool *valid)
noexcept
303 const qsizetype size = offsetString.size();
304 if (size < 2 || size > 6)
311 const QChar signChar = offsetString[0];
312 if (signChar == u'+')
314 else if (signChar == u'-')
320 const QStringView time = offsetString.sliced(1);
321 qsizetype hhLen = time.indexOf(u':');
328 const QStringView hhRef = time.first(qMin(hhLen, time.size()));
330 const int hour = hhRef.toInt(&ok);
331 if (!ok || hour > 23)
334 const QStringView mmRef = time.sliced(qMin(mmIndex, time.size()));
335 const int minute = mmRef.isEmpty() ? 0 : mmRef.toInt(&ok);
336 if (!ok || minute < 0 || minute > 59)
340 return sign * ((hour * 60) + minute) * 60;
345
346
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
430
431
432
433
434
435
438
439
440
441
442
443
444
445
446
448QDate::QDate(
int y,
int m,
int d)
450 static_assert(maxJd() == JulianDayMax);
451 static_assert(minJd() == JulianDayMin);
452 jd = QGregorianCalendar::julianFromParts(y, m, d).value_or(nullJd());
455QDate::QDate(
int y,
int m,
int d, QCalendar cal)
457 *
this = cal.dateFromParts(y, m, d);
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
485
486
487
488
489
490
491
492
493
494
497
498
499
500
501
502
503
504
505
506
509
510
511
512
513
514
515
516
517
520
521
522
523
524
525
526
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
552int QDate::year(QCalendar cal)
const
555 const auto parts = cal.partsFromDate(*
this);
563
564
566int QDate::year()
const
569 const auto parts = QGregorianCalendar::partsFromJulian(jd);
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
606int QDate::month(QCalendar cal)
const
609 const auto parts = cal.partsFromDate(*
this);
617
618
620int QDate::month()
const
623 const auto parts = QGregorianCalendar::partsFromJulian(jd);
631
632
633
634
635
636
637
638
639
641int QDate::day(QCalendar cal)
const
644 const auto parts = cal.partsFromDate(*
this);
652
653
655int QDate::day()
const
658 const auto parts = QGregorianCalendar::partsFromJulian(jd);
666
667
668
669
670
671
672
673
674
675
677int QDate::dayOfWeek(QCalendar cal)
const
682 return cal.dayOfWeek(*
this);
686
687
689int QDate::dayOfWeek()
const
691 return isValid() ? QGregorianCalendar::weekDayOfJulian(jd) : 0;
695
696
697
698
699
700
701
702
703
705int QDate::dayOfYear(QCalendar cal)
const
708 QDate firstDay = cal.dateFromParts(year(cal), 1, 1);
709 if (firstDay.isValid())
710 return firstDay.daysTo(*
this) + 1;
716
719int QDate::dayOfYear()
const
722 if (
const auto first = QGregorianCalendar::julianFromParts(year(), 1, 1))
723 return jd - *first + 1;
729
730
731
732
733
734
735
736
737
738
740int QDate::daysInMonth(QCalendar cal)
const
743 const auto parts = cal.partsFromDate(*
this);
745 return cal.daysInMonth(parts.month, parts.year);
751
752
754int QDate::daysInMonth()
const
757 const auto parts = QGregorianCalendar::partsFromJulian(jd);
759 return QGregorianCalendar::monthLength(parts.month, parts.year);
765
766
767
768
769
770
771
772
773
775int QDate::daysInYear(QCalendar cal)
const
780 return cal.daysInYear(year(cal));
784
785
787int QDate::daysInYear()
const
789 return isValid() ? QGregorianCalendar::leapTest(year()) ? 366 : 365 : 0;
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
811int QDate::weekNumber(
int *yearNumber)
const
818 const QDate thursday(addDays(4 - dayOfWeek()));
820 *yearNumber = thursday.year();
823 return (thursday.dayOfYear() + 6) / 7;
826#if QT_DEPRECATED_SINCE(6
, 9
)
828static QTimeZone asTimeZone(Qt::TimeSpec spec,
int offset,
const char *warner)
833 qWarning(
"%s: Pass a QTimeZone instead of Qt::TimeZone.", warner);
837 qWarning(
"%s: Ignoring offset (%d seconds) passed with Qt::LocalTime",
843 qWarning(
"%s: Ignoring offset (%d seconds) passed with Qt::UTC",
848 case Qt::OffsetFromUTC:
852 return QTimeZone::isUtcOrFixedOffset(spec)
853 ? QTimeZone::fromSecondsAheadOfUtc(offset)
854 : QTimeZone(QTimeZone::LocalTime);
862 using Bounds = std::numeric_limits<qint64>;
863 if (jd < Bounds::min() + JULIAN_DAY_FOR_EPOCH)
865 jd -= JULIAN_DAY_FOR_EPOCH;
866 const qint64 maxDay = Bounds::max() / MSECS_PER_DAY;
867 const qint64 minDay = Bounds::min() / MSECS_PER_DAY - 1;
873 return jd > minDay && jd <= maxDay;
875 return jd >= minDay && jd < maxDay;
877 Q_UNREACHABLE_RETURN(
false);
882 Q_ASSERT(!zone.isUtcOrFixedOffset());
884 const auto moment = [=](QTime time) {
885 return QDateTime(day, time, zone, QDateTime::TransitionResolution::Reject);
888 QDateTime when = moment(QTime(2, 0));
889 if (!when.isValid()) {
891 when = moment(QTime(12, 0));
892 if (!when.isValid()) {
894 when = moment(QTime(23, 59, 59, 999));
899 int high = when.time().msecsSinceStartOfDay() / 60000;
902 while (high > low + 1) {
903 const int mid = (high + low) / 2;
904 const QDateTime probe = QDateTime(day, QTime(mid / 60, mid % 60), zone,
905 QDateTime::TransitionResolution::PreferBefore);
906 if (probe.isValid() && probe.date() == day) {
916 if (QDateTime p = moment(when.time().addSecs(-1)); Q_UNLIKELY(p.isValid() && p.date() == day)) {
919 while (high > low + 1) {
920 const int mid = (high + low) / 2;
921 const int min = mid / 60;
922 const QDateTime probe = moment(QTime(min / 60, min % 60, mid % 60));
923 if (probe.isValid() && probe.date() == day) {
931 return when.isValid() ? when : QDateTime();
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
963QDateTime QDate::startOfDay(
const QTimeZone &zone)
const
965 if (!inDateTimeRange(jd, DaySide::Start) || !zone.isValid())
968 QDateTime when(*
this, QTime(0, 0), zone,
969 QDateTime::TransitionResolution::RelativeToBefore);
970 if (Q_UNLIKELY(!when.isValid() || when.date() != *
this)) {
971#if QT_CONFIG(timezone)
973 if (zone.timeSpec() == Qt::TimeZone && zone.hasTransitions()) {
974 QTimeZone::OffsetData tran
977 = zone.previousTransition(QDateTime(addDays(1), QTime(12, 0), zone));
978 const QDateTime &at = tran.atUtc.toTimeZone(zone);
979 if (at.isValid() && at.date() == *
this)
984 when = toEarliest(*
this, zone);
991
992
994QDateTime QDate::startOfDay()
const
996 return startOfDay(QTimeZone::LocalTime);
999#if QT_DEPRECATED_SINCE(6
, 9
)
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
1028QDateTime QDate::startOfDay(Qt::TimeSpec spec,
int offsetSeconds)
const
1030 QTimeZone zone = asTimeZone(spec, offsetSeconds,
"QDate::startOfDay");
1032 return zone.timeSpec() == spec ? startOfDay(zone) : QDateTime();
1036static QDateTime
toLatest(QDate day,
const QTimeZone &zone)
1038 Q_ASSERT(!zone.isUtcOrFixedOffset());
1040 const auto moment = [=](QTime time) {
1041 return QDateTime(day, time, zone, QDateTime::TransitionResolution::Reject);
1044 QDateTime when = moment(QTime(21, 59, 59, 999));
1045 if (!when.isValid()) {
1047 when = moment(QTime(12, 0));
1048 if (!when.isValid()) {
1050 when = moment(QTime(0, 0));
1051 if (!when.isValid())
1056 int low = when.time().msecsSinceStartOfDay() / 60000;
1058 while (high > low + 1) {
1059 const int mid = (high + low) / 2;
1060 const QDateTime probe = QDateTime(day, QTime(mid / 60, mid % 60, 59, 999), zone,
1061 QDateTime::TransitionResolution::PreferAfter);
1062 if (probe.isValid() && probe.date() == day) {
1072 if (QDateTime p = moment(when.time().addSecs(1)); Q_UNLIKELY(p.isValid() && p.date() == day)) {
1075 while (high > low + 1) {
1076 const int mid = (high + low) / 2;
1077 const int min = mid / 60;
1078 const QDateTime probe = moment(QTime(min / 60, min % 60, mid % 60, 999));
1079 if (probe.isValid() && probe.date() == day) {
1087 return when.isValid() ? when : QDateTime();
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
1120QDateTime QDate::endOfDay(
const QTimeZone &zone)
const
1122 if (!inDateTimeRange(jd, DaySide::End) || !zone.isValid())
1125 QDateTime when(*
this, QTime(23, 59, 59, 999), zone,
1126 QDateTime::TransitionResolution::RelativeToAfter);
1127 if (Q_UNLIKELY(!when.isValid() || when.date() != *
this)) {
1128#if QT_CONFIG(timezone)
1130 if (zone.timeSpec() == Qt::TimeZone && zone.hasTransitions()) {
1131 QTimeZone::OffsetData tran
1134 = zone.nextTransition(QDateTime(addDays(-1), QTime(12, 0), zone));
1135 const QDateTime &at = tran.atUtc.toTimeZone(zone);
1136 if (at.isValid() && at.date() == *
this)
1141 when = toLatest(*
this, zone);
1147
1148
1150QDateTime QDate::endOfDay()
const
1152 return endOfDay(QTimeZone::LocalTime);
1155#if QT_DEPRECATED_SINCE(6
, 9
)
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
1184QDateTime QDate::endOfDay(Qt::TimeSpec spec,
int offsetSeconds)
const
1186 QTimeZone zone = asTimeZone(spec, offsetSeconds,
"QDate::endOfDay");
1188 return endOfDay(zone);
1192#if QT_CONFIG(datestring)
1194static QString toStringTextDate(QDate date)
1196 if (date.isValid()) {
1198 const auto parts = cal.partsFromDate(date);
1199 if (parts.isValid()) {
1200 const QLatin1Char sp(
' ');
1201 return QLocale::c().dayName(cal.dayOfWeek(date), QLocale::ShortFormat) + sp
1202 + cal.monthName(QLocale::c(), parts.month, parts.year, QLocale::ShortFormat)
1204 + sp + QString::asprintf(
"%d %04d", parts.day, parts.year);
1210static QString toStringIsoDate(QDate date)
1212 const auto parts = QCalendar().partsFromDate(date);
1213 if (parts.isValid() && parts.year >= 0 && parts.year <= 9999)
1214 return QString::asprintf(
"%04d-%02d-%02d", parts.year, parts.month, parts.day);
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
1246QString QDate::toString(Qt::DateFormat format)
const
1252 case Qt::RFC2822Date:
1253 return QLocale::c().toString(*
this, u"dd MMM yyyy");
1256 return toStringTextDate(*
this);
1258 case Qt::ISODateWithMs:
1260 return toStringIsoDate(*
this);
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
1327QString QDate::toString(QStringView format, QCalendar cal)
const
1329 return QLocale::c().toString(*
this, format, cal);
1334
1335
1336
1337QString QDate::toString(QStringView format)
const
1339 return QLocale::c().toString(*
this, format, QCalendar());
1343
1344
1345
1346QString QDate::toString(
const QString &format)
const
1348 return QLocale::c().toString(*
this, qToStringViewIgnoringNull(format), QCalendar());
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362bool QDate::setDate(
int year,
int month,
int day)
1364 const auto maybe = QGregorianCalendar::julianFromParts(year, month, day);
1365 jd = maybe.value_or(nullJd());
1370
1371
1372
1373
1374
1375
1376
1377
1378
1380bool QDate::setDate(
int year,
int month,
int day, QCalendar cal)
1382 *
this = QDate(year, month, day, cal);
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398void QDate::getDate(
int *year,
int *month,
int *day)
const
1400 QCalendar::YearMonthDay parts;
1402 parts = QGregorianCalendar::partsFromJulian(jd);
1404 const bool ok = parts.isValid();
1406 *year = ok ? parts.year : 0;
1408 *month = ok ? parts.month : 0;
1410 *day = ok ? parts.day : 0;
1414
1415
1416
1417
1418
1419
1420
1421
1423QDate QDate::addDays(qint64 ndays)
const
1428 if (qint64 r; Q_UNLIKELY(qAddOverflow(jd, ndays, &r)))
1431 return fromJulianDay(r);
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1470QDate QDate::addMonths(
int nmonths, QCalendar cal)
const
1478 auto parts = cal.partsFromDate(*
this);
1480 if (!parts.isValid())
1482 Q_ASSERT(parts.year || cal.hasYearZero());
1484 parts.month += nmonths;
1485 while (parts.month <= 0) {
1486 if (--parts.year || cal.hasYearZero())
1487 parts.month += cal.monthsInYear(parts.year);
1489 int count = cal.monthsInYear(parts.year);
1490 while (parts.month > count) {
1491 parts.month -= count;
1492 count = (++parts.year || cal.hasYearZero()) ? cal.monthsInYear(parts.year) : 0;
1495 return fixedDate(parts, cal);
1499
1500
1502QDate QDate::addMonths(
int nmonths)
const
1510 auto parts = QGregorianCalendar::partsFromJulian(jd);
1512 if (!parts.isValid())
1514 Q_ASSERT(parts.year);
1516 parts.month += nmonths;
1517 while (parts.month <= 0) {
1521 while (parts.month > 12) {
1527 return fixedDate(parts);
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1546QDate QDate::addYears(
int nyears, QCalendar cal)
const
1551 auto parts = cal.partsFromDate(*
this);
1552 if (!parts.isValid())
1555 int old_y = parts.year;
1556 parts.year += nyears;
1559 if (!cal.hasYearZero() && ((old_y > 0) != (parts.year > 0) || !parts.year))
1560 parts.year += nyears > 0 ? +1 : -1;
1562 return fixedDate(parts, cal);
1566
1567
1569QDate QDate::addYears(
int nyears)
const
1574 auto parts = QGregorianCalendar::partsFromJulian(jd);
1575 if (!parts.isValid())
1578 int old_y = parts.year;
1579 parts.year += nyears;
1582 if ((old_y > 0) != (parts.year > 0) || !parts.year)
1583 parts.year += nyears > 0 ? +1 : -1;
1585 return fixedDate(parts);
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1600qint64 QDate::daysTo(QDate d)
const
1602 if (isNull() || d.isNull())
1611
1612
1613
1614
1615
1618
1619
1620
1621
1622
1623
1624
1627
1628
1629
1630
1633
1634
1635
1636
1637
1640
1641
1642
1643
1646
1647
1648
1649
1650
1653
1654
1655
1656
1657
1659#if QT_CONFIG(datestring)
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1676
1677
1678
1679QDate QDate::fromString(QStringView string, Qt::DateFormat format)
1681 if (string.isEmpty())
1685 case Qt::RFC2822Date:
1686 return rfcDateImpl(string).date;
1688 case Qt::TextDate: {
1690 QVarLengthArray<QStringView, 4> parts;
1691 auto tokens = string.tokenize(u' ', Qt::SkipEmptyParts);
1692 auto it = tokens.begin();
1693 for (
int i = 0; i < 4 && it != tokens.end(); ++i, ++it)
1694 parts.emplace_back(*it);
1696 if (parts.size() != 4 || it != tokens.end())
1700 int year = parts.at(3).toInt(&ok);
1701 int day = ok ? parts.at(2).toInt(&ok) : 0;
1705 const int month = fromShortMonthName(parts.at(1));
1709 return QDate(year, month, day);
1713 if (string.size() >= 10 && string[4].isPunct() && string[7].isPunct()
1714 && (string.size() == 10 || !string[10].isDigit())) {
1715 const ParsedInt year = readInt(string.first(4));
1716 const ParsedInt month = readInt(string.sliced(5, 2));
1717 const ParsedInt day = readInt(string.sliced(8, 2));
1718 if (year.ok() && year.result > 0 && year.result <= 9999 && month.ok() && day.ok())
1719 return QDate(year.result, month.result, day.result);
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
1859
1860
1861
1862
1865
1866
1867
1868QDate QDate::fromString(
const QString &string, QStringView format,
int baseYear, QCalendar cal)
1871#if QT_CONFIG(datetimeparser)
1872 QDateTimeParser dt(QMetaType::QDate, QDateTimeParser::FromString, cal);
1873 dt.setDefaultLocale(QLocale::c());
1874 if (dt.parseFormat(format))
1875 dt.fromString(string, &date,
nullptr, baseYear);
1886
1887
1888
1889
1892
1893
1894
1895
1898
1899
1900
1901
1904
1905
1906
1907
1908
1909
1912
1913
1914
1915
1916
1917QDate QDate::fromString(
const QString &string, QStringView format,
int baseYear)
1919 return fromString(string, format, baseYear, QCalendar());
1923
1924
1925
1926
1927
1928
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1943bool QDate::isValid(
int year,
int month,
int day)
1945 return QGregorianCalendar::validParts(year, month, day);
1949
1950
1951
1952
1953
1954
1955
1957bool QDate::isLeapYear(
int y)
1959 return QGregorianCalendar::leapTest(y);
1963
1964
1965
1966
1967
1970
1971
1972
1973
1974
1977
1978
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
2027
2028
2029
2030
2031
2032
2033
2034
2037
2038
2039
2040
2041
2042
2043
2044
2046QTime::QTime(
int h,
int m,
int s,
int ms)
2048 setHMS(h, m, s, ms);
2053
2054
2055
2056
2057
2058
2059
2060
2063
2064
2065
2066
2067
2068
2069
2071bool QTime::isValid()
const
2073 return mds > NullTime && mds < MSECS_PER_DAY;
2078
2079
2080
2081
2082
2083
2085int QTime::hour()
const
2090 return ds() / MSECS_PER_HOUR;
2094
2095
2096
2097
2098
2099
2101int QTime::minute()
const
2106 return (ds() % MSECS_PER_HOUR) / MSECS_PER_MIN;
2110
2111
2112
2113
2114
2115
2117int QTime::second()
const
2122 return (ds() / MSECS_PER_SEC) % SECS_PER_MIN;
2126
2127
2128
2129
2130
2131
2133int QTime::msec()
const
2138 return ds() % MSECS_PER_SEC;
2141#if QT_CONFIG(datestring)
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2166QString QTime::toString(Qt::DateFormat format)
const
2172 case Qt::ISODateWithMs:
2173 return QString::asprintf(
"%02d:%02d:%02d.%03d", hour(), minute(), second(), msec());
2174 case Qt::RFC2822Date:
2178 return QString::asprintf(
"%02d:%02d:%02d", hour(), minute(), second());
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
2281QString QTime::toString(QStringView format)
const
2283 return QLocale::c().toString(*
this, format);
2288
2289
2290
2291
2292
2293
2294
2295
2296
2298bool QTime::setHMS(
int h,
int m,
int s,
int ms)
2300 if (!isValid(h,m,s,ms)) {
2304 mds = ((h * MINS_PER_HOUR + m) * SECS_PER_MIN + s) * MSECS_PER_SEC + ms;
2305 Q_ASSERT(mds >= 0 && mds < MSECS_PER_DAY);
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2324QTime QTime::addSecs(
int s)
const
2327 return addMSecs(s * MSECS_PER_SEC);
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2345int QTime::secsTo(QTime t)
const
2347 if (!isValid() || !t.isValid())
2351 int ourSeconds = ds() / MSECS_PER_SEC;
2352 int theirSeconds = t.ds() / MSECS_PER_SEC;
2353 return theirSeconds - ourSeconds;
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2368QTime QTime::addMSecs(
int ms)
const
2372 t.mds = QRoundingDown::qMod<MSECS_PER_DAY>(ds() + ms);
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2390int QTime::msecsTo(QTime t)
const
2392 if (!isValid() || !t.isValid())
2394 return t.ds() - ds();
2399
2400
2401
2402
2405
2406
2407
2408
2411
2412
2413
2414
2417
2418
2419
2420
2421
2424
2425
2426
2427
2430
2431
2432
2433
2434
2437
2438
2439
2440
2441
2442
2443
2444
2445
2448
2449
2450
2451
2452
2453
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2470#if QT_CONFIG(datestring)
2472static QTime fromIsoTimeString(QStringView string, Qt::DateFormat format,
bool *isMidnight24)
2474 Q_ASSERT(format == Qt::TextDate || format == Qt::ISODate || format == Qt::ISODateWithMs);
2476 *isMidnight24 =
false;
2482 const qsizetype dot = string.indexOf(u'.'), comma = string.indexOf(u',');
2484 tail = string.sliced(dot + 1);
2485 if (tail.indexOf(u'.') != -1)
2487 string = string.first(dot);
2488 }
else if (comma != -1) {
2489 tail = string.sliced(comma + 1);
2490 string = string.first(comma);
2492 if (tail.indexOf(u',') != -1)
2495 const ParsedInt frac = readInt(tail);
2497 if (tail.isEmpty() ? dot != -1 || comma != -1 : !frac.ok())
2499 Q_ASSERT(frac.ok() ^ tail.isEmpty());
2500 double fraction = frac.ok() ? frac.result * std::pow(0.1, tail.size()) : 0.0;
2502 const qsizetype size = string.size();
2503 if (size < 2 || size > 8)
2506 ParsedInt hour = readInt(string.first(2));
2507 if (!hour.ok() || hour.result > (format == Qt::TextDate ? 23 : 24))
2511 if (string.size() > 2) {
2512 if (string[2] == u':' && string.size() > 4)
2513 minute = readInt(string.sliced(3, 2));
2514 if (!minute.ok() || minute.result >= MINS_PER_HOUR)
2516 }
else if (format == Qt::TextDate) {
2518 }
else if (frac.ok()) {
2519 Q_ASSERT(!(fraction < 0.0) && fraction < 1.0);
2520 fraction *= MINS_PER_HOUR;
2521 minute.result = qulonglong(fraction);
2522 fraction -= minute.result;
2526 if (string.size() > 5) {
2527 if (string[5] == u':' && string.size() == 8)
2528 second = readInt(string.sliced(6, 2));
2529 if (!second.ok() || second.result >= SECS_PER_MIN)
2531 }
else if (frac.ok()) {
2532 if (format == Qt::TextDate)
2534 Q_ASSERT(!(fraction < 0.0) && fraction < 1.0);
2535 fraction *= SECS_PER_MIN;
2536 second.result = qulonglong(fraction);
2537 fraction -= second.result;
2540 Q_ASSERT(!(fraction < 0.0) && fraction < 1.0);
2542 int msec = frac.ok() ? qRound(MSECS_PER_SEC * fraction) : 0;
2544 if (msec == MSECS_PER_SEC) {
2547 if (isMidnight24 || hour.result < 23 || minute.result < 59 || second.result < 59) {
2549 if (++second.result == SECS_PER_MIN) {
2551 if (++minute.result == MINS_PER_HOUR) {
2560 msec = MSECS_PER_SEC - 1;
2565 if (hour.result == 24 && minute.result == 0 && second.result == 0 && msec == 0) {
2566 Q_ASSERT(format != Qt::TextDate);
2568 *isMidnight24 =
true;
2572 return QTime(hour.result, minute.result, second.result, msec);
2576
2577
2578
2579
2580
2581
2582
2583
2586
2587
2588
2589QTime QTime::fromString(QStringView string, Qt::DateFormat format)
2591 if (string.isEmpty())
2595 case Qt::RFC2822Date:
2596 return rfcDateImpl(string).time;
2598 case Qt::ISODateWithMs:
2601 return fromIsoTimeString(string, format,
nullptr);
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2685
2686
2687
2688
2691
2692
2693
2694QTime QTime::fromString(
const QString &string, QStringView format)
2697#if QT_CONFIG(datetimeparser)
2698 QDateTimeParser dt(QMetaType::QTime, QDateTimeParser::FromString, QCalendar());
2699 dt.setDefaultLocale(QLocale::c());
2700 if (dt.parseFormat(format))
2701 dt.fromString(string,
nullptr, &time);
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2725bool QTime::isValid(
int h,
int m,
int s,
int ms)
2727 return (uint(h) < 24 && uint(m) < MINS_PER_HOUR && uint(s) < SECS_PER_MIN
2728 && uint(ms) < MSECS_PER_SEC);
2732
2733
2742 return JULIAN_DAY_FOR_EPOCH + QRoundingDown::qDiv<MSECS_PER_DAY>(msecs);
2747 return QDate::fromJulianDay(msecsToJulianDay(msecs));
2752 return QTime::fromMSecsSinceStartOfDay(QRoundingDown::qMod<MSECS_PER_DAY>(msecs));
2759 return qMulOverflow(days, std::integral_constant<qint64, MSECS_PER_DAY>(), sumMillis)
2760 || qAddOverflow(*sumMillis, millisInDay, sumMillis);
2766 qint64 days = date.toJulianDay() - JULIAN_DAY_FOR_EPOCH;
2767 qint64 msecs, dayms = time.msecsSinceStartOfDay();
2768 if (days < 0 && dayms > 0) {
2770 dayms -= MSECS_PER_DAY;
2772 if (daysAndMillisOverflow(days, dayms, &msecs)) {
2773 using Bound = std::numeric_limits<qint64>;
2774 return days < 0 ? Bound::min() : Bound::max();
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2798 static const auto bounds = QLocalTime::computeSystemMillisRange();
2799 return (bounds.minClip || millis >= bounds.min - slack)
2800 && (bounds.maxClip || millis <= bounds.max + slack);
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2821#if defined(Q_OS_WIN) || defined(Q_OS_WASM)
2822 static constexpr int forLeapEarly[] = { 1984, 1996, 1980, 1992, 1976, 1988, 1972 };
2823 static constexpr int regularEarly[] = { 1978, 1973, 1974, 1975, 1970, 1971, 1977 };
2825 static constexpr int forLeapEarly[] = { 1928, 1912, 1924, 1908, 1920, 1904, 1916 };
2826 static constexpr int regularEarly[] = { 1905, 1906, 1907, 1902, 1903, 1909, 1910 };
2828 static constexpr int forLeapLate[] = { 2012, 2024, 2036, 2020, 2032, 2016, 2028 };
2829 static constexpr int regularLate[] = { 2034, 2035, 2030, 2031, 2037, 2027, 2033 };
2830 const int dow = QGregorianCalendar::yearStartWeekDay(year);
2831 Q_ASSERT(dow == QDate(year, 1, 1).dayOfWeek());
2832 const int res = (QGregorianCalendar::leapTest(year)
2833 ? (year < 1970 ? forLeapEarly : forLeapLate)
2834 : (year < 1970 ? regularEarly : regularLate))[dow == 7 ? 0 : dow];
2835 Q_ASSERT(QDate(res, 1, 1).dayOfWeek() == dow);
2836 Q_ASSERT(QDate(res, 12, 31).dayOfWeek() == QDate(year, 12, 31).dayOfWeek());
2841QDateTimePrivate::ZoneState QDateTimePrivate::expressUtcAsLocal(qint64 utcMSecs)
2843 ZoneState result{utcMSecs};
2845 if (millisInSystemRange(utcMSecs)) {
2846 result = QLocalTime::utcToLocal(utcMSecs);
2853#if QT_CONFIG(timezone)
2854 if (
const auto sys = QTimeZone::systemTimeZone(); sys.isValid()) {
2855 result.offset = sys.d->offsetFromUtc(utcMSecs);
2856 if (result.offset != QTimeZonePrivate::invalidSeconds()) {
2857 if (qAddOverflow(utcMSecs, result.offset * MSECS_PER_SEC, &result.when))
2859 result.dst = sys.d->isDaylightTime(utcMSecs) ? DaylightTime : StandardTime;
2860 result.valid =
true;
2869 const qint64 jd = msecsToJulianDay(utcMSecs);
2870 const auto ymd = QGregorianCalendar::partsFromJulian(jd);
2871 qint64 diffMillis, fakeUtc;
2872 const auto fakeJd = QGregorianCalendar::julianFromParts(systemTimeYearMatching(ymd.year),
2873 ymd.month, ymd.day);
2874 if (Q_UNLIKELY(!fakeJd
2875 || qMulOverflow(jd - *fakeJd, std::integral_constant<qint64, MSECS_PER_DAY>(),
2877 || qSubOverflow(utcMSecs, diffMillis, &fakeUtc))) {
2881 result = QLocalTime::utcToLocal(fakeUtc);
2883 if (!result.valid || qAddOverflow(result.when, diffMillis, &result.when)) {
2886 result.when = utcMSecs;
2887 result.valid =
false;
2898 qint64 jd = msecsToJulianDay(millis);
2899 auto ymd = QGregorianCalendar::partsFromJulian(jd);
2900 const auto fakeJd = QGregorianCalendar::julianFromParts(systemTimeYearMatching(ymd.year),
2901 ymd.month, ymd.day);
2902 result.good = fakeJd && !daysAndMillisOverflow(*fakeJd - jd, millis, &result.shifted);
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2964 case QDateTime::TransitionResolution::RelativeToBefore:
2965 return QDateTimePrivate::GapUseAfter | QDateTimePrivate::FoldUseBefore;
2966 case QDateTime::TransitionResolution::RelativeToAfter:
2967 return QDateTimePrivate::GapUseBefore | QDateTimePrivate::FoldUseAfter;
2968 case QDateTime::TransitionResolution::PreferBefore:
2969 return QDateTimePrivate::GapUseBefore | QDateTimePrivate::FoldUseBefore;
2970 case QDateTime::TransitionResolution::PreferAfter:
2971 return QDateTimePrivate::GapUseAfter | QDateTimePrivate::FoldUseAfter;
2972 case QDateTime::TransitionResolution::PreferStandard:
2973 return QDateTimePrivate::GapUseBefore
2974 | QDateTimePrivate::FoldUseAfter
2975 | QDateTimePrivate::FlipForReverseDst;
2976 case QDateTime::TransitionResolution::PreferDaylightSaving:
2977 return QDateTimePrivate::GapUseAfter
2978 | QDateTimePrivate::FoldUseBefore
2979 | QDateTimePrivate::FlipForReverseDst;
2980 case QDateTime::TransitionResolution::Reject:
break;
2988 return toTransitionOptions(dst == QDateTimePrivate::DaylightTime
2989 ? QDateTime::TransitionResolution::PreferDaylightSaving
2990 : QDateTime::TransitionResolution::PreferStandard);
2993QString QDateTimePrivate::localNameAtMillis(qint64 millis, DaylightStatus dst)
2995 const QDateTimePrivate::TransitionOptions resolve = toTransitionOptions(dst);
2996 QString abbreviation;
2997 if (millisInSystemRange(millis, MSECS_PER_DAY)) {
2998 abbreviation = QLocalTime::localTimeAbbbreviationAt(millis, resolve);
2999 if (!abbreviation.isEmpty())
3000 return abbreviation;
3004#if QT_CONFIG(timezone)
3006 const auto sys = QTimeZone::systemTimeZone();
3007 if (sys.isValid()) {
3008 ZoneState state = zoneStateAtMillis(sys, millis, resolve);
3010 return sys.d->abbreviation(state.when - state.offset * MSECS_PER_SEC);
3016 auto fake = millisToWithinRange(millis);
3017 if (Q_LIKELY(fake.good))
3018 return QLocalTime::localTimeAbbbreviationAt(fake.shifted, resolve);
3025QDateTimePrivate::ZoneState QDateTimePrivate::localStateAtMillis(
3026 qint64 millis, QDateTimePrivate::TransitionOptions resolve)
3030 if (millisInSystemRange(millis, MSECS_PER_DAY)) {
3031 auto result = QLocalTime::mapLocalTime(millis, resolve);
3037#if QT_CONFIG(timezone)
3039 const auto sys = QTimeZone::systemTimeZone();
3041 return zoneStateAtMillis(sys, millis, resolve);
3046 auto fake = millisToWithinRange(millis);
3047 if (Q_LIKELY(fake.good)) {
3048 auto result = QLocalTime::mapLocalTime(fake.shifted, resolve);
3051 if (Q_UNLIKELY(qAddOverflow(result.when, millis - fake.shifted, &adjusted))) {
3052 using Bound = std::numeric_limits<qint64>;
3053 adjusted = millis < fake.shifted ? Bound::min() : Bound::max();
3055 result.when = adjusted;
3057 result.when = millis;
3065#if QT_CONFIG(timezone)
3069QDateTimePrivate::ZoneState QDateTimePrivate::zoneStateAtMillis(
3070 const QTimeZone &zone, qint64 millis, QDateTimePrivate::TransitionOptions resolve)
3072 Q_ASSERT(zone.isValid());
3073 Q_ASSERT(zone.timeSpec() == Qt::TimeZone);
3074 return zone.d->stateAtZoneTime(millis, resolve);
3079 QDateTimePrivate::TransitionOptions resolve)
3081 if (zone.timeSpec() == Qt::LocalTime)
3082 return QDateTimePrivate::localStateAtMillis(millis, resolve);
3083#if QT_CONFIG(timezone)
3084 if (zone.timeSpec() == Qt::TimeZone && zone.isValid())
3085 return QDateTimePrivate::zoneStateAtMillis(zone, millis, resolve);
3092 return spec == Qt::LocalTime || spec == Qt::UTC;
3097 if constexpr (!QDateTimeData::CanBeSmall)
3101 sd.msecs = qintptr(msecs);
3102 return sd.msecs == msecs;
3105static constexpr inline
3108 status &= ~QDateTimePrivate::TimeSpecMask;
3109 status |= QDateTimePrivate::StatusFlags::fromInt(
int(spec) << QDateTimePrivate::TimeSpecShift);
3115 return Qt::TimeSpec((status & QDateTimePrivate::TimeSpecMask).toInt() >> QDateTimePrivate::TimeSpecShift);
3122 sf &= ~QDateTimePrivate::DaylightMask;
3123 if (status == QDateTimePrivate::DaylightTime) {
3124 sf |= QDateTimePrivate::SetToDaylightTime;
3125 }
else if (status == QDateTimePrivate::StandardTime) {
3126 sf |= QDateTimePrivate::SetToStandardTime;
3132static constexpr inline
3135 if (status.testFlag(QDateTimePrivate::SetToDaylightTime))
3136 return QDateTimePrivate::DaylightTime;
3137 if (status.testFlag(QDateTimePrivate::SetToStandardTime))
3138 return QDateTimePrivate::StandardTime;
3139 return QDateTimePrivate::UnknownDaylightTime;
3147 return qintptr(d.d) >> 8;
3157 return QDateTimePrivate::StatusFlag(qintptr(d.d) & 0xFF);
3164 return extractSpec(getStatus(d));
3168
3169
3170
3171
3174 const auto status = getStatus(a);
3175 if (status != getStatus(b))
3179 switch (extractSpec(status)) {
3186
3187
3188
3189
3190 case Qt::OffsetFromUTC:
3191 Q_ASSERT(!a.isShort() && !b.isShort());
3192 return a->m_offsetFromUtc == b->m_offsetFromUtc;
3194 Q_UNREACHABLE_RETURN(
false);
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3211 constexpr quint64 UtcOffsetMillisRange
3212 = quint64(QTimeZone::MaxUtcOffsetSecs - QTimeZone::MinUtcOffsetSecs) * MSECS_PER_SEC;
3214 return qSubOverflow(leftMillis, rightMillis, &gap) || QtPrivate::qUnsignedAbs(gap) > UtcOffsetMillisRange;
3219 QDateTimePrivate::TransitionOptions resolve)
3221 Q_ASSERT(zone.timeSpec() == Qt::TimeZone || zone.timeSpec() == Qt::LocalTime);
3222 auto status = getStatus(d);
3223 Q_ASSERT(extractSpec(status) == zone.timeSpec());
3224 int offsetFromUtc = 0;
3226
3227
3228
3229
3230
3231
3232
3233
3236 if (!status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime)) {
3237 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
3241 qint64 msecs = getMSecs(d);
3242 QDateTimePrivate::ZoneState state = stateAtMillis(zone, msecs, resolve);
3243 Q_ASSERT(!state.valid || (state.offset >= -SECS_PER_DAY && state.offset <= SECS_PER_DAY));
3244 if (state.dst == QDateTimePrivate::UnknownDaylightTime) {
3245 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
3246 }
else if (state.valid) {
3247 status = mergeDaylightStatus(status, state.dst);
3248 offsetFromUtc = state.offset;
3249 status.setFlag(QDateTimePrivate::ValidDateTime,
true);
3250 if (Q_UNLIKELY(msecs != state.when)) {
3252 if (status.testFlag(QDateTimePrivate::ShortData)) {
3253 if (msecsCanBeSmall(state.when)) {
3254 d.data.msecs = qintptr(state.when);
3257 status.setFlag(QDateTimePrivate::ShortData,
false);
3261 if (!status.testFlag(QDateTimePrivate::ShortData))
3262 d->m_msecs = state.when;
3265 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
3269 if (status.testFlag(QDateTimePrivate::ShortData)) {
3270 d.data.status = status.toInt();
3272 d->m_status = status;
3273 d->m_offsetFromUtc = offsetFromUtc;
3280 auto status = getStatus(d);
3281 Q_ASSERT(QTimeZone::isUtcOrFixedOffset(extractSpec(status)));
3282 status.setFlag(QDateTimePrivate::ValidDateTime,
3283 status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime));
3285 if (status.testFlag(QDateTimePrivate::ShortData))
3286 d.data.status = status.toInt();
3288 d->m_status = status;
3294 auto spec = extractSpec(getStatus(d));
3296 case Qt::OffsetFromUTC:
3305 refreshZonedDateTime(d, d.timeZone(), toTransitionOptions(resolve));
3311 QDateTime::TransitionResolution resolve)
3313 Qt::TimeSpec spec = zone.timeSpec();
3314 auto status = mergeSpec(getStatus(d), spec);
3315 bool reuse = d.isShort();
3320 Q_ASSERT(zone.fixedSecondsAheadOfUtc() == 0);
3322 case Qt::OffsetFromUTC:
3324 offset = zone.fixedSecondsAheadOfUtc();
3334 status &= ~(QDateTimePrivate::ValidDateTime | QDateTimePrivate::DaylightMask);
3336 d.data.status = status.toInt();
3339 d->m_status = status & ~QDateTimePrivate::ShortData;
3340 d->m_offsetFromUtc = offset;
3341#if QT_CONFIG(timezone)
3342 if (spec == Qt::TimeZone)
3343 d->m_timeZone = zone;
3347 if (QTimeZone::isUtcOrFixedOffset(spec))
3350 refreshZonedDateTime(d, zone, toTransitionOptions(resolve));
3356 if (!time.isValid() && date.isValid())
3357 time = QTime::fromMSecsSinceStartOfDay(0);
3359 QDateTimePrivate::StatusFlags newStatus = { };
3363 if (date.isValid()) {
3364 days = date.toJulianDay() - JULIAN_DAY_FOR_EPOCH;
3365 newStatus = QDateTimePrivate::ValidDate;
3370 if (time.isValid()) {
3371 ds = time.msecsSinceStartOfDay();
3372 newStatus |= QDateTimePrivate::ValidTime;
3374 Q_ASSERT(ds < MSECS_PER_DAY);
3377 if (days < 0 && ds > 0) {
3379 ds -= MSECS_PER_DAY;
3384 if (daysAndMillisOverflow(days, qint64(ds), &msecs)) {
3385 newStatus = QDateTimePrivate::StatusFlags{};
3390 if (msecsCanBeSmall(msecs)) {
3392 d.data.msecs = qintptr(msecs);
3393 d.data.status &= ~(QDateTimePrivate::ValidityMask | QDateTimePrivate::DaylightMask).toInt();
3394 d.data.status |= newStatus.toInt();
3403 d->m_status &= ~(QDateTimePrivate::ValidityMask | QDateTimePrivate::DaylightMask);
3404 d->m_status |= newStatus;
3410 auto status = getStatus(d);
3411 const qint64 msecs = getMSecs(d);
3412 const auto dayMilli = QRoundingDown::qDivMod<MSECS_PER_DAY>(msecs);
3413 return { status.testFlag(QDateTimePrivate::ValidDate)
3414 ? QDate::fromJulianDay(JULIAN_DAY_FOR_EPOCH + dayMilli.quotient)
3416 status.testFlag(QDateTimePrivate::ValidTime)
3417 ? QTime::fromMSecsSinceStartOfDay(dayMilli.remainder)
3422
3423
3425inline QDateTime::Data::Data()
noexcept
3430 quintptr value = mergeSpec(QDateTimePrivate::ShortData, Qt::LocalTime).toInt();
3431 d =
reinterpret_cast<QDateTimePrivate *>(value);
3434inline QDateTime::Data::Data(
const QTimeZone &zone)
3436 Qt::TimeSpec spec = zone.timeSpec();
3437 if (CanBeSmall && Q_LIKELY(specCanBeSmall(spec))) {
3438 quintptr value = mergeSpec(QDateTimePrivate::ShortData, spec).toInt();
3439 d =
reinterpret_cast<QDateTimePrivate *>(value);
3440 Q_ASSERT(isShort());
3443 d =
new QDateTimePrivate;
3445 d->m_status = mergeSpec({}, spec);
3446 if (spec == Qt::OffsetFromUTC)
3447 d->m_offsetFromUtc = zone.fixedSecondsAheadOfUtc();
3448 else if (spec == Qt::TimeZone)
3449 d->m_timeZone = zone;
3450 Q_ASSERT(!isShort());
3454inline QDateTime::Data::Data(
const Data &other)
noexcept
3459 if (specCanBeSmall(extractSpec(d->m_status)) && msecsCanBeSmall(d->m_msecs)) {
3461 sd.msecs = qintptr(d->m_msecs);
3462 sd.status = (d->m_status | QDateTimePrivate::ShortData).toInt();
3471inline QDateTime::Data::Data(Data &&other)
noexcept
3476 Q_ASSERT(dummy.isShort());
3477 other.data = dummy.data;
3480inline QDateTime::Data &QDateTime::Data::operator=(
const Data &other)
noexcept
3482 if (isShort() ? data == other.data : d == other.d)
3487 if (!other.isShort()) {
3489 if (specCanBeSmall(extractSpec(other.d->m_status)) && msecsCanBeSmall(other.d->m_msecs)) {
3491 sd.msecs = qintptr(other.d->m_msecs);
3492 sd.status = (other.d->m_status | QDateTimePrivate::ShortData).toInt();
3500 if (!(quintptr(x) & QDateTimePrivate::ShortData) && !x->ref.deref())
3505inline QDateTime::Data::~Data()
3507 if (!isShort() && !d->ref.deref())
3511inline bool QDateTime::Data::isShort()
const
3513 bool b = quintptr(d) & QDateTimePrivate::ShortData;
3516 Q_ASSERT(b || !d->m_status.testFlag(QDateTimePrivate::ShortData));
3520 if constexpr (CanBeSmall)
3522 return Q_UNLIKELY(b);
3525inline void QDateTime::Data::detach()
3527 QDateTimePrivate *x;
3528 bool wasShort = isShort();
3531 x =
new QDateTimePrivate;
3532 x->m_status = QDateTimePrivate::StatusFlags::fromInt(data.status) & ~QDateTimePrivate::ShortData;
3533 x->m_msecs = data.msecs;
3535 if (d->ref.loadRelaxed() == 1)
3538 x =
new QDateTimePrivate(*d);
3541 x->ref.storeRelaxed(1);
3542 if (!wasShort && !d->ref.deref())
3547void QDateTime::Data::invalidate()
3550 data.status &= ~
int(QDateTimePrivate::ValidityMask);
3553 d->m_status &= ~QDateTimePrivate::ValidityMask;
3557QTimeZone QDateTime::Data::timeZone()
const
3559 switch (getSpec(*
this)) {
3561 return QTimeZone::UTC;
3562 case Qt::OffsetFromUTC:
3563 return QTimeZone::fromSecondsAheadOfUtc(d->m_offsetFromUtc);
3565#if QT_CONFIG(timezone)
3566 if (d->m_timeZone.isValid())
3567 return d->m_timeZone;
3571 return QTimeZone::LocalTime;
3576inline const QDateTimePrivate *QDateTime::Data::operator->()
const
3578 Q_ASSERT(!isShort());
3582inline QDateTimePrivate *QDateTime::Data::operator->()
3585 Q_ASSERT(!isShort());
3586 Q_ASSERT(d->ref.loadRelaxed() == 1);
3591
3592
3595QDateTime::Data QDateTimePrivate::create(QDate toDate, QTime toTime,
const QTimeZone &zone,
3596 QDateTime::TransitionResolution resolve)
3598 QDateTime::Data result(zone);
3599 setDateTime(result, toDate, toTime);
3600 if (zone.isUtcOrFixedOffset())
3601 refreshSimpleDateTime(result);
3603 refreshZonedDateTime(result, zone, toTransitionOptions(resolve));
3608
3609
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3990
3991
3992
3993
3994
3995
3996QDateTime::QDateTime()
noexcept
3998#if QT_VERSION >= QT_VERSION_CHECK(7
, 0
, 0
) || defined(QT_BOOTSTRAPPED) || QT_POINTER_SIZE == 8
3999 static_assert(
sizeof(ShortData) ==
sizeof(qint64));
4000 static_assert(
sizeof(Data) ==
sizeof(qint64));
4002 static_assert(
sizeof(ShortData) >=
sizeof(
void*),
"oops, Data::swap() is broken!");
4005#if QT_DEPRECATED_SINCE(6
, 9
)
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026QDateTime::QDateTime(QDate date, QTime time, Qt::TimeSpec spec,
int offsetSeconds)
4027 : d(QDateTimePrivate::create(date, time, asTimeZone(spec, offsetSeconds,
"QDateTime"),
4028 TransitionResolution::LegacyBehavior))
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4051QDateTime::QDateTime(QDate date, QTime time,
const QTimeZone &timeZone, TransitionResolution resolve)
4052 : d(QDateTimePrivate::create(date, time, timeZone, resolve))
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4069QDateTime::QDateTime(QDate date, QTime time, TransitionResolution resolve)
4070 : d(QDateTimePrivate::create(date, time, QTimeZone::LocalTime, resolve))
4075
4076
4077QDateTime::QDateTime(
const QDateTime &other)
noexcept
4083
4084
4085
4086
4087QDateTime::QDateTime(QDateTime &&other)
noexcept
4088 : d(std::move(other.d))
4093
4094
4095QDateTime::~QDateTime()
4100
4101
4103QDateTime &QDateTime::operator=(
const QDateTime &other)
noexcept
4109
4110
4111
4112
4115
4116
4117
4118
4119
4121bool QDateTime::isNull()
const
4124 return !getStatus(d).testAnyFlag(QDateTimePrivate::ValidityMask);
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4141bool QDateTime::isValid()
const
4143 return getStatus(d).testFlag(QDateTimePrivate::ValidDateTime);
4147
4148
4149
4150
4152QDate QDateTime::date()
const
4154 return getStatus(d).testFlag(QDateTimePrivate::ValidDate) ? msecsToDate(getMSecs(d)) : QDate();
4158
4159
4160
4161
4163QTime QDateTime::time()
const
4165 return getStatus(d).testFlag(QDateTimePrivate::ValidTime) ? msecsToTime(getMSecs(d)) : QTime();
4169
4170
4171
4172
4173
4174
4175
4176
4177
4179Qt::TimeSpec QDateTime::timeSpec()
const
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4198QTimeZone QDateTime::timeRepresentation()
const
4200 return d.timeZone();
4203#if QT_CONFIG(timezone)
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4219QTimeZone QDateTime::timeZone()
const
4221 return d.timeZone().asBackendZone();
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4247int QDateTime::offsetFromUtc()
const
4249 const auto status = getStatus(d);
4250 if (!status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime))
4254 return d->m_offsetFromUtc;
4256 auto spec = extractSpec(status);
4257 if (spec == Qt::LocalTime) {
4259 const auto resolve = toTransitionOptions(extractDaylightStatus(status));
4260 return QDateTimePrivate::localStateAtMillis(getMSecs(d), resolve).offset;
4263 Q_ASSERT(spec == Qt::UTC);
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4288QString QDateTime::timeZoneAbbreviation()
const
4293 switch (getSpec(d)) {
4296 case Qt::OffsetFromUTC:
4297 return "UTC"_L1 + toOffsetString(Qt::ISODate, d->m_offsetFromUtc);
4299#if !QT_CONFIG(timezone)
4302 Q_ASSERT(d->m_timeZone.isValid());
4303 return d->m_timeZone.abbreviation(*
this);
4306#if defined(Q_OS_WIN) && QT_CONFIG(timezone)
4308 if (QString sys = QTimeZone::systemTimeZone().abbreviation(*
this); !sys.isEmpty())
4312 return QDateTimePrivate::localNameAtMillis(getMSecs(d),
4313 extractDaylightStatus(getStatus(d)));
4319
4320
4321
4322
4323
4324
4325
4326
4327
4329bool QDateTime::isDaylightTime()
const
4334 switch (getSpec(d)) {
4336 case Qt::OffsetFromUTC:
4339#if !QT_CONFIG(timezone)
4342 Q_ASSERT(d->m_timeZone.isValid());
4343 if (
auto dst = extractDaylightStatus(getStatus(d));
4344 dst != QDateTimePrivate::UnknownDaylightTime) {
4345 return dst == QDateTimePrivate::DaylightTime;
4347 return d->m_timeZone.d->isDaylightTime(toMSecsSinceEpoch());
4349 case Qt::LocalTime: {
4350 auto dst = extractDaylightStatus(getStatus(d));
4351 if (dst == QDateTimePrivate::UnknownDaylightTime) {
4352 dst = QDateTimePrivate::localStateAtMillis(
4353 getMSecs(d), toTransitionOptions(TransitionResolution::LegacyBehavior)).dst;
4355 return dst == QDateTimePrivate::DaylightTime;
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4376void QDateTime::setDate(QDate date, TransitionResolution resolve)
4378 setDateTime(d, date, time());
4379 checkValidDateTime(d, resolve);
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4401void QDateTime::setTime(QTime time, TransitionResolution resolve)
4403 setDateTime(d, date(), time);
4404 checkValidDateTime(d, resolve);
4407#if QT_DEPRECATED_SINCE(6
, 9
)
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4426void QDateTime::setTimeSpec(Qt::TimeSpec spec)
4428 reviseTimeZone(d, asTimeZone(spec, 0,
"QDateTime::setTimeSpec"),
4429 TransitionResolution::LegacyBehavior);
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4448void QDateTime::setOffsetFromUtc(
int offsetSeconds)
4450 reviseTimeZone(d, QTimeZone::fromSecondsAheadOfUtc(offsetSeconds),
4451 TransitionResolution::Reject);
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4475void QDateTime::setTimeZone(
const QTimeZone &toZone, TransitionResolution resolve)
4477 reviseTimeZone(d, toZone, resolve);
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495qint64 QDateTime::toMSecsSinceEpoch()
const
4502 const auto status = getStatus(d);
4503 if (!status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime))
4506 switch (extractSpec(status)) {
4510 case Qt::OffsetFromUTC:
4511 Q_ASSERT(!d.isShort());
4512 return d->m_msecs - d->m_offsetFromUtc * MSECS_PER_SEC;
4515 if (status.testFlag(QDateTimePrivate::ShortData)) {
4517 const auto resolve = toTransitionOptions(extractDaylightStatus(getStatus(d)));
4518 const auto state = QDateTimePrivate::localStateAtMillis(getMSecs(d), resolve);
4519 return state.when - state.offset * MSECS_PER_SEC;
4522 return d->m_msecs - d->m_offsetFromUtc * MSECS_PER_SEC;
4525 Q_ASSERT(!d.isShort());
4526#if QT_CONFIG(timezone)
4528 if (d->m_timeZone.isValid())
4529 return d->m_msecs - d->m_offsetFromUtc * MSECS_PER_SEC;
4533 Q_UNREACHABLE_RETURN(0);
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551qint64 QDateTime::toSecsSinceEpoch()
const
4553 return toMSecsSinceEpoch() / MSECS_PER_SEC;
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571void QDateTime::setMSecsSinceEpoch(qint64 msecs)
4573 auto status = getStatus(d);
4574 const auto spec = extractSpec(status);
4575 Q_ASSERT(specCanBeSmall(spec) || !d.isShort());
4576 QDateTimePrivate::ZoneState state(msecs);
4578 status &= ~QDateTimePrivate::ValidityMask;
4579 if (QTimeZone::isUtcOrFixedOffset(spec)) {
4580 if (spec == Qt::OffsetFromUTC)
4581 state.offset = d->m_offsetFromUtc;
4582 if (!state.offset || !qAddOverflow(msecs, state.offset * MSECS_PER_SEC, &state.when))
4583 status |= QDateTimePrivate::ValidityMask;
4584 }
else if (spec == Qt::LocalTime) {
4585 state = QDateTimePrivate::expressUtcAsLocal(msecs);
4587 status = mergeDaylightStatus(status | QDateTimePrivate::ValidityMask, state.dst);
4588#if QT_CONFIG(timezone)
4589 }
else if (spec == Qt::TimeZone && (d.detach(), d->m_timeZone.isValid())) {
4590 const auto data = d->m_timeZone.d->data(msecs);
4591 if (Q_LIKELY(data.offsetFromUtc != QTimeZonePrivate::invalidSeconds())) {
4592 state.offset = data.offsetFromUtc;
4593 Q_ASSERT(state.offset >= -SECS_PER_DAY && state.offset <= SECS_PER_DAY);
4595 || !Q_UNLIKELY(qAddOverflow(msecs, state.offset * MSECS_PER_SEC, &state.when))) {
4596 d->m_status = mergeDaylightStatus(status | QDateTimePrivate::ValidityMask,
4597 data.daylightTimeOffset
4598 ? QDateTimePrivate::DaylightTime
4599 : QDateTimePrivate::StandardTime);
4600 d->m_msecs = state.when;
4601 d->m_offsetFromUtc = state.offset;
4607 Q_ASSERT(!status.testFlag(QDateTimePrivate::ValidDateTime)
4608 || (state.offset >= -SECS_PER_DAY && state.offset <= SECS_PER_DAY));
4610 if (msecsCanBeSmall(state.when) && d.isShort()) {
4612 d.data.msecs = qintptr(state.when);
4613 d.data.status = status.toInt();
4616 d->m_status = status & ~QDateTimePrivate::ShortData;
4617 d->m_msecs = state.when;
4618 d->m_offsetFromUtc = state.offset;
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633void QDateTime::setSecsSinceEpoch(qint64 secs)
4636 if (!qMulOverflow(secs, std::integral_constant<qint64, MSECS_PER_SEC>(), &msecs))
4637 setMSecsSinceEpoch(msecs);
4642#if QT_CONFIG(datestring)
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673QString QDateTime::toString(Qt::DateFormat format)
const
4680 case Qt::RFC2822Date:
4681 buf = QLocale::c().toString(*
this, u"dd MMM yyyy hh:mm:ss ");
4682 buf += toOffsetString(Qt::TextDate, offsetFromUtc());
4685 case Qt::TextDate: {
4686 const std::pair<QDate, QTime> p = getDateTime(d);
4687 buf = toStringTextDate(p.first);
4689 buf.insert(buf.lastIndexOf(u' '),
4690 u' ' + p.second.toString(Qt::TextDate));
4692 switch (timeSpec()) {
4695#if QT_CONFIG(timezone)
4697 buf += u' ' + d->m_timeZone.displayName(
4698 *
this, QTimeZone::OffsetName, QLocale::c());
4707 if (getSpec(d) == Qt::OffsetFromUTC)
4708 buf += toOffsetString(Qt::TextDate, offsetFromUtc());
4713 case Qt::ISODateWithMs: {
4714 const std::pair<QDate, QTime> p = getDateTime(d);
4715 buf = toStringIsoDate(p.first);
4718 buf += u'T' + p.second.toString(format);
4719 switch (getSpec(d)) {
4723 case Qt::OffsetFromUTC:
4725 buf += toOffsetString(Qt::ISODate, offsetFromUtc());
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808QString QDateTime::toString(QStringView format, QCalendar cal)
const
4810 return QLocale::c().toString(*
this, format, cal);
4815
4816
4817
4818QString QDateTime::toString(QStringView format)
const
4820 return QLocale::c().toString(*
this, format, QCalendar());
4824
4825
4826
4827QString QDateTime::toString(
const QString &format)
const
4829 return QLocale::c().toString(*
this, qToStringViewIgnoringNull(format), QCalendar());
4835 const QDateTimePrivate::TransitionOptions resolve = toTransitionOptions(
4836 forward ? QDateTime::TransitionResolution::RelativeToBefore
4837 : QDateTime::TransitionResolution::RelativeToAfter);
4838 auto status = getStatus(d);
4839 Q_ASSERT(status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime
4840 | QDateTimePrivate::ValidDateTime));
4841 auto spec = extractSpec(status);
4842 if (QTimeZone::isUtcOrFixedOffset(spec)) {
4843 setDateTime(d, date, time);
4847 qint64 local = timeToMSecs(date, time);
4848 const QDateTimePrivate::ZoneState state = stateAtMillis(d.timeZone(), local, resolve);
4849 Q_ASSERT(state.valid || state.dst == QDateTimePrivate::UnknownDaylightTime);
4850 if (state.dst == QDateTimePrivate::UnknownDaylightTime)
4851 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
4853 status = mergeDaylightStatus(status | QDateTimePrivate::ValidDateTime, state.dst);
4855 if (status & QDateTimePrivate::ShortData) {
4856 d.data.msecs = state.when;
4857 d.data.status = status.toInt();
4860 d->m_status = status;
4862 d->m_msecs = state.when;
4863 d->m_offsetFromUtc = state.offset;
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4883QDateTime QDateTime::addDays(qint64 ndays)
const
4888 QDateTime dt(*
this);
4889 std::pair<QDate, QTime> p = getDateTime(d);
4890 massageAdjustedDateTime(dt.d, p.first.addDays(ndays), p.second, ndays >= 0);
4895
4896
4897
4898
4899
4900
4901
4902
4905
4906
4907
4908
4909
4910
4911
4912
4915
4916
4917
4918
4919
4920
4921
4922
4925
4926
4927
4928
4929
4930
4931
4932
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4949QDateTime QDateTime::addMonths(
int nmonths)
const
4954 QDateTime dt(*
this);
4955 std::pair<QDate, QTime> p = getDateTime(d);
4956 massageAdjustedDateTime(dt.d, p.first.addMonths(nmonths), p.second, nmonths >= 0);
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4975QDateTime QDateTime::addYears(
int nyears)
const
4980 QDateTime dt(*
this);
4981 std::pair<QDate, QTime> p = getDateTime(d);
4982 massageAdjustedDateTime(dt.d, p.first.addYears(nyears), p.second, nyears >= 0);
4987
4988
4989
4990
4991
4992
4993
4994
4996QDateTime QDateTime::addSecs(qint64 s)
const
4999 if (qMulOverflow(s, std::integral_constant<qint64, MSECS_PER_SEC>(), &msecs))
5001 return addMSecs(msecs);
5005
5006
5007
5008
5009
5010
5011
5012
5013QDateTime QDateTime::addMSecs(qint64 msecs)
const
5018 QDateTime dt(*
this);
5019 switch (getSpec(d)) {
5023 if (!qAddOverflow(toMSecsSinceEpoch(), msecs, &msecs))
5024 dt.setMSecsSinceEpoch(msecs);
5029 case Qt::OffsetFromUTC:
5031 if (qAddOverflow(getMSecs(d), msecs, &msecs)) {
5033 }
else if (d.isShort() && msecsCanBeSmall(msecs)) {
5034 dt.d.data.msecs = qintptr(msecs);
5037 dt.d->m_msecs = msecs;
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5080qint64 QDateTime::daysTo(
const QDateTime &other)
const
5082 return date().daysTo(other.date());
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5102qint64 QDateTime::secsTo(
const QDateTime &other)
const
5104 return msecsTo(other) / MSECS_PER_SEC;
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5121qint64 QDateTime::msecsTo(
const QDateTime &other)
const
5123 if (!isValid() || !other.isValid())
5126 return other.toMSecsSinceEpoch() - toMSecsSinceEpoch();
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5198#if QT_DEPRECATED_SINCE(6
, 9
)
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5218QDateTime QDateTime::toTimeSpec(Qt::TimeSpec spec)
const
5220 return toTimeZone(asTimeZone(spec, 0,
"toTimeSpec"));
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5238QDateTime QDateTime::toOffsetFromUtc(
int offsetSeconds)
const
5240 return toTimeZone(QTimeZone::fromSecondsAheadOfUtc(offsetSeconds));
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254QDateTime QDateTime::toLocalTime()
const
5256 return toTimeZone(QTimeZone::LocalTime);
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270QDateTime QDateTime::toUTC()
const
5272 return toTimeZone(QTimeZone::UTC);
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5293QDateTime QDateTime::toTimeZone(
const QTimeZone &timeZone)
const
5295 if (timeRepresentation() == timeZone)
5299 QDateTime ret = *
this;
5300 ret.setTimeZone(timeZone);
5304 return fromMSecsSinceEpoch(toMSecsSinceEpoch(), timeZone);
5308
5309
5310
5311
5312
5313
5315bool QDateTime::equals(
const QDateTime &other)
const
5318 return !other.isValid();
5319 if (!other.isValid())
5322 const qint64 thisMs = getMSecs(d);
5323 const qint64 yourMs = getMSecs(other.d);
5324 if (usesSameOffset(d, other.d) || areFarEnoughApart(thisMs, yourMs))
5325 return thisMs == yourMs;
5328 return toMSecsSinceEpoch() == other.toMSecsSinceEpoch();
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5353
5354
5355
5356
5357
5358
5359
5360
5361
5366 return rhs.isValid() ? Qt::weak_ordering::less : Qt::weak_ordering::equivalent;
5369 return Qt::weak_ordering::greater;
5371 const qint64 lhms = getMSecs(lhs.d), rhms = getMSecs(rhs.d);
5372 if (usesSameOffset(lhs.d, rhs.d) || areFarEnoughApart(lhms, rhms))
5373 return Qt::compareThreeWay(lhms, rhms);
5376 return Qt::compareThreeWay(lhs.toMSecsSinceEpoch(), rhs.toMSecsSinceEpoch());
5380
5381
5382
5383
5384
5385
5386
5387
5388
5391
5392
5393
5394
5395
5396
5397
5398
5399
5402
5403
5404
5405
5406
5407
5408
5409
5412
5413
5414
5415
5416
5417
5418
5419
5420
5423
5424
5425
5426
5427
5428
5429
5430
5431
5434
5435
5437QDateTime QDateTime::currentDateTime()
5439 return currentDateTime(QTimeZone::LocalTime);
5443
5444
5445
5446
5447
5448
5449
5450
5452QDateTime QDateTime::currentDateTimeUtc()
5454 return currentDateTime(QTimeZone::UTC);
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5470
5471
5472
5473
5474
5475
5476
5477
5478
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5506
5507
5509
5510
5511
5512QDateTime QDateTime::fromStdTimePoint(
5513 std::chrono::time_point<
5514 std::chrono::system_clock,
5515 std::chrono::milliseconds
5518 return fromMSecsSinceEpoch(time.time_since_epoch().count(), QTimeZone::UTC);
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5585#if defined(Q_OS_WIN)
5586static inline uint msecsFromDecomposed(
int hour,
int minute,
int sec,
int msec = 0)
5588 return MSECS_PER_HOUR * hour + MSECS_PER_MIN * minute + MSECS_PER_SEC * sec + msec;
5591QDate QDate::currentDate()
5595 return QDate(st.wYear, st.wMonth, st.wDay);
5598QTime QTime::currentTime()
5603 ct.setHMS(st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
5607QDateTime QDateTime::currentDateTime(
const QTimeZone &zone)
5611 const Qt::TimeSpec spec = zone.timeSpec();
5619 QDate d(st.wYear, st.wMonth, st.wDay);
5620 QTime t(msecsFromDecomposed(st.wHour, st.wMinute, st.wSecond, st.wMilliseconds));
5621 QDateTime utc(d, t, QTimeZone::UTC);
5622 return spec == Qt::UTC ? utc : utc.toTimeZone(zone);
5625qint64 QDateTime::currentMSecsSinceEpoch()
noexcept
5629 const qint64 daysAfterEpoch = QDate(1970, 1, 1).daysTo(QDate(st.wYear, st.wMonth, st.wDay));
5631 return msecsFromDecomposed(st.wHour, st.wMinute, st.wSecond, st.wMilliseconds) +
5632 daysAfterEpoch * MSECS_PER_DAY;
5635qint64 QDateTime::currentSecsSinceEpoch()
noexcept
5639 const qint64 daysAfterEpoch = QDate(1970, 1, 1).daysTo(QDate(st.wYear, st.wMonth, st.wDay));
5641 return st.wHour * SECS_PER_HOUR + st.wMinute * SECS_PER_MIN + st.wSecond +
5642 daysAfterEpoch * SECS_PER_DAY;
5645#elif defined(Q_OS_UNIX)
5646QDate QDate::currentDate()
5648 return QDateTime::currentDateTime().date();
5651QTime QTime::currentTime()
5653 return QDateTime::currentDateTime().time();
5656QDateTime QDateTime::currentDateTime(
const QTimeZone &zone)
5658 return fromMSecsSinceEpoch(currentMSecsSinceEpoch(), zone);
5661qint64 QDateTime::currentMSecsSinceEpoch()
noexcept
5663 struct timespec when;
5664 if (clock_gettime(CLOCK_REALTIME, &when) == 0)
5665 return when.tv_sec * MSECS_PER_SEC + (when.tv_nsec + 500'000) / 1'000'000;
5666 Q_UNREACHABLE_RETURN(0);
5669qint64 QDateTime::currentSecsSinceEpoch()
noexcept
5671 struct timespec when;
5672 if (clock_gettime(CLOCK_REALTIME, &when) == 0)
5674 Q_UNREACHABLE_RETURN(0);
5677#error "What system is this?"
5680#if QT_DEPRECATED_SINCE(6
, 9
)
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704QDateTime QDateTime::fromMSecsSinceEpoch(qint64 msecs, Qt::TimeSpec spec,
int offsetSeconds)
5706 return fromMSecsSinceEpoch(msecs,
5707 asTimeZone(spec, offsetSeconds,
"QDateTime::fromMSecsSinceEpoch"));
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733QDateTime QDateTime::fromSecsSinceEpoch(qint64 secs, Qt::TimeSpec spec,
int offsetSeconds)
5735 return fromSecsSinceEpoch(secs,
5736 asTimeZone(spec, offsetSeconds,
"QDateTime::fromSecsSinceEpoch"));
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754QDateTime QDateTime::fromMSecsSinceEpoch(qint64 msecs,
const QTimeZone &timeZone)
5757 reviseTimeZone(dt.d, timeZone, TransitionResolution::Reject);
5758 if (timeZone.isValid())
5759 dt.setMSecsSinceEpoch(msecs);
5764
5766QDateTime QDateTime::fromMSecsSinceEpoch(qint64 msecs)
5768 return fromMSecsSinceEpoch(msecs, QTimeZone::LocalTime);
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785QDateTime QDateTime::fromSecsSinceEpoch(qint64 secs,
const QTimeZone &timeZone)
5788 reviseTimeZone(dt.d, timeZone, TransitionResolution::Reject);
5789 if (timeZone.isValid())
5790 dt.setSecsSinceEpoch(secs);
5795
5797QDateTime QDateTime::fromSecsSinceEpoch(qint64 secs)
5799 return fromSecsSinceEpoch(secs, QTimeZone::LocalTime);
5802#if QT_CONFIG(datestring)
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5818
5819
5820
5821QDateTime QDateTime::fromString(QStringView string, Qt::DateFormat format)
5823 if (string.isEmpty())
5827 case Qt::RFC2822Date: {
5828 const ParsedRfcDateTime rfc = rfcDateImpl(string);
5830 if (!rfc.date.isValid() || !rfc.time.isValid())
5833 QDateTime dateTime(rfc.date, rfc.time, QTimeZone::UTC);
5834 dateTime.setTimeZone(QTimeZone::fromSecondsAheadOfUtc(rfc.utcOffset));
5838 case Qt::ISODateWithMs: {
5839 const int size = string.size();
5843 QDate date = QDate::fromString(string.first(10), Qt::ISODate);
5844 if (!date.isValid())
5847 return date.startOfDay();
5849 QTimeZone zone = QTimeZone::LocalTime;
5850 QStringView isoString = string.sliced(10);
5853 if (isoString.size() < 2
5854 || !(isoString.startsWith(u'T', Qt::CaseInsensitive)
5858 || isoString.startsWith(u' '))) {
5861 isoString = isoString.sliced(1);
5864 if (isoString.endsWith(u'Z', Qt::CaseInsensitive)) {
5865 zone = QTimeZone::UTC;
5870 int signIndex = isoString.size() - 1;
5871 Q_ASSERT(signIndex >= 0);
5874 QChar character(isoString[signIndex]);
5875 found = character == u'+' || character == u'-';
5876 }
while (!found && --signIndex >= 0);
5880 int offset = fromOffsetString(isoString.sliced(signIndex), &ok);
5883 isoString = isoString.first(signIndex);
5884 zone = QTimeZone::fromSecondsAheadOfUtc(offset);
5890 bool isMidnight24 =
false;
5891 QTime time = fromIsoTimeString(isoString, format, &isMidnight24);
5892 if (!time.isValid())
5895 return date.addDays(1).startOfDay(zone);
5896 return QDateTime(date, time, zone);
5898 case Qt::TextDate: {
5899 QVarLengthArray<QStringView, 6> parts;
5901 auto tokens = string.tokenize(u' ', Qt::SkipEmptyParts);
5902 auto it = tokens.begin();
5903 for (
int i = 0; i < 6 && it != tokens.end(); ++i, ++it)
5904 parts.emplace_back(*it);
5908 if (parts.size() < 5 || it != tokens.end())
5915 if (parts.at(3).contains(u':'))
5917 else if (parts.at(4).contains(u':'))
5923 int day = parts.at(2).toInt(&ok);
5924 int year = ok ? parts.at(yearPart).toInt(&ok) : 0;
5925 int month = fromShortMonthName(parts.at(1));
5926 if (!ok || year == 0 || day == 0 || month < 1)
5929 const QDate date(year, month, day);
5930 if (!date.isValid())
5933 const QTime time = fromIsoTimeString(parts.at(timePart), format,
nullptr);
5934 if (!time.isValid())
5937 if (parts.size() == 5)
5938 return QDateTime(date, time);
5940 QStringView tz = parts.at(5);
5941 if (tz.startsWith(
"UTC"_L1)
5943 || tz.startsWith(
"GMT"_L1, Qt::CaseInsensitive)) {
5946 return QDateTime(date, time, QTimeZone::UTC);
5948 int offset = fromOffsetString(tz, &ok);
5949 return ok ? QDateTime(date, time, QTimeZone::fromSecondsAheadOfUtc(offset))
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6044
6045
6046
6047
6050
6051
6052
6053QDateTime QDateTime::fromString(
const QString &string, QStringView format,
int baseYear,
6056#if QT_CONFIG(datetimeparser)
6059 QDateTimeParser dt(QMetaType::QDateTime, QDateTimeParser::FromString, cal);
6060 dt.setDefaultLocale(QLocale::c());
6061 if (dt.parseFormat(format) && (dt.fromString(string, &datetime, baseYear)
6062 || !datetime.isValid())) {
6075
6076
6077
6078
6081
6082
6083
6084
6087
6088
6089
6090
6093
6094
6095
6096
6097
6098
6101
6102
6103
6104
6105
6106QDateTime QDateTime::fromString(
const QString &string, QStringView format,
int baseYear)
6108 return fromString(string, format, baseYear, QCalendar());
6112
6113
6114
6115
6116
6117
6121
6122
6124#ifndef QT_NO_DATASTREAM
6126
6127
6128
6129
6130
6131
6133QDataStream &operator<<(QDataStream &out, QDate date)
6135 if (out.version() < QDataStream::Qt_5_0)
6136 return out << quint32(date.jd);
6138 return out << date.jd;
6142
6143
6144
6145
6146
6147
6149QDataStream &operator>>(QDataStream &in, QDate &date)
6151 if (in.version() < QDataStream::Qt_5_0) {
6155 date.jd = (jd != 0 ? jd : QDate::nullJd());
6164
6165
6166
6167
6168
6169
6171QDataStream &operator<<(QDataStream &out, QTime time)
6173 if (out.version() >= QDataStream::Qt_4_0) {
6174 return out << quint32(time.mds);
6177 return out << quint32(time.isNull() ? 0 : time.mds);
6182
6183
6184
6185
6186
6187
6189QDataStream &operator>>(QDataStream &in, QTime &time)
6193 if (in.version() >= QDataStream::Qt_4_0) {
6197 time.mds = (ds == 0) ? QTime::NullTime :
int(ds);
6203
6204
6205
6206
6207
6208
6209QDataStream &operator<<(QDataStream &out,
const QDateTime &dateTime)
6211 std::pair<QDate, QTime> dateAndTime;
6214 if (out.version() >= QDataStream::Qt_5_2) {
6217 dateAndTime = getDateTime(dateTime.d);
6218 out << dateAndTime << qint8(dateTime.timeSpec());
6219 if (dateTime.timeSpec() == Qt::OffsetFromUTC)
6220 out << qint32(dateTime.offsetFromUtc());
6221#if QT_CONFIG(timezone)
6222 else if (dateTime.timeSpec() == Qt::TimeZone)
6223 out << dateTime.timeZone();
6226 }
else if (out.version() == QDataStream::Qt_5_0) {
6232 dateAndTime = getDateTime((dateTime.isValid() ? dateTime.toUTC() : dateTime).d);
6233 out << dateAndTime << qint8(dateTime.timeSpec());
6235 }
else if (out.version() >= QDataStream::Qt_4_0) {
6238 dateAndTime = getDateTime(dateTime.d);
6240 switch (dateTime.timeSpec()) {
6242 out << (qint8)QDateTimePrivate::UTC;
6244 case Qt::OffsetFromUTC:
6245 out << (qint8)QDateTimePrivate::OffsetFromUTC;
6248 out << (qint8)QDateTimePrivate::TimeZone;
6251 out << (qint8)QDateTimePrivate::LocalUnknown;
6258 dateAndTime = getDateTime(dateTime.d);
6267
6268
6269
6270
6271
6272
6274QDataStream &operator>>(QDataStream &in, QDateTime &dateTime)
6279 QTimeZone zone(QTimeZone::LocalTime);
6281 if (in.version() >= QDataStream::Qt_5_2) {
6284 in >> dt >> tm >> ts;
6285 switch (
static_cast<Qt::TimeSpec>(ts)) {
6287 zone = QTimeZone::UTC;
6289 case Qt::OffsetFromUTC: {
6292 zone = QTimeZone::fromSecondsAheadOfUtc(offset);
6302 dateTime = QDateTime(dt, tm, zone);
6304 }
else if (in.version() == QDataStream::Qt_5_0) {
6307 in >> dt >> tm >> ts;
6308 dateTime = QDateTime(dt, tm, QTimeZone::UTC);
6309 if (
static_cast<Qt::TimeSpec>(ts) == Qt::LocalTime)
6310 dateTime = dateTime.toTimeZone(zone);
6312 }
else if (in.version() >= QDataStream::Qt_4_0) {
6315 in >> dt >> tm >> ts;
6316 switch (
static_cast<QDateTimePrivate::Spec>(ts)) {
6317 case QDateTimePrivate::OffsetFromUTC:
6318 case QDateTimePrivate::UTC:
6319 zone = QTimeZone::UTC;
6321 case QDateTimePrivate::TimeZone:
6322 case QDateTimePrivate::LocalUnknown:
6323 case QDateTimePrivate::LocalStandard:
6324 case QDateTimePrivate::LocalDST:
6327 dateTime = QDateTime(dt, tm, zone);
6333 dateTime = QDateTime(dt, tm);
6342
6343
6345#if !defined(QT_NO_DEBUG_STREAM) && QT_CONFIG(datestring)
6346QDebug operator<<(QDebug dbg, QDate date)
6348 QDebugStateSaver saver(dbg);
6349 dbg.nospace() <<
"QDate(";
6352 if (
int y = date.year(); y > 0 && y <= 9999)
6353 dbg.nospace() << date.toString(Qt::ISODate);
6355 dbg.nospace() << date.toString(Qt::TextDate);
6357 dbg.nospace() <<
"Invalid";
6358 dbg.nospace() <<
')';
6362QDebug operator<<(QDebug dbg, QTime time)
6364 QDebugStateSaver saver(dbg);
6365 dbg.nospace() <<
"QTime(";
6367 dbg.nospace() << time.toString(u"HH:mm:ss.zzz");
6369 dbg.nospace() <<
"Invalid";
6370 dbg.nospace() <<
')';
6374QDebug operator<<(QDebug dbg,
const QDateTime &date)
6376 QDebugStateSaver saver(dbg);
6377 dbg.nospace() <<
"QDateTime(";
6378 if (date.isValid()) {
6379 const Qt::TimeSpec ts = date.timeSpec();
6380 dbg.noquote() << date.toString(u"yyyy-MM-dd HH:mm:ss.zzz t")
6385 case Qt::OffsetFromUTC:
6386 dbg.space() << date.offsetFromUtc() <<
's';
6389#if QT_CONFIG(timezone)
6390 dbg.space() << date.timeZone().id();
6397 dbg.nospace() <<
"Invalid";
6399 return dbg.nospace() <<
')';
6404
6405
6406
6413 return key.isValid() ? qHash(key.toMSecsSinceEpoch(), seed) : seed;
6417
6418
6419
6422 return qHash(key.toJulianDay(), seed);
6426
6427
6428
6431 return qHash(key.msecsSinceStartOfDay(), seed);
size_t qHash(QTime key, size_t seed) noexcept
\qhashold{QHash}
static QTime msecsToTime(qint64 msecs)
static auto millisToWithinRange(qint64 millis)
static QDateTime toLatest(QDate day, const QTimeZone &zone)
static constexpr QDateTimePrivate::StatusFlags mergeDaylightStatus(QDateTimePrivate::StatusFlags sf, QDateTimePrivate::DaylightStatus status)
static QDate fixedDate(QCalendar::YearMonthDay parts)
static qint64 timeToMSecs(QDate date, QTime time)
static std::pair< QDate, QTime > getDateTime(const QDateTimeData &d)
static constexpr QDateTimePrivate::DaylightStatus extractDaylightStatus(QDateTimePrivate::StatusFlags status)
size_t qHash(const QDateTime &key, size_t seed)
\qhashold{QHash}
static Qt::TimeSpec getSpec(const QDateTimeData &d)
QDateTimePrivate::QDateTimeShortData ShortData
static void reviseTimeZone(QDateTimeData &d, const QTimeZone &zone, QDateTime::TransitionResolution resolve)
static QDateTimePrivate::StatusFlags getStatus(const QDateTimeData &d)
static qint64 getMSecs(const QDateTimeData &d)
static void massageAdjustedDateTime(QDateTimeData &d, QDate date, QTime time, bool forward)
static bool inDateTimeRange(qint64 jd, DaySide side)
QDateTimePrivate::QDateTimeData QDateTimeData
static bool specCanBeSmall(Qt::TimeSpec spec)
static int systemTimeYearMatching(int year)
static constexpr QDateTimePrivate::StatusFlags mergeSpec(QDateTimePrivate::StatusFlags status, Qt::TimeSpec spec)
static QDate msecsToDate(qint64 msecs)
static QString toOffsetString(Qt::DateFormat format, int offset)
size_t qHash(QDate key, size_t seed) noexcept
\qhashold{QHash}
static bool daysAndMillisOverflow(qint64 days, qint64 millisInDay, qint64 *sumMillis)
static QDate fixedDate(QCalendar::YearMonthDay parts, QCalendar cal)
static constexpr QDateTimePrivate::TransitionOptions toTransitionOptions(QDateTime::TransitionResolution res)
static void refreshSimpleDateTime(QDateTimeData &d)
bool areFarEnoughApart(qint64 leftMillis, qint64 rightMillis)
static void setDateTime(QDateTimeData &d, QDate date, QTime time)
static void refreshZonedDateTime(QDateTimeData &d, const QTimeZone &zone, QDateTimePrivate::TransitionOptions resolve)
static bool msecsCanBeSmall(qint64 msecs)
static constexpr Qt::TimeSpec extractSpec(QDateTimePrivate::StatusFlags status)
static bool usesSameOffset(const QDateTimeData &a, const QDateTimeData &b)
static void checkValidDateTime(QDateTimeData &d, QDateTime::TransitionResolution resolve)
Qt::weak_ordering compareThreeWay(const QDateTime &lhs, const QDateTime &rhs)
static QDateTime toEarliest(QDate day, const QTimeZone &zone)
static QDateTimePrivate::ZoneState stateAtMillis(const QTimeZone &zone, qint64 millis, QDateTimePrivate::TransitionOptions resolve)
static bool millisInSystemRange(qint64 millis, qint64 slack=0)
static qint64 msecsToJulianDay(qint64 msecs)