Files
openswarm/frontend/src/shared/appWebviewBudget.ts
T

79 lines
3.0 KiB
TypeScript

/**
* Hard ceiling on simultaneously-live app (View) webviews. An app preview is the heaviest surface on
* the canvas (a full renderer running a live frontend), and unlike browser cards these had NO global
* cap, so a pile of big app cards left in view could stack renderers until the whole app OOMs. This is
* admission control: a passive on-screen app goes live only if a slot is free, else it stays a
* placeholder; the cards closest to the viewport center win the scarce slots. A card the user is
* actively using (selected, interacting, agent-driven, tiled, fullscreen) is "pinned" and bypasses the
* cap, the same way a browser card's mustStayLive rule exempts it. Below the cap this is a no-op, so
* everyday behavior is unchanged; it only bites when too many previews want to be live at once.
*/
export const MAX_LIVE_APP_WEBVIEWS = 6;
interface Slot {
priority: number; // squared distance from viewport center; smaller = closer = kept when slots are scarce
pinned: boolean; // actively used: never counted against the cap, never evicted
}
const live = new Map<string, Slot>();
const listeners = new Set<() => void>();
// Deferred: an eviction firing inside one card's render must not synchronously poke another card's state.
function notify(): void {
queueMicrotask(() => {
for (const fn of [...listeners]) fn();
});
}
function evictableLiveCount(): number {
let n = 0;
for (const s of live.values()) if (!s.pinned) n++;
return n;
}
/**
* Whether this card may be live now. Idempotent (safe to call every pan/resize tick). A pinned card is
* always granted; an unpinned one is granted if a slot is free, or if it is closer to center than the
* farthest currently-live unpinned card, which it then evicts.
*/
export function requestAppSlot(key: string, priority: number, pinned: boolean): boolean {
const existing = live.get(key);
if (existing) {
existing.priority = priority;
existing.pinned = pinned;
return true;
}
if (pinned || evictableLiveCount() < MAX_LIVE_APP_WEBVIEWS) {
live.set(key, { priority, pinned });
return true;
}
let worstKey: string | null = null;
let worstPriority = -Infinity;
for (const [k, s] of live) {
if (!s.pinned && s.priority > worstPriority) {
worstPriority = s.priority;
worstKey = k;
}
}
if (worstKey !== null && priority < worstPriority) {
live.delete(worstKey);
live.set(key, { priority, pinned });
notify(); // the evicted card must re-evaluate and drop to a placeholder
return true;
}
return false;
}
/** A card that suspends or unmounts MUST release, or its slot leaks and a capped card never wakes. */
export function releaseAppSlot(key: string): void {
if (live.delete(key)) notify(); // a freed slot lets a capped card come alive
}
/** Re-run a card's live/suspend decision whenever the budget changes (an eviction or a freed slot). */
export function subscribeAppBudget(fn: () => void): () => void {
listeners.add(fn);
return () => {
listeners.delete(fn);
};
}