blob: 89b70491158008abc9f5fd6b8f418f616f9735f8 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright (C) 2019 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:
# ./trace_processor
# python trace_processor
# bash trace_processor
# cat ./trace_processor | bash
# cat ./trace_processor | python -
BASH_FALLBACK = """ "
exec python3 - "$@" <<'#'EOF
#"""
TOOL_NAME = 'trace_processor_shell'
# BEGIN_SECTION_GENERATED_BY(roll-prebuilts)
# Revision: v26.1
PERFETTO_PREBUILT_MANIFEST = [{
'tool':
'trace_processor_shell',
'arch':
'mac-amd64',
'file_name':
'trace_processor_shell',
'file_size':
7532800,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/mac-amd64/trace_processor_shell',
'sha256':
'c2d81c2e3fac2fd2ee181f9aaaff0c0f33e21bf855c458912288ec0e6ffd80e3',
'platform':
'darwin',
'machine': ['x86_64']
}, {
'tool':
'trace_processor_shell',
'arch':
'mac-arm64',
'file_name':
'trace_processor_shell',
'file_size':
6526392,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/mac-arm64/trace_processor_shell',
'sha256':
'cfedeadf858da4daab61c2d997017802c13d06990127b3f717e5e241a16b4934',
'platform':
'darwin',
'machine': ['arm64']
}, {
'tool':
'trace_processor_shell',
'arch':
'linux-amd64',
'file_name':
'trace_processor_shell',
'file_size':
8088384,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/linux-amd64/trace_processor_shell',
'sha256':
'74b437b8e71c3b5075e99087152f9100372041a13668baaeb02e889935633099',
'platform':
'linux',
'machine': ['x86_64']
}, {
'tool':
'trace_processor_shell',
'arch':
'linux-arm',
'file_name':
'trace_processor_shell',
'file_size':
5180284,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/linux-arm/trace_processor_shell',
'sha256':
'bca0829373c07fdcc03652e626dae31bdf3508d65febbbfb9b5fbf7b30807342',
'platform':
'linux',
'machine': ['armv6l', 'armv7l', 'armv8l']
}, {
'tool':
'trace_processor_shell',
'arch':
'linux-arm64',
'file_name':
'trace_processor_shell',
'file_size':
7215960,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/linux-arm64/trace_processor_shell',
'sha256':
'026d92e77a7af0fbaa39591002d93abce89d16ea5bff9da6814c49601ca702b4',
'platform':
'linux',
'machine': ['aarch64']
}, {
'tool':
'trace_processor_shell',
'arch':
'android-arm',
'file_name':
'trace_processor_shell',
'file_size':
4857904,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/android-arm/trace_processor_shell',
'sha256':
'15520a62d65f0b20b41308c4e89d2ee1e24bdc262d5964a55a999a07ef081d8f'
}, {
'tool':
'trace_processor_shell',
'arch':
'android-arm64',
'file_name':
'trace_processor_shell',
'file_size':
6502032,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/android-arm64/trace_processor_shell',
'sha256':
'89bdf50b25a2f3718415b6da48a0486b808c6e34a549f7c1771a59fc5325fd47'
}, {
'tool':
'trace_processor_shell',
'arch':
'android-x86',
'file_name':
'trace_processor_shell',
'file_size':
7155716,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/android-x86/trace_processor_shell',
'sha256':
'1cf08e8e07dc4f12376c1e58f831b12f36ee8210dfb9ccda4e0bc4fedff13e2f'
}, {
'tool':
'trace_processor_shell',
'arch':
'android-x64',
'file_name':
'trace_processor_shell',
'file_size':
7681712,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/android-x64/trace_processor_shell',
'sha256':
'c466bd1fade9c433c24683dd3dc57acaf3a356e1268ae7b2085e7f5ceba5285c'
}, {
'tool':
'trace_processor_shell',
'arch':
'windows-amd64',
'file_name':
'trace_processor_shell.exe',
'file_size':
7080448,
'url':
'https://commondatastorage.googleapis.com/perfetto-luci-artifacts/v26.1/windows-amd64/trace_processor_shell.exe',
'sha256':
'18649f0d6980839a2303ff4e7726114e96e700323018dbf74a579691df233bb5',
'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