Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Unified Diff: Source/devtools/front_end/TimelinePowerOverview.js

Issue 104523002: [DevTools] Add power profiler and power overview in timeline panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/TimelinePowerOverview.js
diff --git a/Source/devtools/front_end/TimelinePowerOverview.js b/Source/devtools/front_end/TimelinePowerOverview.js
new file mode 100644
index 0000000000000000000000000000000000000000..95db818f0cb99b8a4ddc83fdf64b9d5c2c1c67c4
--- /dev/null
+++ b/Source/devtools/front_end/TimelinePowerOverview.js
@@ -0,0 +1,190 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @constructor
+ * @extends {WebInspector.Object}
+ */
+WebInspector.TimelinePowerOverviewDataProvider = function()
+{
+ this._records = [];
+ if (WebInspector.experimentsSettings.powerProfiler.isEnabled() && Capabilities.canProfilePower)
+ WebInspector.powerProfiler.addEventListener(WebInspector.PowerProfiler.EventTypes.PowerEventRecorded, this._onRecordAdded, this);
+}
+
+WebInspector.TimelinePowerOverviewDataProvider.prototype = {
+ /**
+ * @return {Array.<PowerEvent>}
+ */
+ records : function()
+ {
+ return this._records;
+ },
+
+ _onRecordAdded: function(event)
+ {
+ this._records.push(event.data);
+ },
+
+ __proto__: WebInspector.Object.prototype
+}
+
+/**
+ * @constructor
+ * @extends {WebInspector.CounterUIBase}
pfeldman 2014/03/24 13:41:25 We should figure out whether we want a) power over
Pan 2014/03/25 06:12:31 Previously, I tried to reuse some code from a memo
+ * @param {!WebInspector.TimelinePowerOverview} powerOverView
+ * @param {string} graphColor
+ * @param {!WebInspector.Counter} counter
+ */
+WebInspector.PowerCounterUI = function(powerOverView, color, counter)
+{
+ WebInspector.CounterUIBase.call(this, color, counter);
+
+ this._value = powerOverView.element.createChild("span", "timeline-power-text");
+ this._value.style.color = color;
+ this._currentValueLabel = WebInspector.UIString("%.2f\u2009watts");
+ this._marker = powerOverView.element.createChild("div", "timeline-power-marker");
+ this._marker.style.backgroundColor = color;
+ this.clearCurrentValueAndMarker();
+}
+
+WebInspector.PowerCounterUI.prototype = {
+ __proto__: WebInspector.CounterUIBase.prototype
+}
+
+/**
+ * @constructor
+ * @param {!WebInspector.TimelineModel} model
+ */
+WebInspector.TimelinePowerOverviewCalculator = function(model)
+{
+ this._model = model;
+}
+
+WebInspector.TimelinePowerOverviewCalculator.prototype = {
+ /**
+ * @return {number}
+ */
+ minimumBoundary : function ()
+ {
+ return this._model.minimumRecordTime();
+ },
+
+ /**
+ * @return {number}
+ */
+ maximumBoundary : function ()
+ {
+ return this._model.maximumRecordTime();
+ },
+}
+
+/**
+ * @constructor
+ * @extends {WebInspector.TimelineOverviewBase}
+ * @param {!WebInspector.TimelineModel} model
+ */
+WebInspector.TimelinePowerOverview = function(model)
+{
+ WebInspector.TimelineOverviewBase.call(this, model);
+ this.element.id = "timeline-overview-power";
+ this._dataProvider = new WebInspector.TimelinePowerOverviewDataProvider();
+ this._counter = new WebInspector.Counter(WebInspector.UIString("value"));
+ this._counterUI = new WebInspector.PowerCounterUI(this, "rgba(20,0,0,0.8)", this._counter);
+ this._calculator = new WebInspector.TimelinePowerOverviewCalculator(this._model);
+
+ this._canvas.addEventListener("mousemove", this._onMouseMove.bind(this));
+}
+
+WebInspector.TimelinePowerOverview.prototype = {
+ startTimeline: function()
+ {
+ if (WebInspector.experimentsSettings.powerProfiler.isEnabled() && Capabilities.canProfilePower)
+ WebInspector.powerProfiler.startProfile();
+ },
+
+ stopTimeline: function()
+ {
+ if (WebInspector.experimentsSettings.powerProfiler.isEnabled() && Capabilities.canProfilePower)
+ WebInspector.powerProfiler.stopProfile();
+ },
+
+ _onMouseMove: function(event)
+ {
+ this._counterUI.updateCurrentValue(event.offsetX);
+ },
+
+ update: function()
+ {
+ this.resetCanvas();
+
+ var records = this._dataProvider.records();
+ if (records.length < 2)
+ return;
+
+ this._counter.reset();
+
+ for(var i = 0; i < records.length - 1; i++)
+ this._counter.appendSample(records[i].timestamp, records[i + 1]);
+
+ this._counter._calculateVisibleIndexes(this._calculator);
+ this._counter._calculateXValues(this._canvas.offsetWidth);
+
+ var canvas = this._canvas;
+ var ctx = canvas.getContext("2d");
+ const lowerOffset = 3;
+ var width = canvas.width;
+ var counter = this._counterUI.counter;
+ var values = counter.values;
+
+ var maxValue;
+ var minValue;
+ for (var i = counter._minimumIndex; i <= counter._maximumIndex; i++) {
+ var value = values[i];
+ if (minValue === undefined || value < minValue)
+ minValue = value;
+ if (maxValue === undefined || value > maxValue)
+ maxValue = value;
+ }
+ minValue = minValue || 0;
+ maxValue = maxValue || 1;
+
+ var yValues = this._counterUI.graphYValues;
+
+ var maxYRange = maxValue - minValue;
+ var yFactor = maxYRange ? (this._canvas.height - lowerOffset) / (maxYRange) : 1;
+
+ ctx.save();
+ ctx.beginPath();
+ var currentX = 0;
+ var initialValue = values[counter._minimumIndex];
+ var currentY = Math.round(this._canvas.height - (initialValue - minValue) * yFactor);
+ ctx.moveTo(currentX, currentY);
+ for (var i = counter._minimumIndex; i <= counter._maximumIndex; i++) {
+ var x = Math.round(counter.x[i] * this._canvas.width / this._canvas.offsetWidth);
+ ctx.lineTo(x, currentY);
+ var currentValue = values[i];
+
+ currentY = Math.round(this._canvas.height - (currentValue - minValue) * yFactor);
+ ctx.lineTo(x, currentY);
+ yValues[i] = currentY * this._canvas.offsetHeight / this._canvas.height;
+ }
+ ctx.lineTo(width, currentY);
+ ctx.lineWidth = 1;
+ ctx.strokeStyle = this._counterUI.graphColor;
+ ctx.stroke();
+
+ ctx.lineTo(width, this._canvas.height);
+ ctx.lineTo(0, this._canvas.height);
+ ctx.fillStyle = "rgba(255,192,0, 0.8)";
+ ctx.fill();
+ ctx.closePath();
+
+ ctx.restore();
+ },
+
+ __proto__: WebInspector.TimelineOverviewBase.prototype
+}
+
+

Powered by Google App Engine
This is Rietveld 408576698