First increment of the observability epic (T-425), the productive pivot after the ConPTY freeze refused to reproduce on CI: if we can't reproduce it, make the next occurrence leave evidence. - FileLogSink (lib/kernel/src/file_log_sink.dart): synchronous, crash-survivable LogSink. Appends each record as one JSON line to a size-rotated file; fsyncs warn/error + risky-source (pty/ffi/conpty/watchdog) records immediately so the last breadcrumb is on disk before a hard death, batches the rest on a timer. Never throws. Flutter-free → unit-tested under dart test against a temp dir. - logDirectory() (paths.dart): persistent per-platform log dir (LOCALAPPDATA / ~/Library/Logs / $XDG_STATE_HOME) — durable across reboot, unlike the ephemeral socketDirectory. - resolveLogLevel() (log.dart): the requested dev/prod toggle. CLIDE_LOG dart-define → CLIDE_LOG env → app.log.level setting → warn(release)/info(debug). Lenient parse; an invalid source falls through. - Boot wiring (facade.boot + main.dart): FileLogSink leads the sink chain (so a crash records before the volatile stderr/ring sinks) and the resolved level sets Logger.minLevel. Tests: FileLogSink (JSON shape, error/stack, rotation cap, append-across-restart, timer-cancel), resolveLogLevel precedence + fall-through, logDirectory per-OS. Coverage gate 95.11%. Follow-ups under T-425: live toggle CLI/command/chip (T-433), FFI breadcrumbs (T-434), watchdog isolate (T-435), CI artifact wiring (T-436). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
524 lines
23 KiB
Dart
524 lines
23 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:clide/app.dart';
|
|
import 'package:clide/test_app.dart';
|
|
import 'package:clide/builtin/canvas/canvas.dart';
|
|
import 'package:clide/builtin/claude/claude.dart';
|
|
import 'package:clide/builtin/claude_control/claude_control.dart';
|
|
import 'package:clide/builtin/cli_install/cli_install.dart';
|
|
import 'package:clide/builtin/decisions/decisions.dart';
|
|
import 'package:clide/builtin/deeplink/deeplink.dart';
|
|
import 'package:clide/builtin/default_layout/default_layout.dart';
|
|
import 'package:clide/builtin/diff/diff.dart';
|
|
import 'package:clide/builtin/editor/editor.dart';
|
|
import 'package:clide/builtin/extensions_ui/extensions_ui.dart';
|
|
import 'package:clide/builtin/files/files.dart';
|
|
import 'package:clide/builtin/git/git.dart';
|
|
import 'package:clide/builtin/search/search.dart';
|
|
import 'package:clide/builtin/grammars_core/grammars_core.dart';
|
|
import 'package:clide/builtin/graph/graph.dart';
|
|
import 'package:clide/builtin/menubar/menubar.dart';
|
|
import 'package:clide/builtin/output/output.dart';
|
|
import 'package:clide/builtin/keybindings_ui/keybindings_ui.dart';
|
|
import 'package:clide/builtin/markdown/markdown.dart';
|
|
import 'package:clide/builtin/pql/pql.dart';
|
|
import 'package:clide/builtin/problems/problems.dart';
|
|
import 'package:clide/builtin/settings_ui/settings_ui.dart';
|
|
import 'package:clide/builtin/terminal/terminal.dart';
|
|
import 'package:clide/builtin/theme_picker/theme_picker.dart';
|
|
import 'package:clide/builtin/view/view.dart';
|
|
import 'package:clide/builtin/vim/vim.dart';
|
|
import 'package:clide/builtin/tickets/tickets.dart';
|
|
import 'package:clide/builtin/todos/todos.dart';
|
|
import 'package:clide/builtin/welcome/welcome.dart';
|
|
import 'dart:io' show Directory, File, Platform;
|
|
|
|
import 'package:clide/kernel/kernel.dart';
|
|
import 'package:clide/src/daemon/dispatcher.dart';
|
|
import 'package:clide/src/daemon/editor_commands.dart';
|
|
import 'package:clide/src/daemon/files_commands.dart';
|
|
import 'package:clide/src/daemon/git_commands.dart';
|
|
import 'package:clide/src/daemon/image_commands.dart';
|
|
import 'package:clide/src/daemon/pane_commands.dart';
|
|
import 'package:clide/src/daemon/status_command.dart';
|
|
import 'package:clide/src/daemon/ui_command.dart';
|
|
import 'package:clide/src/daemon/panel_commands.dart';
|
|
import 'package:clide/src/daemon/panel_resizer_kernel.dart';
|
|
import 'package:clide/src/daemon/pql_commands.dart';
|
|
import 'package:clide/src/daemon/search_commands.dart';
|
|
import 'package:clide/src/editor/registry.dart' show EditorRegistry;
|
|
import 'package:clide/src/git/client.dart';
|
|
import 'package:clide/src/cli/argv_dispatch.dart';
|
|
import 'package:clide/src/ipc/envelope.dart';
|
|
import 'package:clide/src/ipc/mcp_server.dart';
|
|
import 'package:clide/src/ipc/paths.dart' show workspaceSocketPath, logDirectory;
|
|
import 'package:clide/src/ipc/server.dart';
|
|
import 'package:clide/src/panes/event_sink.dart';
|
|
import 'package:clide/src/panes/registry.dart';
|
|
import 'package:clide/src/pql/client.dart';
|
|
import 'package:clide/kernel/src/syntax/tree_sitter_ffi.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/services.dart' show rootBundle;
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
Future<void> main() async {
|
|
final binding = WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
// Test mode: skip the full app, run the test harness instead.
|
|
// Gated on kDebugMode so the release tree-shaker can elide both the
|
|
// branch and the test_app import graph — production binaries don't
|
|
// ship the harness.
|
|
if (kDebugMode) {
|
|
const testMode = String.fromEnvironment('CLIDE_TESTMODE');
|
|
if (testMode.isNotEmpty) {
|
|
runApp(const ClideTestApp());
|
|
return;
|
|
}
|
|
}
|
|
|
|
binding.ensureSemantics();
|
|
|
|
TreeSitterLib.init();
|
|
|
|
final appDir = await _resolveAppDir();
|
|
final themes = await _loadBundledThemes();
|
|
|
|
// Resolve the workspace to boot the daemon at. A desktop launch starts in
|
|
// HOME (not a git repo), so atCwd would point pql/git/files at HOME — where
|
|
// pql hits a stale ~/.pql/pql.db and the sidebars error on first load. Boot
|
|
// at the last project instead so the daemon targets the real repo from the
|
|
// first request. (T-352)
|
|
Directory startupWorkRoot = resolveWorkspaceRoot(Directory.current);
|
|
// Crash-survivable logging (T-425): resolve the dev/prod verbosity once and
|
|
// attach a FileLogSink as the leading sink so a freeze leaves on-disk
|
|
// breadcrumbs. Desktop-only — the sink uses dart:io.
|
|
LogLevel bootLogLevel = kReleaseMode ? LogLevel.warn : LogLevel.info;
|
|
List<LogSink> bootLogSinks = const [];
|
|
if (!kIsWeb) {
|
|
final bootSettings = SettingsStore(appDir: appDir);
|
|
await bootSettings.load();
|
|
startupWorkRoot = resolveStartupWorkspace(
|
|
cwdRoot: startupWorkRoot,
|
|
lastProject: bootSettings.get<String>('app.lastProject'),
|
|
isGitRepo: (d) => Directory('${d.path}/.git').existsSync(),
|
|
);
|
|
bootLogLevel = resolveLogLevel(
|
|
isRelease: kReleaseMode,
|
|
dartDefine: const String.fromEnvironment('CLIDE_LOG'),
|
|
envVar: Platform.environment['CLIDE_LOG'],
|
|
settingValue: bootSettings.get<String>('app.log.level'),
|
|
);
|
|
bootLogSinks = [FileLogSink(dir: Directory(logDirectory())).call];
|
|
}
|
|
|
|
// Resolve toolchain + boot daemon inline — same as Linux.
|
|
// With proper signing (Developer ID), no sandbox or isolate needed.
|
|
final toolchain = Toolchain();
|
|
if (!kIsWeb) {
|
|
toolchain.applyResolved(resolveToolchainPaths());
|
|
}
|
|
|
|
DaemonClient? ipcClient;
|
|
DaemonBus? daemonBus;
|
|
LayoutArrangement? kernelArrangement;
|
|
PanelRegistry? kernelPanels;
|
|
// Captured after boot so `clide status` can report the read-only reader's
|
|
// viewed doc (D-81), which isn't an editor buffer (T-221).
|
|
ReaderNavRegistry? kernelReaderNav;
|
|
// The kernel MessageBus, captured post-boot so `ui.open` can drive the GUI
|
|
// readers (publish a 'selection') from the CLI — the drive-half of D-6 (T-231).
|
|
MessageBus? kernelMessages;
|
|
// The filter-state cache, captured post-boot so `ui.filter` can read a
|
|
// box's current value back — the observe-half of D-6 (T-270).
|
|
FilterStateCache? kernelFilterStates;
|
|
// IPC socket server (T-99 / T-124, per D-70/71/72). One server per
|
|
// workspace; restarted when the active project switches because the
|
|
// socket path is workspace-derived. The local DaemonClient connects
|
|
// back to it over the socket so all IPC — including from UI widgets
|
|
// in the same process — goes through the wire contract (T-127).
|
|
IpcServer? ipcServer;
|
|
// MCP server (T-130, per D-68 + D-73). Localhost HTTP+SSE, advertised
|
|
// via $HOME/.claude/ide/<pid>.lock so Claude Code's /ide command
|
|
// discovers it. Restarted alongside the unix server on project
|
|
// switch so the discovery file reports the current workspace.
|
|
McpServer? mcpServer;
|
|
final ipcLog = Logger();
|
|
|
|
// Backend swaps must run one-at-a-time — see the swapBackend wrapper
|
|
// below doSwapBackend for why. (T-352)
|
|
Future<void> swapChain = Future<void>.value();
|
|
|
|
// Teardown of the service set behind the currently-served dispatcher
|
|
// (pane PTYs, file watcher, in-flight searches, editor buffers). Swapped
|
|
// alongside the IPC server so a project switch can't leak the previous
|
|
// workspace's watchers into the new one's bus (T-367).
|
|
Future<void> Function()? activeSubsystemTeardown;
|
|
|
|
Future<void> doSwapBackend(DaemonDispatcher dispatcher, Future<void> Function() teardown, Directory workRoot) async {
|
|
if (kIsWeb) return;
|
|
// Already serving this exact workspace? Reuse the live server.
|
|
// The startup factory binds the launch CWD, then the project-open
|
|
// flow fires for (usually) that same path — tearing the server
|
|
// down and rebinding would drop every live connection (the UI's
|
|
// DaemonClient, the Claude pane's spawn gate fires right on
|
|
// ProjectOpened) for no gain, leaving panes stranded. A genuine
|
|
// project switch (different path) falls through and rebinds.
|
|
final live = ipcServer;
|
|
if (live != null && live.isRunning && live.workspaceRoot == workRoot.path) {
|
|
ipcLog.info('ipc', 'already serving ${workRoot.path}; reusing the live server');
|
|
// The freshly built dispatcher is dropped unused — its services are
|
|
// inert (watchers/PTYs only start via dispatched commands), so there
|
|
// is nothing to tear down. The live server keeps its own set.
|
|
// Idempotent — a no-op when the client is already connected here.
|
|
await ipcClient?.reconnectAt(live.socketPath);
|
|
return;
|
|
}
|
|
try {
|
|
await ipcServer?.stop();
|
|
} catch (e, st) {
|
|
ipcLog.warn('ipc', 'stop failed during swap: $e');
|
|
ipcLog.debug('ipc', '$st');
|
|
}
|
|
try {
|
|
await mcpServer?.stop();
|
|
} catch (e) {
|
|
ipcLog.warn('mcp', 'stop failed during swap: $e');
|
|
}
|
|
// The old server is down — release the previous workspace's services
|
|
// before the new set takes over (T-367). The shutdown() methods are
|
|
// idempotent, so a failed swap retried later is safe.
|
|
try {
|
|
await activeSubsystemTeardown?.call();
|
|
} catch (e, st) {
|
|
ipcLog.warn('ipc', 'subsystem teardown failed during swap: $e');
|
|
ipcLog.debug('ipc', '$st');
|
|
}
|
|
activeSubsystemTeardown = teardown;
|
|
final server = IpcServer(dispatcher: dispatcher, workspaceRoot: workRoot.path, log: ipcLog, events: daemonBus);
|
|
ipcServer = server;
|
|
try {
|
|
await server.start();
|
|
} catch (e, st) {
|
|
ipcLog.error('ipc', 'server start failed', error: e, stackTrace: st);
|
|
return;
|
|
}
|
|
final mcp = McpServer(workspaceRoot: workRoot.path, log: ipcLog, dispatcher: dispatcher);
|
|
mcpServer = mcp;
|
|
try {
|
|
await mcp.start();
|
|
} catch (e, st) {
|
|
ipcLog.warn('mcp', 'MCP server start failed (non-fatal): $e');
|
|
ipcLog.debug('mcp', '$st');
|
|
}
|
|
// Point the in-process DaemonClient at the new socket. On first
|
|
// boot (no client yet) the daemonClientFactory below kicks it
|
|
// off; on project switch we just reconnect to the new path.
|
|
final client = ipcClient;
|
|
if (client != null) {
|
|
await client.reconnectAt(server.socketPath);
|
|
}
|
|
}
|
|
|
|
// Serialize IPC-server swaps. The boot factory fires a swap to the launch
|
|
// CWD with unawaited(); the project-open flow then fires another to the
|
|
// real repo. Unserialized, the two interleave and the late-finishing boot
|
|
// swap can clobber the repo bind — reconnecting the daemon client to the
|
|
// launch-CWD (HOME) socket, so pql/git/files run against the wrong
|
|
// workspace. That surfaced as the ticket/decision sidebars failing on first
|
|
// load (stale/global pql.db) yet working after a manual refresh. Chaining
|
|
// every swap makes them apply in call order; the repo swap is issued last
|
|
// and therefore wins. (T-352)
|
|
Future<void> swapBackend(DaemonDispatcher dispatcher, Future<void> Function() teardown, Directory workRoot) {
|
|
final next = swapChain.then((_) => doSwapBackend(dispatcher, teardown, workRoot));
|
|
// A failed swap must not break the chain for the next one.
|
|
swapChain = next.catchError((Object _) {});
|
|
return next;
|
|
}
|
|
|
|
(DaemonDispatcher, Future<void> Function()) buildDispatcher(
|
|
DaemonBus events,
|
|
Toolchain tc,
|
|
Directory workRoot,
|
|
LayoutArrangement arrangement,
|
|
PanelRegistry panels,
|
|
) {
|
|
final dispatcher = DaemonDispatcher();
|
|
final eventSink = _BusEventSink(events);
|
|
final paneRegistry = PaneRegistry(events: eventSink);
|
|
// D-6 parity (T-219, D-83): make the tabs the user sees in the GUI
|
|
// visible to `pane list` by snapshotting the kernel PanelRegistry +
|
|
// LayoutArrangement at request time — no mirrored state to drift.
|
|
registerPaneCommands(dispatcher, paneRegistry, viewPanes: () => snapshotViewPanes(panels, arrangement));
|
|
// Trusted read-only roots beyond the workspace: the global Claude
|
|
// config dir (~/.claude), so the reader can open user-scope skill /
|
|
// agent / command markdown the Config tab surfaces (D-80, T-195).
|
|
// The repo-local .claude is already under workRoot.
|
|
final extraReadRoots = <Directory>[];
|
|
final claudeHome = Platform.environment['HOME'];
|
|
if (claudeHome != null) {
|
|
final globalClaude = Directory('$claudeHome/.claude');
|
|
if (globalClaude.existsSync()) extraReadRoots.add(globalClaude);
|
|
}
|
|
final filesService = FilesService(root: workRoot, events: eventSink, extraReadRoots: extraReadRoots);
|
|
registerFilesCommands(dispatcher, filesService);
|
|
// Search reuses the files service's resolved ignore set so the
|
|
// grep honours the same ignore_files: layering (D-4 / D-79).
|
|
final searchService = SearchService(root: workRoot, ignore: filesService.ignore, events: eventSink);
|
|
registerSearchCommands(dispatcher, searchService);
|
|
final editorRegistry = EditorRegistry(events: eventSink, workspaceRoot: workRoot);
|
|
registerEditorCommands(dispatcher, editorRegistry);
|
|
final gitClient = GitClient(toolchain: tc, workDir: workRoot);
|
|
registerGitCommands(dispatcher, gitClient, eventSink);
|
|
final pql = PqlClient(workDir: workRoot, toolchain: tc);
|
|
registerPqlCommands(dispatcher, pql);
|
|
registerPanelCommands(dispatcher, ArrangementPanelResizer(arrangement));
|
|
// `clide ui open <reader> <id|path>` — drive the GUI readers from the CLI
|
|
// (T-231, drive-half of D-6). Publishes a 'selection' to the kernel
|
|
// MessageBus, captured post-boot; null in headless contexts.
|
|
registerUiCommands(dispatcher, () => kernelMessages?.publish, filterValue: (address) => kernelFilterStates?.get(address));
|
|
// `clide image show <path>` — drive an image card into the Claude
|
|
// conversation log (T-249, drive-half of D-6). Resolves the path
|
|
// (workspace-relative → absolute, must exist) here where workRoot is in
|
|
// scope, then publishes an 'image' message the Claude extension injects.
|
|
registerImageCommands(
|
|
dispatcher,
|
|
() => kernelMessages?.publish,
|
|
resolve: (path) {
|
|
final file = File(path.startsWith('/') ? path : '${workRoot.path}/$path');
|
|
return file.existsSync() ? file.absolute.path : null;
|
|
},
|
|
);
|
|
// `clide status` — one-shot orientation snapshot (T-221): active pane,
|
|
// focused file + selection, git summary, layout. Assembled here where the
|
|
// live kernel + subsystem state is in scope; the reader's viewed doc is
|
|
// read from the post-boot-captured ReaderNavRegistry (D-81).
|
|
registerStatusCommand(dispatcher, () async {
|
|
Map<String, Object?>? gitJson;
|
|
try {
|
|
final git = await gitClient.status();
|
|
gitJson = {
|
|
'branch': git.branch,
|
|
if (git.upstream != null) 'upstream': git.upstream,
|
|
'ahead': git.ahead,
|
|
'behind': git.behind,
|
|
'clean': git.isClean,
|
|
'hasConflicts': git.hasConflicts,
|
|
'counts': {'staged': git.staged.length, 'unstaged': git.unstaged.length, 'untracked': git.untracked.length, 'conflicted': git.conflicted.length},
|
|
};
|
|
} catch (_) {
|
|
gitJson = null; // never sink the snapshot on a git hiccup
|
|
}
|
|
final editorActive = editorRegistry.active;
|
|
return {
|
|
'workspace': workRoot.path,
|
|
'git': gitJson,
|
|
'editor': editorActive == null
|
|
? null
|
|
: {'id': editorActive.id, 'path': editorActive.path, 'selection': editorActive.selection.toJson(), 'dirty': editorActive.dirty},
|
|
'readers': kernelReaderNav?.currentByReader ?? const <String, String>{},
|
|
'focusedFile': editorActive?.path,
|
|
'panes': [for (final v in snapshotViewPanes(panels, arrangement)) v.toJson()],
|
|
'layout': {
|
|
'focusMode': arrangement.focusModeSlot?.value,
|
|
'slots': [
|
|
for (final id in arrangement.slotsInOrder)
|
|
{
|
|
'id': id.value,
|
|
'position': arrangement.positionOf(id)?.name,
|
|
'visible': arrangement.isVisible(id),
|
|
'collapsed': arrangement.isCollapsed(id),
|
|
if (arrangement.sizeOf(id) != null) 'size': arrangement.sizeOf(id),
|
|
},
|
|
],
|
|
},
|
|
};
|
|
});
|
|
registerArgvUnwrap(dispatcher);
|
|
// Paired teardown for this workspace's stateful services — the swap
|
|
// calls it when this dispatcher stops being served (T-367).
|
|
Future<void> teardown() async {
|
|
await paneRegistry.shutdown();
|
|
await filesService.shutdown();
|
|
await searchService.shutdown();
|
|
await editorRegistry.shutdown();
|
|
}
|
|
|
|
return (dispatcher, teardown);
|
|
}
|
|
|
|
final services = await KernelServices.boot(
|
|
appDir: appDir,
|
|
bundledThemes: themes,
|
|
i18nLoader: AssetCatalogLoader(bundle: rootBundle),
|
|
preloadNamespaces: _tier0Namespaces,
|
|
autoStartDaemonClient: false,
|
|
toolchain: toolchain,
|
|
minLogLevel: bootLogLevel,
|
|
additionalSinks: bootLogSinks,
|
|
daemonClientFactory: kIsWeb
|
|
? null
|
|
: (log, events, arrangement, panels) {
|
|
daemonBus = events;
|
|
kernelArrangement = arrangement;
|
|
kernelPanels = panels;
|
|
final workRoot = startupWorkRoot;
|
|
final (dispatcher, teardown) = buildDispatcher(events, toolchain, workRoot, arrangement, panels);
|
|
// Build the client at the workspace's socket path. The
|
|
// server is started below (swapBackend) which the
|
|
// client will then auto-connect to via its reconnect
|
|
// loop. autoStartDaemonClient:false means we own the
|
|
// lifecycle here.
|
|
final client = DaemonClient.unixSocket(socketPath: workspaceSocketPath(workRoot.path), log: log, events: events);
|
|
ipcClient = client;
|
|
// start() synchronously marks the client "connecting" (so
|
|
// requests issued during the startup window park for the
|
|
// socket instead of failing) and arms the reconnect loop.
|
|
// swapBackend then binds the server and reconnectAt makes
|
|
// the connect immediate. _connect's already-connected guard
|
|
// keeps these two paths from opening a second socket.
|
|
unawaited(client.start());
|
|
unawaited(swapBackend(dispatcher, teardown, workRoot));
|
|
return client;
|
|
},
|
|
onProjectOpen: kIsWeb
|
|
? null
|
|
: (path) async {
|
|
final bus = daemonBus;
|
|
final arrangement = kernelArrangement;
|
|
final panels = kernelPanels;
|
|
if (bus == null || arrangement == null || panels == null) return;
|
|
final (dispatcher, teardown) = buildDispatcher(bus, toolchain, Directory(path), arrangement, panels);
|
|
await swapBackend(dispatcher, teardown, Directory(path));
|
|
},
|
|
);
|
|
// Expose the reader nav to the `clide status` snapshot (T-221). Boot
|
|
// creates it before the daemonClientFactory runs, but the status closure
|
|
// only reads it at request time (post-boot), so capturing it here is safe.
|
|
kernelReaderNav = services.readerNav;
|
|
kernelMessages = services.messages;
|
|
kernelFilterStates = services.filterStates;
|
|
// Tee the IPC/MCP logger into the shared ring so the output dock (T-54)
|
|
// shows socket-side logs alongside kernel/extension ones.
|
|
ipcLog.addSink(services.logRing.add);
|
|
|
|
// Register every built-in. Tier 0 activates only the four that do
|
|
// real work; the rest compile in as stubs so the extensions-ui can
|
|
// list them when Tier 6 lands.
|
|
// Registration order = default icon rail order (left to right).
|
|
// User can override via project.layout.sidebar.order in settings.
|
|
services.extensions
|
|
..register(DefaultLayoutExtension())
|
|
..register(WelcomeExtension())
|
|
..register(OutputExtension())
|
|
..register(ThemePickerExtension())
|
|
// Sidebar: tickets first, then decisions, files, git, pql, problems
|
|
..register(TicketsExtension())
|
|
..register(DecisionsExtension())
|
|
..register(FilesExtension())
|
|
..register(SearchExtension())
|
|
..register(GitExtension())
|
|
..register(PqlExtension())
|
|
..register(ProblemsExtension())
|
|
..register(DeepLinkExtension())
|
|
// Workspace
|
|
..register(ClaudeExtension())
|
|
..register(TerminalExtension())
|
|
..register(EditorExtension())
|
|
..register(VimExtension())
|
|
..register(DiffExtension())
|
|
// Format engines + stubs
|
|
..register(GrammarsCoreExtension())
|
|
..register(MarkdownExtension())
|
|
..register(TodosExtension())
|
|
..register(CanvasExtension())
|
|
..register(GraphExtension())
|
|
// UI extensions
|
|
..register(ViewExtension(textZoom: services.textZoom))
|
|
..register(MenuBarExtension(services: services))
|
|
..register(SettingsUiExtension())
|
|
..register(ExtensionsUiExtension())
|
|
..register(KeybindingsUiExtension())
|
|
..register(ClaudeControlExtension())
|
|
..register(CliInstallExtension());
|
|
|
|
await services.extensions.activateAll();
|
|
|
|
if (!kIsWeb) {
|
|
await services.project.loadRecents();
|
|
// T-115: picker-first. Auto-open only when exactly one recent has
|
|
// its sticky-startup flag set; otherwise the welcome tab (default
|
|
// workspace content) serves as the project picker.
|
|
final opened = await services.project.openStickyOrNothing();
|
|
if (opened) {
|
|
services.panels.activateTab(Slots.workspace, 'claude.primary');
|
|
}
|
|
}
|
|
|
|
runApp(ClideApp(services: services));
|
|
}
|
|
|
|
class _BusEventSink implements DaemonEventSink {
|
|
_BusEventSink(this._bus);
|
|
final DaemonBus _bus;
|
|
|
|
@override
|
|
void emit(IpcEvent event) {
|
|
_bus.emit(DaemonEvent(subsystem: event.subsystem, kind: event.kind, data: event.data, ts: DateTime.now()));
|
|
}
|
|
}
|
|
|
|
/// Resolve the app-settings directory.
|
|
///
|
|
/// On web we don't touch the filesystem — hand back a sentinel dir so
|
|
/// `SettingsStore.load()` silently no-ops (its read-file helper returns
|
|
/// `{}` when the file doesn't exist).
|
|
Future<Directory> _resolveAppDir() async {
|
|
if (kIsWeb) return Directory('/clide-web-no-disk');
|
|
final home = Platform.environment['HOME'] ?? '/tmp';
|
|
final String base;
|
|
if (Platform.isMacOS) {
|
|
base = '$home/Library/Application Support';
|
|
} else {
|
|
base = Platform.environment['XDG_CONFIG_HOME'] ?? '$home/.config';
|
|
}
|
|
final dir = Directory('$base/clide');
|
|
await dir.create(recursive: true);
|
|
return dir;
|
|
}
|
|
|
|
Future<List<ThemeDefinition>> _loadBundledThemes() async {
|
|
const loader = ThemeLoader();
|
|
const paths = [
|
|
'lib/kernel/src/theme/themes/clide.yaml',
|
|
'lib/kernel/src/theme/themes/midnight.yaml',
|
|
'lib/kernel/src/theme/themes/paper.yaml',
|
|
'lib/kernel/src/theme/themes/terminal.yaml',
|
|
'lib/kernel/src/theme/themes/clide-hc.yaml',
|
|
'lib/kernel/src/theme/themes/midnight-hc.yaml',
|
|
'lib/kernel/src/theme/themes/paper-hc.yaml',
|
|
'lib/kernel/src/theme/themes/terminal-hc.yaml',
|
|
'lib/kernel/src/theme/themes/catppuccin-mocha.yaml',
|
|
'lib/kernel/src/theme/themes/catppuccin-mocha-hc.yaml',
|
|
];
|
|
final out = <ThemeDefinition>[];
|
|
for (final p in paths) {
|
|
out.add(await loader.fromAsset(rootBundle, p));
|
|
}
|
|
return out;
|
|
}
|
|
|
|
/// Every Tier-0 extension that ships an i18n catalog. Extensions
|
|
/// registered but not active (the 17 stubs) don't preload — their
|
|
/// catalogs load lazily on activate in later tiers.
|
|
|
|
const List<String> _tier0Namespaces = [
|
|
'builtin.default-layout',
|
|
'builtin.welcome',
|
|
'builtin.ipc-status',
|
|
'builtin.theme-picker',
|
|
'builtin.terminal',
|
|
'builtin.files',
|
|
'builtin.claude',
|
|
'builtin.editor',
|
|
];
|