codeburn/app/electron/main.ts

678 lines
30 KiB
TypeScript

import { app, BrowserWindow, dialog, ipcMain, Menu, nativeTheme, shell, type MenuItemConstructorOptions } from 'electron'
import path from 'node:path'
import { CliError, killAll, resolveCodeburnPath, spawnCli, spawnCliAction, type ActionResult, type SpawnPriority } from './cli'
import { getQuota, sanitizeError } from './quota'
import { Telemetry } from './telemetry'
import { createUpdateChecker, type UpdateChecker, type UpdateStatus } from './updates'
// Initialized in bootstrap() once Electron paths exist; stays null under tests.
let telemetryInstance: Telemetry | null = null
// The once-per-launch + 24h update-availability checker. Null under tests.
let updateChecker: UpdateChecker | null = null
/** The slice of Telemetry the bridge handlers use — injectable for tests. */
export type TelemetryBridge = Pick<Telemetry, 'status' | 'setEnabled' | 'completeOnboarding' | 'track'>
type QuitTelemetry = Pick<Telemetry, 'trackClose' | 'flush'>
type BeforeQuitEvent = { preventDefault: () => void }
type BeforeQuitDeps = {
getTelemetry: () => QuitTelemetry | null
killAll: () => void
quit: () => void
timeoutMs?: number
}
const QUIT_FLUSH_TIMEOUT_MS = 1500
/** Intercept one quit pass, then allow the re-entrant pass after a bounded flush. */
export function createBeforeQuitHandler(deps: BeforeQuitDeps): (event: BeforeQuitEvent) => void {
let flushStarted = false
let allowQuit = false
let closeTracked = false
return event => {
if (allowQuit) return
try { event.preventDefault() } catch { /* keep the quit path moving */ }
if (flushStarted) return
flushStarted = true
void (async () => {
let timer: ReturnType<typeof setTimeout> | undefined
try {
try { deps.killAll() } catch { /* child cleanup must not wedge quit */ }
let telemetry: QuitTelemetry | null = null
try { telemetry = deps.getTelemetry() } catch { /* telemetry lookup is best-effort */ }
let flush: Promise<unknown> = Promise.resolve(false)
if (telemetry) {
if (!closeTracked) {
closeTracked = true
try { telemetry.trackClose() } catch { /* flush the existing queue anyway */ }
}
try { flush = Promise.resolve(telemetry.flush()) } catch { /* use the resolved fallback */ }
}
const timeout = new Promise<void>(resolve => {
timer = setTimeout(resolve, deps.timeoutMs ?? QUIT_FLUSH_TIMEOUT_MS)
})
await Promise.race([flush.catch(() => false), timeout])
} finally {
if (timer !== undefined) clearTimeout(timer)
allowQuit = true
try { deps.quit() } catch { /* a throwing quit call must not reset the guard */ }
}
})()
}
}
// Result envelope: handlers never throw across IPC so the structured error
// `kind` survives contextBridge serialization. preload.ts unwraps it.
export type Envelope<T = unknown> = { ok: true; value: T } | { ok: false; error: { kind: string; message: string } }
// The first overview fetch asks the CLI for a range-limited fast start. On a
// cold install it returns accurate data for the visible range, marked
// `indexing`, then we expand the durable cache in progressive background stages.
// Warm caches ignore the fast-start hint and take the normal path. Keep a long
// timeout so unusually large individual stages can finish instead of being
// killed and restarted.
const WARMUP_TIMEOUT_MS = 10 * 60_000
// Wire marker for CLI scan-progress lines (src/parser.ts: PROGRESS_LINE_PREFIX).
const PROGRESS_LINE_PREFIX = 'CODEBURN_PROGRESS '
// IPC channel carrying cold-start scan-progress events to the splash.
export const PROGRESS_CHANNEL = 'codeburn:progress'
// IPC channel pushing update-availability status to open windows (launch + 24h).
export const UPDATE_CHANNEL = 'codeburn:update'
/** Line-buffer a spawn's stderr and forward each parsed scan-progress event. */
export function makeProgressReader(emit: (event: unknown) => void): (chunk: string) => void {
let buffer = ''
return chunk => {
buffer += chunk
let nl = buffer.indexOf('\n')
while (nl >= 0) {
const line = buffer.slice(0, nl)
buffer = buffer.slice(nl + 1)
if (line.startsWith(PROGRESS_LINE_PREFIX)) {
try { emit(JSON.parse(line.slice(PROGRESS_LINE_PREFIX.length))) } catch { /* ignore malformed line */ }
}
nl = buffer.indexOf('\n')
}
}
}
function broadcastProgress(event: unknown): void {
for (const win of BrowserWindow.getAllWindows()) {
if (!win.isDestroyed()) win.webContents.send(PROGRESS_CHANNEL, event)
}
}
function broadcastUpdateStatus(status: UpdateStatus): void {
for (const win of BrowserWindow.getAllWindows()) {
if (!win.isDestroyed()) win.webContents.send(UPDATE_CHANNEL, status)
}
}
const NO_UPDATE_STATUS: UpdateStatus = { currentVersion: '', latestVersion: null, updateAvailable: false, tag: null }
function providerArgs(provider: string | undefined): string[] {
return provider && provider !== 'all' ? ['--provider', provider] : []
}
type DateRange = { from: string; to: string }
function rangeArgs(range: DateRange | undefined): string[] {
return range ? ['--from', range.from, '--to', range.to] : []
}
function localDateKey(date: Date): string {
return `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`
}
function trailingRange(days: number): DateRange {
const end = new Date()
end.setHours(12, 0, 0, 0)
const start = new Date(end)
start.setDate(start.getDate() - Math.max(0, days - 1))
return { from: localDateKey(start), to: localDateKey(end) }
}
type HydrationStage = {
id: string
label: string
period: string
range?: DateRange
unlock?: string
final?: boolean
}
/** Small-to-large cold-cache expansion. The first two hidden day stages make
* the later 7-day scan incremental; only periods represented by visible tabs
* emit `period-ready` and become interactive in the renderer. */
export function progressiveHydrationStages(): HydrationStage[] {
return [
{ id: 'yesterday', label: 'Today + yesterday', period: 'today', range: trailingRange(2) },
{ id: 'day-before', label: 'Last 3 days', period: 'today', range: trailingRange(3) },
{ id: 'week', label: 'Last 7 days', period: 'week', unlock: 'week' },
{ id: '14days', label: 'Last 14 days', period: 'today', range: trailingRange(14) },
{ id: '30days', label: 'Last 30 days', period: '30days', unlock: '30days' },
{ id: 'month', label: 'This month', period: 'month', unlock: 'month' },
{ id: 'all', label: 'Last 6 months', period: 'all', unlock: 'all' },
{ id: 'lifetime', label: 'Lifetime', period: 'lifetime', unlock: 'lifetime', final: true },
]
}
function configSourceArgs(source: string | null): string[] {
return source ? ['--claude-config-source', source] : []
}
// Renderer-supplied strings become argv, so reject anything that could smuggle a
// flag or shell metacharacter before it reaches the CLI. Thrown from the argv
// builders, these surface through the same error envelope as any CliError.
const PERIODS = new Set(['today', 'week', '30days', 'month', 'all', 'lifetime'])
function vPeriod(period: string): string {
if (!PERIODS.has(period)) throw new CliError('bad-args', 'invalid period')
return period
}
function vProvider(provider: string): string {
if (!/^[a-z0-9-]+$/.test(provider)) throw new CliError('bad-args', 'invalid provider')
return provider
}
function vRange(range: DateRange | undefined): DateRange | undefined {
if (range && (!/^\d{4}-\d{2}-\d{2}$/.test(range.from) || !/^\d{4}-\d{2}-\d{2}$/.test(range.to))) {
throw new CliError('bad-args', 'invalid date range')
}
return range
}
function vCurrency(code: string): string {
if (!/^[A-Z]{3}$/.test(code)) throw new CliError('bad-args', 'invalid currency code')
return code
}
/** model/alias/device/plan tokens: must not be read as a CLI flag. */
function vToken(value: string): string {
if (value.startsWith('-')) throw new CliError('bad-args', 'argument must not start with "-"')
return value
}
// Claude config source ids are `<kind>:<hex>` (src/providers/claude.ts) — the
// colon is part of the real value, so the token class allows it while anchoring
// the first char to alphanumeric so a leading "-" can never smuggle a flag.
function vConfigSource(source: string | null | undefined): string | null {
if (source == null) return null
if (!/^[A-Za-z0-9][A-Za-z0-9:_-]*$/.test(source)) throw new CliError('bad-args', 'invalid claude config source')
return source
}
function vOutPath(outPath: string): string {
if (outPath.startsWith('-') || !path.isAbsolute(outPath)) throw new CliError('bad-args', 'export path must be absolute')
return outPath
}
// Price-override rates are USD per 1M tokens: every provided rate must be a
// finite, strictly positive number before it becomes a CLI value.
type PriceRates = { input?: number; output?: number; cacheRead?: number; cacheCreation?: number }
function rateArg(flag: string, value: number | undefined): string[] {
if (value === undefined) return []
if (typeof value !== 'number' || !Number.isFinite(value) || value <= 0) throw new CliError('bad-args', 'rate must be a positive number')
return [flag, String(value)]
}
function priceOverrideArgs(model: string, rates: PriceRates | undefined): string[] {
const r = rates ?? {}
return [
'price-override', vToken(model),
...rateArg('--input', r.input),
...rateArg('--output', r.output),
...rateArg('--cache-read', r.cacheRead),
...rateArg('--cache-creation', r.cacheCreation),
]
}
function toEnvelopeError(err: unknown): { kind: string; message: string } {
if (err instanceof CliError) return { kind: err.kind, message: sanitizeError(err.message) }
return { kind: 'nonzero', message: sanitizeError(err instanceof Error ? err.message : String(err)) }
}
/**
* Props for a `cli_error` telemetry event. Deliberately carries only
* non-sensitive enums so the event is diagnosable without a repro yet leaks
* nothing: `cmd` is the CLI subcommand (argv[0], a fixed literal like 'status'/
* 'sessions' — never the full args, which can hold paths), and `detail` is the
* not-found resolution/spawn stage. The error's `message` (which may contain a
* path or stderr) is never read here — only `kind` and the stage enum are.
*/
function cliErrorProps(err: unknown, cmd: string | undefined): Record<string, unknown> {
const props: Record<string, unknown> = {}
if (cmd) props.cmd = cmd
if (err instanceof CliError) {
props.kind = err.kind
if (err.kind === 'not-found' && err.detail) props.detail = err.detail
} else {
props.kind = 'nonzero'
}
return props
}
type Deps = {
spawnCli: (args: string[], opts?: { timeoutMs?: number; onStderr?: (chunk: string) => void; extraEnv?: NodeJS.ProcessEnv; priority?: SpawnPriority }) => Promise<unknown>
spawnCliAction: (args: string[], opts?: { timeoutMs?: number }) => Promise<ActionResult>
resolveCodeburnPath: () => string | null
getQuota: typeof getQuota
/** Forward cold-start scan-progress events to the renderer splash. */
emitProgress?: (event: unknown) => void
/** Consent-gated anonymous telemetry; absent under tests unless injected. */
telemetry?: TelemetryBridge | null
/** Cached update-availability status; absent under tests unless injected. */
getUpdateStatus?: () => Promise<UpdateStatus>
}
type Handler = (...args: any[]) => Promise<Envelope>
/**
* Maps every CodeburnBridge channel to its `codeburn` argv (plain args, no
* shell) and returns a result envelope. Pure + injectable so the wiring is
* unit-testable without launching Electron.
*/
export function createBridgeHandlers(deps: Deps = { spawnCli, spawnCliAction, resolveCodeburnPath, getQuota, emitProgress: broadcastProgress, telemetry: telemetryInstance, getUpdateStatus: () => updateChecker ? updateChecker.getStatus() : Promise.resolve(NO_UPDATE_STATUS) }): Record<string, Handler> {
const emitProgress = deps.emitProgress ?? (() => {})
const telemetry = deps.telemetry ?? null
// Flips true after the first overview fetch succeeds. Until then, every
// overview fetch runs cold (long timeout + progress streaming); the shared
// spawnCli coalescing means concurrent same-arg re-polls join one child.
let overviewWarmed = false
// While a cold install expands from Today to Lifetime, ordinary overview
// polls must stay range-limited too. Otherwise the first 30-second poll would
// launch the old monolithic full-history scan alongside the staged worker.
let historyHydrating = false
let historyHydrationJob: Promise<void> | null = null
// cold_start is a once-per-launch metric. Because coalesced re-polls each
// re-enter the cold branch (and overviewWarmed only flips on success, so it
// never guards a still-failing warmup), emitting inline would record one row
// per poll — each with a launch-relative, cumulative elapsed time. Latch the
// emit and anchor the duration to the FIRST cold attempt instead.
let coldStartEmitted = false
let coldStartBegan: number | null = null
const emitColdStart = (timedOut: boolean): void => {
if (coldStartEmitted) return
coldStartEmitted = true
telemetry?.track('cold_start', { ms: Date.now() - (coldStartBegan ?? Date.now()), timedOut })
}
const run = (build: (...args: any[]) => string[], backgroundArg?: number): Handler => async (...args: any[]) => {
let cmd: string | undefined
try {
const argv = build(...args)
cmd = argv[0]
const priority: SpawnPriority | undefined = backgroundArg !== undefined && args[backgroundArg] === true
? 'background'
: undefined
return { ok: true, value: await deps.spawnCli(argv, priority ? { priority } : undefined) }
} catch (err) {
const error = toEnvelopeError(err)
telemetry?.track('cli_error', cliErrorProps(err, cmd))
return { ok: false, error }
}
}
// The desktop never renders the granular timeline, so it always passes
// --no-timeline (skips buildGranularHistory on every poll). The Swift menubar
// omits the flag and keeps the timeline unchanged.
const buildOverviewArgs = (period: string, provider: string, range?: DateRange, configSource?: string | null): string[] => [
'status', '--format', 'menubar-json', '--period', vPeriod(period), '--no-timeline', '--no-optimize',
...providerArgs(vProvider(provider)), ...rangeArgs(vRange(range)), ...configSourceArgs(vConfigSource(configSource)),
]
// `background` (renderer prefetch only) drops this fetch to background priority
// so it yields the CLI's run slots to any interactive poll or click. Optional
// and defaulting to interactive, so an older preload that omits it is unchanged.
const getOverview: Handler = async (period: string, provider: string, range?: DateRange, configSource?: string | null, background?: boolean) => {
coldStartBegan ??= Date.now()
const priority: SpawnPriority | undefined = background ? 'background' : undefined
try {
const args = buildOverviewArgs(period, provider, range, configSource)
if (overviewWarmed) {
const warmOpts = historyHydrating
? { extraEnv: { CODEBURN_FAST_START: '1' }, ...(priority ? { priority } : {}) }
: (priority ? { priority } : undefined)
return { ok: true, value: await deps.spawnCli(args, warmOpts) }
}
const value = await deps.spawnCli(args, {
timeoutMs: WARMUP_TIMEOUT_MS,
extraEnv: { CODEBURN_PROGRESS: '1', CODEBURN_FAST_START: '1' },
onStderr: makeProgressReader(emitProgress),
...(priority ? { priority } : {}),
})
overviewWarmed = true
emitProgress({ kind: 'done' })
emitColdStart(false)
// A cold fast-start deliberately leaves the session cache incomplete.
// Grow it from small ranges to large ones so Today remains responsive and
// each visible period can unlock as soon as its own stage is accurate.
if ((value as { indexing?: boolean } | null)?.indexing === true) {
emitProgress({ kind: 'period-ready', period })
if (!historyHydrationJob) {
historyHydrating = true
historyHydrationJob = (async () => {
let lifetimeReady = false
try {
for (const stage of progressiveHydrationStages()) {
emitProgress({ kind: 'history-stage', id: stage.id, label: stage.label, state: 'start' })
const stageArgs = buildOverviewArgs(stage.period, 'all', stage.range)
try {
await deps.spawnCli(stageArgs, {
timeoutMs: WARMUP_TIMEOUT_MS,
priority: 'background',
// Every intermediate stage must leave the cache incomplete;
// Lifetime is the sole full-hydration/finalization pass.
...(stage.final ? {} : { extraEnv: { CODEBURN_FAST_START: '1' } }),
})
emitProgress({ kind: 'history-stage', id: stage.id, label: stage.label, state: 'ready' })
if (stage.unlock) emitProgress({ kind: 'period-ready', period: stage.unlock })
if (stage.final) lifetimeReady = true
} catch (err) {
emitProgress({ kind: 'history-stage', id: stage.id, label: stage.label, state: 'error' })
telemetry?.track('cli_error', cliErrorProps(err, 'status'))
}
}
} finally {
historyHydrating = false
historyHydrationJob = null
if (lifetimeReady) emitProgress({ kind: 'history-ready' })
}
})()
}
}
return { ok: true, value }
} catch (err) {
const error = toEnvelopeError(err)
if (!overviewWarmed) emitColdStart(error.kind === 'timeout')
telemetry?.track('cli_error', cliErrorProps(err, 'status'))
return { ok: false, error }
}
}
const runAction = (build: (...args: any[]) => string[]): Handler => async (...args: any[]) => {
try {
const result = await deps.spawnCliAction(build(...args))
return { ok: true, value: { ...result, stderr: sanitizeError(result.stderr) } }
} catch (err) {
return { ok: false, error: toEnvelopeError(err) }
}
}
return {
'codeburn:getQuota': async (force?: boolean) => {
try { return { ok: true, value: await deps.getQuota({ force: Boolean(force) }) } }
catch (error) { return { ok: false, error: { kind: 'nonzero', message: sanitizeError(error) } } }
},
'codeburn:getOverview': getOverview,
'codeburn:getPlans': run((period: string) => ['status', '--format', 'json', '--period', vPeriod(period)]),
'codeburn:getActReport': run(() => ['act', 'report', '--json']),
'codeburn:getModels': run((period: string, provider: string, byTask: boolean, range?: DateRange) => [
'models', '--format', 'json', '--period', vPeriod(period), ...providerArgs(vProvider(provider)), ...(byTask ? ['--by-task'] : []), ...rangeArgs(vRange(range)),
], 4),
'codeburn:getSessions': run((period: string, provider: string, range?: DateRange) => [
'sessions', '--format', 'json', '--period', vPeriod(period), ...providerArgs(vProvider(provider)), ...rangeArgs(vRange(range)),
], 3),
'codeburn:getCompareModels': run((period: string, provider: string) => [
'compare', '--format', 'json', '--period', vPeriod(period), '--summary-only', ...providerArgs(vProvider(provider)),
], 2),
'codeburn:getCompare': run((period: string, provider: string, modelA: string, modelB: string) => [
'compare', '--format', 'json', '--period', vPeriod(period), ...providerArgs(vProvider(provider)), '--model-a', vToken(modelA), '--model-b', vToken(modelB),
]),
'codeburn:getYield': run((period: string, provider: string, range?: DateRange) => [
'yield', '--format', 'json', '--period', vPeriod(period), ...providerArgs(vProvider(provider)), ...rangeArgs(vRange(range)),
]),
'codeburn:getSpendFlow': run((period: string, provider: string, range?: DateRange) => [
'spend', '--format', 'flow-json', '--period', vPeriod(period), ...providerArgs(vProvider(provider)), ...rangeArgs(vRange(range)),
], 3),
'codeburn:getOptimizeReport': run((period: string, provider: string, range?: DateRange) => [
'optimize', '--format', 'json', '--period', vPeriod(period), ...providerArgs(vProvider(provider)), ...rangeArgs(vRange(range)),
], 3),
'codeburn:getDevices': run((period: string) => ['devices', '--format', 'json', '--period', vPeriod(period)]),
'codeburn:getDevicesScan': run(() => ['devices', 'scan', '--format', 'json']),
'codeburn:getShareStatus': run(() => ['share', 'status', '--format', 'json']),
'codeburn:getIdentity': run(() => ['identity', '--format', 'json']),
'codeburn:getAliases': run(() => ['model-alias', '--list', '--format', 'json']),
'codeburn:getProxyPaths': run(() => ['proxy-path', '--list', '--format', 'json']),
'codeburn:getAudit': run((period: string, provider: string, range?: DateRange) => [
'audit', '--format', 'json', '--period', vPeriod(period), ...providerArgs(vProvider(provider)), ...rangeArgs(vRange(range)),
]),
'codeburn:getPriceOverrides': run(() => ['price-override', '--list', '--format', 'json']),
'codeburn:setCurrency': runAction((code: string) => ['currency', vCurrency(code)]),
'codeburn:resetCurrency': runAction(() => ['currency', '--reset']),
'codeburn:addAlias': runAction((from: string, to: string) => ['model-alias', vToken(from), vToken(to)]),
'codeburn:removeAlias': runAction((from: string) => ['model-alias', '--remove', vToken(from)]),
'codeburn:setPriceOverride': runAction((model: string, rates: PriceRates) => priceOverrideArgs(model, rates)),
'codeburn:removePriceOverride': runAction((model: string) => ['price-override', '--remove', vToken(model)]),
'codeburn:removeDevice': runAction((name: string) => ['devices', 'rm', vToken(name)]),
'codeburn:setPlan': runAction((id: string, provider: string) => ['plan', 'set', vToken(id), '--provider', vProvider(provider)]),
'codeburn:resetPlan': runAction((provider: string) => ['plan', 'reset', '--provider', vProvider(provider)]),
'codeburn:exportData': runAction((format: string, provider: string, outPath: string) => [
'export', '-f', vToken(format), '-o', vOutPath(outPath), '--provider', vProvider(provider),
]),
'codeburn:cliStatus': async () => {
const p = deps.resolveCodeburnPath()
return { ok: true, value: { found: p !== null, path: p } }
},
// Telemetry consent + events. Value is null when telemetry is unavailable
// (tests, or init failure) — the renderer treats null as "no onboarding".
'codeburn:telemetryStatus': async () => ({ ok: true, value: telemetry ? telemetry.status() : null }),
'codeburn:telemetrySetEnabled': async (enabled?: boolean) => ({ ok: true, value: telemetry ? telemetry.setEnabled(Boolean(enabled)) : null }),
'codeburn:telemetryOnboarded': async (enabled?: boolean) => ({ ok: true, value: telemetry ? telemetry.completeOnboarding(Boolean(enabled)) : null }),
'codeburn:telemetryTrack': async (name?: string, props?: unknown) => {
telemetry?.track(String(name ?? ''), props)
return { ok: true, value: true }
},
// One-shot read of the cached update-availability status. The check itself
// runs in the background (launch + 24h); this returns whatever is known.
'codeburn:getUpdateStatus': async () => ({ ok: true, value: deps.getUpdateStatus ? await deps.getUpdateStatus() : NO_UPDATE_STATUS }),
}
}
function registerHandlers(): void {
const handlers = createBridgeHandlers()
for (const [channel, handler] of Object.entries(handlers)) {
ipcMain.handle(channel, (_event, ...args) => handler(...args))
}
ipcMain.handle('codeburn:chooseDirectory', async () => {
const res = await dialog.showOpenDialog({ properties: ['openDirectory', 'createDirectory'] })
return { ok: true, value: res.canceled ? null : (res.filePaths[0] ?? null) }
})
ipcMain.handle('open-external', (_event, url: string) => {
try {
const { protocol } = new URL(url)
if (protocol === 'https:' || protocol === 'http:') return shell.openExternal(url)
} catch { /* malformed URL — refuse to open */ }
return
})
}
export function createApplicationMenuTemplate(isDev = Boolean(process.env.VITE_DEV_SERVER_URL)): MenuItemConstructorOptions[] {
const template: MenuItemConstructorOptions[] = []
if (process.platform === 'darwin') {
template.push({
label: app.name,
submenu: [
{ role: 'about' },
{ type: 'separator' },
{ role: 'services' },
{ type: 'separator' },
{ role: 'hide' },
{ role: 'hideOthers' },
{ role: 'unhide' },
{ type: 'separator' },
{ role: 'quit' },
],
})
} else {
template.push({
label: 'File',
submenu: [{ role: 'quit' }],
})
}
template.push(
{
label: 'Edit',
submenu: [
{ role: 'undo' },
{ role: 'redo' },
{ type: 'separator' },
{ role: 'cut' },
{ role: 'copy' },
{ role: 'paste' },
{ role: 'pasteAndMatchStyle' },
{ role: 'delete' },
{ role: 'selectAll' },
],
},
{
label: 'View',
submenu: [
{ role: 'resetZoom' },
{ role: 'zoomIn' },
{ role: 'zoomOut' },
{ type: 'separator' },
{ role: 'togglefullscreen' },
...(isDev ? [{ type: 'separator' as const }, { role: 'toggleDevTools' as const }] : []),
],
},
{
label: 'Window',
submenu: [
{ role: 'minimize' },
{ role: 'close' },
...(process.platform === 'darwin'
? [
{ type: 'separator' as const },
{ role: 'front' as const },
{ type: 'separator' as const },
{ role: 'window' as const },
]
: []),
],
},
)
return template
}
function installApplicationMenu(): void {
Menu.setApplicationMenu(Menu.buildFromTemplate(createApplicationMenuTemplate()))
}
function createWindow(): BrowserWindow {
const win = new BrowserWindow({
width: 1200,
height: 820,
minWidth: 900,
minHeight: 600,
backgroundColor: nativeTheme.shouldUseDarkColors ? '#0e1013' : '#f5f6f8',
// macOS: integrated title bar (traffic lights float over the sidebar), like
// Linear/Hermes. Windows/Linux keep their native frame + window controls.
titleBarStyle: process.platform === 'darwin' ? 'hiddenInset' : 'default',
show: false,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
contextIsolation: true,
nodeIntegration: false,
sandbox: true,
// Chromium's default (kept explicit): when the window is minimized or fully
// occluded the renderer's document.visibilityState flips to 'hidden' and a
// visibilitychange fires. usePolled and the flame animation gate on that to
// stop background CLI polls and compositor wakeups while hidden. A merely
// unfocused-but-visible window stays 'visible' and keeps polling.
backgroundThrottling: true,
},
})
win.once('ready-to-show', () => win.show())
// This window only ever renders the bundled renderer; block in-page navigation
// and popups so a hijacked link can't turn it into a browser.
win.webContents.on('will-navigate', event => event.preventDefault())
win.webContents.setWindowOpenHandler(() => ({ action: 'deny' }))
win.webContents.on('did-fail-load', (_event, errorCode, errorDescription) => {
console.error(`Renderer failed to load (${errorCode}): ${errorDescription}`)
})
const devUrl = process.env.VITE_DEV_SERVER_URL
if (devUrl) {
win.loadURL(devUrl).catch(err => console.error('Failed to load dev server URL:', err))
} else {
win.loadFile(path.join(__dirname, '..', 'renderer', 'index.html')).catch(err => console.error('Failed to load renderer:', err))
}
return win
}
function bootstrap(): void {
process.on('unhandledRejection', reason => {
console.error('Unhandled promise rejection in main process:', reason)
})
// Packaged builds ship their own version-matched CLI under resources/cli (the
// afterPack hook copies it in). Point the resolver at the launch shim before
// any handler spawns; cli.ts runs it with Electron-as-node. The shim, not
// cli.js, is the entry — it corrects argv for commander under Electron. Unset
// in dev, where the repo build is used instead.
if (app.isPackaged) {
process.env.CODEBURN_BUNDLED_CLI = path.join(process.resourcesPath, 'cli', 'dist', 'launch.js')
}
// A second launch focuses the running window instead of opening a rival one.
if (!app.requestSingleInstanceLock()) {
app.quit()
return
}
app.on('second-instance', () => {
const [win] = BrowserWindow.getAllWindows()
if (!win) return
if (win.isMinimized()) win.restore()
win.focus()
})
app.on('before-quit', createBeforeQuitHandler({
getTelemetry: () => telemetryInstance,
killAll,
quit: () => app.quit(),
}))
void app.whenReady().then(() => {
// Consent-gated anonymous telemetry (desktop only). Nothing transmits until
// the onboarding consent screen is completed and the toggle is on; EU/EEA/
// UK/CH installs default the toggle off. Dev builds never send.
try {
telemetryInstance = new Telemetry({
stateDir: app.getPath('userData'),
country: app.getLocaleCountryCode() || null,
isPackaged: app.isPackaged,
appVersion: app.getVersion(),
})
// completeOnboarding tracks the first app_open itself; only already-
// onboarded installs record subsequent opens here.
if (telemetryInstance.status().onboarded) telemetryInstance.track('app_open', {})
setInterval(() => { void telemetryInstance?.flush() }, 5 * 60_000)
} catch (err) {
console.error('telemetry init failed (continuing without):', err)
}
registerHandlers()
installApplicationMenu()
createWindow()
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
// Update availability: check once at launch, then every 24h, pushing each
// result to any open window. Never downloads/installs (unsigned builds);
// errors are swallowed inside the checker as a silent no-op.
updateChecker = createUpdateChecker({ currentVersion: app.getVersion() })
const runUpdateCheck = () => { void updateChecker?.check().then(broadcastUpdateStatus) }
runUpdateCheck()
setInterval(runUpdateCheck, 24 * 60 * 60 * 1000)
})
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit()
})
}
if (!process.env.VITEST) bootstrap()