Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  NavigableManager.sys.mjs   Sprache: unbekannt

 
Spracherkennung für: .mjs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

/* 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, {
  BiMap: "chrome://remote/content/shared/BiMap.sys.mjs",
  BrowsingContextListener:
    "chrome://remote/content/shared/listeners/BrowsingContextListener.sys.mjs",
  generateUUID: "chrome://remote/content/shared/UUID.sys.mjs",
  TabManager: "chrome://remote/content/shared/TabManager.sys.mjs",
});

/**
 * The navigable manager is intended to be used as a singleton and is
 * responsible for tracking open browsing contexts by assigning each a
 * unique identifier. This allows them to be referenced unambiguously.
 * For top-level browsing contexts, the content browser instance itself
 * is used as the anchor, since cross-origin navigations can result in
 * browsing context replacements. Using the browser as a stable reference
 * ensures that protocols like WebDriver BiDi and Marionette can reliably
 * point to the intended "navigable" — a concept from the HTML specification
 * that is not implemented in Firefox.
 */
class NavigableManagerClass {
  #browserIds;
  #chromeNavigables;
  #contextListener;
  #navigableIds;
  #tracking;

  constructor() {
    this.#tracking = false;

    // Maps browser's `permanentKey` to an uuid: WeakMap.<Object, string>
    //
    // It's required as a fallback, since in the case when a context was
    // discarded embedderElement is gone, and we cannot retrieve the
    // context id from the formerly known browser.
    this.#browserIds = new WeakMap();

    // Maps canonical browsing contexts from the parent process
    // to a uuid and vice versa.
    this.#chromeNavigables = new lazy.BiMap();

    // Maps browsing contexts to uuid: WeakMap.<BrowsingContext, string>.
    this.#navigableIds = new WeakMap();

    // Start tracking by default when the class gets instantiated.
    this.startTracking();
  }

  /**
   * Retrieve the browser element corresponding to the provided unique id,
   * previously generated via getIdForBrowser.
   *
   * TODO: To avoid creating strong references on browser elements and
   * potentially leaking those elements, this method loops over all windows and
   * all tabs. It should be replaced by a faster implementation in Bug 1750065.
   *
   * @param {string} id
   *     A browser unique id created by getIdForBrowser.
   *
   * @returns {XULBrowser}
   *     The <xul:browser> corresponding to the provided id. Will return
   *     `null` if no matching browser element is found.
   */
  getBrowserById(id) {
    for (const tab of lazy.TabManager.allTabs) {
      const contentBrowser = lazy.TabManager.getBrowserForTab(tab);
      if (this.getIdForBrowser(contentBrowser) == id) {
        return contentBrowser;
      }
    }

    return null;
  }

  /**
   * Retrieve the browsing context corresponding to the provided navigabl id.
   *
   * @param {string} id
   *     A browsing context unique id (created by getIdForBrowsingContext).
   *
   * @returns {BrowsingContext|null}
   *     The browsing context found for this id, null if none was found or
   *     browsing context is discarded.
   */
  getBrowsingContextById(id) {
    let browsingContext;

    if (this.#chromeNavigables.hasId(id)) {
      // Chrome browsing context
      browsingContext = this.#chromeNavigables.getObject(id);
    } else {
      // Content browsing context
      const browser = this.getBrowserById(id);
      if (browser) {
        // Top-level browsing context
        browsingContext = browser.browsingContext;
      } else {
        // Content child browsing contexts
        const context = BrowsingContext.get(id);
        if (context && context.isContent && context.parent) {
          browsingContext = context;
        }
      }
    }

    if (!browsingContext || browsingContext.isDiscarded) {
      return null;
    }

    return browsingContext;
  }

