blob: 9a14356a4bc9cf9c51ba6e59f1e402992bb16d0c [file] [log] [blame]
#!/bin/bash
# Copyright (C) 2018 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.
set -e
if [ "$TMPDIR" == "" ]; then
TMPDIR=/tmp
fi
function is_monolithic {
local out=$1
gn args $out --list --short | grep 'monolithic_binaries = true' 2>&1 >/dev/null
return $?
}
function is_android {
local out=$1
gn args $out --list --short | grep 'target_os = "android"' 2>&1 >/dev/null
return $?
}
function reset_tracing {
if is_android $OUT; then
adb shell 'echo 0 > /d/tracing/tracing_on'
else
if [ ! -w /sys/kernel/debug ]; then
echo "debugfs not accessible, try sudo chown -R $USER /sys/kernel/debug"
sudo chown -R $USER /sys/kernel/debug
fi
echo 0 > /sys/kernel/debug/tracing/tracing_on
fi
}
function adb_supports_push_sync {
adb --help | grep 'push.*\[--sync\]' 2>&1 >/dev/null
}
function push {
if is_android $OUT; then
local maybe_sync=''
if adb_supports_push_sync; then
maybe_sync='--sync '
fi
echo adb push $maybe_sync $1 $DIR
adb push $maybe_sync $1 $DIR
else
echo cp $1 $DIR
cp $1 $DIR
fi
}
function pull {
if is_android $OUT; then
echo adb pull $DIR/$1 $2
adb pull $DIR/$1 $2
else
echo mv $DIR/$1 $2
mv $DIR/$1 $2
fi
}
# If not set guess the OUT dir using the latest directory.
if [ ! -f "$OUT/args.gn" ]; then
echo "OUT=$OUT doesn't look like an output directory."
echo "Please specify a directory by doing: export OUT=out/xxx"
exit 1
fi
# You can set the config to one of the files under test/configs e.g.
# CONFIG=ftrace.cfg or to :test. Defaults to :test.
CONFIG="${CONFIG:-:test}"
if is_android $OUT ; then
DIR=/data/local/tmp
else
DIR=$(mktemp -p $TMPDIR -d perfetto.XXXXXX)
fi
tools/ninja -C $OUT traced traced_probes perfetto trace_to_text test/configs
push $OUT/traced
push $OUT/traced_probes
push $OUT/perfetto
reset_tracing
if is_android $OUT; then
PREFIX="
PERFETTO_CONSUMER_SOCK_NAME=/data/misc/perfetto-traces/test_consumer_socket
PERFETTO_PRODUCER_SOCK_NAME=/data/misc/perfetto-traces/test_producer_socket"
else
PREFIX=""
fi
if ! is_monolithic $OUT; then
PREFIX="$PREFIX LD_LIBRARY_PATH=$DIR"
push $OUT/libtraced_shared.so
fi
CONFIG_DEVICE_PATH=$CONFIG
if [[ "$CONFIG" != ":test" ]]; then
CONFIG_DEVICE_PATH=$DIR/$CONFIG.protobuf
CONFIG_PATH=$OUT/$CONFIG.protobuf;
if [[ ! -f $CONFIG_PATH ]]; then
echo 'Config "'$CONFIG_PATH'" not known.'
exit 1
fi
push $CONFIG_PATH
fi
if tmux has-session -t demo; then
tmux kill-session -t demo
fi
tmux -2 new-session -d -s demo
if tmux -V | awk '{split($2, ver, "."); if (ver[1] < 2) exit 1 ; else if (ver[1] == 2 && ver[2] < 1) exit 1 }'; then
tmux set-option -g mouse on
else
tmux set-option -g mode-mouse on
tmux set-option -g mouse-resize-pane on
tmux set-option -g mouse-select-pane on
tmux set-option -g mouse-select-window on
fi
tmux split-window -v
tmux split-window -v
tmux select-layout even-vertical
tmux select-pane -t 0
tmux send-keys "clear" C-m
if is_android $OUT; then
tmux send-keys "adb shell" C-m
fi
tmux select-pane -t 1
tmux send-keys "clear" C-m
if is_android $OUT; then
tmux send-keys "adb shell" C-m
fi
tmux select-pane -t 2
tmux send-keys "clear" C-m
if is_android $OUT; then
tmux send-keys "adb shell" C-m
fi
sleep 2
tmux select-pane -t 1
tmux send-keys "$PREFIX $DIR/traced" Enter
tmux select-pane -t 0
tmux send-keys "$PREFIX $DIR/traced_probes" Enter
tmux select-pane -t 2
tmux send-keys "$PREFIX $DIR/perfetto -c $CONFIG_DEVICE_PATH -o $DIR/trace"
# Select consumer pane.
tmux select-pane -t 2
tmux -2 attach-session -t demo
reset_tracing
TRACE=$HOME/Downloads/trace
pull trace /tmp/trace.protobuf
echo -e "\n\x1b[32mPulling trace into $TRACE.pbtext\x1b[0m"
$OUT/trace_to_text text < /tmp/trace.protobuf > $TRACE.pbtext
echo -e "\n\x1b[32mPulling trace into $TRACE.json\x1b[0m"
$OUT/trace_to_text systrace < /tmp/trace.protobuf > $TRACE.json