liyujie
2025-08-28 b3810562527858a3b3d98ffa6e9c9c5b0f4a9a8e
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
#!/usr/bin/python -B
 
# Copyright 2017 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
 
"""Generates a time zone distro file"""
 
from __future__ import print_function
 
import argparse
import os
import shutil
import subprocess
import sys
 
sys.path.append('%s/external/icu/tools' % os.environ.get('ANDROID_BUILD_TOP'))
import i18nutil
 
 
android_build_top = i18nutil.GetAndroidRootOrDie()
android_host_out_dir = i18nutil.GetAndroidHostOutOrDie()
timezone_dir = os.path.realpath('%s/system/timezone' % android_build_top)
i18nutil.CheckDirExists(timezone_dir, 'system/timezone')
 
def RunCreateTimeZoneDistro(properties_file):
  # Build the libraries needed.
  subprocess.check_call(['make', '-C', android_build_top, 'create_time_zone_distro',
      'time_zone_distro'])
 
  libs = [ 'create_time_zone_distro', 'time_zone_distro' ]
  host_java_libs_dir = '%s/../common/obj/JAVA_LIBRARIES' % android_host_out_dir
  classpath_components = []
  for lib in libs:
      classpath_components.append('%s/%s_intermediates/javalib.jar' % (host_java_libs_dir, lib))
 
  classpath = ':'.join(classpath_components)
 
  # Run the CreateTimeZoneDistro tool
  subprocess.check_call(['java', '-cp', classpath,
      'com.android.timezone.distro.tools.CreateTimeZoneDistro', properties_file])
 
 
def CreateTimeZoneDistro(
    iana_version, revision, tzdata_file, icu_file, tzlookup_file, output_distro_dir,
    output_version_file):
  original_cwd = os.getcwd()
 
  i18nutil.SwitchToNewTemporaryDirectory()
  working_dir = os.getcwd()
 
  # Generate the properties file.
  properties_file = '%s/distro.properties' % working_dir
  with open(properties_file, "w") as properties:
    properties.write('rules.version=%s\n' % iana_version)
    properties.write('revision=%s\n' % revision)
    properties.write('tzdata.file=%s\n' % tzdata_file)
    properties.write('icu.file=%s\n' % icu_file)
    properties.write('tzlookup.file=%s\n' % tzlookup_file)
    properties.write('output.distro.dir=%s\n' % output_distro_dir)
    properties.write('output.version.file=%s\n' % output_version_file)
 
  RunCreateTimeZoneDistro(properties_file)
 
  os.chdir(original_cwd)
 
 
def main():
  parser = argparse.ArgumentParser()
  parser.add_argument('-iana_version', required=True,
      help='The IANA time zone rules release version, e.g. 2017b')
  parser.add_argument('-revision', type=int, default=1,
      help='The distro revision for the IANA version, default = 1')
  parser.add_argument('-tzdata', required=True, help='The location of the tzdata file to include')
  parser.add_argument('-icu', required=True,
      help='The location of the ICU overlay .dat file to include')
  parser.add_argument('-tzlookup', required=True,
      help='The location of the tzlookup.xml file to include')
  parser.add_argument('-output_distro_dir', required=True,
      help='The output directory for the distro.zip')
  parser.add_argument('-output_version_file', required=True,
      help='The output path for the version file')
  args = parser.parse_args()
 
  iana_version = args.iana_version
  revision = args.revision
  tzdata_file = os.path.abspath(args.tzdata)
  icu_file = os.path.abspath(args.icu)
  tzlookup_file = os.path.abspath(args.tzlookup)
  output_distro_dir = os.path.abspath(args.output_distro_dir)
  output_version_file = os.path.abspath(args.output_version_file)
 
  CreateTimeZoneDistro(
      iana_version=iana_version,
      revision=revision,
      tzdata_file=tzdata_file,
      icu_file=icu_file,
      tzlookup_file=tzlookup_file,
      output_distro_dir=output_distro_dir,
      output_version_file=output_version_file)
 
  print('Distro file created in %s' % output_distro_dir)
  print('Version file created as %s' % output_version_file)
  sys.exit(0)
 
 
if __name__ == '__main__':
  main()