  /**
   * Retrieve the unique id for the given xul browser element. The id is a
   * dynamically generated uuid associated with the permanentKey property of the
   * given browser element. This method is preferable over getIdForBrowsingContext
   * in case of working with browser element of a tab, since we can not guarantee
   * that browsing context is attached to it.
   *
   * @param {XULBrowser} browser
   *     The <xul:browser> for which we want to retrieve the id.
   *
   * @returns {string|null}
   *     The unique id for this browser or `null` if invalid.
   */
  getIdForBrowser(browser) {
    if (!(XULElement.isInstance(browser) && browser.permanentKey)) {
      // Ignore those browsers that do not have a permanentKey
      // attached like the print preview (bug 1990485), but which
      // we need to uniquely identify a top-level browsing context.
      return null;
    }

    return this.#browserIds.getOrInsertComputed(
      browser.permanentKey,
      lazy.generateUUID
    );
  }

  /**
   * Retrieve the id of a Browsing Context.
   *
   * For a top-level browsing context a custom unique id will be returned.
   *
   * @param {BrowsingContext=} browsingContext
   *     The browsing context to get the id from.
   *
   * @returns {string|null}
   *     The unique id of the browsing context or `null` if invalid.
   */
  getIdForBrowsingContext(browsingContext) {
    if (!BrowsingContext.isInstance(browsingContext)) {
      return null;
    }

    if (!browsingContext.isContent) {
      // When the browsing context runs in the parent process we
      // can use the browsing context as key because it's stable.
      return this.#chromeNavigables.getOrInsert(browsingContext);
    }

    if (!browsingContext.parent) {
      // For top-level browsing contexts always try to use the browser
      // as navigable first because it survives a cross-process navigation.
      const browser = this.#getBrowserForBrowsingContext(browsingContext);
      if (browser) {
        return this.getIdForBrowser(browser);
      }

      // If no browser can be found fallback to use the navigable id instead.
      return this.#navigableIds.has(browsingContext)
        ? this.#navigableIds.get(browsingContext)
        : null;
    }

    // Child browsing context (frame)
    return browsingContext.id.toString();
  }

  /**
   * Get the navigable for the given browsing context.
   *
   * Because Gecko doesn't support the Navigable concept in content
   * scope the content browser could be used to uniquely identify
   * top-level browsing contexts.
   *
   * @param {BrowsingContext} browsingContext
   *
   * @returns {BrowsingContext|XULBrowser} The navigable
   *
   * @throws {TypeError}
   *     If `browsingContext` is not a CanonicalBrowsingContext instance.
   */
  getNavigableForBrowsingContext(browsingContext) {
    if (!lazy.TabManager.isValidCanonicalBrowsingContext(browsingContext)) {
      throw new TypeError(
        `Expected browsingContext to be a CanonicalBrowsingContext, got ${browsingContext}`
      );
    }

    if (browsingContext.isContent && browsingContext.parent === null) {
      return this.#getBrowserForBrowsingContext(browsingContext);
    }

    return browsingContext;
  }

  startTracking() {
    if (this.#tracking) {
      return;
    }

    this.#contextListener = new lazy.BrowsingContextListener();
    this.#contextListener.on("attached", this.#onContextAttached);
    this.#contextListener.on("discarded", this.#onContextDiscarded);
    this.#contextListener.startListening();

    // Register as well all browsing contexts from already open tabs.
    lazy.TabManager.getBrowsers().forEach(browser =>
      this.#setIdForBrowsingContext(browser.browsingContext)
    );

    this.#tracking = true;
  }

  stopTracking() {
    if (!this.#tracking) {
      return;
    }

    this.#contextListener.off("attached", this.#onContextAttached);
    this.#contextListener.off("discarded", this.#onContextDiscarded);
    this.#contextListener.stopListening();
    this.#contextListener = null;

    this.#chromeNavigables.clear();
    this.#browserIds = new WeakMap();
    this.#navigableIds = new WeakMap();

    this.#tracking = false;
  }

  /** Private methods */

  /**
   * Try to find the browser element to browsing context is attached to.
   *
   * @param {BrowsingContext} browsingContext
   *     The browsing context to find the related browser for.
   *
   * @returns {XULBrowser|null}
   *     The <xul:browser> element, or `null` if no browser exists.
   */
  #getBrowserForBrowsingContext(browsingContext) {
    return browsingContext.top.embedderElement
      ? browsingContext.top.embedderElement
      : null;
  }

  /**
   * Update the internal maps for a new browsing context.
   *
   * @param {BrowsingContext} browsingContext
   *     The browsing context that needs to be observed.
   */
  #setIdForBrowsingContext(browsingContext) {
    const id = this.getIdForBrowsingContext(browsingContext);

    // Add a fallback to the navigable weak map so that an id can
    // also be retrieved when the related browser was closed.
    this.#navigableIds.set(browsingContext, id);
  }

  /** Event handlers */

  #onContextAttached = (_, data = {}) => {
    const { browsingContext } = data;

    if (!browsingContext.isContent) {
      this.#chromeNavigables.getOrInsert(browsingContext);
      return;
    }

    this.#setIdForBrowsingContext(browsingContext);
  };

  #onContextDiscarded = (_, data = {}) => {
    const { browsingContext } = data;

    if (!browsingContext.isContent) {
      this.#chromeNavigables.deleteByObject(browsingContext);
    }
  };
}

// Expose a shared singleton.
export const NavigableManager = new NavigableManagerClass();

[Dauer der Verarbeitung: 0.30 Sekunden, vorverarbeitet 2026-08-25]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002