summaryrefslogtreecommitdiff
path: root/toolkit/devtools/performance/views/details-memory-call-tree.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/devtools/performance/views/details-memory-call-tree.js')
-rw-r--r--toolkit/devtools/performance/views/details-memory-call-tree.js110
1 files changed, 110 insertions, 0 deletions
diff --git a/toolkit/devtools/performance/views/details-memory-call-tree.js b/toolkit/devtools/performance/views/details-memory-call-tree.js
new file mode 100644
index 000000000..411959310
--- /dev/null
+++ b/toolkit/devtools/performance/views/details-memory-call-tree.js
@@ -0,0 +1,110 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/. */
+"use strict";
+
+/**
+ * CallTree view containing memory allocation sites, controlled by DetailsView.
+ */
+let MemoryCallTreeView = Heritage.extend(DetailsSubview, {
+
+ rerenderPrefs: [
+ "invert-call-tree"
+ ],
+
+ rangeChangeDebounceTime: 100, // ms
+
+ /**
+ * Sets up the view with event binding.
+ */
+ initialize: function () {
+ DetailsSubview.initialize.call(this);
+
+ this._onLink = this._onLink.bind(this);
+ },
+
+ /**
+ * Unbinds events.
+ */
+ destroy: function () {
+ DetailsSubview.destroy.call(this);
+ },
+
+ /**
+ * Method for handling all the set up for rendering a new call tree.
+ *
+ * @param object interval [optional]
+ * The { startTime, endTime }, in milliseconds.
+ * @param object options [optional]
+ * Additional options for new the call tree.
+ */
+ render: function (interval={}, options={}) {
+ let recording = PerformanceController.getCurrentRecording();
+ let allocations = recording.getAllocations();
+ let threadNode = this._prepareCallTree(allocations, interval, options);
+ this._populateCallTree(threadNode, options);
+ this.emit(EVENTS.MEMORY_CALL_TREE_RENDERED);
+ },
+
+ /**
+ * Fired on the "link" event for the call tree in this container.
+ */
+ _onLink: function (_, treeItem) {
+ let { url, line } = treeItem.frame.getInfo();
+ viewSourceInDebugger(url, line).then(
+ () => this.emit(EVENTS.SOURCE_SHOWN_IN_JS_DEBUGGER),
+ () => this.emit(EVENTS.SOURCE_NOT_FOUND_IN_JS_DEBUGGER));
+ },
+
+ /**
+ * Called when the recording is stopped and prepares data to
+ * populate the call tree.
+ */
+ _prepareCallTree: function (allocations, { startTime, endTime }, options) {
+ let samples = RecordingUtils.getSamplesFromAllocations(allocations);
+ let invertTree = PerformanceController.getPref("invert-call-tree");
+
+ let threadNode = new ThreadNode(samples,
+ { startTime, endTime, invertTree });
+
+ // If we have an empty profile (no samples), then don't invert the tree, as
+ // it would hide the root node and a completely blank call tree space can be
+ // mis-interpreted as an error.
+ options.inverted = invertTree && threadNode.samples > 0;
+
+ return threadNode;
+ },
+
+ /**
+ * Renders the call tree.
+ */
+ _populateCallTree: function (frameNode, options={}) {
+ let root = new CallView({
+ frame: frameNode,
+ inverted: options.inverted,
+ // Root nodes are hidden in inverted call trees.
+ hidden: options.inverted,
+ // Memory call trees should be sorted by allocations.
+ sortingPredicate: (a, b) => a.frame.allocations < b.frame.allocations ? 1 : -1,
+ // Call trees should only auto-expand when not inverted. Passing undefined
+ // will default to the CALL_TREE_AUTO_EXPAND depth.
+ autoExpandDepth: options.inverted ? 0 : undefined,
+ });
+
+ // Bind events.
+ root.on("link", this._onLink);
+
+ // Pipe "focus" events to the view, mostly for tests
+ root.on("focus", () => this.emit("focus"));
+
+ // Clear out other call trees.
+ let container = $("#memory-calltree-view > .call-tree-cells-container");
+ container.innerHTML = "";
+ root.attachTo(container);
+
+ // Memory allocation samples don't contain cateogry labels.
+ root.toggleCategories(false);
+ },
+
+ toString: () => "[object MemoryCallTreeView]"
+});