Bug 1857998 [wpt PR 42432] - [css-nesting-ident] Enable relaxed syntax, a=testonly
[gecko.git] / toolkit / modules / FirstStartup.sys.mjs
blobb31e7ffa0701891eb6ba7b9a3a3d128efd16c565
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs";
7 const lazy = {};
9 ChromeUtils.defineESModuleGetters(lazy, {
10   Normandy: "resource://normandy/Normandy.sys.mjs",
11   TaskScheduler: "resource://gre/modules/TaskScheduler.sys.mjs",
12 });
14 const PREF_TIMEOUT = "first-startup.timeout";
16 /**
17  * Service for blocking application startup, to be used on the first install. The intended
18  * use case is for `FirstStartup` to be invoked when the application is called by an installer,
19  * such as the Windows Stub Installer, to allow the application to do some first-install tasks
20  * such as performance tuning and downloading critical data.
21  *
22  * In this scenario, the installer does not exit until the first application window appears,
23  * which gives the user experience of the application starting up quickly on first install.
24  */
25 export var FirstStartup = {
26   NOT_STARTED: 0,
27   IN_PROGRESS: 1,
28   TIMED_OUT: 2,
29   SUCCESS: 3,
30   UNSUPPORTED: 4,
32   _state: 0, // NOT_STARTED,
33   /**
34    * Initialize and run first-startup services. This will always run synchronously
35    * and spin the event loop until either all required services have
36    * completed, or until a timeout is reached.
37    *
38    * In the latter case, services are expected to run post-UI instead as usual.
39    */
40   init() {
41     this._state = this.IN_PROGRESS;
42     const timeout = Services.prefs.getIntPref(PREF_TIMEOUT, 30000); // default to 30 seconds
43     let startingTime = Cu.now();
44     let initialized = false;
46     let promises = [];
48     let normandyInitEndTime = null;
49     if (AppConstants.MOZ_NORMANDY) {
50       promises.push(
51         lazy.Normandy.init({ runAsync: false }).finally(() => {
52           normandyInitEndTime = Cu.now();
53         })
54       );
55     }
57     let deleteTasksEndTime = null;
58     if (AppConstants.MOZ_UPDATE_AGENT) {
59       // It's technically possible for a previous installation to leave an old
60       // OS-level scheduled task around.  Start fresh.
61       promises.push(
62         lazy.TaskScheduler.deleteAllTasks()
63           .catch(() => {})
64           .finally(() => {
65             deleteTasksEndTime = Cu.now();
66           })
67       );
68     }
70     if (promises.length) {
71       Promise.all(promises).then(() => (initialized = true));
73       this.elapsed = 0;
74       Services.tm.spinEventLoopUntil("FirstStartup.sys.mjs:init", () => {
75         this.elapsed = Math.round(Cu.now() - startingTime);
76         if (this.elapsed >= timeout) {
77           this._state = this.TIMED_OUT;
78           return true;
79         } else if (initialized) {
80           this._state = this.SUCCESS;
81           return true;
82         }
83         return false;
84       });
85     } else {
86       this._state = this.UNSUPPORTED;
87     }
89     if (AppConstants.MOZ_NORMANDY) {
90       Glean.firstStartup.normandyInitTime.set(
91         Math.ceil(normandyInitEndTime || Cu.now() - startingTime)
92       );
93     }
95     if (AppConstants.MOZ_UPDATE_AGENT) {
96       Glean.firstStartup.deleteTasksTime.set(
97         Math.ceil(deleteTasksEndTime || Cu.now() - startingTime)
98       );
99     }
101     Glean.firstStartup.statusCode.set(this._state);
102     Glean.firstStartup.elapsed.set(this.elapsed);
103     GleanPings.firstStartup.submit();
104   },
106   get state() {
107     return this._state;
108   },