Mads Ager | a974561 | 2017-11-02 12:42:15 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file |
| 3 | # for details. All rights reserved. Use of this source code is governed by a |
| 4 | # BSD-style license that can be found in the LICENSE file. |
| 5 | |
| 6 | import hashlib |
| 7 | import argparse |
| 8 | from os import makedirs |
| 9 | from os.path import join |
| 10 | from shutil import copyfile, make_archive, rmtree |
| 11 | import subprocess |
| 12 | import sys |
| 13 | from string import Template |
| 14 | import tempfile |
Mads Ager | 0fab491 | 2017-11-20 13:52:48 +0100 | [diff] [blame] | 15 | import utils |
Mads Ager | a974561 | 2017-11-02 12:42:15 +0100 | [diff] [blame] | 16 | |
| 17 | LICENSETEMPLATE = Template( |
| 18 | """ |
| 19 | <license> |
| 20 | <name>$name</name> |
| 21 | <url>$url</url> |
| 22 | <distribution>repo</distribution> |
| 23 | </license>""") |
| 24 | |
| 25 | POMTEMPLATE = Template( |
| 26 | """<project |
| 27 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 28 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 29 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 30 | <modelVersion>4.0.0</modelVersion> |
| 31 | <groupId>com.android.tools</groupId> |
| 32 | <artifactId>r8</artifactId> |
| 33 | <version>$version</version> |
| 34 | <name>D8 dexer and R8 shrinker</name> |
| 35 | <description> |
| 36 | D8 dexer and R8 shrinker. |
| 37 | </description> |
| 38 | <url>http://r8.googlesource.com/r8</url> |
| 39 | <inceptionYear>2016</inceptionYear> |
| 40 | <licenses> |
| 41 | <license> |
| 42 | <name>BSD-3-Clause</name> |
| 43 | <url>https://opensource.org/licenses/BSD-3-Clause</url> |
| 44 | <distribution>repo</distribution> |
| 45 | </license>$library_licenses |
Mads Ager | 7346019 | 2017-11-08 10:02:50 +0100 | [diff] [blame] | 46 | </licenses> |
Mads Ager | a974561 | 2017-11-02 12:42:15 +0100 | [diff] [blame] | 47 | <developers> |
| 48 | <developer> |
| 49 | <name>The Android Open Source Project</name> |
| 50 | </developer> |
| 51 | </developers> |
| 52 | <scm> |
| 53 | <connection> |
| 54 | https://r8.googlesource.com/r8.git |
| 55 | </connection> |
| 56 | <url> |
| 57 | https://r8.googlesource.com/r8 |
| 58 | </url> |
| 59 | </scm> |
| 60 | </project> |
| 61 | """) |
| 62 | |
| 63 | def parse_options(argv): |
| 64 | result = argparse.ArgumentParser() |
| 65 | result.add_argument('--jar', help='jar file to package') |
| 66 | result.add_argument('--out', help='directory in which to put the output zip file') |
| 67 | return result.parse_args(argv) |
| 68 | |
| 69 | def determine_version(jar): |
| 70 | cmd = [] |
| 71 | cmd.append('java') |
| 72 | cmd.extend(['-jar', jar]); |
| 73 | cmd.append('--version') |
| 74 | output = subprocess.check_output(cmd) |
| 75 | version_string = output.split()[1] |
| 76 | assert version_string.startswith("v") |
| 77 | return version_string[1:] |
| 78 | |
| 79 | def generate_library_licenses(): |
| 80 | license_prefix = 'license: ' |
| 81 | licenses = [] |
| 82 | license_url_prefix = 'licenseUrl: ' |
| 83 | license_urls = [] |
| 84 | with open('LIBRARY-LICENSE', 'r') as file: |
| 85 | for line in file: |
| 86 | trimmed = line.strip() |
| 87 | if trimmed.startswith(license_prefix): |
Mads Ager | 7346019 | 2017-11-08 10:02:50 +0100 | [diff] [blame] | 88 | # Assert checking that licenses come in name/url pairs. |
Mads Ager | a974561 | 2017-11-02 12:42:15 +0100 | [diff] [blame] | 89 | assert len(licenses) == len(license_urls) |
| 90 | name = trimmed[len(license_prefix):] |
| 91 | if not name in licenses: |
| 92 | licenses.append(name) |
| 93 | if trimmed.startswith(license_url_prefix): |
| 94 | url = trimmed[len(license_url_prefix):] |
| 95 | if not url in license_urls: |
| 96 | license_urls.append(url) |
Mads Ager | 7346019 | 2017-11-08 10:02:50 +0100 | [diff] [blame] | 97 | # Assert checking that licenses come in name/url pairs. |
Mads Ager | a974561 | 2017-11-02 12:42:15 +0100 | [diff] [blame] | 98 | assert len(licenses) == len(license_urls) |
| 99 | result = '' |
| 100 | for i in range(len(licenses)): |
| 101 | name = licenses[i] |
| 102 | url = license_urls[i] |
| 103 | result += LICENSETEMPLATE.substitute(name=name, url=url) |
| 104 | return result |
| 105 | |
| 106 | def write_pom_file(version, pom_file): |
| 107 | library_licenses = generate_library_licenses() |
| 108 | version_pom = POMTEMPLATE.substitute(version=version, library_licenses=library_licenses) |
| 109 | with open(pom_file, 'w') as file: |
| 110 | file.write(version_pom) |
| 111 | |
| 112 | def hash_for(file, hash): |
| 113 | with open(file, 'rb') as f: |
| 114 | while True: |
| 115 | # Read chunks of 1MB |
| 116 | chunk = f.read(2 ** 20) |
| 117 | if not chunk: |
| 118 | break |
| 119 | hash.update(chunk) |
| 120 | return hash.hexdigest() |
| 121 | |
| 122 | def write_md5_for(file): |
| 123 | hexdigest = hash_for(file, hashlib.md5()) |
| 124 | with (open(file + '.md5', 'w')) as file: |
| 125 | file.write(hexdigest) |
| 126 | |
| 127 | def write_sha1_for(file): |
| 128 | hexdigest = hash_for(file, hashlib.sha1()) |
| 129 | with (open(file + '.sha1', 'w')) as file: |
| 130 | file.write(hexdigest) |
| 131 | |
| 132 | def main(argv): |
| 133 | options = parse_options(argv) |
| 134 | jar = options.jar |
| 135 | outdir = options.out |
| 136 | if jar == None or outdir == None: |
| 137 | print 'Need to supply --jar and --out.' |
| 138 | exit(1) |
| 139 | # Create directory structure for this version. |
| 140 | version = determine_version(jar) |
Mads Ager | 14d9b07 | 2017-11-20 13:42:55 +0100 | [diff] [blame] | 141 | with utils.TempDir() as tmp_dir: |
| 142 | version_dir = join( |
| 143 | tmp_dir, 'com', 'google', 'android', 'tools', 'r8', version, 'r8') |
| 144 | makedirs(version_dir) |
| 145 | # Write the pom file. |
| 146 | pom_file = join(version_dir, 'r8-' + version + '.pom') |
| 147 | write_pom_file(version, pom_file) |
| 148 | # Copy the jar to the output. |
| 149 | target_jar = join(version_dir, 'r8-' + version + '.jar') |
| 150 | copyfile(jar, target_jar) |
| 151 | # Create check sums. |
| 152 | write_md5_for(target_jar) |
| 153 | write_md5_for(pom_file) |
| 154 | write_sha1_for(target_jar) |
| 155 | write_sha1_for(pom_file) |
| 156 | # Zip it up. |
| 157 | make_archive(join(outdir, 'r8'), 'zip', tmp_dir) |
Mads Ager | a974561 | 2017-11-02 12:42:15 +0100 | [diff] [blame] | 158 | |
| 159 | if __name__ == "__main__": |
| 160 | exit(main(sys.argv[1:])) |