| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Utilities for iotop/top style profiling for android.""" | 5 """Utilities for iotop/top style profiling for android.""" |
| 6 | 6 |
| 7 import collections | 7 import collections |
| 8 import json | 8 import json |
| 9 import os | 9 import os |
| 10 import subprocess | 10 import subprocess |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 DEVICE_PATH = constants.TEST_EXECUTABLE_DIR + '/device_stats_monitor' | 26 DEVICE_PATH = constants.TEST_EXECUTABLE_DIR + '/device_stats_monitor' |
| 27 PROFILE_PATH = (constants.DEVICE_PERF_OUTPUT_DIR + | 27 PROFILE_PATH = (constants.DEVICE_PERF_OUTPUT_DIR + |
| 28 '/device_stats_monitor.profile') | 28 '/device_stats_monitor.profile') |
| 29 RESULT_VIEWER_PATH = os.path.abspath(os.path.join( | 29 RESULT_VIEWER_PATH = os.path.abspath(os.path.join( |
| 30 os.path.dirname(os.path.realpath(__file__)), 'device_stats_monitor.html')) | 30 os.path.dirname(os.path.realpath(__file__)), 'device_stats_monitor.html')) |
| 31 | 31 |
| 32 def __init__(self, adb, hz, build_type): | 32 def __init__(self, adb, hz, build_type): |
| 33 self._adb = adb | 33 self._adb = adb |
| 34 host_path = os.path.abspath(os.path.join( | 34 host_path = os.path.abspath(os.path.join( |
| 35 constants.CHROME_DIR, 'out', build_type, 'device_stats_monitor')) | 35 constants.DIR_SOURCE_ROOT, 'out', build_type, 'device_stats_monitor')) |
| 36 self._adb.PushIfNeeded(host_path, DeviceStatsMonitor.DEVICE_PATH) | 36 self._adb.PushIfNeeded(host_path, DeviceStatsMonitor.DEVICE_PATH) |
| 37 self._hz = hz | 37 self._hz = hz |
| 38 | 38 |
| 39 def Start(self): | 39 def Start(self): |
| 40 """Starts device stats monitor on the device.""" | 40 """Starts device stats monitor on the device.""" |
| 41 self._adb.SetProtectedFileContents(DeviceStatsMonitor.PROFILE_PATH, '') | 41 self._adb.SetProtectedFileContents(DeviceStatsMonitor.PROFILE_PATH, '') |
| 42 self._process = subprocess.Popen( | 42 self._process = subprocess.Popen( |
| 43 ['adb', 'shell', '%s --hz=%d %s' % ( | 43 ['adb', 'shell', '%s --hz=%d %s' % ( |
| 44 DeviceStatsMonitor.DEVICE_PATH, self._hz, | 44 DeviceStatsMonitor.DEVICE_PATH, self._hz, |
| 45 DeviceStatsMonitor.PROFILE_PATH)]) | 45 DeviceStatsMonitor.PROFILE_PATH)]) |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 'user', | 107 'user', |
| 108 'nice', | 108 'nice', |
| 109 'system', | 109 'system', |
| 110 'idle', | 110 'idle', |
| 111 'iowait', | 111 'iowait', |
| 112 'irq', | 112 'irq', |
| 113 'softirq', | 113 'softirq', |
| 114 ]) | 114 ]) |
| 115 fields = line.split() | 115 fields = line.split() |
| 116 return cpu_stats._make([fields[0]] + [int(f) for f in fields[1:8]]) | 116 return cpu_stats._make([fields[0]] + [int(f) for f in fields[1:8]]) |
| OLD | NEW |