14#include "private/qcalendarmath_p.h"
15#include "private/qdatetime_p.h"
17#include "private/qcore_mac_p.h"
19#include "private/qgregoriancalendar_p.h"
20#include "private/qlocale_tools_p.h"
21#include "private/qlocaltime_p.h"
22#include "private/qnumeric_p.h"
23#include "private/qstringconverter_p.h"
24#include "private/qstringiterator_p.h"
25#if QT_CONFIG(timezone)
26#include "private/qtimezoneprivate_p.h"
28#if QT_CONFIG(datestring)
29# include "private/qttemporalpattern_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
1327
1328
1329
1330
1331
1332QString QDate::toString(QStringView format, QCalendar cal)
const
1334 return QLocale::c().toString(*
this, format, cal);
1339
1340
1341
1342QString QDate::toString(QStringView format)
const
1344 return QLocale::c().toString(*
this, format, QCalendar());
1348
1349
1350
1351QString QDate::toString(
const QString &format)
const
1353 return QLocale::c().toString(*
this, qToStringViewIgnoringNull(format), QCalendar());
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367bool QDate::setDate(
int year,
int month,
int day)
1369 const auto maybe = QGregorianCalendar::julianFromParts(year, month, day);
1370 jd = maybe.value_or(nullJd());
1375
1376
1377
1378
1379
1380
1381
1382
1383
1385bool QDate::setDate(
int year,
int month,
int day, QCalendar cal)
1387 *
this = QDate(year, month, day, cal);
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403void QDate::getDate(
int *year,
int *month,
int *day)
const
1405 QCalendar::YearMonthDay parts;
1407 parts = QGregorianCalendar::partsFromJulian(jd);
1409 const bool ok = parts.isValid();
1411 *year = ok ? parts.year : 0;
1413 *month = ok ? parts.month : 0;
1415 *day = ok ? parts.day : 0;
1419
1420
1421
1422
1423
1424
1425
1426
1428QDate QDate::addDays(qint64 ndays)
const
1433 if (qint64 r; Q_UNLIKELY(qAddOverflow(jd, ndays, &r)))
1436 return fromJulianDay(r);
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1475QDate QDate::addMonths(
int nmonths, QCalendar cal)
const
1483 auto parts = cal.partsFromDate(*
this);
1485 if (!parts.isValid())
1487 Q_ASSERT(parts.year || cal.hasYearZero());
1489 parts.month += nmonths;
1490 while (parts.month <= 0) {
1491 if (--parts.year || cal.hasYearZero())
1492 parts.month += cal.monthsInYear(parts.year);
1494 int count = cal.monthsInYear(parts.year);
1495 while (parts.month > count) {
1496 parts.month -= count;
1497 count = (++parts.year || cal.hasYearZero()) ? cal.monthsInYear(parts.year) : 0;
1500 return fixedDate(parts, cal);
1504
1505
1507QDate QDate::addMonths(
int nmonths)
const
1515 auto parts = QGregorianCalendar::partsFromJulian(jd);
1517 if (!parts.isValid())
1519 Q_ASSERT(parts.year);
1521 parts.month += nmonths;
1522 while (parts.month <= 0) {
1526 while (parts.month > 12) {
1532 return fixedDate(parts);
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1551QDate QDate::addYears(
int nyears, QCalendar cal)
const
1556 auto parts = cal.partsFromDate(*
this);
1557 if (!parts.isValid())
1560 int old_y = parts.year;
1561 parts.year += nyears;
1564 if (!cal.hasYearZero() && ((old_y > 0) != (parts.year > 0) || !parts.year))
1565 parts.year += nyears > 0 ? +1 : -1;
1567 return fixedDate(parts, cal);
1571
1572
1574QDate QDate::addYears(
int nyears)
const
1579 auto parts = QGregorianCalendar::partsFromJulian(jd);
1580 if (!parts.isValid())
1583 int old_y = parts.year;
1584 parts.year += nyears;
1587 if ((old_y > 0) != (parts.year > 0) || !parts.year)
1588 parts.year += nyears > 0 ? +1 : -1;
1590 return fixedDate(parts);
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1606qint64 QDate::daysTo(QDate d)
const
1608 if (isNull() || d.isNull())
1617
1618
1619
1620
1621
1624
1625
1626
1627
1628
1629
1630
1633
1634
1635
1636
1639
1640
1641
1642
1643
1646
1647
1648
1649
1652
1653
1654
1655
1656
1659
1660
1661
1662
1663
1665#if QT_CONFIG(datestring)
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1682
1683
1684
1685QDate QDate::fromString(QStringView string, Qt::DateFormat format)
1687 if (string.isEmpty())
1691 case Qt::RFC2822Date:
1692 return rfcDateImpl(string).date;
1694 case Qt::TextDate: {
1696 QVarLengthArray<QStringView, 4> parts;
1697 auto tokens = string.tokenize(u' ', Qt::SkipEmptyParts);
1698 auto it = tokens.begin();
1699 for (
int i = 0; i < 4 && it != tokens.end(); ++i, ++it)
1700 parts.emplace_back(*it);
1702 if (parts.size() != 4 || it != tokens.end())
1706 int year = parts.at(3).toInt(&ok);
1707 int day = ok ? parts.at(2).toInt(&ok) : 0;
1711 const int month = fromShortMonthName(parts.at(1));
1715 return QDate(year, month, day);
1719 if (string.size() >= 10 && string[4].isPunct() && string[7].isPunct()
1720 && (string.size() == 10 || !string[10].isDigit())) {
1721 const ParsedInt year = readInt(string.first(4));
1722 const ParsedInt month = readInt(string.sliced(5, 2));
1723 const ParsedInt day = readInt(string.sliced(8, 2));
1724 if (year.ok() && year.result > 0 && year.result <= 9999 && month.ok() && day.ok())
1725 return QDate(year.result, month.result, day.result);
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
1880
1881
1882
1883
1886
1887
1888
1889QDate QDate::fromString(
const QString &string, QStringView format,
int baseYear, QCalendar cal)
1891#if QT_CONFIG(datetimeparser)
1892 QDatePattern pattern = QDatePattern::fromQtFormat(format);
1893 pattern.setLocale(QLocale::c());
1894 pattern.setCalendar(cal);
1895 pattern.setBaseYear(baseYear);
1896 if (
auto match = pattern.parse(string, QDate(baseYear, 1, 1, cal));
1897 match.size == string.size()) {
1898 return std::move(match.payload);
1910
1911
1912
1913
1916
1917
1918
1919
1922
1923
1924
1925
1928
1929
1930
1931
1932
1933
1936
1937
1938
1939
1940
1941QDate QDate::fromString(
const QString &string, QStringView format,
int baseYear)
1943 return fromString(string, format, baseYear, QCalendar());
1947
1948
1949
1950
1951
1952
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1967bool QDate::isValid(
int year,
int month,
int day)
1969 return QGregorianCalendar::validParts(year, month, day);
1973
1974
1975
1976
1977
1978
1979
1981bool QDate::isLeapYear(
int y)
1983 return QGregorianCalendar::leapTest(y);
1987
1988
1989
1990
1991
1994
1995
1996
1997
1998
2001
2002
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
2051
2052
2053
2054
2055
2056
2057
2058
2061
2062
2063
2064
2065
2066
2067
2068
2070QTime::QTime(
int h,
int m,
int s,
int ms)
2072 setHMS(h, m, s, ms);
2077
2078
2079
2080
2081
2082
2083
2084
2087
2088
2089
2090
2091
2092
2093
2095bool QTime::isValid()
const
2097 return mds > NullTime && mds < MSECS_PER_DAY;
2102
2103
2104
2105
2106
2107
2109int QTime::hour()
const
2114 return ds() / MSECS_PER_HOUR;
2118
2119
2120
2121
2122
2123
2125int QTime::minute()
const
2130 return (ds() % MSECS_PER_HOUR) / MSECS_PER_MIN;
2134
2135
2136
2137
2138
2139
2141int QTime::second()
const
2146 return (ds() / MSECS_PER_SEC) % SECS_PER_MIN;
2150
2151
2152
2153
2154
2155
2157int QTime::msec()
const
2162 return ds() % MSECS_PER_SEC;
2165#if QT_CONFIG(datestring)
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2190QString QTime::toString(Qt::DateFormat format)
const
2196 case Qt::ISODateWithMs:
2197 return QString::asprintf(
"%02d:%02d:%02d.%03d", hour(), minute(), second(), msec());
2198 case Qt::RFC2822Date:
2202 return QString::asprintf(
"%02d:%02d:%02d", hour(), minute(), second());
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309QString QTime::toString(QStringView format)
const
2311 return QLocale::c().toString(*
this, format);
2317
2318
2319
2320
2321
2322
2323
2324
2325
2327bool QTime::setHMS(
int h,
int m,
int s,
int ms)
2329 if (!isValid(h,m,s,ms)) {
2333 mds = ((h * MINS_PER_HOUR + m) * SECS_PER_MIN + s) * MSECS_PER_SEC + ms;
2334 Q_ASSERT(mds >= 0 && mds < MSECS_PER_DAY);
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2353QTime QTime::addSecs(
int s)
const
2356 return addMSecs(s * MSECS_PER_SEC);
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2374int QTime::secsTo(QTime t)
const
2376 if (!isValid() || !t.isValid())
2380 int ourSeconds = ds() / MSECS_PER_SEC;
2381 int theirSeconds = t.ds() / MSECS_PER_SEC;
2382 return theirSeconds - ourSeconds;
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2397QTime QTime::addMSecs(
int ms)
const
2401 t.mds = QRoundingDown::qMod<MSECS_PER_DAY>(ds() + ms);
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2419int QTime::msecsTo(QTime t)
const
2421 if (!isValid() || !t.isValid())
2423 return t.ds() - ds();
2428
2429
2430
2431
2434
2435
2436
2437
2440
2441
2442
2443
2446
2447
2448
2449
2450
2453
2454
2455
2456
2459
2460
2461
2462
2463
2466
2467
2468
2469
2470
2471
2472
2473
2474
2477
2478
2479
2480
2481
2482
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2499#if QT_CONFIG(datestring)
2501static QTime fromIsoTimeString(QStringView string, Qt::DateFormat format,
bool *isMidnight24)
2503 Q_ASSERT(format == Qt::TextDate || format == Qt::ISODate || format == Qt::ISODateWithMs);
2505 *isMidnight24 =
false;
2511 const qsizetype dot = string.indexOf(u'.'), comma = string.indexOf(u',');
2513 tail = string.sliced(dot + 1);
2514 if (tail.indexOf(u'.') != -1)
2516 string = string.first(dot);
2517 }
else if (comma != -1) {
2518 tail = string.sliced(comma + 1);
2519 string = string.first(comma);
2521 if (tail.indexOf(u',') != -1)
2524 const ParsedInt frac = readInt(tail);
2526 if (tail.isEmpty() ? dot != -1 || comma != -1 : !frac.ok())
2528 Q_ASSERT(frac.ok() ^ tail.isEmpty());
2529 double fraction = frac.ok() ? frac.result * std::pow(0.1, tail.size()) : 0.0;
2531 const qsizetype size = string.size();
2532 if (size < 2 || size > 8)
2535 ParsedInt hour = readInt(string.first(2));
2536 if (!hour.ok() || hour.result > (format == Qt::TextDate ? 23 : 24))
2540 if (string.size() > 2) {
2541 if (string[2] == u':' && string.size() > 4)
2542 minute = readInt(string.sliced(3, 2));
2543 if (!minute.ok() || minute.result >= MINS_PER_HOUR)
2545 }
else if (format == Qt::TextDate) {
2547 }
else if (frac.ok()) {
2548 Q_ASSERT(!(fraction < 0.0) && fraction < 1.0);
2549 fraction *= MINS_PER_HOUR;
2550 minute.result = qulonglong(fraction);
2551 fraction -= minute.result;
2555 if (string.size() > 5) {
2556 if (string[5] == u':' && string.size() == 8)
2557 second = readInt(string.sliced(6, 2));
2558 if (!second.ok() || second.result >= SECS_PER_MIN)
2560 }
else if (frac.ok()) {
2561 if (format == Qt::TextDate)
2563 Q_ASSERT(!(fraction < 0.0) && fraction < 1.0);
2564 fraction *= SECS_PER_MIN;
2565 second.result = qulonglong(fraction);
2566 fraction -= second.result;
2569 Q_ASSERT(!(fraction < 0.0) && fraction < 1.0);
2571 int msec = frac.ok() ? qRound(MSECS_PER_SEC * fraction) : 0;
2573 if (msec == MSECS_PER_SEC) {
2576 if (isMidnight24 || hour.result < 23 || minute.result < 59 || second.result < 59) {
2578 if (++second.result == SECS_PER_MIN) {
2580 if (++minute.result == MINS_PER_HOUR) {
2589 msec = MSECS_PER_SEC - 1;
2594 if (hour.result == 24 && minute.result == 0 && second.result == 0 && msec == 0) {
2595 Q_ASSERT(format != Qt::TextDate);
2597 *isMidnight24 =
true;
2601 return QTime(hour.result, minute.result, second.result, msec);
2605
2606
2607
2608
2609
2610
2611
2612
2615
2616
2617
2618QTime QTime::fromString(QStringView string, Qt::DateFormat format)
2620 if (string.isEmpty())
2624 case Qt::RFC2822Date:
2625 return rfcDateImpl(string).time;
2627 case Qt::ISODateWithMs:
2630 return fromIsoTimeString(string, format,
nullptr);
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
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2708
2709
2710
2711
2714
2715
2716
2717QTime QTime::fromString(
const QString &string, QStringView format)
2719#if QT_CONFIG(datetimeparser)
2720 QTimePattern pattern = QTimePattern::fromQtFormat(format);
2721 pattern.setLocale(QLocale::c());
2722 if (
auto match = pattern.parse(string, QTime(0, 0)); match.size == string.size())
2723 return std::move(match.payload);
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2747bool QTime::isValid(
int h,
int m,
int s,
int ms)
2749 return (uint(h) < 24 && uint(m) < MINS_PER_HOUR && uint(s) < SECS_PER_MIN
2750 && uint(ms) < MSECS_PER_SEC);
2754
2755
2764 return JULIAN_DAY_FOR_EPOCH + QRoundingDown::qDiv<MSECS_PER_DAY>(msecs);
2769 return QDate::fromJulianDay(msecsToJulianDay(msecs));
2774 return QTime::fromMSecsSinceStartOfDay(QRoundingDown::qMod<MSECS_PER_DAY>(msecs));
2781 return qMulOverflow(days, std::integral_constant<qint64, MSECS_PER_DAY>(), sumMillis)
2782 || qAddOverflow(*sumMillis, millisInDay, sumMillis);
2788 qint64 days = date.toJulianDay() - JULIAN_DAY_FOR_EPOCH;
2789 qint64 msecs, dayms = time.msecsSinceStartOfDay();
2790 if (days < 0 && dayms > 0) {
2792 dayms -= MSECS_PER_DAY;
2794 if (daysAndMillisOverflow(days, dayms, &msecs)) {
2795 using Bound = std::numeric_limits<qint64>;
2796 return days < 0 ? Bound::min() : Bound::max();
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2820 static const auto bounds = QLocalTime::computeSystemMillisRange();
2821 return (bounds.minClip || millis >= bounds.min - slack)
2822 && (bounds.maxClip || millis <= bounds.max + slack);
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2843#if defined(Q_OS_WIN) || defined(Q_OS_WASM)
2844 static constexpr int forLeapEarly[] = { 1984, 1996, 1980, 1992, 1976, 1988, 1972 };
2845 static constexpr int regularEarly[] = { 1978, 1973, 1974, 1975, 1970, 1971, 1977 };
2847 static constexpr int forLeapEarly[] = { 1928, 1912, 1924, 1908, 1920, 1904, 1916 };
2848 static constexpr int regularEarly[] = { 1905, 1906, 1907, 1902, 1903, 1909, 1910 };
2850 static constexpr int forLeapLate[] = { 2012, 2024, 2036, 2020, 2032, 2016, 2028 };
2851 static constexpr int regularLate[] = { 2034, 2035, 2030, 2031, 2037, 2027, 2033 };
2852 const int dow = QGregorianCalendar::yearStartWeekDay(year);
2853 Q_ASSERT(dow == QDate(year, 1, 1).dayOfWeek());
2854 const int res = (QGregorianCalendar::leapTest(year)
2855 ? (year < 1970 ? forLeapEarly : forLeapLate)
2856 : (year < 1970 ? regularEarly : regularLate))[dow == 7 ? 0 : dow];
2857 Q_ASSERT(QDate(res, 1, 1).dayOfWeek() == dow);
2858 Q_ASSERT(QDate(res, 12, 31).dayOfWeek() == QDate(year, 12, 31).dayOfWeek());
2863QDateTimePrivate::ZoneState QDateTimePrivate::expressUtcAsLocal(qint64 utcMSecs)
2865 ZoneState result{utcMSecs};
2867 if (millisInSystemRange(utcMSecs)) {
2868 result = QLocalTime::utcToLocal(utcMSecs);
2875#if QT_CONFIG(timezone)
2876 if (
const auto sys = QTimeZone::systemTimeZone(); sys.isValid()) {
2877 result.offset = sys.d->offsetFromUtc(utcMSecs);
2878 if (result.offset != QTimeZonePrivate::invalidSeconds()) {
2879 if (qAddOverflow(utcMSecs, result.offset * MSECS_PER_SEC, &result.when))
2881 result.dst = sys.d->isDaylightTime(utcMSecs) ? DaylightTime : StandardTime;
2882 result.valid =
true;
2891 const qint64 jd = msecsToJulianDay(utcMSecs);
2892 const auto ymd = QGregorianCalendar::partsFromJulian(jd);
2893 qint64 diffMillis, fakeUtc;
2894 const auto fakeJd = QGregorianCalendar::julianFromParts(systemTimeYearMatching(ymd.year),
2895 ymd.month, ymd.day);
2896 if (Q_UNLIKELY(!fakeJd
2897 || qMulOverflow(jd - *fakeJd, std::integral_constant<qint64, MSECS_PER_DAY>(),
2899 || qSubOverflow(utcMSecs, diffMillis, &fakeUtc))) {
2903 result = QLocalTime::utcToLocal(fakeUtc);
2905 if (!result.valid || qAddOverflow(result.when, diffMillis, &result.when)) {
2908 result.when = utcMSecs;
2909 result.valid =
false;
2920 qint64 jd = msecsToJulianDay(millis);
2921 auto ymd = QGregorianCalendar::partsFromJulian(jd);
2922 const auto fakeJd = QGregorianCalendar::julianFromParts(systemTimeYearMatching(ymd.year),
2923 ymd.month, ymd.day);
2924 result.good = fakeJd && !daysAndMillisOverflow(*fakeJd - jd, millis, &result.shifted);
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
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2986 case QDateTime::TransitionResolution::RelativeToBefore:
2987 return QDateTimePrivate::GapUseAfter | QDateTimePrivate::FoldUseBefore;
2988 case QDateTime::TransitionResolution::RelativeToAfter:
2989 return QDateTimePrivate::GapUseBefore | QDateTimePrivate::FoldUseAfter;
2990 case QDateTime::TransitionResolution::PreferBefore:
2991 return QDateTimePrivate::GapUseBefore | QDateTimePrivate::FoldUseBefore;
2992 case QDateTime::TransitionResolution::PreferAfter:
2993 return QDateTimePrivate::GapUseAfter | QDateTimePrivate::FoldUseAfter;
2994 case QDateTime::TransitionResolution::PreferStandard:
2995 return QDateTimePrivate::GapUseBefore
2996 | QDateTimePrivate::FoldUseAfter
2997 | QDateTimePrivate::FlipForReverseDst;
2998 case QDateTime::TransitionResolution::PreferDaylightSaving:
2999 return QDateTimePrivate::GapUseAfter
3000 | QDateTimePrivate::FoldUseBefore
3001 | QDateTimePrivate::FlipForReverseDst;
3002 case QDateTime::TransitionResolution::Reject:
break;
3010 return toTransitionOptions(dst == QDateTimePrivate::DaylightTime
3011 ? QDateTime::TransitionResolution::PreferDaylightSaving
3012 : QDateTime::TransitionResolution::PreferStandard);
3015QString QDateTimePrivate::localNameAtMillis(qint64 millis, DaylightStatus dst)
3017 const QDateTimePrivate::TransitionOptions resolve = toTransitionOptions(dst);
3018 QString abbreviation;
3019 if (millisInSystemRange(millis, MSECS_PER_DAY)) {
3020 abbreviation = QLocalTime::localTimeAbbreviationAt(millis, resolve);
3021 if (!abbreviation.isEmpty())
3022 return abbreviation;
3026#if QT_CONFIG(timezone)
3028 const auto sys = QTimeZone::systemTimeZone();
3029 if (sys.isValid()) {
3030 ZoneState state = zoneStateAtMillis(sys, millis, resolve);
3032 return sys.d->abbreviation(state.when - state.offset * MSECS_PER_SEC);
3038 auto fake = millisToWithinRange(millis);
3039 if (Q_LIKELY(fake.good))
3040 return QLocalTime::localTimeAbbreviationAt(fake.shifted, resolve);
3047QDateTimePrivate::ZoneState QDateTimePrivate::localStateAtMillis(
3048 qint64 millis, QDateTimePrivate::TransitionOptions resolve)
3052 if (millisInSystemRange(millis, MSECS_PER_DAY)) {
3053 auto result = QLocalTime::mapLocalTime(millis, resolve);
3059#if QT_CONFIG(timezone)
3061 const auto sys = QTimeZone::systemTimeZone();
3063 return zoneStateAtMillis(sys, millis, resolve);
3068 auto fake = millisToWithinRange(millis);
3069 if (Q_LIKELY(fake.good)) {
3070 auto result = QLocalTime::mapLocalTime(fake.shifted, resolve);
3073 if (Q_UNLIKELY(qAddOverflow(result.when, millis - fake.shifted, &adjusted))) {
3074 using Bound = std::numeric_limits<qint64>;
3075 adjusted = millis < fake.shifted ? Bound::min() : Bound::max();
3077 result.when = adjusted;
3079 result.when = millis;
3087#if QT_CONFIG(timezone)
3091QDateTimePrivate::ZoneState QDateTimePrivate::zoneStateAtMillis(
3092 const QTimeZone &zone, qint64 millis, QDateTimePrivate::TransitionOptions resolve)
3094 Q_ASSERT(zone.isValid());
3095 Q_ASSERT(zone.timeSpec() == Qt::TimeZone);
3096 return zone.d->stateAtZoneTime(millis, resolve);
3101 QDateTimePrivate::TransitionOptions resolve)
3103 if (zone.timeSpec() == Qt::LocalTime)
3104 return QDateTimePrivate::localStateAtMillis(millis, resolve);
3105#if QT_CONFIG(timezone)
3106 if (zone.timeSpec() == Qt::TimeZone && zone.isValid())
3107 return QDateTimePrivate::zoneStateAtMillis(zone, millis, resolve);
3114 return spec == Qt::LocalTime || spec == Qt::UTC;
3119 if constexpr (!QDateTimeData::CanBeSmall)
3123 sd.msecs = qintptr(msecs);
3124 return sd.msecs == msecs;
3127static constexpr inline
3130 status &= ~QDateTimePrivate::TimeSpecMask;
3131 status |= QDateTimePrivate::StatusFlags::fromInt(
int(spec) << QDateTimePrivate::TimeSpecShift);
3137 return Qt::TimeSpec((status & QDateTimePrivate::TimeSpecMask).toInt() >> QDateTimePrivate::TimeSpecShift);
3144 sf &= ~QDateTimePrivate::DaylightMask;
3145 if (status == QDateTimePrivate::DaylightTime) {
3146 sf |= QDateTimePrivate::SetToDaylightTime;
3147 }
else if (status == QDateTimePrivate::StandardTime) {
3148 sf |= QDateTimePrivate::SetToStandardTime;
3154static constexpr inline
3157 if (status.testFlag(QDateTimePrivate::SetToDaylightTime))
3158 return QDateTimePrivate::DaylightTime;
3159 if (status.testFlag(QDateTimePrivate::SetToStandardTime))
3160 return QDateTimePrivate::StandardTime;
3161 return QDateTimePrivate::UnknownDaylightTime;
3169 return qintptr(d.d) >> 8;
3179 return QDateTimePrivate::StatusFlag(qintptr(d.d) & 0xFF);
3186 return extractSpec(getStatus(d));
3190
3191
3192
3193
3196 const auto status = getStatus(a);
3197 if (status != getStatus(b))
3201 switch (extractSpec(status)) {
3208
3209
3210
3211
3212 case Qt::OffsetFromUTC:
3213 Q_ASSERT(!a.isShort() && !b.isShort());
3214 return a->m_offsetFromUtc == b->m_offsetFromUtc;
3216 Q_UNREACHABLE_RETURN(
false);
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3233 constexpr quint64 UtcOffsetMillisRange
3234 = quint64(QTimeZone::MaxUtcOffsetSecs - QTimeZone::MinUtcOffsetSecs) * MSECS_PER_SEC;
3236 return qSubOverflow(leftMillis, rightMillis, &gap) || QtPrivate::qUnsignedAbs(gap) > UtcOffsetMillisRange;
3241 QDateTimePrivate::TransitionOptions resolve)
3243 Q_ASSERT(zone.timeSpec() == Qt::TimeZone || zone.timeSpec() == Qt::LocalTime);
3244 auto status = getStatus(d);
3245 Q_ASSERT(extractSpec(status) == zone.timeSpec());
3246 int offsetFromUtc = 0;
3248
3249
3250
3251
3252
3253
3254
3255
3258 if (!status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime)) {
3259 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
3263 qint64 msecs = getMSecs(d);
3264 QDateTimePrivate::ZoneState state = stateAtMillis(zone, msecs, resolve);
3265 Q_ASSERT(!state.valid || (state.offset >= -SECS_PER_DAY && state.offset <= SECS_PER_DAY));
3266 if (state.dst == QDateTimePrivate::UnknownDaylightTime) {
3267 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
3268 }
else if (state.valid) {
3269 status = mergeDaylightStatus(status, state.dst);
3270 offsetFromUtc = state.offset;
3271 status.setFlag(QDateTimePrivate::ValidDateTime,
true);
3272 if (Q_UNLIKELY(msecs != state.when)) {
3274 if (status.testFlag(QDateTimePrivate::ShortData)) {
3275 if (msecsCanBeSmall(state.when)) {
3276 d.data.msecs = qintptr(state.when);
3279 status.setFlag(QDateTimePrivate::ShortData,
false);
3283 if (!status.testFlag(QDateTimePrivate::ShortData))
3284 d->m_msecs = state.when;
3287 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
3291 if (status.testFlag(QDateTimePrivate::ShortData)) {
3292 d.data.status = status.toInt();
3294 d->m_status = status;
3295 d->m_offsetFromUtc = offsetFromUtc;
3302 auto status = getStatus(d);
3303 Q_ASSERT(QTimeZone::isUtcOrFixedOffset(extractSpec(status)));
3304 status.setFlag(QDateTimePrivate::ValidDateTime,
3305 status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime));
3307 if (status.testFlag(QDateTimePrivate::ShortData))
3308 d.data.status = status.toInt();
3310 d->m_status = status;
3316 auto spec = extractSpec(getStatus(d));
3318 case Qt::OffsetFromUTC:
3327 refreshZonedDateTime(d, d.timeZone(), toTransitionOptions(resolve));
3333 QDateTime::TransitionResolution resolve)
3335 Qt::TimeSpec spec = zone.timeSpec();
3336 auto status = mergeSpec(getStatus(d), spec);
3337 bool reuse = d.isShort();
3342 Q_ASSERT(zone.fixedSecondsAheadOfUtc() == 0);
3344 case Qt::OffsetFromUTC:
3346 offset = zone.fixedSecondsAheadOfUtc();
3356 status &= ~(QDateTimePrivate::ValidDateTime | QDateTimePrivate::DaylightMask);
3358 d.data.status = status.toInt();
3361 d->m_status = status & ~QDateTimePrivate::ShortData;
3362 d->m_offsetFromUtc = offset;
3363#if QT_CONFIG(timezone)
3364 if (spec == Qt::TimeZone)
3365 d->m_timeZone = zone;
3369 if (QTimeZone::isUtcOrFixedOffset(spec))
3372 refreshZonedDateTime(d, zone, toTransitionOptions(resolve));
3378 if (!time.isValid() && date.isValid())
3379 time = QTime::fromMSecsSinceStartOfDay(0);
3381 QDateTimePrivate::StatusFlags newStatus = { };
3385 if (date.isValid()) {
3386 days = date.toJulianDay() - JULIAN_DAY_FOR_EPOCH;
3387 newStatus = QDateTimePrivate::ValidDate;
3392 if (time.isValid()) {
3393 ds = time.msecsSinceStartOfDay();
3394 newStatus |= QDateTimePrivate::ValidTime;
3396 Q_ASSERT(ds < MSECS_PER_DAY);
3399 if (days < 0 && ds > 0) {
3401 ds -= MSECS_PER_DAY;
3406 if (daysAndMillisOverflow(days, qint64(ds), &msecs)) {
3407 newStatus = QDateTimePrivate::StatusFlags{};
3412 if (msecsCanBeSmall(msecs)) {
3414 d.data.msecs = qintptr(msecs);
3415 d.data.status &= ~(QDateTimePrivate::ValidityMask | QDateTimePrivate::DaylightMask).toInt();
3416 d.data.status |= newStatus.toInt();
3425 d->m_status &= ~(QDateTimePrivate::ValidityMask | QDateTimePrivate::DaylightMask);
3426 d->m_status |= newStatus;
3432 auto status = getStatus(d);
3433 const qint64 msecs = getMSecs(d);
3434 const auto dayMilli = QRoundingDown::qDivMod<MSECS_PER_DAY>(msecs);
3435 return { status.testFlag(QDateTimePrivate::ValidDate)
3436 ? QDate::fromJulianDay(JULIAN_DAY_FOR_EPOCH + dayMilli.quotient)
3438 status.testFlag(QDateTimePrivate::ValidTime)
3439 ? QTime::fromMSecsSinceStartOfDay(dayMilli.remainder)
3444
3445
3447inline QDateTime::Data::Data()
noexcept
3452 quintptr value = mergeSpec(QDateTimePrivate::ShortData, Qt::LocalTime).toInt();
3453 d =
reinterpret_cast<QDateTimePrivate *>(value);
3456inline QDateTime::Data::Data(
const QTimeZone &zone)
3458 Qt::TimeSpec spec = zone.timeSpec();
3459 if (CanBeSmall && Q_LIKELY(specCanBeSmall(spec))) {
3460 quintptr value = mergeSpec(QDateTimePrivate::ShortData, spec).toInt();
3461 d =
reinterpret_cast<QDateTimePrivate *>(value);
3462 Q_ASSERT(isShort());
3465 d =
new QDateTimePrivate;
3467 d->m_status = mergeSpec({}, spec);
3468 if (spec == Qt::OffsetFromUTC)
3469 d->m_offsetFromUtc = zone.fixedSecondsAheadOfUtc();
3470 else if (spec == Qt::TimeZone)
3471 d->m_timeZone = zone;
3472 Q_ASSERT(!isShort());
3476inline QDateTime::Data::Data(
const Data &other)
noexcept
3481 if (specCanBeSmall(extractSpec(d->m_status)) && msecsCanBeSmall(d->m_msecs)) {
3483 sd.msecs = qintptr(d->m_msecs);
3484 sd.status = (d->m_status | QDateTimePrivate::ShortData).toInt();
3493inline QDateTime::Data::Data(Data &&other)
noexcept
3498 Q_ASSERT(dummy.isShort());
3499 other.data = dummy.data;
3502inline QDateTime::Data &QDateTime::Data::operator=(
const Data &other)
noexcept
3504 if (isShort() ? data == other.data : d == other.d)
3509 if (!other.isShort()) {
3511 if (specCanBeSmall(extractSpec(other.d->m_status)) && msecsCanBeSmall(other.d->m_msecs)) {
3513 sd.msecs = qintptr(other.d->m_msecs);
3514 sd.status = (other.d->m_status | QDateTimePrivate::ShortData).toInt();
3522 if (!(quintptr(x) & QDateTimePrivate::ShortData) && !x->ref.deref())
3527inline QDateTime::Data::~Data()
3529 if (!isShort() && !d->ref.deref())
3533inline bool QDateTime::Data::isShort()
const
3535 bool b = quintptr(d) & QDateTimePrivate::ShortData;
3538 Q_ASSERT(b || !d->m_status.testFlag(QDateTimePrivate::ShortData));
3542 if constexpr (CanBeSmall)
3544 return Q_UNLIKELY(b);
3547inline void QDateTime::Data::detach()
3549 QDateTimePrivate *x;
3550 bool wasShort = isShort();
3553 x =
new QDateTimePrivate;
3554 x->m_status = QDateTimePrivate::StatusFlags::fromInt(data.status) & ~QDateTimePrivate::ShortData;
3555 x->m_msecs = data.msecs;
3557 if (d->ref.loadRelaxed() == 1)
3560 x =
new QDateTimePrivate(*d);
3563 x->ref.storeRelaxed(1);
3564 if (!wasShort && !d->ref.deref())
3569void QDateTime::Data::invalidate()
3572 data.status &= ~
int(QDateTimePrivate::ValidityMask);
3575 d->m_status &= ~QDateTimePrivate::ValidityMask;
3579QTimeZone QDateTime::Data::timeZone()
const
3581 switch (getSpec(*
this)) {
3583 return QTimeZone::UTC;
3584 case Qt::OffsetFromUTC:
3585 return QTimeZone::fromSecondsAheadOfUtc(d->m_offsetFromUtc);
3587#if QT_CONFIG(timezone)
3588 if (d->m_timeZone.isValid())
3589 return d->m_timeZone;
3593 return QTimeZone::LocalTime;
3598inline const QDateTimePrivate *QDateTime::Data::operator->()
const
3600 Q_ASSERT(!isShort());
3604inline QDateTimePrivate *QDateTime::Data::operator->()
3607 Q_ASSERT(!isShort());
3608 Q_ASSERT(d->ref.loadRelaxed() == 1);
3613
3614
3617QDateTime::Data QDateTimePrivate::create(QDate toDate, QTime toTime,
const QTimeZone &zone,
3618 QDateTime::TransitionResolution resolve)
3620 QDateTime::Data result(zone);
3621 setDateTime(result, toDate, toTime);
3622 if (zone.isUtcOrFixedOffset())
3623 refreshSimpleDateTime(result);
3625 refreshZonedDateTime(result, zone, toTransitionOptions(resolve));
3630
3631
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
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
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
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4016
4017
4018
4019
4020
4021
4022QDateTime::QDateTime()
noexcept
4024#if QT_VERSION >= QT_VERSION_CHECK(7
, 0
, 0
) || defined(QT_BOOTSTRAPPED) || QT_POINTER_SIZE == 8
4025 static_assert(
sizeof(ShortData) ==
sizeof(qint64));
4026 static_assert(
sizeof(Data) ==
sizeof(qint64));
4028 static_assert(
sizeof(ShortData) >=
sizeof(
void*),
"oops, Data::swap() is broken!");
4031#if QT_DEPRECATED_SINCE(6
, 9
)
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052QDateTime::QDateTime(QDate date, QTime time, Qt::TimeSpec spec,
int offsetSeconds)
4053 : d(QDateTimePrivate::create(date, time, asTimeZone(spec, offsetSeconds,
"QDateTime"),
4054 TransitionResolution::LegacyBehavior))
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4077QDateTime::QDateTime(QDate date, QTime time,
const QTimeZone &timeZone, TransitionResolution resolve)
4078 : d(QDateTimePrivate::create(date, time, timeZone, resolve))
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4095QDateTime::QDateTime(QDate date, QTime time, TransitionResolution resolve)
4096 : d(QDateTimePrivate::create(date, time, QTimeZone::LocalTime, resolve))
4101
4102
4103QDateTime::QDateTime(
const QDateTime &other)
noexcept
4109
4110
4111
4112
4113QDateTime::QDateTime(QDateTime &&other)
noexcept
4114 : d(std::move(other.d))
4119
4120
4121QDateTime::~QDateTime()
4126
4127
4129QDateTime &QDateTime::operator=(
const QDateTime &other)
noexcept
4135
4136
4137
4138
4141
4142
4143
4144
4145
4147bool QDateTime::isNull()
const
4150 return !getStatus(d).testAnyFlag(QDateTimePrivate::ValidityMask);
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4167bool QDateTime::isValid()
const
4169 return getStatus(d).testFlag(QDateTimePrivate::ValidDateTime);
4173
4174
4175
4176
4178QDate QDateTime::date()
const
4180 return getStatus(d).testFlag(QDateTimePrivate::ValidDate) ? msecsToDate(getMSecs(d)) : QDate();
4184
4185
4186
4187
4189QTime QDateTime::time()
const
4191 return getStatus(d).testFlag(QDateTimePrivate::ValidTime) ? msecsToTime(getMSecs(d)) : QTime();
4195
4196
4197
4198
4199
4200
4201
4202
4203
4205Qt::TimeSpec QDateTime::timeSpec()
const
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4224QTimeZone QDateTime::timeRepresentation()
const
4226 return d.timeZone();
4229#if QT_CONFIG(timezone)
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4245QTimeZone QDateTime::timeZone()
const
4247 return d.timeZone().asBackendZone();
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4273int QDateTime::offsetFromUtc()
const
4275 const auto status = getStatus(d);
4276 if (!status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime))
4280 return d->m_offsetFromUtc;
4282 auto spec = extractSpec(status);
4283 if (spec == Qt::LocalTime) {
4285 const auto resolve = toTransitionOptions(extractDaylightStatus(status));
4286 return QDateTimePrivate::localStateAtMillis(getMSecs(d), resolve).offset;
4289 Q_ASSERT(spec == Qt::UTC);
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4314QString QDateTime::timeZoneAbbreviation()
const
4319 switch (getSpec(d)) {
4322 case Qt::OffsetFromUTC:
4323 return "UTC"_L1 + toOffsetString(Qt::ISODate, d->m_offsetFromUtc);
4325#if !QT_CONFIG(timezone)
4328 Q_ASSERT(d->m_timeZone.isValid());
4329 return d->m_timeZone.abbreviation(*
this);
4332#if defined(Q_OS_WIN) && QT_CONFIG(timezone)
4334 if (QString sys = QTimeZone::systemTimeZone().abbreviation(*
this); !sys.isEmpty())
4338 return QDateTimePrivate::localNameAtMillis(getMSecs(d),
4339 extractDaylightStatus(getStatus(d)));
4345
4346
4347
4348
4349
4350
4351
4352
4353
4355bool QDateTime::isDaylightTime()
const
4360 switch (getSpec(d)) {
4362 case Qt::OffsetFromUTC:
4365#if !QT_CONFIG(timezone)
4368 Q_ASSERT(d->m_timeZone.isValid());
4369 if (
auto dst = extractDaylightStatus(getStatus(d));
4370 dst != QDateTimePrivate::UnknownDaylightTime) {
4371 return dst == QDateTimePrivate::DaylightTime;
4373 return d->m_timeZone.d->isDaylightTime(toMSecsSinceEpoch());
4375 case Qt::LocalTime: {
4376 auto dst = extractDaylightStatus(getStatus(d));
4377 if (dst == QDateTimePrivate::UnknownDaylightTime) {
4378 dst = QDateTimePrivate::localStateAtMillis(
4379 getMSecs(d), toTransitionOptions(TransitionResolution::LegacyBehavior)).dst;
4381 return dst == QDateTimePrivate::DaylightTime;
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4402void QDateTime::setDate(QDate date, TransitionResolution resolve)
4404 setDateTime(d, date, time());
4405 checkValidDateTime(d, resolve);
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4427void QDateTime::setTime(QTime time, TransitionResolution resolve)
4429 setDateTime(d, date(), time);
4430 checkValidDateTime(d, resolve);
4433#if QT_DEPRECATED_SINCE(6
, 9
)
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4452void QDateTime::setTimeSpec(Qt::TimeSpec spec)
4454 reviseTimeZone(d, asTimeZone(spec, 0,
"QDateTime::setTimeSpec"),
4455 TransitionResolution::LegacyBehavior);
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4474void QDateTime::setOffsetFromUtc(
int offsetSeconds)
4476 reviseTimeZone(d, QTimeZone::fromSecondsAheadOfUtc(offsetSeconds),
4477 TransitionResolution::Reject);
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4501void QDateTime::setTimeZone(
const QTimeZone &toZone, TransitionResolution resolve)
4503 reviseTimeZone(d, toZone, resolve);
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521qint64 QDateTime::toMSecsSinceEpoch()
const
4528 const auto status = getStatus(d);
4529 if (!status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime))
4532 switch (extractSpec(status)) {
4536 case Qt::OffsetFromUTC:
4537 Q_ASSERT(!d.isShort());
4538 return d->m_msecs - d->m_offsetFromUtc * MSECS_PER_SEC;
4541 if (status.testFlag(QDateTimePrivate::ShortData)) {
4543 const auto resolve = toTransitionOptions(extractDaylightStatus(getStatus(d)));
4544 const auto state = QDateTimePrivate::localStateAtMillis(getMSecs(d), resolve);
4545 return state.when - state.offset * MSECS_PER_SEC;
4548 return d->m_msecs - d->m_offsetFromUtc * MSECS_PER_SEC;
4551 Q_ASSERT(!d.isShort());
4552#if QT_CONFIG(timezone)
4554 if (d->m_timeZone.isValid())
4555 return d->m_msecs - d->m_offsetFromUtc * MSECS_PER_SEC;
4559 Q_UNREACHABLE_RETURN(0);
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577qint64 QDateTime::toSecsSinceEpoch()
const
4579 return toMSecsSinceEpoch() / MSECS_PER_SEC;
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597void QDateTime::setMSecsSinceEpoch(qint64 msecs)
4599 auto status = getStatus(d);
4600 const auto spec = extractSpec(status);
4601 Q_ASSERT(specCanBeSmall(spec) || !d.isShort());
4602 QDateTimePrivate::ZoneState state(msecs);
4604 status &= ~QDateTimePrivate::ValidityMask;
4605 if (QTimeZone::isUtcOrFixedOffset(spec)) {
4606 if (spec == Qt::OffsetFromUTC)
4607 state.offset = d->m_offsetFromUtc;
4608 if (!state.offset || !qAddOverflow(msecs, state.offset * MSECS_PER_SEC, &state.when))
4609 status |= QDateTimePrivate::ValidityMask;
4610 }
else if (spec == Qt::LocalTime) {
4611 state = QDateTimePrivate::expressUtcAsLocal(msecs);
4613 status = mergeDaylightStatus(status | QDateTimePrivate::ValidityMask, state.dst);
4614#if QT_CONFIG(timezone)
4615 }
else if (spec == Qt::TimeZone && (d.detach(), d->m_timeZone.isValid())) {
4616 const auto data = d->m_timeZone.d->data(msecs);
4617 if (Q_LIKELY(data.offsetFromUtc != QTimeZonePrivate::invalidSeconds())) {
4618 state.offset = data.offsetFromUtc;
4619 Q_ASSERT(state.offset >= -SECS_PER_DAY && state.offset <= SECS_PER_DAY);
4621 || !Q_UNLIKELY(qAddOverflow(msecs, state.offset * MSECS_PER_SEC, &state.when))) {
4622 d->m_status = mergeDaylightStatus(status | QDateTimePrivate::ValidityMask,
4623 data.daylightTimeOffset
4624 ? QDateTimePrivate::DaylightTime
4625 : QDateTimePrivate::StandardTime);
4626 d->m_msecs = state.when;
4627 d->m_offsetFromUtc = state.offset;
4633 Q_ASSERT(!status.testFlag(QDateTimePrivate::ValidDateTime)
4634 || (state.offset >= -SECS_PER_DAY && state.offset <= SECS_PER_DAY));
4636 if (msecsCanBeSmall(state.when) && d.isShort()) {
4638 d.data.msecs = qintptr(state.when);
4639 d.data.status = status.toInt();
4642 d->m_status = status & ~QDateTimePrivate::ShortData;
4643 d->m_msecs = state.when;
4644 d->m_offsetFromUtc = state.offset;
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659void QDateTime::setSecsSinceEpoch(qint64 secs)
4662 if (!qMulOverflow(secs, std::integral_constant<qint64, MSECS_PER_SEC>(), &msecs))
4663 setMSecsSinceEpoch(msecs);
4668#if QT_CONFIG(datestring)
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699QString QDateTime::toString(Qt::DateFormat format)
const
4706 case Qt::RFC2822Date:
4707 buf = QLocale::c().toString(*
this, u"dd MMM yyyy hh:mm:ss ");
4708 buf += toOffsetString(Qt::TextDate, offsetFromUtc());
4711 case Qt::TextDate: {
4712 const std::pair<QDate, QTime> p = getDateTime(d);
4713 buf = toStringTextDate(p.first);
4715 buf.insert(buf.lastIndexOf(u' '),
4716 u' ' + p.second.toString(Qt::TextDate));
4718 switch (timeSpec()) {
4721#if QT_CONFIG(timezone)
4723 buf += u' ' + d->m_timeZone.displayName(
4724 *
this, QTimeZone::OffsetName, QLocale::c());
4733 if (getSpec(d) == Qt::OffsetFromUTC)
4734 buf += toOffsetString(Qt::TextDate, offsetFromUtc());
4739 case Qt::ISODateWithMs: {
4740 const std::pair<QDate, QTime> p = getDateTime(d);
4741 buf = toStringIsoDate(p.first);
4744 buf += u'T' + p.second.toString(format);
4745 switch (getSpec(d)) {
4749 case Qt::OffsetFromUTC:
4751 buf += toOffsetString(Qt::ISODate, offsetFromUtc());
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
4801QString QDateTime::toString(QStringView format, QCalendar cal)
const
4803 return QLocale::c().toString(*
this, format, cal);
4808
4809
4810
4811QString QDateTime::toString(QStringView format)
const
4813 return QLocale::c().toString(*
this, format, QCalendar());
4817
4818
4819
4820QString QDateTime::toString(
const QString &format)
const
4822 return QLocale::c().toString(*
this, qToStringViewIgnoringNull(format), QCalendar());
4828 const QDateTimePrivate::TransitionOptions resolve = toTransitionOptions(
4829 forward ? QDateTime::TransitionResolution::RelativeToBefore
4830 : QDateTime::TransitionResolution::RelativeToAfter);
4831 auto status = getStatus(d);
4832 Q_ASSERT(status.testFlags(QDateTimePrivate::ValidDate | QDateTimePrivate::ValidTime
4833 | QDateTimePrivate::ValidDateTime));
4834 auto spec = extractSpec(status);
4835 if (QTimeZone::isUtcOrFixedOffset(spec)) {
4836 setDateTime(d, date, time);
4840 qint64 local = timeToMSecs(date, time);
4841 const QDateTimePrivate::ZoneState state = stateAtMillis(d.timeZone(), local, resolve);
4842 Q_ASSERT(state.valid || state.dst == QDateTimePrivate::UnknownDaylightTime);
4843 if (state.dst == QDateTimePrivate::UnknownDaylightTime)
4844 status.setFlag(QDateTimePrivate::ValidDateTime,
false);
4846 status = mergeDaylightStatus(status | QDateTimePrivate::ValidDateTime, state.dst);
4848 if (status & QDateTimePrivate::ShortData) {
4849 d.data.msecs = state.when;
4850 d.data.status = status.toInt();
4853 d->m_status = status;
4855 d->m_msecs = state.when;
4856 d->m_offsetFromUtc = state.offset;
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4876QDateTime QDateTime::addDays(qint64 ndays)
const
4881 QDateTime dt(*
this);
4882 std::pair<QDate, QTime> p = getDateTime(d);
4883 massageAdjustedDateTime(dt.d, p.first.addDays(ndays), p.second, ndays >= 0);
4888
4889
4890
4891
4892
4893
4894
4895
4898
4899
4900
4901
4902
4903
4904
4905
4908
4909
4910
4911
4912
4913
4914
4915
4918
4919
4920
4921
4922
4923
4924
4925
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4942QDateTime QDateTime::addMonths(
int nmonths)
const
4947 QDateTime dt(*
this);
4948 std::pair<QDate, QTime> p = getDateTime(d);
4949 massageAdjustedDateTime(dt.d, p.first.addMonths(nmonths), p.second, nmonths >= 0);
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4968QDateTime QDateTime::addYears(
int nyears)
const
4973 QDateTime dt(*
this);
4974 std::pair<QDate, QTime> p = getDateTime(d);
4975 massageAdjustedDateTime(dt.d, p.first.addYears(nyears), p.second, nyears >= 0);
4980
4981
4982
4983
4984
4985
4986
4987
4989QDateTime QDateTime::addSecs(qint64 s)
const
4992 if (qMulOverflow(s, std::integral_constant<qint64, MSECS_PER_SEC>(), &msecs))
4994 return addMSecs(msecs);
4998
4999
5000
5001
5002
5003
5004
5005
5006QDateTime QDateTime::addMSecs(qint64 msecs)
const
5011 QDateTime dt(*
this);
5012 switch (getSpec(d)) {
5016 if (!qAddOverflow(toMSecsSinceEpoch(), msecs, &msecs))
5017 dt.setMSecsSinceEpoch(msecs);
5022 case Qt::OffsetFromUTC:
5024 if (qAddOverflow(getMSecs(d), msecs, &msecs)) {
5026 }
else if (d.isShort() && msecsCanBeSmall(msecs)) {
5027 dt.d.data.msecs = qintptr(msecs);
5030 dt.d->m_msecs = msecs;
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5073qint64 QDateTime::daysTo(
const QDateTime &other)
const
5075 return date().daysTo(other.date());
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5094qint64 QDateTime::secsTo(
const QDateTime &other)
const
5096 return msecsTo(other) / MSECS_PER_SEC;
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5113qint64 QDateTime::msecsTo(
const QDateTime &other)
const
5115 if (!isValid() || !other.isValid())
5118 return other.toMSecsSinceEpoch() - toMSecsSinceEpoch();
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5188#if QT_DEPRECATED_SINCE(6
, 9
)
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5208QDateTime QDateTime::toTimeSpec(Qt::TimeSpec spec)
const
5210 return toTimeZone(asTimeZone(spec, 0,
"toTimeSpec"));
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5228QDateTime QDateTime::toOffsetFromUtc(
int offsetSeconds)
const
5230 return toTimeZone(QTimeZone::fromSecondsAheadOfUtc(offsetSeconds));
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244QDateTime QDateTime::toLocalTime()
const
5246 return toTimeZone(QTimeZone::LocalTime);
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260QDateTime QDateTime::toUTC()
const
5262 return toTimeZone(QTimeZone::UTC);
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5283QDateTime QDateTime::toTimeZone(
const QTimeZone &timeZone)
const
5285 if (timeRepresentation() == timeZone)
5289 QDateTime ret = *
this;
5290 ret.setTimeZone(timeZone);
5294 return fromMSecsSinceEpoch(toMSecsSinceEpoch(), timeZone);
5298
5299
5300
5301
5302
5303
5305bool QDateTime::equals(
const QDateTime &other)
const
5308 return !other.isValid();
5309 if (!other.isValid())
5312 const qint64 thisMs = getMSecs(d);
5313 const qint64 yourMs = getMSecs(other.d);
5314 if (usesSameOffset(d, other.d) || areFarEnoughApart(thisMs, yourMs))
5315 return thisMs == yourMs;
5318 return toMSecsSinceEpoch() == other.toMSecsSinceEpoch();
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5343
5344
5345
5346
5347
5348
5349
5350
5351
5356 return rhs.isValid() ? Qt::weak_ordering::less : Qt::weak_ordering::equivalent;
5359 return Qt::weak_ordering::greater;
5361 const qint64 lhms = getMSecs(lhs.d), rhms = getMSecs(rhs.d);
5362 if (usesSameOffset(lhs.d, rhs.d) || areFarEnoughApart(lhms, rhms))
5363 return Qt::compareThreeWay(lhms, rhms);
5366 return Qt::compareThreeWay(lhs.toMSecsSinceEpoch(), rhs.toMSecsSinceEpoch());
5370
5371
5372
5373
5374
5375
5376
5377
5378
5381
5382
5383
5384
5385
5386
5387
5388
5389
5392
5393
5394
5395
5396
5397
5398
5399
5402
5403
5404
5405
5406
5407
5408
5409
5410
5413
5414
5415
5416
5417
5418
5419
5420
5421
5424
5425
5427QDateTime QDateTime::currentDateTime()
5429 return currentDateTime(QTimeZone::LocalTime);
5433
5434
5435
5436
5437
5438
5439
5440
5442QDateTime QDateTime::currentDateTimeUtc()
5444 return currentDateTime(QTimeZone::UTC);
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5460
5461
5462
5463
5464
5465
5466
5467
5468
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5496
5497
5499
5500
5501
5502QDateTime QDateTime::fromStdTimePoint(
5503 std::chrono::time_point<
5504 std::chrono::system_clock,
5505 std::chrono::milliseconds
5508 return fromMSecsSinceEpoch(time.time_since_epoch().count(), QTimeZone::UTC);
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5575#if defined(Q_OS_WIN)
5576static inline uint msecsFromDecomposed(
int hour,
int minute,
int sec,
int msec = 0)
5578 return MSECS_PER_HOUR * hour + MSECS_PER_MIN * minute + MSECS_PER_SEC * sec + msec;
5581QDate QDate::currentDate()
5585 return QDate(st.wYear, st.wMonth, st.wDay);
5588QTime QTime::currentTime()
5593 ct.setHMS(st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
5597QDateTime QDateTime::currentDateTime(
const QTimeZone &zone)
5601 const Qt::TimeSpec spec = zone.timeSpec();
5609 QDate d(st.wYear, st.wMonth, st.wDay);
5610 QTime t(msecsFromDecomposed(st.wHour, st.wMinute, st.wSecond, st.wMilliseconds));
5611 QDateTime utc(d, t, QTimeZone::UTC);
5612 return spec == Qt::UTC ? utc : utc.toTimeZone(zone);
5615qint64 QDateTime::currentMSecsSinceEpoch()
noexcept
5619 const qint64 daysAfterEpoch = QDate(1970, 1, 1).daysTo(QDate(st.wYear, st.wMonth, st.wDay));
5621 return msecsFromDecomposed(st.wHour, st.wMinute, st.wSecond, st.wMilliseconds) +
5622 daysAfterEpoch * MSECS_PER_DAY;
5625qint64 QDateTime::currentSecsSinceEpoch()
noexcept
5629 const qint64 daysAfterEpoch = QDate(1970, 1, 1).daysTo(QDate(st.wYear, st.wMonth, st.wDay));
5631 return st.wHour * SECS_PER_HOUR + st.wMinute * SECS_PER_MIN + st.wSecond +
5632 daysAfterEpoch * SECS_PER_DAY;
5635#elif defined(Q_OS_UNIX)
5636QDate QDate::currentDate()
5638 return QDateTime::currentDateTime().date();
5641QTime QTime::currentTime()
5643 return QDateTime::currentDateTime().time();
5646QDateTime QDateTime::currentDateTime(
const QTimeZone &zone)
5648 return fromMSecsSinceEpoch(currentMSecsSinceEpoch(), zone);
5651qint64 QDateTime::currentMSecsSinceEpoch()
noexcept
5653 struct timespec when;
5654 if (clock_gettime(CLOCK_REALTIME, &when) == 0)
5655 return when.tv_sec * MSECS_PER_SEC + (when.tv_nsec + 500'000) / 1'000'000;
5656 Q_UNREACHABLE_RETURN(0);
5659qint64 QDateTime::currentSecsSinceEpoch()
noexcept
5661 struct timespec when;
5662 if (clock_gettime(CLOCK_REALTIME, &when) == 0)
5664 Q_UNREACHABLE_RETURN(0);
5667#error "What system is this?"
5670#if QT_DEPRECATED_SINCE(6
, 9
)
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694QDateTime QDateTime::fromMSecsSinceEpoch(qint64 msecs, Qt::TimeSpec spec,
int offsetSeconds)
5696 return fromMSecsSinceEpoch(msecs,
5697 asTimeZone(spec, offsetSeconds,
"QDateTime::fromMSecsSinceEpoch"));
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723QDateTime QDateTime::fromSecsSinceEpoch(qint64 secs, Qt::TimeSpec spec,
int offsetSeconds)
5725 return fromSecsSinceEpoch(secs,
5726 asTimeZone(spec, offsetSeconds,
"QDateTime::fromSecsSinceEpoch"));
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744QDateTime QDateTime::fromMSecsSinceEpoch(qint64 msecs,
const QTimeZone &timeZone)
5747 reviseTimeZone(dt.d, timeZone, TransitionResolution::Reject);
5748 if (timeZone.isValid())
5749 dt.setMSecsSinceEpoch(msecs);
5754
5756QDateTime QDateTime::fromMSecsSinceEpoch(qint64 msecs)
5758 return fromMSecsSinceEpoch(msecs, QTimeZone::LocalTime);
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775QDateTime QDateTime::fromSecsSinceEpoch(qint64 secs,
const QTimeZone &timeZone)
5778 reviseTimeZone(dt.d, timeZone, TransitionResolution::Reject);
5779 if (timeZone.isValid())
5780 dt.setSecsSinceEpoch(secs);
5785
5787QDateTime QDateTime::fromSecsSinceEpoch(qint64 secs)
5789 return fromSecsSinceEpoch(secs, QTimeZone::LocalTime);
5792#if QT_CONFIG(datestring)
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5808
5809
5810
5811QDateTime QDateTime::fromString(QStringView string, Qt::DateFormat format)
5813 if (string.isEmpty())
5817 case Qt::RFC2822Date: {
5818 const ParsedRfcDateTime rfc = rfcDateImpl(string);
5820 if (!rfc.date.isValid() || !rfc.time.isValid())
5823 QDateTime dateTime(rfc.date, rfc.time, QTimeZone::UTC);
5824 dateTime.setTimeZone(QTimeZone::fromSecondsAheadOfUtc(rfc.utcOffset));
5828 case Qt::ISODateWithMs: {
5829 const int size = string.size();
5833 QDate date = QDate::fromString(string.first(10), Qt::ISODate);
5834 if (!date.isValid())
5837 return date.startOfDay();
5839 QTimeZone zone = QTimeZone::LocalTime;
5840 QStringView isoString = string.sliced(10);
5843 if (isoString.size() < 2
5844 || !(isoString.startsWith(u'T', Qt::CaseInsensitive)
5848 || isoString.startsWith(u' '))) {
5851 isoString = isoString.sliced(1);
5854 if (isoString.endsWith(u'Z', Qt::CaseInsensitive)) {
5855 zone = QTimeZone::UTC;
5860 int signIndex = isoString.size() - 1;
5861 Q_ASSERT(signIndex >= 0);
5864 QChar character(isoString[signIndex]);
5865 found = character == u'+' || character == u'-';
5866 }
while (!found && --signIndex >= 0);
5870 int offset = fromOffsetString(isoString.sliced(signIndex), &ok);
5873 isoString = isoString.first(signIndex);
5874 zone = QTimeZone::fromSecondsAheadOfUtc(offset);
5880 bool isMidnight24 =
false;
5881 QTime time = fromIsoTimeString(isoString, format, &isMidnight24);
5882 if (!time.isValid())
5885 return date.addDays(1).startOfDay(zone);
5886 return QDateTime(date, time, zone);
5888 case Qt::TextDate: {
5889 QVarLengthArray<QStringView, 6> parts;
5891 auto tokens = string.tokenize(u' ', Qt::SkipEmptyParts);
5892 auto it = tokens.begin();
5893 for (
int i = 0; i < 6 && it != tokens.end(); ++i, ++it)
5894 parts.emplace_back(*it);
5898 if (parts.size() < 5 || it != tokens.end())
5905 if (parts.at(3).contains(u':'))
5907 else if (parts.at(4).contains(u':'))
5913 int day = parts.at(2).toInt(&ok);
5914 int year = ok ? parts.at(yearPart).toInt(&ok) : 0;
5915 int month = fromShortMonthName(parts.at(1));
5916 if (!ok || year == 0 || day == 0 || month < 1)
5919 const QDate date(year, month, day);
5920 if (!date.isValid())
5923 const QTime time = fromIsoTimeString(parts.at(timePart), format,
nullptr);
5924 if (!time.isValid())
5927 if (parts.size() == 5)
5928 return QDateTime(date, time);
5930 QStringView tz = parts.at(5);
5931 if (tz.startsWith(
"UTC"_L1)
5933 || tz.startsWith(
"GMT"_L1, Qt::CaseInsensitive)) {
5936 return QDateTime(date, time, QTimeZone::UTC);
5938 int offset = fromOffsetString(tz, &ok);
5939 return ok ? QDateTime(date, time, QTimeZone::fromSecondsAheadOfUtc(offset))
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
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
6031
6032
6033
6034
6037
6038
6039
6040QDateTime QDateTime::fromString(
const QString &string, QStringView format,
int baseYear,
6043#if QT_CONFIG(datetimeparser)
6044 QDateTimePattern pattern = QDateTimePattern::fromQtFormat(format);
6045 pattern.setLocale(QLocale::c());
6046 pattern.setCalendar(cal);
6047 pattern.setBaseYear(baseYear);
6048 if (
auto match = pattern.parse(string, QDate(baseYear, 1, 1, cal).startOfDay());
6049 match.size == string.size()) {
6050 return std::move(match.payload);
6062
6063
6064
6065
6068
6069
6070
6071
6074
6075
6076
6077
6080
6081
6082
6083
6084
6085
6088
6089
6090
6091
6092
6093QDateTime QDateTime::fromString(
const QString &string, QStringView format,
int baseYear)
6095 return fromString(string, format, baseYear, QCalendar());
6099
6100
6101
6102
6103
6104
6108
6109
6111#ifndef QT_NO_DATASTREAM
6113
6114
6115
6116
6117
6118
6120QDataStream &operator<<(QDataStream &out, QDate date)
6122 if (out.version() < QDataStream::Qt_5_0)
6123 return out << quint32(date.jd);
6125 return out << date.jd;
6129
6130
6131
6132
6133
6134
6136QDataStream &operator>>(QDataStream &in, QDate &date)
6138 if (in.version() < QDataStream::Qt_5_0) {
6142 date.jd = (jd != 0 ? jd : QDate::nullJd());
6151
6152
6153
6154
6155
6156
6158QDataStream &operator<<(QDataStream &out, QTime time)
6160 if (out.version() >= QDataStream::Qt_4_0) {
6161 return out << quint32(time.mds);
6164 return out << quint32(time.isNull() ? 0 : time.mds);
6169
6170
6171
6172
6173
6174
6176QDataStream &operator>>(QDataStream &in, QTime &time)
6180 if (in.version() >= QDataStream::Qt_4_0) {
6184 time.mds = (ds == 0) ? QTime::NullTime :
int(ds);
6190
6191
6192
6193
6194
6195
6196QDataStream &operator<<(QDataStream &out,
const QDateTime &dateTime)
6198 std::pair<QDate, QTime> dateAndTime;
6201 if (out.version() >= QDataStream::Qt_5_2) {
6204 dateAndTime = getDateTime(dateTime.d);
6205 out << dateAndTime << qint8(dateTime.timeSpec());
6206 if (dateTime.timeSpec() == Qt::OffsetFromUTC)
6207 out << qint32(dateTime.offsetFromUtc());
6208#if QT_CONFIG(timezone)
6209 else if (dateTime.timeSpec() == Qt::TimeZone)
6210 out << dateTime.timeZone();
6213 }
else if (out.version() == QDataStream::Qt_5_0) {
6219 dateAndTime = getDateTime((dateTime.isValid() ? dateTime.toUTC() : dateTime).d);
6220 out << dateAndTime << qint8(dateTime.timeSpec());
6222 }
else if (out.version() >= QDataStream::Qt_4_0) {
6225 dateAndTime = getDateTime(dateTime.d);
6227 switch (dateTime.timeSpec()) {
6229 out << (qint8)QDateTimePrivate::UTC;
6231 case Qt::OffsetFromUTC:
6232 out << (qint8)QDateTimePrivate::OffsetFromUTC;
6235 out << (qint8)QDateTimePrivate::TimeZone;
6238 out << (qint8)QDateTimePrivate::LocalUnknown;
6245 dateAndTime = getDateTime(dateTime.d);
6254
6255
6256
6257
6258
6259
6261QDataStream &operator>>(QDataStream &in, QDateTime &dateTime)
6266 QTimeZone zone(QTimeZone::LocalTime);
6268 if (in.version() >= QDataStream::Qt_5_2) {
6271 in >> dt >> tm >> ts;
6272 switch (
static_cast<Qt::TimeSpec>(ts)) {
6274 zone = QTimeZone::UTC;
6276 case Qt::OffsetFromUTC: {
6279 zone = QTimeZone::fromSecondsAheadOfUtc(offset);
6289 dateTime = QDateTime(dt, tm, zone);
6291 }
else if (in.version() == QDataStream::Qt_5_0) {
6294 in >> dt >> tm >> ts;
6295 dateTime = QDateTime(dt, tm, QTimeZone::UTC);
6296 if (
static_cast<Qt::TimeSpec>(ts) == Qt::LocalTime)
6297 dateTime = dateTime.toTimeZone(zone);
6299 }
else if (in.version() >= QDataStream::Qt_4_0) {
6302 in >> dt >> tm >> ts;
6303 switch (
static_cast<QDateTimePrivate::Spec>(ts)) {
6304 case QDateTimePrivate::OffsetFromUTC:
6305 case QDateTimePrivate::UTC:
6306 zone = QTimeZone::UTC;
6308 case QDateTimePrivate::TimeZone:
6309 case QDateTimePrivate::LocalUnknown:
6310 case QDateTimePrivate::LocalStandard:
6311 case QDateTimePrivate::LocalDST:
6314 dateTime = QDateTime(dt, tm, zone);
6320 dateTime = QDateTime(dt, tm);
6329
6330
6332#if !defined(QT_NO_DEBUG_STREAM) && QT_CONFIG(datestring)
6333QDebug operator<<(QDebug dbg, QDate date)
6335 QDebugStateSaver saver(dbg);
6336 dbg.nospace() <<
"QDate(";
6339 if (
int y = date.year(); y > 0 && y <= 9999)
6340 dbg.nospace() << date.toString(Qt::ISODate);
6342 dbg.nospace() << date.toString(Qt::TextDate);
6344 dbg.nospace() <<
"Invalid";
6345 dbg.nospace() <<
')';
6349QDebug operator<<(QDebug dbg, QTime time)
6351 QDebugStateSaver saver(dbg);
6352 dbg.nospace() <<
"QTime(";
6354 dbg.nospace() << time.toString(u"HH:mm:ss.zzz");
6356 dbg.nospace() <<
"Invalid";
6357 dbg.nospace() <<
')';
6361QDebug operator<<(QDebug dbg,
const QDateTime &date)
6363 QDebugStateSaver saver(dbg);
6364 dbg.nospace() <<
"QDateTime(";
6365 if (date.isValid()) {
6366 const Qt::TimeSpec ts = date.timeSpec();
6367 dbg.noquote() << date.toString(u"yyyy-MM-dd HH:mm:ss.zzz t")
6372 case Qt::OffsetFromUTC:
6373 dbg.space() << date.offsetFromUtc() <<
's';
6376#if QT_CONFIG(timezone)
6377 dbg.space() << date.timeZone().id();
6384 dbg.nospace() <<
"Invalid";
6386 return dbg.nospace() <<
')';
6391
6392
6393
6400 return key.isValid() ? qHash(key.toMSecsSinceEpoch(), seed) : seed;
6404
6405
6406
6409 return qHash(key.toJulianDay(), seed);
6413
6414
6415
6418 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)