1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/* 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/. */
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm", this);
ChromeUtils.import("resource://gre/modules/Services.jsm", this);
const PREF_APP_UPDATE_LASTUPDATETIME_FMT = "app.update.lastUpdateTime.%ID%";
const PREF_APP_UPDATE_TIMERMINIMUMDELAY = "app.update.timerMinimumDelay";
const PREF_APP_UPDATE_TIMERFIRSTINTERVAL = "app.update.timerFirstInterval";
const PREF_APP_UPDATE_LOG = "app.update.log";
const CATEGORY_UPDATE_TIMER = "update-timer";
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gLogEnabled",
PREF_APP_UPDATE_LOG,
false
);
/**
* Logs a string to the error console.
* @param string
* The string to write to the error console.
*/
function LOG(string) {
if (gLogEnabled) {
dump("*** UTM:SVC " + string + "\n");
Services.console.logStringMessage("UTM:SVC " + string);
}
}
/**
* A manager for timers. Manages timers that fire over long periods of time
* (e.g. days, weeks, months).
* @constructor
*/
function TimerManager() {
Services.obs.addObserver(this, "profile-before-change");
}
TimerManager.prototype = {
/**
* The Checker Timer
*/
_timer: null,
/**
* The Checker Timer minimum delay interval as specified by the
* app.update.timerMinimumDelay pref. If the app.update.timerMinimumDelay
* pref doesn't exist this will default to 120000.
*/
_timerMinimumDelay: null,
/**
* The set of registered timers.
*/
_timers: {},
/**
* See nsIObserver.idl
*/
observe: function TM_observe(aSubject, aTopic, aData) {
// Prevent setting the timer interval to a value of less than 30 seconds.
var minInterval = 30000;
// Prevent setting the first timer interval to a value of less than 10
// seconds.
var minFirstInterval = 10000;
switch (aTopic) {
case "utm-test-init":
// Enforce a minimum timer interval of 500 ms for tests and fall through
// to profile-after-change to initialize the timer.
minInterval = 500;
minFirstInterval = 500;
// fall through
case "profile-after-change":
this._timerMinimumDelay = Math.max(
1000 *
Services.prefs.getIntPref(PREF_APP_UPDATE_TIMERMINIMUMDELAY, 120),
minInterval
);
// Prevent the timer delay between notifications to other consumers from
// being greater than 5 minutes which is 300000 milliseconds.
this._timerMinimumDelay = Math.min(this._timerMinimumDelay, 300000);
// Prevent the first interval from being less than the value of minFirstInterval
let firstInterval = Math.max(
Services.prefs.getIntPref(PREF_APP_UPDATE_TIMERFIRSTINTERVAL, 30000),
minFirstInterval
);
// Prevent the first interval from being greater than 2 minutes which is
// 120000 milliseconds.
firstInterval = Math.min(firstInterval, 120000);
// Cancel the timer if it has already been initialized. This is primarily
// for tests.
this._canEnsureTimer = true;
this._ensureTimer(firstInterval);
break;
case "profile-before-change":
Services.obs.removeObserver(this, "profile-before-change");
// Release everything we hold onto.
this._cancelTimer();
for (var timerID in this._timers) {
delete this._timers[timerID];
}
this._timers = null;
break;
}
},
/**
* Called when the checking timer fires.
*
* We only fire one notification each time, so that the operations are
* staggered. We don't want too many to happen at once, which could
* negatively impact responsiveness.
*
* @param timer
* The checking timer that fired.
*/
notify: function TM_notify(timer) {
var nextDelay = null;
function updateNextDelay(delay) {
if (nextDelay === null || delay < nextDelay) {
nextDelay = delay;
}
}
// Each timer calls tryFire(), which figures out which is the one that
// wanted to be called earliest. That one will be fired; the others are
// skipped and will be done later.
var now = Math.round(Date.now() / 1000);
var callbackToFire = null;
var earliestIntendedTime = null;
var skippedFirings = false;
var lastUpdateTime = null;
var timerIDToFire = null;
function tryFire(timerID, callback, intendedTime) {
var selected = false;
if (intendedTime <= now) {
if (
intendedTime < earliestIntendedTime ||
earliestIntendedTime === null
) {
timerIDToFire = timerID;
callbackToFire = callback;
earliestIntendedTime = intendedTime;
selected = true;
} else if (earliestIntendedTime !== null) {
skippedFirings = true;
}
}
// We do not need to updateNextDelay for the timer that actually fires;
// we'll update right after it fires, with the proper intended time.
// Note that we might select one, then select another later (with an
// earlier intended time); it is still ok that we did not update for
// the first one, since if we have skipped firings, the next delay
// will be the minimum delay anyhow.
if (!selected) {
updateNextDelay(intendedTime - now);
}
}
for (let { value } of Services.catMan.enumerateCategory(
CATEGORY_UPDATE_TIMER
)) {
let [
cid,
method,
timerID,
prefInterval,
defaultInterval,
maxInterval,
] = value.split(",");
defaultInterval = parseInt(defaultInterval);
// cid and method are validated below when calling notify.
if (!timerID || !defaultInterval || isNaN(defaultInterval)) {
LOG(
"TimerManager:notify - update-timer category registered" +
(cid ? " for " + cid : "") +
" without required parameters - " +
"skipping"
);
continue;
}
let interval = Services.prefs.getIntPref(prefInterval, defaultInterval);
// Allow the update-timer category to specify a maximum value to prevent
// values larger than desired.
maxInterval = parseInt(maxInterval);
if (maxInterval && !isNaN(maxInterval)) {
interval = Math.min(interval, maxInterval);
}
let prefLastUpdate = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(
/%ID%/,
timerID
);
// Initialize the last update time to 0 when the preference isn't set so
// the timer will be notified soon after a new profile's first use.
lastUpdateTime = Services.prefs.getIntPref(prefLastUpdate, 0);
// If the last update time is greater than the current time then reset
// it to 0 and the timer manager will correct the value when it fires
// next for this consumer.
if (lastUpdateTime > now) {
lastUpdateTime = 0;
}
if (lastUpdateTime == 0) {
Services.prefs.setIntPref(prefLastUpdate, lastUpdateTime);
}
tryFire(
timerID,
function() {
try {
Cc[cid][method](Ci.nsITimerCallback).notify(timer);
LOG("TimerManager:notify - notified " + cid);
} catch (e) {
LOG(
"TimerManager:notify - error notifying component id: " +
cid +
" ,error: " +
e
);
}
lastUpdateTime = now;
Services.prefs.setIntPref(prefLastUpdate, lastUpdateTime);
updateNextDelay(lastUpdateTime + interval - now);
},
lastUpdateTime + interval
);
}
for (let _timerID in this._timers) {
let timerID = _timerID; // necessary for the closure to work properly
let timerData = this._timers[timerID];
// If the last update time is greater than the current time then reset
// it to 0 and the timer manager will correct the value when it fires
// next for this consumer.
if (timerData.lastUpdateTime > now) {
let prefLastUpdate = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(
/%ID%/,
timerID
);
timerData.lastUpdateTime = 0;
Services.prefs.setIntPref(prefLastUpdate, timerData.lastUpdateTime);
}
tryFire(
timerID,
function() {
if (timerData.callback && timerData.callback.notify) {
ChromeUtils.idleDispatch(() => {
try {
timerData.callback.notify(timer);
LOG(`TimerManager:notify - notified timerID: ${timerID}`);
} catch (e) {
LOG(
`TimerManager:notify - error notifying timerID: ${timerID}, error: ${e}`
);
}
});
} else {
LOG(
`TimerManager:notify - timerID: ${timerID} doesn't implement nsITimerCallback - skipping`
);
}
lastUpdateTime = now;
timerData.lastUpdateTime = lastUpdateTime;
let prefLastUpdate = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(
/%ID%/,
timerID
);
Services.prefs.setIntPref(prefLastUpdate, lastUpdateTime);
updateNextDelay(timerData.lastUpdateTime + timerData.interval - now);
},
timerData.lastUpdateTime + timerData.interval
);
}
if (callbackToFire) {
LOG(
`TimerManager:notify - fire timerID: ${timerIDToFire} ` +
`intended time: ${earliestIntendedTime} (${new Date(
earliestIntendedTime * 1000
).toISOString()})`
);
callbackToFire();
}
if (nextDelay !== null) {
if (skippedFirings) {
timer.delay = this._timerMinimumDelay;
} else {
timer.delay = Math.max(nextDelay * 1000, this._timerMinimumDelay);
}
this.lastTimerReset = Date.now();
} else {
this._cancelTimer();
}
},
/**
* Starts the timer, if necessary, and ensures that it will fire soon enough
* to happen after time |interval| (in milliseconds).
*/
_ensureTimer(interval) {
if (!this._canEnsureTimer) {
return;
}
if (!this._timer) {
this._timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
this._timer.initWithCallback(
this,
interval,
Ci.nsITimer.TYPE_REPEATING_SLACK
);
this.lastTimerReset = Date.now();
} else if (
Date.now() + interval <
this.lastTimerReset + this._timer.delay
) {
this._timer.delay = Math.max(
this.lastTimerReset + interval - Date.now(),
0
);
}
},
/**
* Stops the timer, if it is running.
*/
_cancelTimer() {
if (this._timer) {
this._timer.cancel();
this._timer = null;
}
},
/**
* See nsIUpdateTimerManager.idl
*/
registerTimer: function TM_registerTimer(id, callback, interval, skipFirst) {
LOG(
`TimerManager:registerTimer - timerID: ${id} interval: ${interval} skipFirst: ${skipFirst}`
);
if (this._timers === null) {
// Use normal logging since reportError is not available while shutting
// down.
gLogEnabled = true;
LOG(
"TimerManager:registerTimer called after profile-before-change " +
"notification. Ignoring timer registration for id: " +
id
);
return;
}
if (id in this._timers && callback != this._timers[id].callback) {
LOG(
"TimerManager:registerTimer - Ignoring second registration for " + id
);
return;
}
let prefLastUpdate = PREF_APP_UPDATE_LASTUPDATETIME_FMT.replace(/%ID%/, id);
// Initialize the last update time to 0 when the preference isn't set so
// the timer will be notified soon after a new profile's first use.
let lastUpdateTime = Services.prefs.getIntPref(prefLastUpdate, 0);
let now = Math.round(Date.now() / 1000);
if (lastUpdateTime > now) {
lastUpdateTime = 0;
}
if (lastUpdateTime == 0) {
if (skipFirst) {
lastUpdateTime = now;
}
Services.prefs.setIntPref(prefLastUpdate, lastUpdateTime);
}
this._timers[id] = { callback, interval, lastUpdateTime };
this._ensureTimer(interval * 1000);
},
unregisterTimer: function TM_unregisterTimer(id) {
LOG("TimerManager:unregisterTimer - id: " + id);
if (id in this._timers) {
delete this._timers[id];
} else {
LOG(
"TimerManager:unregisterTimer - Ignoring unregistration request for " +
"unknown id: " +
id
);
}
},
classID: Components.ID("{B322A5C0-A419-484E-96BA-D7182163899F}"),
QueryInterface: ChromeUtils.generateQI([
Ci.nsIUpdateTimerManager,
Ci.nsITimerCallback,
Ci.nsIObserver,
]),
};
var EXPORTED_SYMBOLS = ["TimerManager"];
|