Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/devtools/server/actors/resources/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 3 kB image not shown  

Quelle  server-sent-events.js   Sprache: JAVA

 
/* 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";

const {
  LongStringActor,
} = require("resource://devtools/server/actors/string.js");

const eventSourceEventService = Cc[
  "@mozilla.org/eventsourceevent/service;1"
].getService(Ci.nsIEventSourceEventService);

class ServerSentEventWatcher {
  constructor() {
    this.windowIds = new Set();
    // Register for backend events.
    this.onWindowReady = this.onWindowReady.bind(this);
    this.onWindowDestroy = this.onWindowDestroy.bind(this);
  }
  /**
   * Start watching for all server sent events related to a given Target Actor.
   *
   * @param TargetActor targetActor
   *        The target actor on which we should observe server sent events.
   * @param Object options
   *        Dictionary object with following attributes:
   *        - onAvailable: mandatory function
   *          This will be called for each resource.
   */

  watch(targetActor, { onAvailable }) {
    this.onAvailable = onAvailable;
    this.targetActor = targetActor;

    for (const window of this.targetActor.windows) {
      const { innerWindowId } = window.windowGlobalChild;
      this.startListening(innerWindowId);
    }

    // Listen for subsequent top-level-document reloads/navigations,
    // new iframe additions or current iframe reloads/navigation.
    this.targetActor.on("window-ready"this.onWindowReady);
    this.targetActor.on("window-destroyed"this.onWindowDestroy);
  }

  static createResource(messageType, eventParams) {
    return {
      messageType,
      ...eventParams,
    };
  }

  static prepareFramePayload(targetActor, frame) {
    const payload = new LongStringActor(targetActor.conn, frame);
    targetActor.manage(payload);
    return payload.form();
  }

  onWindowReady({ window }) {
    const { innerWindowId } = window.windowGlobalChild;
    this.startListening(innerWindowId);
  }

  onWindowDestroy({ id }) {
    this.stopListening(id);
  }

  startListening(innerWindowId) {
    if (!this.windowIds.has(innerWindowId)) {
      this.windowIds.add(innerWindowId);
      eventSourceEventService.addListener(innerWindowId, this);
    }
  }

  stopListening(innerWindowId) {
    if (this.windowIds.has(innerWindowId)) {
      this.windowIds.delete(innerWindowId);
      // The listener might have already been cleaned up on `window-destroy`.
      if (!eventSourceEventService.hasListenerFor(innerWindowId)) {
        console.warn(
          "Already stopped listening to server sent events for this window."
        );
        return;
      }
      eventSourceEventService.removeListener(innerWindowId, this);
    }
  }

  destroy() {
    // cleanup any other listeners not removed on `window-destroy`
    for (const id of this.windowIds) {
      this.stopListening(id);
    }
    this.targetActor.off("window-ready"this.onWindowReady);
    this.targetActor.off("window-destroyed"this.onWindowDestroy);
  }

  // nsIEventSourceEventService specific functions
  eventSourceConnectionOpened() {}

  eventSourceConnectionClosed(httpChannelId) {
    const resource = ServerSentEventWatcher.createResource(
      "eventSourceConnectionClosed",
      { httpChannelId }
    );
    this.onAvailable([resource]);
  }

  eventReceived(httpChannelId, eventName, lastEventId, data, retry, timeStamp) {
    const payload = ServerSentEventWatcher.prepareFramePayload(
      this.targetActor,
      data
    );
    const resource = ServerSentEventWatcher.createResource("eventReceived", {
      httpChannelId,
      data: {
        payload,
        eventName,
        lastEventId,
        retry,
        timeStamp,
      },
    });

    this.onAvailable([resource]);
  }
}

module.exports = ServerSentEventWatcher;

Messung V0.5
C=94 H=97 G=95

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.