gecko-dev/devtools/server/actors/eventlooplag.js
Julian Descottes ffc364ee02 Bug 1391562 - use obj.on/off/emit rather than static methods from devtools event-emitter;r=zer0
MozReview-Commit-ID: I50W8zGB9d0

--HG--
extra : rebase_source : 31b687343461a65fc6a40eece461bc2367d596d7
2017-08-18 17:05:04 +02:00

60 lines
1.6 KiB
JavaScript

/* 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";
/**
* The eventLoopLag actor emits "event-loop-lag" events when the event
* loop gets unresponsive. The event comes with a "time" property (the
* duration of the lag in milliseconds).
*/
const {Ci} = require("chrome");
const Services = require("Services");
const {XPCOMUtils} = require("resource://gre/modules/XPCOMUtils.jsm");
const {Actor, ActorClassWithSpec} = require("devtools/shared/protocol");
const {eventLoopLagSpec} = require("devtools/shared/specs/eventlooplag");
exports.EventLoopLagActor = ActorClassWithSpec(eventLoopLagSpec, {
_observerAdded: false,
/**
* Start tracking the event loop lags.
*/
start: function () {
if (!this._observerAdded) {
Services.obs.addObserver(this, "event-loop-lag");
this._observerAdded = true;
}
return Services.appShell.startEventLoopLagTracking();
},
/**
* Stop tracking the event loop lags.
*/
stop: function () {
if (this._observerAdded) {
Services.obs.removeObserver(this, "event-loop-lag");
this._observerAdded = false;
}
Services.appShell.stopEventLoopLagTracking();
},
destroy: function () {
this.stop();
Actor.prototype.destroy.call(this);
},
// nsIObserver
observe: function (subject, topic, data) {
if (topic == "event-loop-lag") {
// Forward event loop lag event
this.emit("event-loop-lag", data);
}
},
QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver]),
});