2017-05-12 09:59:18 +00:00
|
|
|
#!/usr/bin/env python2
|
2013-01-27 13:52:56 +00:00
|
|
|
#############################################################################
|
|
|
|
##
|
2016-01-15 12:36:27 +00:00
|
|
|
## Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
## Contact: https://www.qt.io/licensing/
|
2013-01-27 13:52:56 +00:00
|
|
|
##
|
|
|
|
## This file is part of the test suite of the Qt Toolkit.
|
|
|
|
##
|
2016-01-15 12:36:27 +00:00
|
|
|
## $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2013-01-27 13:52:56 +00:00
|
|
|
## Commercial License Usage
|
|
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
## accordance with the commercial license agreement provided with the
|
|
|
|
## Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 08:44:43 +00:00
|
|
|
## a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
## and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
## information use the contact form at https://www.qt.io/contact-us.
|
2013-01-27 13:52:56 +00:00
|
|
|
##
|
2016-01-15 12:36:27 +00:00
|
|
|
## GNU General Public License Usage
|
|
|
|
## Alternatively, this file may be used under the terms of the GNU
|
|
|
|
## General Public License version 3 as published by the Free Software
|
|
|
|
## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
## included in the packaging of this file. Please review the following
|
|
|
|
## information to ensure the GNU General Public License requirements will
|
|
|
|
## be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2013-01-27 13:52:56 +00:00
|
|
|
##
|
|
|
|
## $QT_END_LICENSE$
|
|
|
|
##
|
|
|
|
#############################################################################
|
2017-05-23 13:24:35 +00:00
|
|
|
"""Parse CLDR data for QTimeZone use with MS-Windows
|
2013-01-27 13:52:56 +00:00
|
|
|
|
2017-05-23 13:24:35 +00:00
|
|
|
Script to parse the CLDR supplemental/windowsZones.xml file and encode
|
|
|
|
for use in QTimeZone. See ``./cldr2qlocalexml.py`` for where to get
|
|
|
|
the CLDR data. Pass its common/ directory as first parameter to this
|
|
|
|
script and the qtbase root directory as second parameter. It shall
|
2019-05-27 15:47:22 +00:00
|
|
|
update qtbase's src/corelib/time/qtimezoneprivate_data_p.h ready for
|
2017-05-23 13:24:35 +00:00
|
|
|
use.
|
2013-01-27 13:52:56 +00:00
|
|
|
|
2017-05-23 13:24:35 +00:00
|
|
|
The XML structure is as follows:
|
|
|
|
|
|
|
|
<supplementalData>
|
|
|
|
<version number="$Revision: 7825 $"/>
|
|
|
|
<generation date="$Date: 2012-10-10 14:45:31 -0700 (Wed, 10 Oct 2012) $"/>
|
|
|
|
<windowsZones>
|
|
|
|
<mapTimezones otherVersion="7dc0101" typeVersion="2012f">
|
|
|
|
<!-- (UTC-08:00) Pacific Time (US & Canada) -->
|
|
|
|
<mapZone other="Pacific Standard Time" territory="001" type="America/Los_Angeles"/>
|
|
|
|
<mapZone other="Pacific Standard Time" territory="CA" type="America/Vancouver America/Dawson America/Whitehorse"/>
|
|
|
|
<mapZone other="Pacific Standard Time" territory="MX" type="America/Tijuana"/>
|
|
|
|
<mapZone other="Pacific Standard Time" territory="US" type="America/Los_Angeles"/>
|
|
|
|
<mapZone other="Pacific Standard Time" territory="ZZ" type="PST8PDT"/>
|
|
|
|
</mapTimezones>
|
|
|
|
</windowsZones>
|
|
|
|
</supplementalData>
|
|
|
|
"""
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import datetime
|
|
|
|
import tempfile
|
|
|
|
import enumdata
|
|
|
|
import xpathlite
|
|
|
|
from xpathlite import DraftResolution
|
|
|
|
import re
|
|
|
|
import qlocalexml2cpp
|
|
|
|
|
|
|
|
findAlias = xpathlite.findAlias
|
|
|
|
findEntry = xpathlite.findEntry
|
|
|
|
findEntryInFile = xpathlite._findEntryInFile
|
|
|
|
findTagsInFile = xpathlite.findTagsInFile
|
|
|
|
unicode2hex = qlocalexml2cpp.unicode2hex
|
|
|
|
wrap_list = qlocalexml2cpp.wrap_list
|
|
|
|
|
|
|
|
class ByteArrayData:
|
|
|
|
def __init__(self):
|
|
|
|
self.data = []
|
|
|
|
self.hash = {}
|
|
|
|
def append(self, s):
|
|
|
|
s = s + '\0'
|
|
|
|
if s in self.hash:
|
|
|
|
return self.hash[s]
|
|
|
|
|
|
|
|
lst = unicode2hex(s)
|
|
|
|
index = len(self.data)
|
|
|
|
if index > 65535:
|
|
|
|
print "\n\n\n#error Data index is too big!"
|
|
|
|
sys.stderr.write ("\n\n\nERROR: index exceeds the uint16 range! index = %d\n" % index)
|
|
|
|
sys.exit(1)
|
|
|
|
self.hash[s] = index
|
|
|
|
self.data += lst
|
|
|
|
return index
|
|
|
|
|
2019-05-28 14:21:15 +00:00
|
|
|
# List of currently known Windows IDs.
|
|
|
|
# If this script reports missing IDs, please add them here.
|
|
|
|
# Look up the offset using (google and) timeanddate.com.
|
|
|
|
# Not public so may safely be changed. Please keep in alphabetic order by ID.
|
|
|
|
# ( Windows Id, Offset Seconds )
|
|
|
|
windowsIdList = (
|
|
|
|
(u'Afghanistan Standard Time', 16200),
|
|
|
|
(u'Alaskan Standard Time', -32400),
|
|
|
|
(u'Arab Standard Time', 10800),
|
|
|
|
(u'Arabian Standard Time', 14400),
|
|
|
|
(u'Arabic Standard Time', 10800),
|
|
|
|
(u'Argentina Standard Time', -10800),
|
|
|
|
(u'Atlantic Standard Time', -14400),
|
|
|
|
(u'AUS Central Standard Time', 34200),
|
|
|
|
(u'AUS Eastern Standard Time', 36000),
|
|
|
|
(u'Azerbaijan Standard Time', 14400),
|
|
|
|
(u'Azores Standard Time', -3600),
|
|
|
|
(u'Bahia Standard Time', -10800),
|
|
|
|
(u'Bangladesh Standard Time', 21600),
|
|
|
|
(u'Belarus Standard Time', 10800),
|
|
|
|
(u'Canada Central Standard Time', -21600),
|
|
|
|
(u'Cape Verde Standard Time', -3600),
|
|
|
|
(u'Caucasus Standard Time', 14400),
|
|
|
|
(u'Cen. Australia Standard Time', 34200),
|
|
|
|
(u'Central America Standard Time', -21600),
|
|
|
|
(u'Central Asia Standard Time', 21600),
|
|
|
|
(u'Central Brazilian Standard Time', -14400),
|
|
|
|
(u'Central Europe Standard Time', 3600),
|
|
|
|
(u'Central European Standard Time', 3600),
|
|
|
|
(u'Central Pacific Standard Time', 39600),
|
|
|
|
(u'Central Standard Time (Mexico)', -21600),
|
|
|
|
(u'Central Standard Time', -21600),
|
|
|
|
(u'China Standard Time', 28800),
|
|
|
|
(u'Dateline Standard Time', -43200),
|
|
|
|
(u'E. Africa Standard Time', 10800),
|
|
|
|
(u'E. Australia Standard Time', 36000),
|
|
|
|
(u'E. Europe Standard Time', 7200),
|
|
|
|
(u'E. South America Standard Time', -10800),
|
|
|
|
(u'Eastern Standard Time', -18000),
|
|
|
|
(u'Eastern Standard Time (Mexico)', -18000),
|
|
|
|
(u'Egypt Standard Time', 7200),
|
|
|
|
(u'Ekaterinburg Standard Time', 18000),
|
|
|
|
(u'Fiji Standard Time', 43200),
|
|
|
|
(u'FLE Standard Time', 7200),
|
|
|
|
(u'Georgian Standard Time', 14400),
|
|
|
|
(u'GMT Standard Time', 0),
|
|
|
|
(u'Greenland Standard Time', -10800),
|
|
|
|
(u'Greenwich Standard Time', 0),
|
|
|
|
(u'GTB Standard Time', 7200),
|
|
|
|
(u'Hawaiian Standard Time', -36000),
|
|
|
|
(u'India Standard Time', 19800),
|
|
|
|
(u'Iran Standard Time', 12600),
|
|
|
|
(u'Israel Standard Time', 7200),
|
|
|
|
(u'Jordan Standard Time', 7200),
|
|
|
|
(u'Kaliningrad Standard Time', 7200),
|
|
|
|
(u'Korea Standard Time', 32400),
|
|
|
|
(u'Libya Standard Time', 7200),
|
|
|
|
(u'Line Islands Standard Time', 50400),
|
|
|
|
(u'Magadan Standard Time', 36000),
|
|
|
|
(u'Mauritius Standard Time', 14400),
|
|
|
|
(u'Middle East Standard Time', 7200),
|
|
|
|
(u'Montevideo Standard Time', -10800),
|
|
|
|
(u'Morocco Standard Time', 0),
|
|
|
|
(u'Mountain Standard Time (Mexico)', -25200),
|
|
|
|
(u'Mountain Standard Time', -25200),
|
|
|
|
(u'Myanmar Standard Time', 23400),
|
|
|
|
(u'N. Central Asia Standard Time', 21600),
|
|
|
|
(u'Namibia Standard Time', 3600),
|
|
|
|
(u'Nepal Standard Time', 20700),
|
|
|
|
(u'New Zealand Standard Time', 43200),
|
|
|
|
(u'Newfoundland Standard Time', -12600),
|
|
|
|
(u'North Asia East Standard Time', 28800),
|
|
|
|
(u'North Asia Standard Time', 25200),
|
|
|
|
(u'North Korea Standard Time', 30600),
|
|
|
|
(u'Pacific SA Standard Time', -10800),
|
|
|
|
(u'Pacific Standard Time', -28800),
|
|
|
|
(u'Pakistan Standard Time', 18000),
|
|
|
|
(u'Paraguay Standard Time', -14400),
|
|
|
|
(u'Romance Standard Time', 3600),
|
|
|
|
(u'Russia Time Zone 3', 14400),
|
|
|
|
(u'Russia Time Zone 10', 39600),
|
|
|
|
(u'Russia Time Zone 11', 43200),
|
|
|
|
(u'Russian Standard Time', 10800),
|
|
|
|
(u'SA Eastern Standard Time', -10800),
|
|
|
|
(u'SA Pacific Standard Time', -18000),
|
|
|
|
(u'SA Western Standard Time', -14400),
|
|
|
|
(u'Samoa Standard Time', 46800),
|
|
|
|
(u'SE Asia Standard Time', 25200),
|
|
|
|
(u'Singapore Standard Time', 28800),
|
|
|
|
(u'South Africa Standard Time', 7200),
|
|
|
|
(u'Sri Lanka Standard Time', 19800),
|
|
|
|
(u'Syria Standard Time', 7200),
|
|
|
|
(u'Taipei Standard Time', 28800),
|
|
|
|
(u'Tasmania Standard Time', 36000),
|
|
|
|
(u'Tokyo Standard Time', 32400),
|
|
|
|
(u'Tonga Standard Time', 46800),
|
|
|
|
(u'Turkey Standard Time', 7200),
|
|
|
|
(u'Ulaanbaatar Standard Time', 28800),
|
|
|
|
(u'US Eastern Standard Time', -18000),
|
|
|
|
(u'US Mountain Standard Time', -25200),
|
|
|
|
(u'UTC-11', -39600),
|
|
|
|
(u'UTC-02', -7200),
|
|
|
|
(u'UTC', 0),
|
|
|
|
(u'UTC+12', 43200),
|
|
|
|
(u'Venezuela Standard Time', -16200),
|
|
|
|
(u'Vladivostok Standard Time', 36000),
|
|
|
|
(u'W. Australia Standard Time', 28800),
|
|
|
|
(u'W. Central Africa Standard Time', 3600),
|
|
|
|
(u'W. Europe Standard Time', 3600),
|
|
|
|
(u'West Asia Standard Time', 18000),
|
|
|
|
(u'West Pacific Standard Time', 36000),
|
|
|
|
(u'Yakutsk Standard Time', 32400),
|
|
|
|
)
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
def windowsIdToKey(windowsId):
|
2019-05-28 14:21:15 +00:00
|
|
|
for index, pair in enumerate(windowsIdList):
|
|
|
|
if pair[0] == windowsId:
|
|
|
|
return index + 1
|
2013-01-27 13:52:56 +00:00
|
|
|
return 0
|
|
|
|
|
|
|
|
# List of standard UTC IDs to use. Not public so may be safely changed.
|
2019-05-28 14:21:15 +00:00
|
|
|
# Do not remove IDs, as each entry is part of the API/behavior guarantee.
|
|
|
|
# ( UTC Id, Offset Seconds )
|
|
|
|
utcIdList = (
|
|
|
|
(u'UTC', 0), # Goes first so is default
|
|
|
|
(u'UTC-14:00', -50400),
|
|
|
|
(u'UTC-13:00', -46800),
|
|
|
|
(u'UTC-12:00', -43200),
|
|
|
|
(u'UTC-11:00', -39600),
|
|
|
|
(u'UTC-10:00', -36000),
|
|
|
|
(u'UTC-09:00', -32400),
|
|
|
|
(u'UTC-08:00', -28800),
|
|
|
|
(u'UTC-07:00', -25200),
|
|
|
|
(u'UTC-06:00', -21600),
|
|
|
|
(u'UTC-05:00', -18000),
|
|
|
|
(u'UTC-04:30', -16200),
|
|
|
|
(u'UTC-04:00', -14400),
|
|
|
|
(u'UTC-03:30', -12600),
|
|
|
|
(u'UTC-03:00', -10800),
|
|
|
|
(u'UTC-02:00', -7200),
|
|
|
|
(u'UTC-01:00', -3600),
|
|
|
|
(u'UTC-00:00', 0),
|
|
|
|
(u'UTC+00:00', 0),
|
|
|
|
(u'UTC+01:00', 3600),
|
|
|
|
(u'UTC+02:00', 7200),
|
|
|
|
(u'UTC+03:00', 10800),
|
|
|
|
(u'UTC+03:30', 12600),
|
|
|
|
(u'UTC+04:00', 14400),
|
|
|
|
(u'UTC+04:30', 16200),
|
|
|
|
(u'UTC+05:00', 18000),
|
|
|
|
(u'UTC+05:30', 19800),
|
|
|
|
(u'UTC+05:45', 20700),
|
|
|
|
(u'UTC+06:00', 21600),
|
|
|
|
(u'UTC+06:30', 23400),
|
|
|
|
(u'UTC+07:00', 25200),
|
|
|
|
(u'UTC+08:00', 28800),
|
|
|
|
(u'UTC+08:30', 30600),
|
|
|
|
(u'UTC+09:00', 32400),
|
|
|
|
(u'UTC+09:30', 34200),
|
|
|
|
(u'UTC+10:00', 36000),
|
|
|
|
(u'UTC+11:00', 39600),
|
|
|
|
(u'UTC+12:00', 43200),
|
|
|
|
(u'UTC+13:00', 46800),
|
|
|
|
(u'UTC+14:00', 50400),
|
|
|
|
)
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
def usage():
|
|
|
|
print "Usage: cldr2qtimezone.py <path to cldr core/common> <path to qtbase>"
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
if len(sys.argv) != 3:
|
|
|
|
usage()
|
|
|
|
|
|
|
|
cldrPath = sys.argv[1]
|
|
|
|
qtPath = sys.argv[2]
|
|
|
|
|
|
|
|
if not os.path.isdir(cldrPath) or not os.path.isdir(qtPath):
|
|
|
|
usage()
|
|
|
|
|
|
|
|
windowsZonesPath = cldrPath + "/supplemental/windowsZones.xml"
|
2015-03-23 09:58:37 +00:00
|
|
|
tempFileDir = qtPath
|
2019-05-27 15:47:22 +00:00
|
|
|
dataFilePath = qtPath + "/src/corelib/time/qtimezoneprivate_data_p.h"
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
if not os.path.isfile(windowsZonesPath):
|
|
|
|
usage()
|
|
|
|
|
|
|
|
if not os.path.isfile(dataFilePath):
|
|
|
|
usage()
|
|
|
|
|
2015-03-23 09:58:37 +00:00
|
|
|
cldr_version = 'unknown'
|
|
|
|
ldml = open(cldrPath + "/dtd/ldml.dtd", "r")
|
|
|
|
for line in ldml:
|
|
|
|
if 'version cldrVersion CDATA #FIXED' in line:
|
|
|
|
cldr_version = line.split('"')[1]
|
|
|
|
|
2013-01-27 13:52:56 +00:00
|
|
|
# [[u'version', [(u'number', u'$Revision: 7825 $')]]]
|
|
|
|
versionNumber = findTagsInFile(windowsZonesPath, "version")[0][1][0][1]
|
|
|
|
|
|
|
|
mapTimezones = findTagsInFile(windowsZonesPath, "windowsZones/mapTimezones")
|
|
|
|
|
|
|
|
defaultDict = {}
|
|
|
|
windowsIdDict = {}
|
|
|
|
|
|
|
|
if mapTimezones:
|
2019-05-28 16:16:54 +00:00
|
|
|
badZones = set()
|
2013-01-27 13:52:56 +00:00
|
|
|
for mapZone in mapTimezones:
|
|
|
|
# [u'mapZone', [(u'territory', u'MH'), (u'other', u'UTC+12'), (u'type', u'Pacific/Majuro Pacific/Kwajalein')]]
|
|
|
|
if mapZone[0] == u'mapZone':
|
|
|
|
data = {}
|
|
|
|
for attribute in mapZone[1]:
|
|
|
|
if attribute[0] == u'other':
|
|
|
|
data['windowsId'] = attribute[1]
|
|
|
|
if attribute[0] == u'territory':
|
|
|
|
data['countryCode'] = attribute[1]
|
|
|
|
if attribute[0] == u'type':
|
2014-01-07 16:10:19 +00:00
|
|
|
data['ianaList'] = attribute[1]
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
data['windowsKey'] = windowsIdToKey(data['windowsId'])
|
|
|
|
if data['windowsKey'] <= 0:
|
2019-05-28 16:16:54 +00:00
|
|
|
badZones.add(data['windowsId'])
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
countryId = 0
|
|
|
|
if data['countryCode'] == u'001':
|
2014-01-07 16:10:19 +00:00
|
|
|
defaultDict[data['windowsKey']] = data['ianaList']
|
2013-01-27 13:52:56 +00:00
|
|
|
else:
|
|
|
|
data['countryId'] = enumdata.countryCodeToId(data['countryCode'])
|
|
|
|
if data['countryId'] < 0:
|
|
|
|
raise xpathlite.Error("Unknown Country Code \"%s\"" % data['countryCode'])
|
|
|
|
data['country'] = enumdata.country_list[data['countryId']][0]
|
|
|
|
windowsIdDict[data['windowsKey'], data['countryId']] = data
|
2019-05-28 16:16:54 +00:00
|
|
|
if badZones:
|
|
|
|
sys.stderr.write('\n\t'.join(["\nUnknown Windows ID, please add:"] + sorted(badZones))
|
|
|
|
+ "\nto the windowIdList in cldr2qtimezone.py\n\n")
|
|
|
|
raise xpathlite.Error("Unknown Windows IDs")
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
print "Input file parsed, now writing data"
|
|
|
|
|
|
|
|
GENERATED_BLOCK_START = "// GENERATED PART STARTS HERE\n"
|
|
|
|
GENERATED_BLOCK_END = "// GENERATED PART ENDS HERE\n"
|
|
|
|
|
|
|
|
# Create a temp file to write the new data into
|
|
|
|
(newTempFile, newTempFilePath) = tempfile.mkstemp("qtimezone_data_p", dir=tempFileDir)
|
|
|
|
newTempFile = os.fdopen(newTempFile, "w")
|
|
|
|
|
|
|
|
# Open the old file and copy over the first non-generated section to the new file
|
|
|
|
oldDataFile = open(dataFilePath, "r")
|
|
|
|
s = oldDataFile.readline()
|
|
|
|
while s and s != GENERATED_BLOCK_START:
|
|
|
|
newTempFile.write(s)
|
|
|
|
s = oldDataFile.readline()
|
|
|
|
|
|
|
|
# Write out generated block start tag and warning
|
|
|
|
newTempFile.write(GENERATED_BLOCK_START)
|
2017-05-12 09:59:18 +00:00
|
|
|
newTempFile.write("""
|
|
|
|
/*
|
|
|
|
This part of the file was generated on %s from the
|
|
|
|
Common Locale Data Repository v%s supplemental/windowsZones.xml file %s
|
|
|
|
|
|
|
|
http://www.unicode.org/cldr/
|
|
|
|
|
2017-05-23 16:16:49 +00:00
|
|
|
Do not edit this code: run cldr2qtimezone.py on updated (or
|
2019-05-16 12:31:54 +00:00
|
|
|
edited) CLDR data; see qtbase/util/locale_database/.
|
2017-05-12 09:59:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
""" % (str(datetime.date.today()), cldr_version, versionNumber) )
|
2013-01-27 13:52:56 +00:00
|
|
|
|
|
|
|
windowsIdData = ByteArrayData()
|
2014-01-07 16:10:19 +00:00
|
|
|
ianaIdData = ByteArrayData()
|
2013-01-27 13:52:56 +00:00
|
|
|
|
2014-01-07 16:10:19 +00:00
|
|
|
# Write Windows/IANA table
|
|
|
|
newTempFile.write("// Windows ID Key, Country Enum, IANA ID Index\n")
|
2013-01-27 13:52:56 +00:00
|
|
|
newTempFile.write("static const QZoneData zoneDataTable[] = {\n")
|
|
|
|
for index in windowsIdDict:
|
|
|
|
data = windowsIdDict[index]
|
2017-05-12 09:59:18 +00:00
|
|
|
newTempFile.write(" { %6d,%6d,%6d }, // %s / %s\n"
|
2013-01-27 13:52:56 +00:00
|
|
|
% (data['windowsKey'],
|
|
|
|
data['countryId'],
|
2014-01-07 16:10:19 +00:00
|
|
|
ianaIdData.append(data['ianaList']),
|
2013-01-27 13:52:56 +00:00
|
|
|
data['windowsId'],
|
|
|
|
data['country']))
|
|
|
|
newTempFile.write(" { 0, 0, 0 } // Trailing zeroes\n")
|
|
|
|
newTempFile.write("};\n\n")
|
|
|
|
|
|
|
|
print "Done Zone Data"
|
|
|
|
|
|
|
|
# Write Windows ID key table
|
2014-01-07 16:10:19 +00:00
|
|
|
newTempFile.write("// Windows ID Key, Windows ID Index, IANA ID Index, UTC Offset\n")
|
2013-01-27 13:52:56 +00:00
|
|
|
newTempFile.write("static const QWindowsData windowsDataTable[] = {\n")
|
2019-05-28 14:21:15 +00:00
|
|
|
for index, pair in enumerate(windowsIdList):
|
2017-05-12 09:59:18 +00:00
|
|
|
newTempFile.write(" { %6d,%6d,%6d,%6d }, // %s\n"
|
2019-05-28 14:21:15 +00:00
|
|
|
% (index + 1, windowsIdData.append(pair[0]),
|
|
|
|
ianaIdData.append(defaultDict[index + 1]), pair[1], pair[0]))
|
2013-01-27 13:52:56 +00:00
|
|
|
newTempFile.write(" { 0, 0, 0, 0 } // Trailing zeroes\n")
|
|
|
|
newTempFile.write("};\n\n")
|
|
|
|
|
|
|
|
print "Done Windows Data Table"
|
|
|
|
|
|
|
|
# Write UTC ID key table
|
2014-01-07 16:10:19 +00:00
|
|
|
newTempFile.write("// IANA ID Index, UTC Offset\n")
|
2013-01-27 13:52:56 +00:00
|
|
|
newTempFile.write("static const QUtcData utcDataTable[] = {\n")
|
2019-05-28 14:21:15 +00:00
|
|
|
for pair in utcIdList:
|
2017-05-12 09:59:18 +00:00
|
|
|
newTempFile.write(" { %6d,%6d }, // %s\n"
|
2019-05-28 14:21:15 +00:00
|
|
|
% (ianaIdData.append(pair[0]), pair[1], pair[0]))
|
2013-01-27 13:52:56 +00:00
|
|
|
newTempFile.write(" { 0, 0 } // Trailing zeroes\n")
|
|
|
|
newTempFile.write("};\n\n")
|
|
|
|
|
|
|
|
print "Done UTC Data Table"
|
|
|
|
|
|
|
|
# Write out Windows ID's data
|
|
|
|
newTempFile.write("static const char windowsIdData[] = {\n")
|
|
|
|
newTempFile.write(wrap_list(windowsIdData.data))
|
|
|
|
newTempFile.write("\n};\n\n")
|
|
|
|
|
2014-01-07 16:10:19 +00:00
|
|
|
# Write out IANA ID's data
|
|
|
|
newTempFile.write("static const char ianaIdData[] = {\n")
|
|
|
|
newTempFile.write(wrap_list(ianaIdData.data))
|
2013-01-27 13:52:56 +00:00
|
|
|
newTempFile.write("\n};\n")
|
|
|
|
|
|
|
|
print "Done ID Data Table"
|
|
|
|
|
|
|
|
# Write out the end of generated block tag
|
|
|
|
newTempFile.write(GENERATED_BLOCK_END)
|
|
|
|
s = oldDataFile.readline()
|
|
|
|
|
|
|
|
# Skip through the old generated data in the old file
|
|
|
|
while s and s != GENERATED_BLOCK_END:
|
|
|
|
s = oldDataFile.readline()
|
|
|
|
|
|
|
|
# Now copy the rest of the original file into the new file
|
|
|
|
s = oldDataFile.readline()
|
|
|
|
while s:
|
|
|
|
newTempFile.write(s)
|
|
|
|
s = oldDataFile.readline()
|
|
|
|
|
|
|
|
# Now close the old and new file, delete the old file and copy the new file in its place
|
|
|
|
newTempFile.close()
|
|
|
|
oldDataFile.close()
|
|
|
|
os.remove(dataFilePath)
|
|
|
|
os.rename(newTempFilePath, dataFilePath)
|
|
|
|
|
|
|
|
print "Data generation completed, please check the new file at " + dataFilePath
|