skia2/tools/android/measure_fps.py
Hal Canary 389c8e9d2d [minor] mark scripts as executable
if a filename ends with `.py` and  the file begins with '#!.*python.*',
make it executable.

Change-Id: I41de516ff37343d3b0979bde9fd61813aec7365c
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/254439
Commit-Queue: Hal Canary <halcanary@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
Auto-Submit: Hal Canary <halcanary@google.com>
Reviewed-by: Ben Wagner <bungeman@google.com>
2019-11-21 17:06:27 +00:00

51 lines
1.3 KiB
Python
Executable File

#!/usr/bin/env python
# Copyright 2017 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import optparse
import re
import subprocess
import time
def query_surfaceflinger_frame_count():
parcel = subprocess.Popen("adb shell service call SurfaceFlinger 1013",
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
shell=True).communicate()[0]
if not parcel:
raise Exception("FAILED: adb shell service call SurfaceFlinger 1013")
framecount = re.search("Result: Parcel\(([a-f0-9]+) ", parcel)
if not framecount:
raise Exception("Unexpected result from SurfaceFlinger: " + parcel)
return int(framecount.group(1), 16)
def main(interval):
startframe = query_surfaceflinger_frame_count()
starttime = time.time()
while True:
time.sleep(interval)
endframe = query_surfaceflinger_frame_count()
endtime = time.time()
fps = (endframe - startframe) / (endtime - starttime)
print "%.2f" % fps
startframe = endframe
starttime = endtime
if __name__ == '__main__':
parser = optparse.OptionParser()
parser.add_option("-i", "--interval", type="int", default="2",
help="Number of seconds to count frames.")
options, args = parser.parse_args()
main(options.interval)