OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 """The page cycler measurement. | 5 """The page cycler measurement. |
6 | 6 |
7 This measurement registers a window load handler in which is forces a layout and | 7 This measurement registers a window load handler in which is forces a layout and |
8 then records the value of performance.now(). This call to now() measures the | 8 then records the value of performance.now(). This call to now() measures the |
9 time from navigationStart (immediately after the previous page's beforeunload | 9 time from navigationStart (immediately after the previous page's beforeunload |
10 event) until after the layout in the page's load event. In addition, two garbage | 10 event) until after the layout in the page's load event. In addition, two garbage |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 self._speedindex_metric.CustomizeBrowserOptions(options) | 125 self._speedindex_metric.CustomizeBrowserOptions(options) |
126 | 126 |
127 def MeasurePage(self, page, tab, results): | 127 def MeasurePage(self, page, tab, results): |
128 tab.WaitForJavaScriptExpression('__pc_load_time', 60) | 128 tab.WaitForJavaScriptExpression('__pc_load_time', 60) |
129 | 129 |
130 chart_name_prefix = ('cold_' if self.IsRunCold(page.url) else | 130 chart_name_prefix = ('cold_' if self.IsRunCold(page.url) else |
131 'warm_') | 131 'warm_') |
132 | 132 |
133 results.AddValue(scalar.ScalarValue( | 133 results.AddValue(scalar.ScalarValue( |
134 results.current_page, '%stimes.page_load_time' % chart_name_prefix, | 134 results.current_page, '%stimes.page_load_time' % chart_name_prefix, |
135 'ms', tab.EvaluateJavaScript('__pc_load_time'))) | 135 'ms', tab.EvaluateJavaScript('__pc_load_time'), |
| 136 description='Average page load time. Measured from ' |
| 137 'performance.timing.navigationStart until the completion ' |
| 138 'time of a layout after the window.load event. Cold times ' |
| 139 'are the times when the page is loaded cold, i.e. without ' |
| 140 'loading it before, and warm times are times when the ' |
| 141 'page is loaded after being loaded previously.')) |
136 | 142 |
137 self._has_loaded_page[page.url] += 1 | 143 self._has_loaded_page[page.url] += 1 |
138 | 144 |
139 self._power_metric.Stop(page, tab) | 145 self._power_metric.Stop(page, tab) |
140 self._memory_metric.Stop(page, tab) | 146 self._memory_metric.Stop(page, tab) |
141 self._memory_metric.AddResults(tab, results) | 147 self._memory_metric.AddResults(tab, results) |
142 self._power_metric.AddResults(tab, results) | 148 self._power_metric.AddResults(tab, results) |
143 | 149 |
144 self._cpu_metric.Stop(page, tab) | 150 self._cpu_metric.Stop(page, tab) |
145 self._cpu_metric.AddResults(tab, results) | 151 self._cpu_metric.AddResults(tab, results) |
(...skipping 18 matching lines...) Expand all Loading... |
164 | 170 |
165 def ShouldRunCold(self, url): | 171 def ShouldRunCold(self, url): |
166 # We do the warm runs first for two reasons. The first is so we can | 172 # We do the warm runs first for two reasons. The first is so we can |
167 # preserve any initial profile cache for as long as possible. | 173 # preserve any initial profile cache for as long as possible. |
168 # The second is that, if we did cold runs first, we'd have a transition | 174 # The second is that, if we did cold runs first, we'd have a transition |
169 # page set during which we wanted the run for each URL to both | 175 # page set during which we wanted the run for each URL to both |
170 # contribute to the cold data and warm the catch for the following | 176 # contribute to the cold data and warm the catch for the following |
171 # warm run, and clearing the cache before the load of the following | 177 # warm run, and clearing the cache before the load of the following |
172 # URL would eliminate the intended warmup for the previous URL. | 178 # URL would eliminate the intended warmup for the previous URL. |
173 return (self._has_loaded_page[url] >= self._cold_run_start_index) | 179 return (self._has_loaded_page[url] >= self._cold_run_start_index) |
OLD | NEW |