forked from mozilla-b2g/B2G
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.sh
executable file
·740 lines (681 loc) · 21.4 KB
/
profile.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
#!/bin/bash
SCRIPT_NAME=$(basename $0)
ADB=adb
PROFILE_DIR=/data/local/tmp
PROFILE_PATTERN=${PROFILE_DIR}/'profile_?_*.txt';
PREFIX=""
if [ -n "$SPS_PROFILE_DEVICE" ]; then
ADB="adb -s ${SPS_PROFILE_DEVICE}"
fi
FEATURES_FLAG="MOZ_PROFILING_FEATURES"
DEFAULT_FEATURES=js,leaf
# The get_pids function populates B2G_PIDS as an array containting the PIDs
# of all of the b2g processes
declare -a B2G_PIDS
# The get_comms function populates B2G_COMMS as an array mapping
# pids to comms (process names). get_comms also causes B2G_PIDS to be populated.
declare -a B2G_COMMS
# This function takes a variable that is either a pid or a process name
# and returns the pid or exits on error
get_pid_by_pid_or_name() {
pid="$1"
case $pid in
*[^0-9]*)
pid=$(get_pid_by_name "$pid")
if [ -z "$pid" ] ; then
echo Error: PID $1 is invalid
exit 1;
fi
;;
esac
echo -n "$pid"
return
}
get_pid_by_name() {
echo $($ADB shell "toolbox ps '$1' | (read header; read user pid rest; echo -n \$pid)")
}
###########################################################################
#
# Clears the B2G_PIDS, which will force the information to be refetched.
#
clear_pids() {
unset B2G_PIDS
unset B2G_COMMS
}
###########################################################################
#
# Takes a pid or process name, and tries to determine the PID (only accepts
# PIDs which are associated with a b2g process)
#
find_pid() {
local search="$1"
get_comms
for pid in ${B2G_PIDS[*]}; do
if [ "${search}" == "${pid}" -o "${search}" == "${B2G_COMMS[${pid}]}" ]; then
echo -n "${pid}"
return
fi
done
}
###########################################################################
#
# Sets B2G_PID to be the pid of the b2g process.
#
get_b2g_pid() {
echo $($ADB shell 'toolbox ps b2g | (read header; read user pid rest; echo -n $pid)')
}
###########################################################################
#
# Fill B2G_PIDS with an array of b2g process PIDs
#
get_pids() {
if [ ${#B2G_PIDS[*]} -gt 0 ]; then
# We've already populated B2G_PIDS, don't bother doing it again
return
fi
B2G_PIDS=($(${ADB} shell toolbox ps | while read line; do
if [ "${line/*b2g*/b2g}" = "b2g" ]; then
echo ${line} | (
read user pid rest;
echo -n "${pid} "
)
fi
done))
}
###########################################################################
#
# Fill B2G_COMMS such that B2G_COMMS[pid] contains the process name.
#
get_comms() {
if [ ${#B2G_COMMS[*]} -gt 0 ]; then
# We've already populated B2G_COMMS, don't bother doing it again
return
fi
get_pids
for pid in ${B2G_PIDS[*]}; do
# adb shell seems to replace the \n with a \r, so we use
# tr to strip trailing newlines or CRs
B2G_COMMS[${pid}]="$(${ADB} shell cat /proc/${pid}/comm | tr -d '\r\n')"
done
}
###########################################################################
#
# Determines if the profiler is running for a given pid
#
# We use the traditional 0=success 1=failure return code.
#
is_profiler_running() {
local pid=$1
if [ -z "${pid}" ]; then
return 1
fi
local status="$(${ADB} shell cat "/proc/${pid}/task/*/stat" | tr '\0' '\n' | grep '(SamplerThread)')"
if [ -z "${status}" ]; then
return 1
fi
return 0
}
###########################################################################
#
# Parses start arguments array and sets their features
#
start_with_args() {
fileName="/data/local/tmp/profiler.options"
B2G_PID=""
${ADB} shell rm $fileName &> /dev/null
features=""
threads=""
while getopts ":i:m:t:f:p:e:s:" opt "$@";
do
case $opt in
e)
echo "Entries: $OPTARG"
${ADB} shell "echo MOZ_PROFILER_ENTRIES=$OPTARG >> $fileName"
;;
s)
echo "Stack Scan: $OPTARG"
${ADB} shell "echo MOZ_PROFILER_STACK_SCAN=$OPTARG >> $fileName"
;;
i)
echo "Interval: $OPTARG"
${ADB} shell "echo MOZ_PROFILER_INTERVAL=$OPTARG >> $fileName"
;;
m)
echo "Mode: $OPTARG"
${ADB} shell "echo MOZ_PROFILER_MODE=$OPTARG >> $fileName"
;;
t)
threads=$OPTARG
echo "Threads: $OPTARG"
${ADB} shell "echo threads=$threads >> $fileName"
;;
f)
features=$OPTARG
echo "Features: $features"
${ADB} shell "echo $FEATURES_FLAG=$features>> $fileName"
;;
p)
echo "Process: $OPTARG"
B2G_PID=$(get_pid_by_pid_or_name "$OPTARG") || {
echo "Could not find pid: $OPTARG"
exit 1
}
;;
esac
done
# Feature / thread fix up. If we have a thread
# the feature "threads" must be enabled
if [ -z "$features" ]
then
if [ -n "$threads" ]
then
echo "Using default features js,leaf,threads"
${ADB} shell "echo $FEATURES_FLAG=$DEFAULT_FEATURES,threads >> $fileName"
else
echo "Using default features $DEFAULT_FEATURES"
${ADB} shell "echo $FEATURES_FLAG=$DEFAULT_FEATURES >> $fileName"
fi
fi
if [ -z "$B2G_PID" ]
then
echo "No B2G process specified. Exiting"
exit 1
else
echo "Starting profiling PID $B2G_PID.."
${ADB} shell "kill -12 ${B2G_PID}"
echo "Profiler started"
echo
fi
}
###########################################################################
#
# Removes any stale profile files which might be left on the device
#
remove_profile_files() {
echo -n "Removing old profile files (from device) ..."
for file in $(${ADB} shell echo -n ${PROFILE_PATTERN}); do
# If no files match the pattern, then echo will return the pattern
if [ "${file}" != "${PROFILE_PATTERN}" ]; then
echo -n "."
${ADB} shell rm ${file}
fi
done
echo " done"
}
###########################################################################
#
# Make sure that the basic requirements for a video capture profiles
# are met.
#
check_video_capture_requirements() {
if ! hash avconv 2> /dev/null; then
echo "avconv not found, please install it."
exit 1
fi
if [ -z "$SPS_VIDEO_DEVICE" ]; then
echo "You must have \$SPS_VIDEO_DEVICE set to an android device that can capture a video feed."
exit 1
fi
if [ -z "$SPS_VIDEO_SCP_DEST" ]; then
echo "You must have \$SPS_VIDEO_SCP_DEST set to a public_html folder."
exit 1
fi
if [ -z "$SPS_VIDEO_LINK" ]; then
echo "You must have \$SPS_VIDEO_LINK to the HTTP prefix for \$SPS_VIDEO_SCP_DEST."
exit 1
fi
}
###########################################################################
#
# Capture the profiling information from a given process.
#
HELP_capture="Signals, pulls, and symbolicates the profile data"
cmd_capture() {
# Start recording with the camera
if [ "$1" == "-video" ]; then
check_video_capture_requirements
adb -s "$SPS_VIDEO_DEVICE" shell "am start -a android.media.action.VIDEO_CAPTURE"
if [ $? != 0 ]; then
exit 1
fi
FILES_BEFORE="$(adb -s "$SPS_VIDEO_DEVICE" shell ls "/sdcard/DCIM/Camera/*.mp4" | tr '\r' ' ')"
echo "Point the camera so that the QR code is visible at all times."
echo "If you do not see th QR code then set layers.frame-counter;true and retry."
echo ""
echo "Hit ENTER when ready to start recording"
read anykey
adb -s "$SPS_VIDEO_DEVICE" shell "input keyevent KEYCODE_CAMERA"
echo "Recording in progress."
echo ""
echo "Hit ENTER when ready to stop capture"
read anykey
fi
# Send the signal right away. If the profiler wasn't started, this will
# print an error message and exit.
cmd_signal
get_comms
declare -a local_filename
local timestamp=$(date +"%H%M")
local stabilized
if [ "${CMD_SIGNAL_PID:0:1}" == "-" ]; then
# We signalled the entire process group. Stabilize, pull and symbolicate
# each file in parallel
for pid in ${B2G_PIDS[*]}; do (
PREFIX=" ${pid}"
PREFIX="${PREFIX:$((${#PREFIX} - 5)):5}: "
echo "${PREFIX}Stabilizing ${B2G_COMMS[${pid}]} ..." 1>&2
stabilized=$(cmd_stabilize ${pid})
if [ "${stabilized}" == "0" ]; then
echo "${PREFIX}Process was probably killed due to OOM" 1>&2
else
cmd_pull ${pid} "${B2G_COMMS[${pid}]}" ${timestamp}
if [ ! -z "${CMD_PULL_LOCAL_FILENAME}" -a -s "${CMD_PULL_LOCAL_FILENAME}" ]; then
cmd_symbolicate "${CMD_PULL_LOCAL_FILENAME}"
else
echo "${PREFIX}PULL FAILED for ${pid}" 1>&2
fi
fi) &
done
# This sleep just delays the "Waiting for stuff to finish" echo slightly
# so that it shows up after the Stabilizing echos from above. The
# stabilizing loop will delay for at least two seconds, so this has no
# impact on the performance, it just makes the output look a big nicer.
sleep 1
echo "Waiting for stabilize/pull/symbolicate to finish ..."
wait
echo "Done"
else
# Pull the nwest video files
if [ "$1" == "-video" ]; then
adb -s "$SPS_VIDEO_DEVICE" shell "input keyevent KEYCODE_CAMERA"
sleep 2 # Wait for the video to save
FILES_AFTER=$(adb -s "$SPS_VIDEO_DEVICE" shell ls "/sdcard/DCIM/Camera/*.mp4" | tr '\r' ' ')
for i in ${FILES_AFTER}; do
unset found
for j in ${FILES_BEFORE}; do
if [ "$i" == "$j" ]; then
found=true
fi
done
if [ -z "$found" ]; then
SPS_VIDEO_FILE="$i"
fi
done
if [ -z "$SPS_VIDEO_FILE" ]; then
echo "Failed to get video capture"
exit 1
fi
VIDEO_FILE=video_capture_$(date +"%s").webm
adb -s "$SPS_VIDEO_DEVICE" pull "$SPS_VIDEO_FILE" video_capture.mp4
# Transcode video while stripping audio. When mp4 is supported everywhere this step should only strip the audio
avconv -y -i video_capture.mp4 -an -c:v libvpx -minrate 1M -maxrate 8M -b:v 8M video_capture.mp4.webm "$VIDEO_FILE"
echo "Uploading video, you may be prompted for your ssh passphrase"
scp -p "$VIDEO_FILE" "$SPS_VIDEO_SCP_DEST"/"$VIDEO_FILE"
fi
pids="${CMD_SIGNAL_PID}"
profiles_count=0
profiles_to_merge=""
for pid in $pids; do
echo "Stabilizing ${pid} ${B2G_COMMS[${pid}]} ..." 1>&2
stabilized=$(cmd_stabilize ${pid})
if [ "${stabilized}" == "0" ]; then
echo "Process ${pid} was probably killed due to OOM" 1>&2
else
cmd_pull ${pid} "${B2G_COMMS[${pid}]}"
if [ ! -z "${CMD_PULL_LOCAL_FILENAME}" -a -s "${CMD_PULL_LOCAL_FILENAME}" ]; then
cmd_symbolicate "${CMD_PULL_LOCAL_FILENAME}"
profiles_to_merge="$profiles_to_merge $CMD_SYMBOLICATE_PROFILE"
let profiles_count=profiles_count+1
fi
fi
done
SPS_VIDEO_ARGS=
if [ -n "$SPS_VIDEO_FILE" ]; then
SPS_VIDEO_ARGS="--video=$SPS_VIDEO_LINK/$VIDEO_FILE"
fi
echo "Merging profile: $profiles_to_merge"
echo ./gecko/tools/profiler/merge-profiles.py ${SPS_VIDEO_ARGS} $profiles_to_merge
./gecko/tools/profiler/merge-profiles.py ${SPS_VIDEO_ARGS} $profiles_to_merge > profile_captured.sym
echo ""
echo "Results: profile_captured.sym"
fi
# cmd_pull should remove each file as we pull it. This just covers the
# case where it doesn't
remove_profile_files
}
###########################################################################
#
# 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
}
###########################################################################
#
# Show all of the profile files on the phone
#
HELP_ls="Shows the profile files on the phone"
cmd_ls() {
${ADB} shell "cd ${PROFILE_DIR}; ls -l profile_?_*.txt"
}
###########################################################################
#
# Show all of the b2g processes which are currently running.
#
HELP_ps="Shows the B2G processes"
cmd_ps() {
local status
get_comms
echo " PID Name"
echo "----- ----------------"
for pid in ${B2G_PIDS[*]}; do
if is_profiler_running ${pid}; then
status="profiler running"
else
status="profiler not running"
fi
printf "%5d %-16s %s\n" "${pid}" "${B2G_COMMS[${pid}]}" "${status}"
done
}
###########################################################################
#
# Pulls the profile file from the phone
#
HELP_pull="Pulls the profile data from the phone"
cmd_pull() {
local pid=$1
local comm=$2
local label=$3
pid=$(get_pid_by_pid_or_name "$pid") || {
echo "Could not find pid: $1"
exit 1;
}
# The profile data gets written to /data/local/tmp/profile_X_PID.txt
# where X is the XRE_ProcessType (so 0 for the b2g process, 2 for
# the plugin containers).
#
# We know the PID, so we look for the file, and we wait for it to
# stabilize.
local attempt
local profile_filename
local profile_pattern="${PROFILE_DIR}/profile_?_${pid}.txt"
local local_filename
# Remove all non-alphanumeric characters from the process name to
# make filename-handling sane.
local alphanum_process_name=${B2G_COMMS[${pid}]//[^A-Za-z0-9]/}
if [ -z "${comm}" ]; then
local_filename="profile_${pid}.txt"
elif [ -z "${label}" ]; then
local_filename="profile_${pid}_${alphanum_process_name}.txt"
else
local_filename="profile_${label}_${pid}_${alphanum_process_name}.txt"
fi
profile_filename=$(${ADB} shell "echo -n ${profile_pattern}")
CMD_PULL_LOCAL_FILENAME=
if [ "${profile_filename}" == "${profile_pattern}" ]; then
echo "${PREFIX}Profile file for PID ${pid} ${B2G_COMMS[${pid}]} doesn't exist - process likely killed due to OOM"
return
fi
echo "${PREFIX}Pulling ${profile_filename} into ${local_filename}"
${ADB} pull ${profile_filename} "${local_filename}" > /dev/null 2>&1
#echo "${PREFIX}Removing ${profile_filename}"
${ADB} shell rm ${profile_filename}
if [ ! -s "${local_filename}" ]; then
echo "${PREFIX}Profile file for PID ${pid} ${B2G_COMMS[${pid}]} is empty - process likely killed due to OOM"
return
fi
CMD_PULL_LOCAL_FILENAME="${local_filename}"
}
###########################################################################
#
# Signal the profiler to generate the profile data
#
HELP_signal="Signal the profiler to generate profile data"
cmd_signal() {
# Call get_comms here since we need it later. find_pid is launched in
# a sub-shell since we want the echo'd output which means we won't
# see the results when it calls get_comms, but if we call get_comms,
# then find_pid will see the results of us calling get_comms.
get_comms
local pid
local curr_pid
if [ -z "$1" ]; then
for curr_pid in ${B2G_PIDS[*]}; do
if is_profiler_running ${curr_pid}; then
pid="${pid} ${curr_pid}"
fi
done
if [ -z "$pid" ]; then
echo "Not profiling any processes to signal"
echo "Did you start the profiler using ${SCRIPT_NAME} start ?"
exit 1
fi
echo "Signaling Profiled Processes:${pid}"
else
pid=$(find_pid "$1")
if [ "${pid}" == "" ]; then
echo "Must specify a PID or process-name to capture"
cmd_ps
exit 1
fi
echo "Signalling PID: ${pid} ${B2G_COMMS[${pid}]} ..."
fi
${ADB} shell "kill -12 ${pid}"
CMD_SIGNAL_PID=${pid}
}
###########################################################################
#
# Wait for a single captured profile files to stabilize.
#
# This is somewhat complicated by the fact that writing the files on the
# phone is sort of serialized. I observe that 2 files actually get changing
# data, and then when those are finished, 2 more will get data.
#
# So when trying to figure out how long to wait for a file to get a
# non-zero size, we need to wait until no files are changing before starting
# our timeout.
#
HELP_stabilzie="Waits for a profile file to stop changing"
cmd_stabilize() {
local pid=$1
if [ -z "$1" ]; then
echo "No PID specified." 1>&2
return
fi
# We wait for the output of ls ${PROFILE_PATTERN} to stay the same for
# a few seconds in a row
local attempt
local prev_size
local prev_sizes
local curr_size
local curr_sizes
local stabilized=0
local waiting=0
while true; do
curr_sizes=$(${ADB} shell toolbox ls -l ${PROFILE_DIR}/'profile_?_*.txt' |
while read line; do
echo ${line} | (
read perms user group size rest;
echo -n "${size} "
)
done)
curr_size=$(${ADB} shell toolbox ls -l ${PROFILE_DIR}/'profile_?_'${pid}'.txt' | (read perms user group size rest; echo -n ${size}))
if [ "${curr_size}" == "0" ]; then
# Our file hasn't changed. See if others have
if [ "${curr_sizes}" == "${prev_sizes}" ]; then
waiting=$(( ${waiting} + 1 ))
if [ ${waiting} -gt 5 ]; then
# No file sizes have changed in the last 5 seconds.
# Assume that our PID was OOM'd
break
fi
else
waiting=0
fi
else
# Our file has non-zero size
if [ "${curr_size}" == "${prev_size}" ]; then
waiting=$(( ${waiting} + 1 ))
if [ ${waiting} -gt 2 ]; then
# Our size is non-zero and hasn't changed recently.
# Consider it to be stabilized
stabilized=1
break
fi
else
waiting=0
fi
fi
prev_size="${curr_size}"
prev_sizes="${curr_sizes}"
sleep 1
done
echo "${stabilized}"
}
###########################################################################
#
# Start b2g with the profiler enabled.
#
HELP_start="Starts the profiler. -p [process] -e [entries] -s [stack scan mode]
-i [interval] -m [profiler mode] -f [features] -t [threads].
e.g. ./profile.sh start -p b2g -t Compositor -i 1"
cmd_start() {
args=$@
if [ -n "$args" ]
then
start_with_args $args
else
stop_b2g
remove_profile_files
default_flags=" MOZ_PROFILER_STARTUP=1 $FEATURES_FLAG=$DEFAULT_FEATURES"
echo -n "Starting b2g with profiling enable and default flags: $default_flags"
echo
nohup ${ADB} shell "$default_flags /system/bin/b2g.sh > /dev/null" > /dev/null 2>&1 &
echo "Started"
fi
}
###########################################################################
#
# Stop profiling and start b2g normally
#
HELP_stop="Stops profiling and restarts b2g normally."
cmd_stop() {
stop_b2g
echo "Restarting b2g (normally) ..."
${ADB} shell start b2g
}
###########################################################################
#
# Add symbols to a captured profile using the libraries from our build
# tree.
#
HELP_symbolicate="Add symbols to a captured profile"
cmd_symbolicate() {
local profile_filename="$1"
if [ -z "${profile_filename}" ]; then
echo "${PREFIX}Expecting the filename containing the profile data"
exit 1
fi
if [ ! -f "${profile_filename}" ]; then
echo "${PREFIX}File ${profile_filename} doesn't exist"
exit 1
fi
# Get some variables from the build system
local var_profile="./.var.profile"
if [ ! -f ${var_profile} ]; then
echo "${PREFIX}Unable to locate ${var_profile}"
echo "${PREFIX}You need to build b2g in order to get symbolic information"
exit 1
fi
source ${var_profile}
local sym_filename="${profile_filename%.*}.sym"
echo "${PREFIX}Adding symbols to ${profile_filename} and creating ${sym_filename} ..."
./scripts/profile-symbolicate.py -o "${sym_filename}" "${profile_filename}" > /dev/null
CMD_SYMBOLICATE_PROFILE="$sym_filename"
}
###########################################################################
#
# Tries to stop b2g
#
stop_b2g() {
local pid
local attempt
if is_profiler_running $(get_b2g_pid); then
echo -n "Profiler appears to be running."
else
# Note: stop sends SIGKILL, but only if b2g was launched via start
# If b2g was launched via the debugger or the profiler, then stop is
# essentially a no-op
echo -n "Stopping b2g ..."
${ADB} shell "stop b2g"
for attempt in 1 2 3 4 5; do
pid=$(${ADB} shell 'toolbox ps b2g | (read header; read user pid rest; echo -n ${pid})')
if [ "${pid}" == "" ]; then
break
fi
echo -n "."
sleep 1
done
fi
# Now do a cleanup check and make sure that all of the b2g pids are actually gone
clear_pids
get_pids
if [ "${#B2G_PIDS[*]}" -gt 0 ]; then
echo
echo -n "Killing b2g ..."
for pid in ${B2G_PIDS[*]}; do
${ADB} shell "kill -9 ${pid}"
done
for attempt in 1 2 3 4 5; do
clear_pids
get_pids
if [ "${#B2G_PIDS[*]}" == 0 ]; then
break
fi
echo -n "."
sleep 1
done
fi
# And if things still haven't shutdown, then give up
clear_pids
get_pids
if [ "${#B2G_PIDS[*]}" -gt 0 ]; then
echo
echo "b2g doesn't seem to want to go away. Try rebooting."
exit 1
fi
echo " stopped."
}
###########################################################################
#
# 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