blob: 009a18cfa9b2aa383bcf56bb1d0dcf0c8c10a829 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright (C) 2021 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.
# This file should do the same thing when being invoked in any of these ways:
# ./traceconv
# python traceconv
# bash traceconv
# cat ./traceconv | bash
# cat ./traceconv | python -
BASH_FALLBACK = """ "
exec python3 - "$@" <<'#'EOF
#"""
TOOL_NAME = 'traceconv'
# BEGIN_SECTION_GENERATED_BY(roll-prebuilts)
# Revision: v27.1
PERFETTO_PREBUILT_MANIFEST = [{
'tool':
'traceconv',
'arch':
'mac-amd64',
'file_name':
'traceconv',
'file_size':
6689896,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/mac-amd64/traceconv',
'sha256':
'0789ac099d3f8dd7ef4838a6e0befbc7776ff791666d623f3513a5b1de4f31c5',
'platform':
'darwin',
'machine': ['x86_64']
}, {
'tool':
'traceconv',
'arch':
'mac-arm64',
'file_name':
'traceconv',
'file_size':
5496552,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/mac-arm64/traceconv',
'sha256':
'6878c913a655a30f6acf0f1394c4fc063a105fbbf851d7fe7934730dc74c8ddb',
'platform':
'darwin',
'machine': ['arm64']
}, {
'tool':
'traceconv',
'arch':
'linux-amd64',
'file_name':
'traceconv',
'file_size':
7159072,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/linux-amd64/traceconv',
'sha256':
'72d0b99c2396c1d6fa684a5242a6d307b63163810c7664ebe343ee6da3e2cfab',
'platform':
'linux',
'machine': ['x86_64']
}, {
'tool':
'traceconv',
'arch':
'linux-arm',
'file_name':
'traceconv',
'file_size':
5305732,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/linux-arm/traceconv',
'sha256':
'891af2f6b9524a1c2433f47c73ad08636c2a9d2619996811fc94ad78c2999d7b',
'platform':
'linux',
'machine': ['armv6l', 'armv7l', 'armv8l']
}, {
'tool':
'traceconv',
'arch':
'linux-arm64',
'file_name':
'traceconv',
'file_size':
6342040,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/linux-arm64/traceconv',
'sha256':
'3adfb7bdd2ce2b0e3d9de7f4a274edec1b698d3e20ae50adcf5196b910507923',
'platform':
'linux',
'machine': ['aarch64']
}, {
'tool':
'traceconv',
'arch':
'android-arm',
'file_name':
'traceconv',
'file_size':
4337052,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/android-arm/traceconv',
'sha256':
'e84db6cf5a45d9f4adca404255fb5c6f4038d9984e1701b962279fffdc4084f3'
}, {
'tool':
'traceconv',
'arch':
'android-arm64',
'file_name':
'traceconv',
'file_size':
5706496,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/android-arm64/traceconv',
'sha256':
'28cb523c7b84430c2fa21a3c62dfe1d489e15b7355ef58b51a5680819cf32d37'
}, {
'tool':
'traceconv',
'arch':
'android-x86',
'file_name':
'traceconv',
'file_size':
6548852,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/android-x86/traceconv',
'sha256':
'2369f2a3194f15dada309fb517407a87ed542aad1133921803c136c40ca5dea9'
}, {
'tool':
'traceconv',
'arch':
'android-x64',
'file_name':
'traceconv',
'file_size':
6820632,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/android-x64/traceconv',
'sha256':
'e95534c667c292a247f62dd413050f19e4b08f7a2725e0ab9abd8270d2f8df28'
}, {
'tool':
'traceconv',
'arch':
'windows-amd64',
'file_name':
'traceconv.exe',
'file_size':
6850048,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v27.1/windows-amd64/traceconv.exe',
'sha256':
'19cdec3824d369be3bb053b40b3cfe9f62c2e57e71a5e2ee17ca15b6e7463683',
'platform':
'win32',
'machine': ['amd64']
}]
# DO NOT EDIT. If you wish to make edits to this code, you need to change only
# //tools/get_perfetto_prebuilt.py and run /tools/roll-prebuilts to regenerate
# all the others scripts this is embedded into.
def get_perfetto_prebuilt(tool_name, soft_fail=False, arch=None):
""" Downloads the prebuilt, if necessary, and returns its path on disk. """
# The first time this is invoked, it downloads the |url| and caches it into
# ~/.perfetto/prebuilts/$tool_name. On subsequent invocations it just runs the
# cached version.
def download_or_get_cached(file_name, url, sha256):
import os, hashlib, subprocess
dir = os.path.join(
os.path.expanduser('~'), '.local', 'share', 'perfetto', 'prebuilts')
os.makedirs(dir, exist_ok=True)
bin_path = os.path.join(dir, file_name)
sha256_path = os.path.join(dir, file_name + '.sha256')
needs_download = True
# Avoid recomputing the SHA-256 on each invocation. The SHA-256 of the last
# download is cached into file_name.sha256, just check if that matches.
if os.path.exists(bin_path) and os.path.exists(sha256_path):
with open(sha256_path, 'rb') as f:
digest = f.read().decode()
if digest == sha256:
needs_download = False
if needs_download:
# Either the filed doesn't exist or the SHA256 doesn't match.
tmp_path = bin_path + '.tmp'
print('Downloading ' + url)
subprocess.check_call(['curl', '-f', '-L', '-#', '-o', tmp_path, url])
with open(tmp_path, 'rb') as fd:
actual_sha256 = hashlib.sha256(fd.read()).hexdigest()
if actual_sha256 != sha256:
raise Exception('Checksum mismatch for %s (actual: %s, expected: %s)' %
(url, actual_sha256, sha256))
os.chmod(tmp_path, 0o755)
os.rename(tmp_path, bin_path)
with open(sha256_path, 'w') as f:
f.write(sha256)
return bin_path
# --- end of download_or_get_cached() ---
# --- get_perfetto_prebuilt() function starts here. ---
import os, platform, sys
plat = sys.platform.lower()
machine = platform.machine().lower()
manifest_entry = None
for entry in PERFETTO_PREBUILT_MANIFEST:
# If the caller overrides the arch, just match that (for Android prebuilts).
if arch:
if entry.get('arch') == arch:
manifest_entry = entry
break
continue
# Otherwise guess the local machine arch.
if entry.get('tool') == tool_name and entry.get(
'platform') == plat and machine in entry.get('machine', []):
manifest_entry = entry
break
if manifest_entry is None:
if soft_fail:
return None
raise Exception(
('No prebuilts available for %s-%s\n' % (plat, machine)) +
'See https://perfetto.dev/docs/contributing/build-instructions')
return download_or_get_cached(
file_name=manifest_entry['file_name'],
url=manifest_entry['url'],
sha256=manifest_entry['sha256'])
# END_SECTION_GENERATED_BY(roll-prebuilts)
if __name__ == '__main__':
import sys, subprocess, os
bin_path = get_perfetto_prebuilt(TOOL_NAME)
if sys.platform.lower() == 'win32':
exit(subprocess.check_call([bin_path, *sys.argv[1:]]))
os.execv(bin_path, [bin_path] + sys.argv[1:])
#EOF