2015-08-13 04:42:54 +03:00
|
|
|
/* 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";
|
|
|
|
|
2016-08-22 17:25:57 +03:00
|
|
|
const { Actor, ActorClassWithSpec } = require("devtools/shared/protocol");
|
2016-06-22 16:01:28 +03:00
|
|
|
const { performanceRecordingSpec } = require("devtools/shared/specs/performance-recording");
|
2015-08-13 04:42:54 +03:00
|
|
|
|
|
|
|
loader.lazyRequireGetter(this, "RecordingUtils",
|
2015-10-08 00:02:47 +03:00
|
|
|
"devtools/shared/performance/recording-utils");
|
2015-09-11 19:37:20 +03:00
|
|
|
loader.lazyRequireGetter(this, "PerformanceRecordingCommon",
|
2015-09-21 20:04:18 +03:00
|
|
|
"devtools/shared/performance/recording-common", true);
|
2015-08-13 04:42:54 +03:00
|
|
|
|
|
|
|
/**
|
2015-09-21 20:07:31 +03:00
|
|
|
* This actor wraps the Performance module at devtools/shared/shared/performance.js
|
2015-08-13 04:42:54 +03:00
|
|
|
* and provides RDP definitions.
|
|
|
|
*
|
2015-09-21 20:07:31 +03:00
|
|
|
* @see devtools/shared/shared/performance.js for documentation.
|
2015-08-13 04:42:54 +03:00
|
|
|
*/
|
2017-07-31 20:53:37 +03:00
|
|
|
const PerformanceRecordingActor = ActorClassWithSpec(performanceRecordingSpec,
|
|
|
|
Object.assign({
|
2016-05-17 21:25:54 +03:00
|
|
|
form: function (detail) {
|
2015-08-13 04:42:54 +03:00
|
|
|
if (detail === "actorid") {
|
|
|
|
return this.actorID;
|
|
|
|
}
|
|
|
|
|
|
|
|
let form = {
|
2017-01-16 20:51:00 +03:00
|
|
|
// actorID is set when this is added to a pool
|
|
|
|
actor: this.actorID,
|
2015-08-13 04:42:54 +03:00
|
|
|
configuration: this._configuration,
|
|
|
|
startingBufferStatus: this._startingBufferStatus,
|
|
|
|
console: this._console,
|
|
|
|
label: this._label,
|
|
|
|
startTime: this._startTime,
|
|
|
|
localStartTime: this._localStartTime,
|
|
|
|
recording: this._recording,
|
|
|
|
completed: this._completed,
|
|
|
|
duration: this._duration,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Only send profiler data once it exists and it has
|
|
|
|
// not yet been sent
|
2015-09-11 19:37:20 +03:00
|
|
|
if (this._profile && !this._sentFinalizedData) {
|
|
|
|
form.finalizedData = true;
|
|
|
|
form.profile = this.getProfile();
|
|
|
|
form.systemHost = this.getHostSystemInfo();
|
|
|
|
form.systemClient = this.getClientSystemInfo();
|
|
|
|
this._sentFinalizedData = true;
|
2015-08-13 04:42:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return form;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {object} conn
|
|
|
|
* @param {object} options
|
|
|
|
* A hash of features that this recording is utilizing.
|
|
|
|
* @param {object} meta
|
|
|
|
* A hash of temporary metadata for a recording that is recording
|
|
|
|
* (as opposed to an imported recording).
|
|
|
|
*/
|
|
|
|
initialize: function (conn, options, meta) {
|
2016-06-22 16:01:28 +03:00
|
|
|
Actor.prototype.initialize.call(this, conn);
|
2015-08-13 04:42:54 +03:00
|
|
|
this._configuration = {
|
|
|
|
withMarkers: options.withMarkers || false,
|
|
|
|
withTicks: options.withTicks || false,
|
|
|
|
withMemory: options.withMemory || false,
|
|
|
|
withAllocations: options.withAllocations || false,
|
|
|
|
allocationsSampleProbability: options.allocationsSampleProbability || 0,
|
|
|
|
allocationsMaxLogLength: options.allocationsMaxLogLength || 0,
|
|
|
|
bufferSize: options.bufferSize || 0,
|
|
|
|
sampleFrequency: options.sampleFrequency || 1
|
|
|
|
};
|
|
|
|
|
|
|
|
this._console = !!options.console;
|
|
|
|
this._label = options.label || "";
|
|
|
|
|
|
|
|
if (meta) {
|
|
|
|
// Store the start time roughly with Date.now() so when we
|
|
|
|
// are checking the duration during a recording, we can get close
|
|
|
|
// to the approximate duration to render elements without
|
|
|
|
// making a real request
|
|
|
|
this._localStartTime = Date.now();
|
|
|
|
|
|
|
|
this._startTime = meta.startTime;
|
|
|
|
this._startingBufferStatus = {
|
|
|
|
position: meta.position,
|
|
|
|
totalSize: meta.totalSize,
|
|
|
|
generation: meta.generation
|
|
|
|
};
|
|
|
|
|
|
|
|
this._recording = true;
|
|
|
|
this._markers = [];
|
|
|
|
this._frames = [];
|
|
|
|
this._memory = [];
|
|
|
|
this._ticks = [];
|
2015-08-20 04:04:50 +03:00
|
|
|
this._allocations = { sites: [], timestamps: [], frames: [], sizes: [] };
|
2015-09-11 19:37:20 +03:00
|
|
|
|
|
|
|
this._systemHost = meta.systemHost || {};
|
|
|
|
this._systemClient = meta.systemClient || {};
|
2015-08-13 04:42:54 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-05-17 21:25:54 +03:00
|
|
|
destroy: function () {
|
2016-06-22 16:01:28 +03:00
|
|
|
Actor.prototype.destroy.call(this);
|
2015-08-13 04:42:54 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal utility called by the PerformanceActor and PerformanceFront on state changes
|
|
|
|
* to update the internal state of the PerformanceRecording.
|
|
|
|
*
|
|
|
|
* @param {string} state
|
|
|
|
* @param {object} extraData
|
|
|
|
*/
|
|
|
|
_setState: function (state, extraData) {
|
|
|
|
switch (state) {
|
|
|
|
case "recording-started": {
|
|
|
|
this._recording = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "recording-stopping": {
|
|
|
|
this._recording = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "recording-stopped": {
|
|
|
|
this._profile = extraData.profile;
|
|
|
|
this._duration = extraData.duration;
|
|
|
|
|
|
|
|
// We filter out all samples that fall out of current profile's range
|
|
|
|
// since the profiler is continuously running. Because of this, sample
|
|
|
|
// times are not guaranteed to have a zero epoch, so offset the
|
|
|
|
// timestamps.
|
|
|
|
RecordingUtils.offsetSampleTimes(this._profile, this._startTime);
|
|
|
|
|
|
|
|
// Markers need to be sorted ascending by time, to be properly displayed
|
|
|
|
// in a waterfall view.
|
|
|
|
this._markers = this._markers.sort((a, b) => (a.start > b.start));
|
|
|
|
|
|
|
|
this._completed = true;
|
|
|
|
break;
|
|
|
|
}
|
2016-05-17 21:25:54 +03:00
|
|
|
}
|
2015-08-13 04:42:54 +03:00
|
|
|
},
|
|
|
|
}, PerformanceRecordingCommon));
|
|
|
|
|
2016-06-22 16:01:28 +03:00
|
|
|
exports.PerformanceRecordingActor = PerformanceRecordingActor;
|