perf: optimize session loading and desktop startup (#2545)
* 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>
This commit is contained in:
committed by
GitHub
co-authored by
Bohdan Triapitsyn
parent
09f0c64839
commit
aae889b904
@@ -2,11 +2,15 @@ import { EventEmitter } from 'node:events';
|
||||
import { afterEach, describe, expect, it, vi } from 'vitest';
|
||||
|
||||
const spawnMock = vi.fn();
|
||||
const recordStartupPerformanceMock = vi.fn();
|
||||
|
||||
vi.mock('node:child_process', () => ({
|
||||
spawn: spawnMock,
|
||||
spawnSync: vi.fn(),
|
||||
}));
|
||||
vi.mock('./startup-performance.js', () => ({
|
||||
recordStartupPerformance: recordStartupPerformanceMock,
|
||||
}));
|
||||
|
||||
const { createOpenCodeLifecycleRuntime } = await import('./lifecycle.js');
|
||||
|
||||
@@ -16,6 +20,7 @@ const originalFetch = globalThis.fetch;
|
||||
|
||||
afterEach(() => {
|
||||
spawnMock.mockReset();
|
||||
recordStartupPerformanceMock.mockReset();
|
||||
globalThis.fetch = originalFetch;
|
||||
if (typeof originalOpencodeBinary === 'string') {
|
||||
process.env.OPENCODE_BINARY = originalOpencodeBinary;
|
||||
@@ -108,6 +113,92 @@ const createRuntime = (overrides = {}, stateOverrides = {}) => {
|
||||
};
|
||||
|
||||
describe('OpenCode lifecycle', () => {
|
||||
it('records an authoritative ready terminal event for external startup', async () => {
|
||||
globalThis.fetch = vi.fn(async () => ({
|
||||
ok: true,
|
||||
json: async () => ({ healthy: true }),
|
||||
}));
|
||||
const runtime = createRuntime({
|
||||
env: {
|
||||
ENV_CONFIGURED_OPENCODE_PORT: 45678,
|
||||
ENV_CONFIGURED_OPENCODE_HOST: null,
|
||||
ENV_EFFECTIVE_PORT: 45678,
|
||||
ENV_CONFIGURED_OPENCODE_HOSTNAME: '127.0.0.1',
|
||||
ENV_SKIP_OPENCODE_START: true,
|
||||
},
|
||||
reapManagedOrphanedProcesses: vi.fn(async () => ({ reaped: 0 })),
|
||||
});
|
||||
|
||||
await runtime.bootstrapOpenCodeAtStartup();
|
||||
|
||||
expect(recordStartupPerformanceMock).toHaveBeenCalledWith('opencode.bootstrap.ready', {
|
||||
totalDurationMs: expect.any(Number),
|
||||
outcome: 'ready',
|
||||
});
|
||||
expect(recordStartupPerformanceMock).not.toHaveBeenCalledWith(
|
||||
'opencode.bootstrap.error',
|
||||
expect.anything(),
|
||||
);
|
||||
const terminalEvents = recordStartupPerformanceMock.mock.calls.filter(([phase]) => (
|
||||
phase === 'opencode.bootstrap.ready' || phase === 'opencode.bootstrap.error'
|
||||
));
|
||||
expect(terminalEvents).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('warms recently used directories after a successful bootstrap', async () => {
|
||||
const fetchMock = vi.fn(async () => ({
|
||||
ok: true,
|
||||
json: async () => ({ healthy: true }),
|
||||
}));
|
||||
globalThis.fetch = fetchMock;
|
||||
const runtime = createRuntime({
|
||||
env: {
|
||||
ENV_CONFIGURED_OPENCODE_PORT: 45678,
|
||||
ENV_CONFIGURED_OPENCODE_HOST: null,
|
||||
ENV_EFFECTIVE_PORT: 45678,
|
||||
ENV_CONFIGURED_OPENCODE_HOSTNAME: '127.0.0.1',
|
||||
ENV_SKIP_OPENCODE_START: true,
|
||||
},
|
||||
reapManagedOrphanedProcesses: vi.fn(async () => ({ reaped: 0 })),
|
||||
getWarmupDirectories: vi.fn(async () => ['/tmp/worktree-a', '/tmp/project-b']),
|
||||
});
|
||||
|
||||
await runtime.bootstrapOpenCodeAtStartup();
|
||||
await new Promise((resolve) => setTimeout(resolve, 0));
|
||||
|
||||
const warmupUrls = fetchMock.mock.calls
|
||||
.map(([url]) => String(url))
|
||||
.filter((url) => url.includes('/session/status'));
|
||||
expect(warmupUrls).toEqual([
|
||||
'http://127.0.0.1:45678/session/status?directory=%2Ftmp%2Fworktree-a',
|
||||
'http://127.0.0.1:45678/session/status?directory=%2Ftmp%2Fproject-b',
|
||||
]);
|
||||
});
|
||||
|
||||
it('records an authoritative error terminal event when bootstrap fails', async () => {
|
||||
const runtime = createRuntime({
|
||||
syncFromHmrState: vi.fn(() => {
|
||||
throw new Error('bootstrap failed');
|
||||
}),
|
||||
reapManagedOrphanedProcesses: vi.fn(async () => ({ reaped: 0 })),
|
||||
});
|
||||
|
||||
await runtime.bootstrapOpenCodeAtStartup();
|
||||
|
||||
expect(recordStartupPerformanceMock).toHaveBeenCalledWith('opencode.bootstrap.error', {
|
||||
totalDurationMs: expect.any(Number),
|
||||
outcome: 'error',
|
||||
});
|
||||
expect(recordStartupPerformanceMock).not.toHaveBeenCalledWith(
|
||||
'opencode.bootstrap.ready',
|
||||
expect.anything(),
|
||||
);
|
||||
const terminalEvents = recordStartupPerformanceMock.mock.calls.filter(([phase]) => (
|
||||
phase === 'opencode.bootstrap.ready' || phase === 'opencode.bootstrap.error'
|
||||
));
|
||||
expect(terminalEvents).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('does not count rapid transport-triggered checks as independent health failures', async () => {
|
||||
const close = vi.fn(async () => {});
|
||||
const warn = vi.spyOn(console, 'warn').mockImplementation(() => {});
|
||||
|
||||
Reference in New Issue
Block a user