agent-ecosystem/src/main/services/infrastructure/ServiceContextRegistry.ts
matt ff0c8cc978 Implement Claude root path configuration and management
- Introduced functionality to select and manage the local Claude root folder, allowing users to specify a custom path.
- Added IPC handlers for selecting the Claude root folder and retrieving its information.
- Enhanced configuration validation to ensure the specified Claude root path is an absolute path.
- Updated the ServiceContext to reconfigure based on changes to the Claude root path, improving context management.
- Refactored related components to support the new Claude root path features, including updates to the UI and state management.
2026-02-14 13:43:56 +09:00

220 lines
6.2 KiB
TypeScript

/**
* ServiceContextRegistry - Manages the Map of ServiceContext instances.
*
* Responsibilities:
* - Register and track all ServiceContext instances (local + SSH)
* - Track active context ID
* - Handle context switching (stop old watcher, start new watcher)
* - Enforce lifecycle rules (local context cannot be destroyed)
* - Provide safe disposal of contexts
*
* Lifecycle:
* - App startup: registry created, local context registered
* - SSH connect: new SSH context registered
* - Context switch: switch() stops old watcher, starts new watcher
* - SSH disconnect: destroy() removes SSH context
* - App shutdown: dispose() cleans up all contexts
*/
import { createLogger } from '@shared/utils/logger';
import { type ServiceContext } from './ServiceContext';
const logger = createLogger('Infrastructure:ServiceContextRegistry');
/**
* ServiceContextRegistry - Coordinator for all service contexts.
*
* Manages a Map of ServiceContext instances and tracks which one is active.
* Enforces the rule that the 'local' context is permanent and cannot be destroyed.
*/
export class ServiceContextRegistry {
private contexts = new Map<string, ServiceContext>();
private activeContextId: string = 'local';
/**
* Creates a new ServiceContextRegistry.
* Does NOT create the local context - that must be done externally
* where mainWindow and NotificationManager wiring exists.
*/
constructor() {
logger.info('ServiceContextRegistry created');
}
/**
* Registers a new context.
* @throws Error if a context with the same ID already exists
*/
registerContext(context: ServiceContext): void {
if (this.contexts.has(context.id)) {
throw new Error(`Context already registered: ${context.id}`);
}
this.contexts.set(context.id, context);
logger.info(`Context registered: ${context.id} (${context.type})`);
}
/**
* Replaces an existing context instance in-place (same context ID).
* Used for local-context reconfiguration without changing activeContextId semantics.
*
* @throws Error if context does not exist or replacement ID mismatches
*/
replaceContext(contextId: string, replacement: ServiceContext): void {
const existing = this.contexts.get(contextId);
if (!existing) {
throw new Error(`Context not found: ${contextId}`);
}
if (replacement.id !== contextId) {
throw new Error(
`Replacement context ID mismatch: expected "${contextId}", got "${replacement.id}"`
);
}
if (existing === replacement) {
return;
}
this.contexts.set(contextId, replacement);
existing.dispose();
logger.info(`Context replaced: ${contextId} (${replacement.type})`);
}
/**
* Gets the active ServiceContext.
* @throws Error if active context not found (should never happen)
*/
getActive(): ServiceContext {
const context = this.contexts.get(this.activeContextId);
if (!context) {
throw new Error(`Active context not found: ${this.activeContextId}`);
}
return context;
}
/**
* Gets a context by ID.
* @returns ServiceContext or undefined if not found
*/
get(contextId: string): ServiceContext | undefined {
return this.contexts.get(contextId);
}
/**
* Checks if a context exists.
*/
has(contextId: string): boolean {
return this.contexts.has(contextId);
}
/**
* Switches to a different context.
* Stops the file watcher on the previous context and starts it on the new one.
*
* @param contextId - ID of context to switch to
* @returns Object containing previous and current contexts for IPC re-init
* @throws Error if target context not found
*/
switch(contextId: string): { previous: ServiceContext; current: ServiceContext } {
if (!this.contexts.has(contextId)) {
throw new Error(`Cannot switch to unknown context: ${contextId}`);
}
const previous = this.getActive();
const current = this.contexts.get(contextId)!;
if (previous.id === current.id) {
logger.info(`Already on context: ${contextId}`);
return { previous, current };
}
logger.info(`Switching context: ${previous.id}${current.id}`);
// Stop file watcher on previous context (pause, don't dispose)
previous.stopFileWatcher();
// Update active context
this.activeContextId = contextId;
// Start file watcher on new context
current.startFileWatcher();
logger.info(`Context switched: ${current.id} is now active`);
return { previous, current };
}
/**
* Destroys a context and removes it from the registry.
* If the destroyed context was active, switches to 'local'.
*
* @param contextId - ID of context to destroy
* @throws Error if attempting to destroy the 'local' context
* @throws Error if context not found
*/
destroy(contextId: string): void {
if (contextId === 'local') {
throw new Error('Cannot destroy local context');
}
const context = this.contexts.get(contextId);
if (!context) {
throw new Error(`Context not found: ${contextId}`);
}
logger.info(`Destroying context: ${contextId}`);
// Dispose the context
context.dispose();
// Remove from map
this.contexts.delete(contextId);
// If this was the active context, switch to local
if (this.activeContextId === contextId) {
logger.info('Destroyed context was active, switching to local');
this.activeContextId = 'local';
const local = this.contexts.get('local');
if (local) {
local.startFileWatcher();
}
}
logger.info(`Context destroyed: ${contextId}`);
}
/**
* Lists all registered contexts.
* @returns Array of context metadata
*/
list(): { id: string; type: 'local' | 'ssh' }[] {
return Array.from(this.contexts.values()).map((context) => ({
id: context.id,
type: context.type,
}));
}
/**
* Gets the active context ID.
*/
getActiveContextId(): string {
return this.activeContextId;
}
/**
* Disposes ALL contexts (including local).
* Used only on app shutdown.
*/
dispose(): void {
logger.info('Disposing ServiceContextRegistry and all contexts');
for (const context of this.contexts.values()) {
context.dispose();
}
this.contexts.clear();
logger.info('ServiceContextRegistry disposed');
}
}