summaryrefslogtreecommitdiffstats
path: root/remote/shared/js-window-actors/NavigationListenerActor.sys.mjs
blob: 13335177c6a83f43bb101395f7993846afe3c5bc (plain)
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
/* 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/. */

const lazy = {};

ChromeUtils.defineESModuleGetters(lazy, {
  Log: "chrome://remote/content/shared/Log.sys.mjs",
  TabManager: "chrome://remote/content/shared/TabManager.sys.mjs",
});

ChromeUtils.defineLazyGetter(lazy, "logger", () => lazy.Log.get());

let registered = false;
export function isNavigationListenerActorRegistered() {
  return registered;
}

/**
 * Register the NavigationListener actor that will keep track of all ongoing
 * navigations.
 */
export function registerNavigationListenerActor() {
  if (registered) {
    return;
  }

  try {
    ChromeUtils.registerWindowActor("NavigationListener", {
      kind: "JSWindowActor",
      parent: {
        esModuleURI:
          "chrome://remote/content/shared/js-window-actors/NavigationListenerParent.sys.mjs",
      },
      child: {
        esModuleURI:
          "chrome://remote/content/shared/js-window-actors/NavigationListenerChild.sys.mjs",
        events: {
          DOMWindowCreated: {},
        },
      },
      allFrames: true,
      messageManagerGroups: ["browsers"],
    });
    registered = true;

    // Ensure the navigation listener is started in existing contexts.
    for (const browser of lazy.TabManager.browsers) {
      if (!browser?.browsingContext) {
        continue;
      }

      for (const context of browser.browsingContext.getAllBrowsingContextsInSubtree()) {
        if (!context.currentWindowGlobal) {
          continue;
        }

        context.currentWindowGlobal
          .getActor("NavigationListener")
          // Note that "createActor" is not explicitly referenced in the child
          // actor, this is only used to trigger the creation of the actor.
          .sendAsyncMessage("createActor");
      }
    }
  } catch (e) {
    if (e.name === "NotSupportedError") {
      lazy.logger.warn(`NavigationListener actor is already registered!`);
    } else {
      throw e;
    }
  }
}

export function unregisterNavigationListenerActor() {
  if (!registered) {
    return;
  }
  ChromeUtils.unregisterWindowActor("NavigationListener");
  registered = false;
}