1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
|
// Copyright (C) 2022 The Qt Company Ltd.
// Copyright (C) 2013 John Layt <jlayt@kde.org>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:critical reason:data-parser
#include "qtimezone.h"
#include "qtimezoneprivate_p.h"
#if QT_CONFIG(timezone_locale)
# include "qtimezonelocale_p.h"
#endif
#include "qtimezoneprivate_data_p.h"
#include <qdatastream.h>
#include <qdebug.h>
#include <qstring.h>
#include <private/qcalendarmath_p.h>
#include <private/qnumeric_p.h>
#if QT_CONFIG(icu) || !QT_CONFIG(timezone_locale)
# include <private/qstringiterator_p.h>
#endif
#include <private/qtools_p.h>
#include <algorithm>
QT_BEGIN_NAMESPACE
using namespace QtMiscUtils;
using namespace QtTimeZoneCldr;
using namespace Qt::StringLiterals;
// For use with std::is_sorted() in assertions:
[[maybe_unused]]
constexpr bool earlierZoneData(ZoneData less, ZoneData more) noexcept
{
return less.windowsIdKey < more.windowsIdKey
|| (less.windowsIdKey == more.windowsIdKey && less.territory < more.territory);
}
[[maybe_unused]]
static bool earlierWinData(WindowsData less, WindowsData more) noexcept
{
// Actually only tested in the negative, to check more < less never happens,
// so should be true if more < less in either part; hence || not && combines.
return less.windowsIdKey < more.windowsIdKey
|| less.windowsId().compare(more.windowsId(), Qt::CaseInsensitive) < 0;
}
// For use with std::lower_bound():
constexpr bool atLowerUtcOffset(UtcData entry, qint32 offsetSeconds) noexcept
{
return entry.offsetFromUtc < offsetSeconds;
}
constexpr bool atLowerWindowsKey(WindowsData entry, qint16 winIdKey) noexcept
{
return entry.windowsIdKey < winIdKey;
}
static bool earlierAliasId(AliasData entry, QByteArrayView aliasId) noexcept
{
return entry.aliasId().compare(aliasId, Qt::CaseInsensitive) < 0;
}
static bool earlierWindowsId(WindowsData entry, QByteArrayView winId) noexcept
{
return entry.windowsId().compare(winId, Qt::CaseInsensitive) < 0;
}
constexpr bool zoneAtLowerWindowsKey(ZoneData entry, qint16 winIdKey) noexcept
{
return entry.windowsIdKey < winIdKey;
}
// Static table-lookup helpers
static quint16 toWindowsIdKey(const QByteArray &winId)
{
// Key and winId are monotonic, table is sorted on them.
const auto data = std::lower_bound(std::begin(windowsDataTable), std::end(windowsDataTable),
winId, earlierWindowsId);
if (data != std::end(windowsDataTable) && data->windowsId() == winId)
return data->windowsIdKey;
return 0;
}
static QByteArray toWindowsIdLiteral(quint16 windowsIdKey)
{
// Caller should be passing a valid (in range) key; and table is sorted in
// increasing order, with no gaps in numbering, starting with key = 1 at
// index [0]. So this should normally work:
if (Q_LIKELY(windowsIdKey > 0 && windowsIdKey <= std::size(windowsDataTable))) {
const auto &data = windowsDataTable[windowsIdKey - 1];
if (Q_LIKELY(data.windowsIdKey == windowsIdKey))
return data.windowsId().toByteArray();
}
// Fall back on binary chop - key and winId are monotonic, table is sorted on them:
const auto data = std::lower_bound(std::begin(windowsDataTable), std::end(windowsDataTable),
windowsIdKey, atLowerWindowsKey);
if (data != std::end(windowsDataTable) && data->windowsIdKey == windowsIdKey)
return data->windowsId().toByteArray();
return QByteArray();
}
static auto zoneStartForWindowsId(quint16 windowsIdKey) noexcept
{
// Caller must check the resulting iterator isn't std::end(zoneDataTable)
// and does match windowsIdKey, since this is just the lower bound.
return std::lower_bound(std::begin(zoneDataTable), std::end(zoneDataTable),
windowsIdKey, zoneAtLowerWindowsKey);
}
/*
Base class implementing common utility routines, only instantiate for a null tz.
*/
QTimeZonePrivate::QTimeZonePrivate()
{
// If std::is_sorted() were constexpr, the first could be a static_assert().
// From C++20, we should be able to rework it in terms of std::all_of().
Q_ASSERT(std::is_sorted(std::begin(zoneDataTable), std::end(zoneDataTable),
earlierZoneData));
Q_ASSERT(std::is_sorted(std::begin(windowsDataTable), std::end(windowsDataTable),
earlierWinData));
}
QTimeZonePrivate::~QTimeZonePrivate()
{
}
bool QTimeZonePrivate::operator==(const QTimeZonePrivate &other) const
{
// TODO Too simple, but need to solve problem of comparing different derived classes
// Should work for all System and ICU classes as names guaranteed unique, but not for Simple.
// Perhaps once all classes have working transitions can compare full list?
return (m_id == other.m_id);
}
bool QTimeZonePrivate::operator!=(const QTimeZonePrivate &other) const
{
return !(*this == other);
}
bool QTimeZonePrivate::isValid() const
{
return !m_id.isEmpty();
}
QByteArray QTimeZonePrivate::id() const
{
return m_id;
}
QLocale::Territory QTimeZonePrivate::territory() const
{
// Default fall-back mode, use the zoneTable to find Region of known Zones
const QLatin1StringView sought(m_id.data(), m_id.size());
for (const ZoneData &data : zoneDataTable) {
for (QLatin1StringView token : data.ids()) {
if (token == sought)
return QLocale::Territory(data.territory);
}
}
return QLocale::AnyTerritory;
}
QString QTimeZonePrivate::comment() const
{
return QString();
}
QString QTimeZonePrivate::displayName(qint64 atMSecsSinceEpoch,
QTimeZone::NameType nameType,
const QLocale &locale) const
{
const Data tran = data(atMSecsSinceEpoch);
if (tran.atMSecsSinceEpoch != invalidMSecs()) {
if (nameType == QTimeZone::OffsetName && isAnglicLocale(locale))
return isoOffsetFormat(tran.offsetFromUtc);
if (nameType == QTimeZone::ShortName && isDataLocale(locale))
return tran.abbreviation;
QTimeZone::TimeType timeType
= tran.daylightTimeOffset != 0 ? QTimeZone::DaylightTime : QTimeZone::StandardTime;
#if QT_CONFIG(timezone_locale)
return localeName(atMSecsSinceEpoch, tran.offsetFromUtc, timeType, nameType, locale);
#else
return displayName(timeType, nameType, locale);
#endif
}
return QString();
}
QString QTimeZonePrivate::displayName(QTimeZone::TimeType timeType,
QTimeZone::NameType nameType,
const QLocale &locale) const
{
const Data tran = data(timeType);
if (tran.atMSecsSinceEpoch != invalidMSecs()) {
if (nameType == QTimeZone::OffsetName && isAnglicLocale(locale))
return isoOffsetFormat(tran.offsetFromUtc);
#if QT_CONFIG(timezone_locale)
return localeName(tran.atMSecsSinceEpoch, tran.offsetFromUtc, timeType, nameType, locale);
#endif
}
return QString();
}
QString QTimeZonePrivate::abbreviation(qint64 atMSecsSinceEpoch) const
{
if (QLocale() != QLocale::c()) {
const QString name = displayName(atMSecsSinceEpoch, QTimeZone::ShortName, QLocale());
if (!name.isEmpty())
return name;
}
return displayName(atMSecsSinceEpoch, QTimeZone::ShortName, QLocale::c());
}
int QTimeZonePrivate::offsetFromUtc(qint64 atMSecsSinceEpoch) const
{
const int std = standardTimeOffset(atMSecsSinceEpoch);
const int dst = daylightTimeOffset(atMSecsSinceEpoch);
const int bad = invalidSeconds();
return std == bad || dst == bad ? bad : std + dst;
}
int QTimeZonePrivate::standardTimeOffset(qint64 atMSecsSinceEpoch) const
{
Q_UNUSED(atMSecsSinceEpoch);
return invalidSeconds();
}
int QTimeZonePrivate::daylightTimeOffset(qint64 atMSecsSinceEpoch) const
{
Q_UNUSED(atMSecsSinceEpoch);
return invalidSeconds();
}
bool QTimeZonePrivate::hasDaylightTime() const
{
return false;
}
bool QTimeZonePrivate::isDaylightTime(qint64 atMSecsSinceEpoch) const
{
Q_UNUSED(atMSecsSinceEpoch);
return false;
}
QTimeZonePrivate::Data QTimeZonePrivate::data(QTimeZone::TimeType timeType) const
{
// True if tran is valid and has the DST-ness to match timeType:
const auto validMatch = [timeType](const Data &tran) {
return tran.atMSecsSinceEpoch != invalidMSecs()
&& ((timeType == QTimeZone::DaylightTime) != (tran.daylightTimeOffset == 0));
};
// Get current tran, use if suitable:
const qint64 currentMSecs = QDateTime::currentMSecsSinceEpoch();
Data tran = data(currentMSecs);
if (validMatch(tran))
return tran;
if (hasTransitions()) {
// Otherwise, next tran probably flips DST-ness:
tran = nextTransition(currentMSecs);
if (validMatch(tran))
return tran;
// Failing that, prev (or present, if current MSecs is exactly a
// transition moment) tran defines what data() got us and the one before
// that probably flips DST-ness; failing that, keep marching backwards
// in search of a DST interval:
tran = previousTransition(currentMSecs + 1);
while (tran.atMSecsSinceEpoch != invalidMSecs()) {
tran = previousTransition(tran.atMSecsSinceEpoch);
if (validMatch(tran))
return tran;
}
}
return {};
}
/*!
\internal
Returns true if the abbreviation given in data()'s returns is appropriate
for use in the given \a locale.
Base implementation assumes data() corresponds to the system locale; derived
classes should override if their data() is something else (such as
C/English).
*/
bool QTimeZonePrivate::isDataLocale(const QLocale &locale) const
{
// Guess data is for the system locale unless backend overrides that.
return locale == QLocale::system();
}
QTimeZonePrivate::Data QTimeZonePrivate::data(qint64 forMSecsSinceEpoch) const
{
Q_UNUSED(forMSecsSinceEpoch);
return {};
}
// Private only method for use by QDateTime to convert local msecs to epoch msecs
QDateTimePrivate::ZoneState QTimeZonePrivate::stateAtZoneTime(
qint64 forLocalMSecs, QDateTimePrivate::TransitionOptions resolve) const
{
auto dataToState = [](const Data &d) {
return QDateTimePrivate::ZoneState(d.atMSecsSinceEpoch + d.offsetFromUtc * 1000,
d.offsetFromUtc,
d.daylightTimeOffset ? QDateTimePrivate::DaylightTime
: QDateTimePrivate::StandardTime);
};
/*
We need a UTC time at which to ask for the offset, in order to be able to
add that offset to forLocalMSecs, to get the UTC time we need.
Fortunately, all time-zone offsets have been less than 17 hours; and DST
transitions happen (much) more than thirty-four hours apart. So sampling
offset seventeen hours each side gives us information we can be sure
brackets the correct time and at most one DST transition.
*/
std::integral_constant<qint64, 17 * 3600 * 1000> seventeenHoursInMSecs;
static_assert(-seventeenHoursInMSecs / 1000 < QTimeZone::MinUtcOffsetSecs
&& seventeenHoursInMSecs / 1000 > QTimeZone::MaxUtcOffsetSecs);
qint64 millis;
// Clip the bracketing times to the bounds of the supported range.
const qint64 recent =
qSubOverflow(forLocalMSecs, seventeenHoursInMSecs, &millis) || millis < minMSecs()
? minMSecs() : millis; // Necessarily <= forLocalMSecs + 1.
// (Given that minMSecs() is std::numeric_limits<qint64>::min() + 1.)
const qint64 imminent =
qAddOverflow(forLocalMSecs, seventeenHoursInMSecs, &millis)
? maxMSecs() : millis; // Necessarily >= forLocalMSecs
// At most one of those was clipped to its boundary value:
Q_ASSERT(recent < imminent && seventeenHoursInMSecs < imminent - recent + 1);
const Data past = data(recent), future = data(imminent);
if (future.atMSecsSinceEpoch == invalidMSecs()
&& past.atMSecsSinceEpoch == invalidMSecs()) {
// Failed to get any useful data near this time: apparently out of range
// for the backend.
return { forLocalMSecs };
}
// > 99% of the time, past and future will agree:
if (Q_LIKELY(past.offsetFromUtc == future.offsetFromUtc
&& past.standardTimeOffset == future.standardTimeOffset
// Those two imply same daylightTimeOffset.
&& past.abbreviation == future.abbreviation)) {
Data data = future;
data.atMSecsSinceEpoch = forLocalMSecs - future.offsetFromUtc * 1000;
return dataToState(data);
}
/*
Offsets are Local - UTC, positive to the east of Greenwich, negative to
the west; DST offset normally exceeds standard offset, when DST applies.
When we have offsets on either side of a transition, the lower one is
standard, the higher is DST, unless we have data telling us it's the other
way round.
Non-DST transitions (jurisdictions changing time-zone and time-zones
changing their standard offset, typically) are described below as if they
were DST transitions (since these are more usual and familiar); the code
mostly concerns itself with offsets from UTC, described in terms of the
common case for changes in that. If there is no actual change in offset
(e.g. a DST transition cancelled by a standard offset change), this code
should handle it gracefully; without transitions, it'll see early == late
and take the easy path; with transitions, tran and nextTran get the
correct UTC time as atMSecsSinceEpoch so comparing to nextStart selects
the right one. In all other cases, the transition changes offset and the
reasoning that applies to DST applies just the same.
The resolution of transitions, specified by \a resolve, may be lead astray
if (as happens on Windows) the backend has been obliged to guess whether a
transition is in fact a DST one or a change to standard offset; or to
guess that the higher-offset side is the DST one (the reverse of this is
true for Ireland, using negative DST). There's not much we can do about
that, though.
*/
if (hasTransitions()) {
/*
We have transitions.
Each transition gives the offsets to use until the next; so we need
the most recent transition before the time forLocalMSecs describes. If
it describes a time *in* a transition, we'll need both that transition
and the one before it. So find one transition that's probably after
(and not much before, otherwise) and another that's definitely before,
then work out which one to use. When both or neither work on
forLocalMSecs, use resolve to disambiguate.
*/
// Get a transition definitely before the local MSecs; usually all we need.
// Only around the transition times might we need another.
Data tran = past; // Data after last transition before our window.
Q_ASSERT(forLocalMSecs < 0 || // Pre-epoch TZ info may be unavailable
forLocalMSecs - tran.offsetFromUtc * 1000 >= tran.atMSecsSinceEpoch);
// If offset actually exceeds 17 hours, that assert may trigger.
Data nextTran = nextTransition(tran.atMSecsSinceEpoch);
/*
Now walk those forward until they bracket forLocalMSecs with transitions.
One of the transitions should then be telling us the right offset to use.
In a transition, we need the transition before it (to describe the run-up
to the transition) and the transition itself; so we need to stop when
nextTran is (invalid or) that transition.
*/
while (nextTran.atMSecsSinceEpoch != invalidMSecs()
&& forLocalMSecs > nextTran.atMSecsSinceEpoch + nextTran.offsetFromUtc * 1000) {
Data newTran = nextTransition(nextTran.atMSecsSinceEpoch);
if (newTran.atMSecsSinceEpoch == invalidMSecs()
|| newTran.atMSecsSinceEpoch + newTran.offsetFromUtc * 1000 > imminent) {
// Definitely not a relevant tansition: too far in the future.
break;
}
tran = nextTran;
nextTran = newTran;
}
const qint64 nextStart = nextTran.atMSecsSinceEpoch;
// Check we do *really* have transitions for this zone:
if (tran.atMSecsSinceEpoch != invalidMSecs()) {
/* So now tran is definitely before ... */
Q_ASSERT(forLocalMSecs < 0
|| forLocalMSecs - tran.offsetFromUtc * 1000 > tran.atMSecsSinceEpoch);
// Work out the UTC value it would make sense to return if using tran:
tran.atMSecsSinceEpoch = forLocalMSecs - tran.offsetFromUtc * 1000;
// If there are no transition after it, the answer is easy - or
// should be - but Darwin's handling of the distant future (in macOS
// 15, QTBUG-126391) runs out of transitions in 506'712 CE, despite
// knowing about offset changes long after that. So only trust the
// easy answer if offsets match; otherwise, fall through to the
// transitions-unknown code.
if (nextStart == invalidMSecs() && tran.offsetFromUtc == future.offsetFromUtc)
return dataToState(tran); // Last valid transition.
}
if (tran.atMSecsSinceEpoch != invalidMSecs() && nextStart != invalidMSecs()) {
/*
... and nextTran is either after or only slightly before. We're
going to interpret one as standard time, the other as DST
(although the transition might in fact be a change in standard
offset, or a change in DST offset, e.g. to/from double-DST).
Usually exactly one of those shall be relevant and we'll use it;
but if we're close to nextTran we may be in a transition, to be
settled according to resolve's rules.
*/
// Work out the UTC value it would make sense to return if using nextTran:
nextTran.atMSecsSinceEpoch = forLocalMSecs - nextTran.offsetFromUtc * 1000;
bool fallBack = false;
if (nextStart > nextTran.atMSecsSinceEpoch) {
// If both UTC values are before nextTran's offset applies, use tran:
if (nextStart > tran.atMSecsSinceEpoch)
return dataToState(tran);
Q_ASSERT(tran.offsetFromUtc < nextTran.offsetFromUtc);
// We're in a spring-forward.
} else if (nextStart <= tran.atMSecsSinceEpoch) {
// Both UTC values say we should be using nextTran:
return dataToState(nextTran);
} else {
Q_ASSERT(nextTran.offsetFromUtc < tran.offsetFromUtc);
fallBack = true; // We're in a fall-back.
}
// (forLocalMSecs - nextStart) / 1000 lies between the two offsets.
// Apply resolve:
// Determine whether FlipForReverseDst affects the outcome:
const bool flipped
= resolve.testFlag(QDateTimePrivate::FlipForReverseDst)
&& (fallBack ? !tran.daylightTimeOffset && nextTran.daylightTimeOffset
: tran.daylightTimeOffset && !nextTran.daylightTimeOffset);
if (fallBack) {
if (resolve.testFlag(flipped
? QDateTimePrivate::FoldUseBefore
: QDateTimePrivate::FoldUseAfter)) {
return dataToState(nextTran);
}
if (resolve.testFlag(flipped
? QDateTimePrivate::FoldUseAfter
: QDateTimePrivate::FoldUseBefore)) {
return dataToState(tran);
}
} else {
/* Neither is valid (e.g. in a spring-forward's gap) and
nextTran.atMSecsSinceEpoch < nextStart <= tran.atMSecsSinceEpoch.
So swap their atMSecsSinceEpoch to give each a moment on the
side of the transition that it describes, then select the one
after or before according to the option set:
*/
std::swap(tran.atMSecsSinceEpoch, nextTran.atMSecsSinceEpoch);
if (resolve.testFlag(flipped
? QDateTimePrivate::GapUseBefore
: QDateTimePrivate::GapUseAfter))
return dataToState(nextTran);
if (resolve.testFlag(flipped
? QDateTimePrivate::GapUseAfter
: QDateTimePrivate::GapUseBefore))
return dataToState(tran);
}
// Reject
return {forLocalMSecs};
}
// Before first transition, or system has transitions but not for this zone.
// Try falling back to offsetFromUtc (works for before first transition, at least).
}
/* Bracket and refine to discover offset. */
qint64 utcEpochMSecs;
// We don't have true data on DST-ness, so can't apply FlipForReverseDst.
int early = past.offsetFromUtc;
int late = future.offsetFromUtc;
if (early == late || late == invalidSeconds()) {
if (early == invalidSeconds()
|| qSubOverflow(forLocalMSecs, early * qint64(1000), &utcEpochMSecs)) {
return {forLocalMSecs}; // Outside representable range
}
} else {
// Candidate values for utcEpochMSecs (if forLocalMSecs is valid):
const qint64 forEarly = forLocalMSecs - early * 1000;
const qint64 forLate = forLocalMSecs - late * 1000;
// If either of those doesn't have the offset we got it from, it's on
// the wrong side of the transition (and both may be, for a gap):
const bool earlyOk = offsetFromUtc(forEarly) == early;
const bool lateOk = offsetFromUtc(forLate) == late;
if (earlyOk) {
if (lateOk) {
Q_ASSERT(early > late);
// fall-back's repeated interval
if (resolve.testFlag(QDateTimePrivate::FoldUseBefore))
utcEpochMSecs = forEarly;
else if (resolve.testFlag(QDateTimePrivate::FoldUseAfter))
utcEpochMSecs = forLate;
else
return {forLocalMSecs};
} else {
// Before and clear of the transition:
utcEpochMSecs = forEarly;
}
} else if (lateOk) {
// After and clear of the transition:
utcEpochMSecs = forLate;
} else {
// forLate <= gap < forEarly
Q_ASSERT(late > early);
const int dstStep = (late - early) * 1000;
if (resolve.testFlag(QDateTimePrivate::GapUseBefore))
utcEpochMSecs = forEarly - dstStep;
else if (resolve.testFlag(QDateTimePrivate::GapUseAfter))
utcEpochMSecs = forLate + dstStep;
else
return {forLocalMSecs};
}
}
return dataToState(data(utcEpochMSecs));
}
bool QTimeZonePrivate::hasTransitions() const
{
return false;
}
QTimeZonePrivate::Data QTimeZonePrivate::nextTransition(qint64 afterMSecsSinceEpoch) const
{
Q_UNUSED(afterMSecsSinceEpoch);
return {};
}
QTimeZonePrivate::Data QTimeZonePrivate::previousTransition(qint64 beforeMSecsSinceEpoch) const
{
Q_UNUSED(beforeMSecsSinceEpoch);
return {};
}
QTimeZonePrivate::DataList QTimeZonePrivate::transitions(qint64 fromMSecsSinceEpoch,
qint64 toMSecsSinceEpoch) const
{
DataList list;
if (toMSecsSinceEpoch >= fromMSecsSinceEpoch) {
// fromMSecsSinceEpoch is inclusive but nextTransitionTime() is exclusive so go back 1 msec
Data next = nextTransition(fromMSecsSinceEpoch - 1);
while (next.atMSecsSinceEpoch != invalidMSecs()
&& next.atMSecsSinceEpoch <= toMSecsSinceEpoch) {
list.append(next);
next = nextTransition(next.atMSecsSinceEpoch);
}
}
return list;
}
QByteArray QTimeZonePrivate::systemTimeZoneId() const
{
return QByteArray();
}
bool QTimeZonePrivate::isTimeZoneIdAvailable(const QByteArray &ianaId) const
{
// Fall-back implementation, can be made faster in subclasses.
// Backends that don't cache the available list SHOULD override this.
const QList<QByteArray> tzIds = availableTimeZoneIds();
return std::binary_search(tzIds.begin(), tzIds.end(), ianaId);
}
static QList<QByteArray> selectAvailable(QList<QByteArrayView> &&desired,
const QList<QByteArray> &all)
{
std::sort(desired.begin(), desired.end());
const auto newEnd = std::unique(desired.begin(), desired.end());
const auto newSize = std::distance(desired.begin(), newEnd);
QList<QByteArray> result;
result.reserve(qMin(all.size(), newSize));
std::set_intersection(all.begin(), all.end(), desired.cbegin(),
std::next(desired.cbegin(), newSize), std::back_inserter(result));
return result;
}
QList<QByteArrayView> QTimeZonePrivate::matchingTimeZoneIds(QLocale::Territory territory) const
{
// Default fall-back mode: use the CLDR data to find zones for this territory.
QList<QByteArrayView> regions;
#if QT_CONFIG(timezone_locale) && !QT_CONFIG(icu)
regions = QtTimeZoneLocale::ianaIdsForTerritory(territory);
#endif
// Get all Zones in the table associated with this territory:
if (territory == QLocale::World) {
// World names are filtered out of zoneDataTable to provide the defaults
// in windowsDataTable.
for (const WindowsData &data : windowsDataTable)
regions << data.ianaId();
} else {
for (const ZoneData &data : zoneDataTable) {
if (data.territory == territory) {
for (auto l1 : data.ids())
regions << QByteArrayView(l1.data(), l1.size());
}
}
}
return regions;
}
QList<QByteArray> QTimeZonePrivate::availableTimeZoneIds(QLocale::Territory territory) const
{
return selectAvailable(matchingTimeZoneIds(territory), availableTimeZoneIds());
}
QList<QByteArrayView> QTimeZonePrivate::matchingTimeZoneIds(int offsetFromUtc) const
{
// Default fall-back mode: use the zoneTable to find offsets of know zones.
QList<QByteArrayView> offsets;
// First get all Zones in the table using the given offset:
for (const WindowsData &winData : windowsDataTable) {
if (winData.offsetFromUtc == offsetFromUtc) {
for (auto data = zoneStartForWindowsId(winData.windowsIdKey);
data != std::end(zoneDataTable) && data->windowsIdKey == winData.windowsIdKey;
++data) {
for (auto l1 : data->ids())
offsets << QByteArrayView(l1.data(), l1.size());
}
}
}
return offsets;
}
QList<QByteArray> QTimeZonePrivate::availableTimeZoneIds(int offsetFromUtc) const
{
return selectAvailable(matchingTimeZoneIds(offsetFromUtc), availableTimeZoneIds());
}
#ifndef QT_NO_DATASTREAM
void QTimeZonePrivate::serialize(QDataStream &ds) const
{
ds << QString::fromUtf8(m_id);
}
#endif // QT_NO_DATASTREAM
// Static Utility Methods
QTimeZone::OffsetData QTimeZonePrivate::invalidOffsetData()
{
return { QString(), QDateTime(),
invalidSeconds(), invalidSeconds(), invalidSeconds() };
}
QTimeZone::OffsetData QTimeZonePrivate::toOffsetData(const QTimeZonePrivate::Data &data)
{
if (data.atMSecsSinceEpoch == invalidMSecs())
return invalidOffsetData();
return {
data.abbreviation,
QDateTime::fromMSecsSinceEpoch(data.atMSecsSinceEpoch, QTimeZone::UTC),
data.offsetFromUtc, data.standardTimeOffset, data.daylightTimeOffset };
}
// Is the format of the ID valid ?
bool QTimeZonePrivate::isValidId(const QByteArray &ianaId)
{
/*
Main rules for defining TZ/IANA names, as per
https://www.iana.org/time-zones/repository/theory.html, are:
1. Use only valid POSIX file name components
2. Within a file name component, use only ASCII letters, `.', `-' and `_'.
3. Do not use digits (except in a [+-]\d+ suffix, when used).
4. A file name component must not exceed 14 characters or start with `-'
However, the rules are really guidelines - a later one says
- Do not change established names if they only marginally violate the
above rules.
We may, therefore, need to be a bit slack in our check here, if we hit
legitimate exceptions in real time-zone databases. In particular, ICU
includes some non-standard names with some components > 14 characters
long; so does Android, possibly deriving them from ICU.
In particular, aliases such as "Etc/GMT+7" and "SystemV/EST5EDT" are valid
so we need to accept digits, ':', and '+'; aliases typically have the form
of POSIX TZ strings, which allow a suffix to a proper IANA name. A POSIX
suffix starts with an offset (as in GMT+7) and may continue with another
name (as in EST5EDT, giving the DST name of the zone); a further offset is
allowed (for DST). The ("hard to describe and [...] error-prone in
practice") POSIX form even allows a suffix giving the dates (and
optionally times) of the annual DST transitions. Hopefully, no TZ aliases
go that far, but we at least need to accept an offset and (single
fragment) DST-name.
But for the legacy complications, the following would be preferable if
QRegExp would work on QByteArrays directly:
const QRegExp rx(QStringLiteral("[a-z+._][a-z+._-]{,13}"
"(?:/[a-z+._][a-z+._-]{,13})*"
// Optional suffix:
"(?:[+-]?\d{1,2}(?::\d{1,2}){,2}" // offset
// one name fragment (DST):
"(?:[a-z+._][a-z+._-]{,13})?)"),
Qt::CaseInsensitive);
return rx.exactMatch(ianaId);
*/
// Somewhat slack hand-rolled version:
const int MinSectionLength = 1;
#if defined(Q_OS_ANDROID) || QT_CONFIG(icu)
// Android has its own naming of zones. It may well come from ICU.
// "Canada/East-Saskatchewan" has a 17-character second component.
const int MaxSectionLength = 17;
#else
const int MaxSectionLength = 14;
#endif
int sectionLength = 0;
for (const char *it = ianaId.begin(), * const end = ianaId.end(); it != end; ++it, ++sectionLength) {
const char ch = *it;
if (ch == '/') {
if (sectionLength < MinSectionLength || sectionLength > MaxSectionLength)
return false; // violates (4)
sectionLength = -1;
} else if (ch == '-') {
if (sectionLength == 0)
return false; // violates (4)
} else if (!isAsciiLower(ch)
&& !isAsciiUpper(ch)
&& !(ch == '_')
&& !(ch == '.')
// Should ideally check these only happen as an offset:
&& !isAsciiDigit(ch)
&& !(ch == '+')
&& !(ch == ':')) {
return false; // violates (2)
}
}
if (sectionLength < MinSectionLength || sectionLength > MaxSectionLength)
return false; // violates (4)
return true;
}
QString QTimeZonePrivate::isoOffsetFormat(int offsetFromUtc, QTimeZone::NameType mode)
{
if (mode == QTimeZone::ShortName && !offsetFromUtc)
return utcQString();
char sign = '+';
if (offsetFromUtc < 0) {
sign = '-';
offsetFromUtc = -offsetFromUtc;
}
const int secs = offsetFromUtc % 60;
const int mins = (offsetFromUtc / 60) % 60;
const int hour = offsetFromUtc / 3600;
QString result = QString::asprintf("UTC%c%02d", sign, hour);
if (mode != QTimeZone::ShortName || secs || mins)
result += QString::asprintf(":%02d", mins);
if (mode == QTimeZone::LongName || secs)
result += QString::asprintf(":%02d", secs);
return result;
}
#if QT_CONFIG(icu) || !QT_CONFIG(timezone_locale)
static QTimeZonePrivate::NamePrefixMatch
findUtcOffsetPrefix(QStringView text, const QLocale &locale)
{
// First, see if we have a {UTC,GMT}+offset. This would ideally use
// locale-appropriate versions of the offset format, but we don't know those.
qsizetype signLen = 0;
char sign = '\0';
auto signStart = [&signLen, &sign, locale](QStringView str) {
QString signStr = locale.negativeSign();
if (str.startsWith(signStr)) {
sign = '-';
signLen = signStr.size();
return true;
}
// Special case: U+2212 MINUS SIGN (cf. qlocale.cpp's NumericTokenizer)
if (str.startsWith(u'\u2212')) {
sign = '-';
signLen = 1;
return true;
}
signStr = locale.positiveSign();
if (str.startsWith(signStr)) {
sign = '+';
signLen = signStr.size();
return true;
}
return false;
};
// Should really use locale-appropriate
if (!((text.startsWith(u"UTC") || text.startsWith(u"GMT")) && signStart(text.sliced(3))))
return {};
QStringView offset = text.sliced(3 + signLen);
QStringIterator iter(offset);
qsizetype hourEnd = 0, hmMid = 0, minEnd = 0;
int digits = 0;
char32_t ch = 0;
while (iter.hasNext()) {
ch = iter.next();
if (!QChar::isDigit(ch))
break;
++digits;
// Have hourEnd keep track of the end of the last-but-two digit, if
// we have that many; use hmMid to hold the last-but-one.
hourEnd = std::exchange(hmMid, std::exchange(minEnd, iter.index()));
}
if (digits < 1 || digits > 4) // No offset or something other than an offset.
return {};
QStringView hourStr, minStr;
if (digits < 3 && iter.hasNext() && QChar::isPunct(ch)) {
hourEnd = minEnd; // Use all digits seen thus far for hour.
hmMid = iter.index(); // Reuse as minStart, in effect.
int mindig = 0;
while (mindig < 2 && iter.hasNext() && QChar::isDigit(iter.next())) {
++mindig;
minEnd = iter.index();
}
if (mindig == 2)
minStr = offset.first(minEnd).sliced(hmMid);
else
minEnd = hourEnd; // Ignore punctuator and beyond
} else {
minStr = offset.first(minEnd).sliced(hourEnd);
}
hourStr = offset.first(hourEnd);
bool ok = false;
uint hour = 0, minute = 0;
if (!hourStr.isEmpty())
hour = locale.toUInt(hourStr, &ok);
if (ok && !minStr.isEmpty()) {
minute = locale.toUInt(minStr, &ok);
// If the part after a punctuator is bad, pretend we never saw it:
if ((!ok || minute >= 60) && minEnd > hourEnd + minStr.size()) {
minEnd = hourEnd;
minute = 0;
ok = true;
}
// but if we had too many digits for just an hour, and its tail
// isn't minutes, then this isn't an offset form.
}
constexpr int MaxOffsetSeconds
= qMax(QTimeZone::MaxUtcOffsetSecs, -QTimeZone::MinUtcOffsetSecs);
if (!ok || (hour * 60 + minute) * 60 > MaxOffsetSeconds)
return {}; // Let the zone-name scan find UTC or GMT prefix as a zone name.
// Transform offset into the form the QTimeZone constructor prefers:
char buffer[26];
// We need: 3 for "UTC", 1 for sign, 2+2 for digits, 1 for colon between, 1
// for '\0'; but gcc [-Werror=format-truncation=] doesn't know the %02u
// fields can't be longer than 2 digits, so complains if we don't have space
// for 10 digits in each.
if (minute)
std::snprintf(buffer, sizeof(buffer), "UTC%c%02u:%02u", sign, hour, minute);
else
std::snprintf(buffer, sizeof(buffer), "UTC%c%02u", sign, hour);
return { QByteArray(buffer, qstrnlen(buffer, sizeof(buffer))),
3 + signLen + minEnd,
QTimeZone::GenericTime };
}
QTimeZonePrivate::NamePrefixMatch
QTimeZonePrivate::findLongNamePrefix(QStringView text, const QLocale &locale,
std::optional<qint64> atEpochMillis)
{
// Search all known zones for one that matches a prefix of text in our locale.
const auto when = atEpochMillis
? QDateTime::fromMSecsSinceEpoch(*atEpochMillis, QTimeZone::UTC)
: QDateTime();
const auto typeFor = [when](QTimeZone zone) {
if (when.isValid() && zone.isDaylightTime(when))
return QTimeZone::DaylightTime;
// Assume standard time name applies equally as generic:
return QTimeZone::GenericTime;
};
QTimeZonePrivate::NamePrefixMatch best = findUtcOffsetPrefix(text, locale);
constexpr QTimeZone::TimeType types[]
= { QTimeZone::GenericTime, QTimeZone::StandardTime, QTimeZone::DaylightTime };
const auto improves = [text, &best](const QString &name) {
return text.startsWith(name, Qt::CaseInsensitive) && name.size() > best.nameLength;
};
const QList<QByteArray> allZones = QTimeZone::availableTimeZoneIds();
for (const QByteArray &iana : allZones) {
QTimeZone zone(iana);
if (!zone.isValid())
continue;
if (when.isValid()) {
QString name = zone.displayName(when, QTimeZone::LongName, locale);
if (improves(name))
best = { iana, name.size(), typeFor(zone) };
} else {
for (const QTimeZone::TimeType type : types) {
QString name = zone.displayName(type, QTimeZone::LongName, locale);
if (improves(name))
best = { iana, name.size(), type };
}
}
// If we have a match for all of text, we can't get any better:
if (best.nameLength >= text.size())
break;
}
// This has the problem of selecting the first IANA ID of a zone with a
// match; where several IANA IDs share a long name, this may not be the
// natural one to pick. Hopefully a backend that does its own name L10n will
// at least produce one with the same offsets as the most natural choice.
return best;
}
QTimeZonePrivate::NamePrefixMatch
QTimeZonePrivate::findNarrowOffsetPrefix(QStringView, const QLocale &)
{
// Seemingly only needed in the timezonelocale case.
return {};
}
#else
// Implemented in qtimezonelocale.cpp
#endif // icu || !timezone_locale
QTimeZonePrivate::NamePrefixMatch
QTimeZonePrivate::findLongUtcPrefix(QStringView text)
{
if (text.startsWith(u"UTC")) {
if (text.size() > 4 && (text[3] == u'+' || text[3] == u'-')) {
// Compare QUtcTimeZonePrivate::offsetFromUtcString()
using QtMiscUtils::isAsciiDigit;
qsizetype length = 3;
int groups = 0; // Number of groups of digits seen (allow up to three).
do {
// text[length] is sign or the colon after last digit-group.
Q_ASSERT(length < text.size());
if (length + 1 >= text.size() || !isAsciiDigit(text[length + 1].unicode()))
break;
length +=
(length + 2 < text.size() && isAsciiDigit(text[length + 2].unicode())) ? 3 : 2;
} while (++groups < 3 && length < text.size() && text[length] == u':');
if (length > 4)
return { text.sliced(length).toLatin1(), length, QTimeZone::GenericTime };
}
return { utcQByteArray(), 3, QTimeZone::GenericTime };
}
return {};
}
QByteArray QTimeZonePrivate::aliasToIana(QByteArrayView alias)
{
const auto data = std::lower_bound(std::begin(aliasMappingTable), std::end(aliasMappingTable),
alias, earlierAliasId);
if (data != std::end(aliasMappingTable) && data->aliasId() == alias)
return data->ianaId().toByteArray();
// Note: empty return means not an alias, which is true of an ID that others
// are aliases to, as the table omits self-alias entries. Let caller sort
// that out, rather than allocating to return alias.toByteArray().
return {};
}
QByteArray QTimeZonePrivate::ianaIdToWindowsId(const QByteArray &id)
{
const auto idUtf8 = QUtf8StringView(id);
for (const ZoneData &data : zoneDataTable) {
for (auto l1 : data.ids()) {
if (l1 == idUtf8)
return toWindowsIdLiteral(data.windowsIdKey);
}
}
// If the IANA ID is the default for any Windows ID, it has already shown up
// as an ID for it in some territory; no need to search windowsDataTable[].
return QByteArray();
}
QByteArray QTimeZonePrivate::windowsIdToDefaultIanaId(const QByteArray &windowsId)
{
const auto data = std::lower_bound(std::begin(windowsDataTable), std::end(windowsDataTable),
windowsId, earlierWindowsId);
if (data != std::end(windowsDataTable) && data->windowsId() == windowsId) {
QByteArrayView id = data->ianaId();
Q_ASSERT(id.indexOf(' ') == -1);
return id.toByteArray();
}
return QByteArray();
}
QByteArray QTimeZonePrivate::windowsIdToDefaultIanaId(const QByteArray &windowsId,
QLocale::Territory territory)
{
const QList<QByteArray> list = windowsIdToIanaIds(windowsId, territory);
return list.size() > 0 ? list.first() : QByteArray();
}
QList<QByteArray> QTimeZonePrivate::windowsIdToIanaIds(const QByteArray &windowsId)
{
const quint16 windowsIdKey = toWindowsIdKey(windowsId);
QList<QByteArray> list;
for (auto data = zoneStartForWindowsId(windowsIdKey);
data != std::end(zoneDataTable) && data->windowsIdKey == windowsIdKey;
++data) {
for (auto l1 : data->ids())
list << QByteArray(l1.data(), l1.size());
}
// The default, windowsIdToDefaultIanaId(windowsId), is always an entry for
// at least one territory: cldr.py asserts this, in readWindowsTimeZones().
// So we don't need to add it here.
// Return the full list in alpha order
std::sort(list.begin(), list.end());
return list;
}
QList<QByteArray> QTimeZonePrivate::windowsIdToIanaIds(const QByteArray &windowsId,
QLocale::Territory territory)
{
QList<QByteArray> list;
if (territory == QLocale::World) {
// World data are in windowsDataTable, not zoneDataTable.
list << windowsIdToDefaultIanaId(windowsId);
} else {
const quint16 windowsIdKey = toWindowsIdKey(windowsId);
const qint16 land = static_cast<quint16>(territory);
for (auto data = zoneStartForWindowsId(windowsIdKey);
data != std::end(zoneDataTable) && data->windowsIdKey == windowsIdKey;
++data) {
// Return the region matches in preference order
if (data->territory == land) {
for (auto l1 : data->ids())
list << QByteArray(l1.data(), l1.size());
break;
}
}
}
return list;
}
static bool isEntryInIanaList(QByteArrayView id, QByteArrayView ianaIds)
{
qsizetype cut;
while ((cut = ianaIds.indexOf(' ')) >= 0) {
if (id == ianaIds.first(cut))
return true;
ianaIds = ianaIds.sliced(cut + 1);
}
return id == ianaIds;
}
/*
UTC Offset backend.
Always present, based on UTC-offset zones.
Complements platform-specific backends.
Equivalent to Qt::OffsetFromUtc lightweight time representations.
*/
// Create default UTC time zone
QUtcTimeZonePrivate::QUtcTimeZonePrivate()
{
const QString name = utcQString();
init(utcQByteArray(), 0, name, name, QLocale::AnyTerritory, name);
}
// Create a named UTC time zone
QUtcTimeZonePrivate::QUtcTimeZonePrivate(const QByteArray &id)
{
// Look for the name in the UTC list, if found set the values
for (const UtcData &data : utcDataTable) {
if (isEntryInIanaList(id, data.id())) {
QString name = QString::fromUtf8(id);
init(id, data.offsetFromUtc, name, name, QLocale::AnyTerritory, name);
break;
}
}
}
qint64 QUtcTimeZonePrivate::offsetFromUtcString(QByteArrayView id)
{
// Convert reasonable UTC[+-]\d+(:\d+){,2} to offset in seconds.
// Assumption: id has already been tried as a CLDR UTC offset ID (notably
// including plain "UTC" itself) and a system offset ID; it's neither.
if (!id.startsWith("UTC") || id.size() < 5)
return invalidSeconds(); // Doesn't match
const char signChar = id.at(3);
if (signChar != '-' && signChar != '+')
return invalidSeconds(); // No sign
const int sign = signChar == '-' ? -1 : 1;
qint32 seconds = 0;
int prior = 0; // Number of fields parsed thus far
for (auto offset : QLatin1StringView(id.mid(4)).tokenize(':'_L1)) {
bool ok = false;
unsigned short field = offset.toUShort(&ok);
// Bound hour above at 24, minutes and seconds at 60:
if (!ok || field >= (prior ? 60 : 24))
return invalidSeconds();
seconds = seconds * 60 + field;
if (++prior > 3)
return invalidSeconds(); // Too many numbers
}
if (!prior)
return invalidSeconds(); // No numbers
while (prior++ < 3)
seconds *= 60;
return seconds * sign;
}
// Create from UTC offset:
QUtcTimeZonePrivate::QUtcTimeZonePrivate(qint32 offsetSeconds)
{
QString name;
QByteArray id;
// If there's an IANA ID for this offset, use it:
const auto data = std::lower_bound(std::begin(utcDataTable), std::end(utcDataTable),
offsetSeconds, atLowerUtcOffset);
if (data != std::end(utcDataTable) && data->offsetFromUtc == offsetSeconds) {
QByteArrayView ianaId = data->id();
qsizetype cut = ianaId.indexOf(' ');
QByteArrayView cutId = (cut < 0 ? ianaId : ianaId.first(cut));
if (cutId == utcQByteArray()) {
// optimize: reuse interned strings for the common case
id = utcQByteArray();
name = utcQString();
} else {
// fallback to allocate new strings otherwise
id = cutId.toByteArray();
name = QString::fromUtf8(id);
}
Q_ASSERT(!name.isEmpty());
} else { // Fall back to a UTC-offset name:
name = isoOffsetFormat(offsetSeconds, QTimeZone::OffsetName);
id = name.toUtf8();
}
init(id, offsetSeconds, name, name, QLocale::AnyTerritory, name);
}
QUtcTimeZonePrivate::QUtcTimeZonePrivate(const QByteArray &zoneId, int offsetSeconds,
const QString &name, const QString &abbreviation,
QLocale::Territory territory, const QString &comment)
{
init(zoneId, offsetSeconds, name, abbreviation, territory, comment);
}
QUtcTimeZonePrivate::QUtcTimeZonePrivate(const QUtcTimeZonePrivate &other)
: QTimeZonePrivate(other), m_name(other.m_name),
m_abbreviation(other.m_abbreviation),
m_comment(other.m_comment),
m_territory(other.m_territory),
m_offsetFromUtc(other.m_offsetFromUtc)
{
}
QUtcTimeZonePrivate::~QUtcTimeZonePrivate()
{
}
QUtcTimeZonePrivate *QUtcTimeZonePrivate::clone() const
{
return new QUtcTimeZonePrivate(*this);
}
QTimeZonePrivate::Data QUtcTimeZonePrivate::data(qint64 forMSecsSinceEpoch) const
{
Data d;
d.abbreviation = m_abbreviation;
d.atMSecsSinceEpoch = forMSecsSinceEpoch;
d.standardTimeOffset = d.offsetFromUtc = m_offsetFromUtc;
d.daylightTimeOffset = 0;
return d;
}
// Override to shortcut past base's complications:
QTimeZonePrivate::Data QUtcTimeZonePrivate::data(QTimeZone::TimeType timeType) const
{
Q_UNUSED(timeType);
return data(QDateTime::currentMSecsSinceEpoch());
}
bool QUtcTimeZonePrivate::isDataLocale(const QLocale &locale) const
{
// Officially only supports C locale names; these are surely also viable for en-Latn-*.
return isAnglicLocale(locale);
}
void QUtcTimeZonePrivate::init(const QByteArray &zoneId, int offsetSeconds, const QString &name,
const QString &abbreviation, QLocale::Territory territory,
const QString &comment)
{
m_id = zoneId;
m_offsetFromUtc = offsetSeconds;
m_name = name;
m_abbreviation = abbreviation;
m_territory = territory;
m_comment = comment;
}
QLocale::Territory QUtcTimeZonePrivate::territory() const
{
return m_territory;
}
QString QUtcTimeZonePrivate::comment() const
{
return m_comment;
}
// Override to bypass complications in base-class:
QString QUtcTimeZonePrivate::displayName(qint64 atMSecsSinceEpoch,
QTimeZone::NameType nameType,
const QLocale &locale) const
{
Q_UNUSED(atMSecsSinceEpoch);
return displayName(QTimeZone::StandardTime, nameType, locale);
}
QString QUtcTimeZonePrivate::displayName(QTimeZone::TimeType timeType,
QTimeZone::NameType nameType,
const QLocale &locale) const
{
#if QT_CONFIG(timezone_locale)
QString name = QTimeZonePrivate::displayName(timeType, nameType, locale);
// That may fall back to standard offset format, in which case we'd sooner
// use m_name if it's non-empty (for the benefit of custom zones).
// However, a localized fallback is better than ignoring the locale, so only
// consider the fallback a match if it matches modulo reading GMT as UTC,
// U+2212 as MINUS SIGN and the narrow form of offset the fallback uses.
const auto matchesFallback = [](int offset, QStringView name) {
// Fallback rounds offset to nearest minute:
int seconds = offset % 60;
int rounded = offset
+ (seconds > 30 || (seconds == 30 && (offset / 60) % 2)
? 60 - seconds // Round up to next minute
: (seconds < -30 || (seconds == -30 && (offset / 60) % 2)
? -(60 + seconds) // Round down to previous minute
: -seconds));
const QString avoid = isoOffsetFormat(rounded);
if (name == avoid)
return true;
Q_ASSERT(avoid.startsWith("UTC"_L1));
Q_ASSERT(avoid.size() == 9);
// Fallback may use GMT in place of UTC, but always has sign plus at
// least one hour digit, even for +0:
if (!(name.startsWith("GMT"_L1) || name.startsWith("UTC"_L1)) || name.size() < 5)
return false;
// Fallback drops trailing ":00" minute:
QStringView tail{avoid}; // TODO: deal with sign earlier ! Also: invisible Unicode !
tail = tail.sliced(3);
if (name.sliced(3) == tail)
return true;
while (tail.endsWith(":00"_L1))
tail = tail.chopped(3);
while (name.endsWith(":00"_L1))
name = name.chopped(3);
if (name == tail)
return true;
// Accept U+2212 as minus sign:
const QChar sign = name[3] == u'\u2212' ? u'-' : name[3];
// Fallback doesn't zero-pad hour:
return sign == tail[0] && tail.sliced(tail[1] == u'0' ? 2 : 1) == name.sliced(4);
};
if (!name.isEmpty() && (m_name.isEmpty() || !matchesFallback(m_offsetFromUtc, name)))
return name;
#else // No L10N :-(
Q_UNUSED(timeType);
Q_UNUSED(locale);
#endif
if (nameType == QTimeZone::ShortName)
return m_abbreviation;
if (nameType == QTimeZone::OffsetName)
return isoOffsetFormat(m_offsetFromUtc);
return m_name;
}
QString QUtcTimeZonePrivate::abbreviation(qint64 atMSecsSinceEpoch) const
{
Q_UNUSED(atMSecsSinceEpoch);
return m_abbreviation;
}
qint32 QUtcTimeZonePrivate::standardTimeOffset(qint64 atMSecsSinceEpoch) const
{
Q_UNUSED(atMSecsSinceEpoch);
return m_offsetFromUtc;
}
qint32 QUtcTimeZonePrivate::daylightTimeOffset(qint64 atMSecsSinceEpoch) const
{
Q_UNUSED(atMSecsSinceEpoch);
return 0;
}
QByteArray QUtcTimeZonePrivate::systemTimeZoneId() const
{
return utcQByteArray();
}
// TODO: port to QByteArrayView
bool QUtcTimeZonePrivate::isTimeZoneIdAvailable(const QByteArray &ianaId) const
{
// Only the zone IDs supplied by CLDR and recognized by constructor.
for (const UtcData &data : utcDataTable) {
if (isEntryInIanaList(ianaId, data.id()))
return true;
}
// Callers may want to || offsetFromUtcString(ianaId) != invalidSeconds(),
// but those are technically not IANA IDs and the custom QTimeZone
// constructor needs the return here to reflect that.
return false;
}
QList<QByteArray> QUtcTimeZonePrivate::availableTimeZoneIds() const
{
// Only the zone IDs supplied by CLDR and recognized by constructor.
QList<QByteArray> result;
result.reserve(std::size(utcDataTable));
for (const UtcData &data : utcDataTable) {
QByteArrayView id = data.id();
qsizetype cut;
while ((cut = id.indexOf(' ')) >= 0) {
result << id.first(cut).toByteArray();
id = id.sliced(cut + 1);
}
result << id.toByteArray();
}
// Not guaranteed to be sorted, so sort:
std::sort(result.begin(), result.end());
// ### assuming no duplicates
return result;
}
QList<QByteArray> QUtcTimeZonePrivate::availableTimeZoneIds(QLocale::Territory country) const
{
// If AnyTerritory then is request for all non-region offset codes
if (country == QLocale::AnyTerritory)
return availableTimeZoneIds();
return QList<QByteArray>();
}
QList<QByteArray> QUtcTimeZonePrivate::availableTimeZoneIds(qint32 offsetSeconds) const
{
// Only if it's present in CLDR. (May get more than one ID: UTC, UTC+00:00
// and UTC-00:00 all have the same offset.)
QList<QByteArray> result;
const auto data = std::lower_bound(std::begin(utcDataTable), std::end(utcDataTable),
offsetSeconds, atLowerUtcOffset);
if (data != std::end(utcDataTable) && data->offsetFromUtc == offsetSeconds) {
QByteArrayView id = data->id();
qsizetype cut;
while ((cut = id.indexOf(' ')) >= 0) {
result << id.first(cut).toByteArray();
id = id.sliced(cut + 1);
}
result << id.toByteArray();
}
// CLDR only has round multiples of a quarter hour, and only some of
// those. For anything else, throw in the ID we would use for this offset
// (if we'd accept that ID).
QByteArray isoName = isoOffsetFormat(offsetSeconds, QTimeZone::ShortName).toUtf8();
if (offsetFromUtcString(isoName) == qint64(offsetSeconds) && !result.contains(isoName))
result << isoName;
// Not guaranteed to be sorted, so sort:
std::sort(result.begin(), result.end());
// ### assuming no duplicates
return result;
}
#ifndef QT_NO_DATASTREAM
void QUtcTimeZonePrivate::serialize(QDataStream &ds) const
{
ds << QStringLiteral("OffsetFromUtc") << QString::fromUtf8(m_id) << m_offsetFromUtc << m_name
<< m_abbreviation << static_cast<qint32>(m_territory) << m_comment;
}
#endif // QT_NO_DATASTREAM
QT_END_NAMESPACE
|