* perf: optimize session loading and startup * fix(chat): stabilize history prepend virtualization * perf: unblock first session open from startup network contention Opening the first session after app start waited seconds for its message fetch. Three independent contributors, each measured via CDP network capture and Chromium net-log against the packaged desktop app: - The active-session watchdog fired an uncapped per-directory status poll and child-session discovery burst at startup, and other subsystems (git checks, global session pages, command/skill discovery) fanned out alongside it, saturating the browser's ~6 HTTP/1.1 sockets per origin. Add a shared background-network gate (concurrency 3) and route the watchdog, poll-shaped git reads (also priority: low), global session pages, command/skill loads, and the background update check through it. - The packaged renderer is cross-origin to the loopback backend, so every API call needs a CORS preflight; a few slow OpenCode-proxied requests held the whole pool while preflights and interactive traffic queued behind them. Lift Chromium's per-host connection cap for loopback via ignore-connections-limit in the Electron shell. - OpenCode initializes each directory lazily on its first request, so the first click paid that cost interactively. Warm the last-used directory and the three most recently opened projects right after OpenCode readiness, sequentially and best-effort, overlapping UI startup. Validation: new background-network tests, lifecycle warmup test, focused store/sync tests, UI type-check and lint, dead-code report, node --check plus electron type-check/lint, and CDP first-open measurements on the packaged app (message fetch socket queue 5.4s -> 0.03s). * fix(ui): keep interactive git reads out of background queue --------- Co-authored-by: Bohdan Triapitsyn <artmore@protonmail.com>
156 lines
3.9 KiB
JavaScript
156 lines
3.9 KiB
JavaScript
import { recordStartupPerformance } from './startup-performance.js';
|
|
|
|
export const createStartupPipelineRuntime = (dependencies) => {
|
|
const {
|
|
createTerminalRuntime,
|
|
createDictationRuntime,
|
|
createMessageStreamWsRuntime,
|
|
createServerStartupRuntime,
|
|
} = dependencies;
|
|
|
|
const run = async (options) => {
|
|
const pipelineStartedAt = performance.now();
|
|
recordStartupPerformance('web.pipeline.start');
|
|
const {
|
|
app,
|
|
server,
|
|
express,
|
|
fs,
|
|
path,
|
|
uiAuthController,
|
|
buildAugmentedPath,
|
|
searchPathFor,
|
|
isExecutable,
|
|
isRequestOriginAllowed,
|
|
rejectWebSocketUpgrade,
|
|
buildOpenCodeUrl,
|
|
getOpenCodeAuthHeaders,
|
|
globalEventHub,
|
|
processForwardedEventPayload,
|
|
messageStreamWsClients,
|
|
triggerHealthCheck,
|
|
upstreamStallTimeoutMs,
|
|
terminalHeartbeatIntervalMs,
|
|
terminalRebindWindowMs,
|
|
terminalMaxRebindsPerWindow,
|
|
setupProxy,
|
|
scheduleOpenCodeApiDetection,
|
|
bootstrapOpenCodeAtStartup,
|
|
staticRoutesRuntime,
|
|
process,
|
|
crypto,
|
|
normalizeTunnelBootstrapTtlMs,
|
|
readSettingsFromDiskMigrated,
|
|
tunnelAuthController,
|
|
startTunnelWithNormalizedRequest,
|
|
gracefulShutdown,
|
|
getSignalsAttached,
|
|
setSignalsAttached,
|
|
syncToHmrState,
|
|
TUNNEL_MODE_QUICK,
|
|
TUNNEL_MODE_MANAGED_LOCAL,
|
|
TUNNEL_MODE_MANAGED_REMOTE,
|
|
host,
|
|
port,
|
|
startupTunnelRequest,
|
|
onTunnelReady,
|
|
tunnelRuntimeContext,
|
|
attachSignals,
|
|
apiOnly,
|
|
dictationModelsDir,
|
|
} = options;
|
|
|
|
const terminalRuntime = createTerminalRuntime({
|
|
app,
|
|
server,
|
|
express,
|
|
fs,
|
|
path,
|
|
uiAuthController,
|
|
buildAugmentedPath,
|
|
searchPathFor,
|
|
isExecutable,
|
|
isRequestOriginAllowed,
|
|
rejectWebSocketUpgrade,
|
|
TERMINAL_INPUT_WS_HEARTBEAT_INTERVAL_MS: terminalHeartbeatIntervalMs,
|
|
TERMINAL_INPUT_WS_REBIND_WINDOW_MS: terminalRebindWindowMs,
|
|
TERMINAL_INPUT_WS_MAX_REBINDS_PER_WINDOW: terminalMaxRebindsPerWindow,
|
|
});
|
|
|
|
const dictationRuntime = createDictationRuntime({
|
|
app,
|
|
server,
|
|
express,
|
|
uiAuthController,
|
|
isRequestOriginAllowed,
|
|
rejectWebSocketUpgrade,
|
|
modelsDir: dictationModelsDir,
|
|
});
|
|
|
|
const messageStreamRuntime = createMessageStreamWsRuntime({
|
|
server,
|
|
uiAuthController,
|
|
isRequestOriginAllowed,
|
|
rejectWebSocketUpgrade,
|
|
buildOpenCodeUrl,
|
|
getOpenCodeAuthHeaders,
|
|
globalEventHub,
|
|
processForwardedEventPayload,
|
|
wsClients: messageStreamWsClients,
|
|
triggerHealthCheck,
|
|
upstreamStallTimeoutMs,
|
|
});
|
|
|
|
setupProxy(app);
|
|
|
|
if (apiOnly) {
|
|
staticRoutesRuntime.registerApiOnlyFallbackRoutes(app);
|
|
} else {
|
|
staticRoutesRuntime.registerStaticRoutes(app);
|
|
}
|
|
|
|
const serverStartupRuntime = createServerStartupRuntime({
|
|
process,
|
|
crypto,
|
|
server,
|
|
normalizeTunnelBootstrapTtlMs,
|
|
readSettingsFromDiskMigrated,
|
|
tunnelAuthController,
|
|
startTunnelWithNormalizedRequest,
|
|
gracefulShutdown,
|
|
getSignalsAttached,
|
|
setSignalsAttached,
|
|
syncToHmrState,
|
|
TUNNEL_MODE_QUICK,
|
|
TUNNEL_MODE_MANAGED_LOCAL,
|
|
TUNNEL_MODE_MANAGED_REMOTE,
|
|
});
|
|
|
|
const bindHost = serverStartupRuntime.resolveBindHost(host);
|
|
const startupResult = await serverStartupRuntime.startListeningAndMaybeTunnel({
|
|
port,
|
|
bindHost,
|
|
startupTunnelRequest,
|
|
onTunnelReady,
|
|
});
|
|
recordStartupPerformance('web.listener.ready', {
|
|
durationMs: performance.now() - pipelineStartedAt,
|
|
});
|
|
tunnelRuntimeContext.setActivePort(startupResult.activePort);
|
|
scheduleOpenCodeApiDetection();
|
|
void bootstrapOpenCodeAtStartup();
|
|
|
|
serverStartupRuntime.attachProcessHandlers({ attachSignals });
|
|
|
|
return {
|
|
terminalRuntime,
|
|
dictationRuntime,
|
|
messageStreamRuntime,
|
|
};
|
|
};
|
|
|
|
return {
|
|
run,
|
|
};
|
|
};
|