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


Quelle  sync.ts

  Sprache: JAVA
 

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

import {
  findMatrixQaObservedEventMatch,
  normalizeMatrixQaObservedEvent,
  type MatrixQaObservedEvent,
  type MatrixQaRoomEvent,
} from "./events.js";
import { requestMatrixJson, type MatrixQaFetchLike } from "./request.js";

type MatrixQaSyncResponse = {
  next_batch?: string;
  rooms?: {
    join?: Record<
      string,
      {
        timeline?: {
          events?: MatrixQaRoomEvent[];
        };
      }
    >;
  };
};

export type MatrixQaRoomEventWaitResult =
  | {
      event: MatrixQaObservedEvent;
      matched: true;
      since?: string;
    }
  | {
      matched: false;
      since?: string;
    };

type MatrixQaSyncParams = {
  accessToken?: string;
  baseUrl: string;
  fetchImpl?: MatrixQaFetchLike;
};

export type MatrixQaRoomObserver = {
  prime(): Promise<string | undefined>;
  waitForOptionalRoomEvent(params: {
    predicate: (event: MatrixQaObservedEvent) => boolean;
    roomId: string;
    timeoutMs: number;
  }): Promise<MatrixQaRoomEventWaitResult>;
  waitForRoomEvent(params: {
    predicate: (event: MatrixQaObservedEvent) => boolean;
    roomId: string;
    timeoutMs: number;
  }): Promise<{
    event: MatrixQaObservedEvent;
    since?: string;
  }>;
};

type MatrixQaRoomObserverState = {
  cursorIndex: number;
  events: MatrixQaObservedEvent[];
  pollPromise?: Promise<void>;
  since?: string;
};

export async function primeMatrixQaRoom(params: MatrixQaSyncParams) {
  const fetchImpl = params.fetchImpl ?? fetch;
  const response = await requestMatrixJson<MatrixQaSyncResponse>({
    accessToken: params.accessToken,
    baseUrl: params.baseUrl,
    endpoint: "/_matrix/client/v3/sync",
    fetchImpl,
    method: "GET",
    query: { timeout: 0 },
  });
  return response.body.next_batch?.trim() || undefined;
}

async function pollMatrixQaRoomObserver(
  params: MatrixQaSyncParams & {
    observedEvents: MatrixQaObservedEvent[];
    roomObserver: MatrixQaRoomObserverState;
    timeoutMs: number;
  },
) {
  const fetchImpl = params.fetchImpl ?? fetch;
  if (params.roomObserver.pollPromise) {
    await params.roomObserver.pollPromise;
    return;
  }

  params.roomObserver.pollPromise = (async () => {
    const response = await requestMatrixJson<MatrixQaSyncResponse>({
      accessToken: params.accessToken,
      baseUrl: params.baseUrl,
      endpoint: "/_matrix/client/v3/sync",
      fetchImpl,
      method: "GET",
      query: {
        ...(params.roomObserver.since ? { since: params.roomObserver.since } : {}),
        timeout: Math.min(10_000, params.timeoutMs),
      },
      timeoutMs: Math.min(15_000, params.timeoutMs + 5_000),
    });
    params.roomObserver.since = response.body.next_batch?.trim() || params.roomObserver.since;
    for (const [roomId, joinedRoom] of Object.entries(response.body.rooms?.join ?? {})) {
      for (const event of joinedRoom.timeline?.events ?? []) {
        const normalized = normalizeMatrixQaObservedEvent(roomId, event);
        if (!normalized) {
          continue;
        }
        params.observedEvents.push(normalized);
        params.roomObserver.events.push(normalized);
      }
    }
  })();

  try {
    await params.roomObserver.pollPromise;
  } finally {
    params.roomObserver.pollPromise = undefined;
  }
}

export function createMatrixQaRoomObserver(
  params: MatrixQaSyncParams & {
    observedEvents: MatrixQaObservedEvent[];
    since?: string;
  },
): MatrixQaRoomObserver {
  const roomObserver: MatrixQaRoomObserverState = {
    cursorIndex: 0,
    events: [],
    since: params.since,
  };

  return {
    async prime() {
      if (roomObserver.since) {
        return roomObserver.since;
      }
      roomObserver.since = await primeMatrixQaRoom(params);
      return roomObserver.since;
    },
    async waitForOptionalRoomEvent(waitParams) {
      const startSince = await this.prime();
      const startedAt = Date.now();
      let cursorIndex = roomObserver.cursorIndex;
      let didPoll = false;
      while (true) {
        const matched = findMatrixQaObservedEventMatch({
          cursorIndex,
          events: roomObserver.events,
          predicate: waitParams.predicate,
          roomId: waitParams.roomId,
        });
        if (matched) {
          roomObserver.cursorIndex = Math.max(roomObserver.cursorIndex, matched.nextCursorIndex);
          return {
            event: matched.event,
            matched: true,
            since: roomObserver.since ?? startSince,
          };
        }

        const elapsedMs = Date.now() - startedAt;
        if (elapsedMs >= waitParams.timeoutMs && (didPoll || waitParams.timeoutMs <= 0)) {
          roomObserver.cursorIndex = Math.max(roomObserver.cursorIndex, cursorIndex);
          return {
            matched: false,
            since: roomObserver.since ?? startSince,
          };
        }

        cursorIndex = roomObserver.events.length;
        const remainingMs = Math.max(1_000, waitParams.timeoutMs - elapsedMs);
        await pollMatrixQaRoomObserver({
          ...params,
          observedEvents: params.observedEvents,
          roomObserver,
          timeoutMs: remainingMs,
        });
        didPoll = true;
      }
    },
    async waitForRoomEvent(waitParams) {
      const result = await this.waitForOptionalRoomEvent(waitParams);
      if (result.matched) {
        return {
          event: result.event,
          since: result.since,
        };
      }
      throw new Error(`timed out after ${waitParams.timeoutMs}ms waiting for Matrix room event`);
    },
  };
}

export async function waitForOptionalMatrixQaRoomEvent(
  params: MatrixQaSyncParams & {
    observedEvents: MatrixQaObservedEvent[];
    predicate: (event: MatrixQaObservedEvent) => boolean;
    roomId: string;
    since?: string;
    timeoutMs: number;
  },
): Promise<MatrixQaRoomEventWaitResult> {
  return await createMatrixQaRoomObserver(params).waitForOptionalRoomEvent({
    predicate: params.predicate,
    roomId: params.roomId,
    timeoutMs: params.timeoutMs,
  });
}

export async function waitForMatrixQaRoomEvent(
  params: MatrixQaSyncParams & {
    observedEvents: MatrixQaObservedEvent[];
    predicate: (event: MatrixQaObservedEvent) => boolean;
    roomId: string;
    since?: string;
    timeoutMs: number;
  },
) {
  const result = await waitForOptionalMatrixQaRoomEvent(params);
  if (result.matched) {
    return { event: result.event, since: result.since };
  }
  throw new Error(`timed out after ${params.timeoutMs}ms waiting for Matrix room event`);
}

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet am  2026-04-27) ¤

*© 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge