This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 775
/
moz2d-record.sh
executable file
·83 lines (74 loc) · 2.04 KB
/
moz2d-record.sh
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
#!/bin/bash
#set -x
SCRIPT_NAME=$(basename $0)
ADB=adb
set_recording() {
PREFS_JS=$(adb shell echo -n "/data/b2g/mozilla/*.default")/prefs.js
$ADB pull $PREFS_JS
echo "user_pref(\"gfx.2d.recording\", $1);" >> prefs.js
$ADB push prefs.js $PREFS_JS
}
HELP_start="Restart b2g with moz2d draw call recording."
cmd_start() {
echo "Stopping b2g"
$ADB shell stop b2g
$ADB shell rm "/data/local/tmp/moz2drec_*.aer"
set_recording "true"
echo "Restarting"
$ADB shell start b2g
echo "TIP: Close the application before invoking moz2d-record.sh stop"
}
HELP_stop="Restart b2g without recording and pull the files."
cmd_stop() {
echo "Stopping b2g"
$ADB shell stop b2g
echo "Pulling recording(s)"
$ADB shell ls "/data/local/tmp/moz2drec_*.aer" | tr -d '\r' | xargs -n1 $ADB pull
$ADB shell rm "/data/local/tmp/moz2drec_*.aer"
set_recording "false"
echo "Restarting"
$ADB shell start b2g
}
HELP_clean="Clean the moz2drec files."
cmd_clean() {
rm moz2drec_*.aer
}
###########################################################################
#
# Display a brief help message for each supported command
#
HELP_help="Shows these help messages"
cmd_help() {
if [ "$1" == "" ]; then
echo "Usage: ${SCRIPT_NAME} command [args]"
echo "where command is one of:"
for command in ${allowed_commands}; do
desc=HELP_${command}
printf " %-11s %s\n" ${command} "${!desc}"
done
else
command=$1
if [ "${allowed_commands/*${command}*/${command}}" == "${command}" ]; then
desc=HELP_${command}
printf "%-11s %s\n" ${command} "${!desc}"
else
echo "Unrecognized command: '${command}'"
fi
fi
}
#
# Determine if the first argument is a valid command and execute the
# corresponding function if it is.
#
allowed_commands=$(declare -F | sed -ne 's/declare -f cmd_\(.*\)/\1/p' | tr "\n" " ")
command=$1
if [ "${command}" == "" ]; then
cmd_help
exit 0
fi
if [ "${allowed_commands/*${command}*/${command}}" == "${command}" ]; then
shift
cmd_${command} "$@"
else
echo "Unrecognized command: '${command}'"
fi