forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathterminalManager.js
More file actions
580 lines (507 loc) · 15 KB
/
terminalManager.js
File metadata and controls
580 lines (507 loc) · 15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/**
* Terminal Manager
* Handles terminal session creation and management
*/
import EditorFile from "lib/editorFile";
import TerminalComponent from "./terminal";
import "@xterm/xterm/css/xterm.css";
import toast from "components/toast";
class TerminalManager {
constructor() {
this.terminals = new Map();
this.terminalCounter = 0;
}
/**
* Create a new terminal session
* @param {object} options - Terminal options
* @returns {Promise<object>} Terminal instance info
*/
async createTerminal(options = {}) {
try {
const terminalId = `terminal_${++this.terminalCounter}`;
const terminalName = options.name || `Terminal ${this.terminalCounter}`;
// Check if terminal is installed before proceeding
if (options.serverMode !== false) {
const installationResult = await this.checkAndInstallTerminal();
if (!installationResult.success) {
throw new Error(installationResult.error);
}
}
// Create terminal component
const terminalComponent = new TerminalComponent({
serverMode: options.serverMode !== false,
...options,
});
// Create container
const terminalContainer = tag("div", {
className: "terminal-content",
id: `terminal-${terminalId}`,
});
// Terminal styles
const terminalStyles = this.getTerminalStyles();
const terminalStyle = tag("style", {
textContent: terminalStyles,
});
document.body.appendChild(terminalStyle);
// Create EditorFile for terminal
const terminalFile = new EditorFile(terminalName, {
type: "terminal",
content: terminalContainer,
tabIcon: "licons terminal",
render: true,
});
// Wait for tab creation and setup
const terminalInstance = await new Promise((resolve, reject) => {
setTimeout(async () => {
try {
// Mount terminal component
terminalComponent.mount(terminalContainer);
// Connect to session if in server mode
if (terminalComponent.serverMode) {
await terminalComponent.connectToSession();
} else {
// For local mode, just write a welcome message
terminalComponent.write(
"Local terminal mode - ready for output\r\n",
);
}
// Use PID as unique ID if available, otherwise fall back to terminalId
const uniqueId = terminalComponent.pid || terminalId;
// Setup event handlers
this.setupTerminalHandlers(
terminalFile,
terminalComponent,
uniqueId,
);
const instance = {
id: uniqueId,
name: terminalName,
component: terminalComponent,
file: terminalFile,
container: terminalContainer,
};
this.terminals.set(uniqueId, instance);
resolve(instance);
} catch (error) {
console.error("Failed to initialize terminal:", error);
reject(error);
}
}, 100);
});
return terminalInstance;
} catch (error) {
console.error("Failed to create terminal:", error);
throw error;
}
}
/**
* Check if terminal is installed and install if needed
* @returns {Promise<{success: boolean, error?: string}>}
*/
async checkAndInstallTerminal() {
try {
// Check if terminal is already installed
const isInstalled = await Terminal.isInstalled();
if (isInstalled) {
return { success: true };
}
// Check if terminal is supported on this device
const isSupported = await Terminal.isSupported();
if (!isSupported) {
return {
success: false,
error: "Terminal is not supported on this device architecture",
};
}
// Create installation progress terminal
const installTerminal = await this.createInstallationTerminal();
// Install terminal with progress logging
const installResult = await Terminal.install(
(message) => {
// Remove stdout/stderr prefix for
const cleanMessage = message.replace(/^(stdout|stderr)\s+/, "");
installTerminal.component.write(`${cleanMessage}\r\n`);
},
(error) => {
// Remove stdout/stderr prefix
const cleanError = error.replace(/^(stdout|stderr)\s+/, "");
installTerminal.component.write(
`\x1b[31mError: ${cleanError}\x1b[0m\r\n`,
);
},
);
// Only return success if Terminal.install() indicates success (exit code 0)
if (installResult === true) {
return { success: true };
} else {
return {
success: false,
error:
"Terminal installation failed - process did not exit with code 0",
};
}
} catch (error) {
console.error("Terminal installation failed:", error);
return {
success: false,
error: `Terminal installation failed: ${error.message}`,
};
}
}
/**
* Create a terminal for showing installation progress
* @returns {Promise<object>} Installation terminal instance
*/
async createInstallationTerminal() {
const terminalId = `install_terminal_${++this.terminalCounter}`;
const terminalName = "Terminal Installation";
// Create terminal component in local mode (no server needed)
const terminalComponent = new TerminalComponent({
serverMode: false,
});
// Create container
const terminalContainer = tag("div", {
className: "terminal-content",
id: `terminal-${terminalId}`,
});
// Terminal styles
const terminalStyles = this.getTerminalStyles();
const terminalStyle = tag("style", {
textContent: terminalStyles,
});
document.body.appendChild(terminalStyle);
// Create EditorFile for terminal
const terminalFile = new EditorFile(terminalName, {
type: "terminal",
content: terminalContainer,
tabIcon: "icon save_alt",
render: true,
});
// Wait for tab creation and setup
const terminalInstance = await new Promise((resolve, reject) => {
setTimeout(async () => {
try {
// Mount terminal component
terminalComponent.mount(terminalContainer);
// Write initial message
terminalComponent.write("🚀 Installing Terminal Environment...\r\n");
terminalComponent.write(
"This may take a few minutes depending on your connection.\r\n\r\n",
);
// Setup event handlers
this.setupTerminalHandlers(
terminalFile,
terminalComponent,
terminalId,
);
// Set up custom title for installation terminal
terminalFile.setCustomTitle(
() => "Installing Terminal Environment...",
);
const instance = {
id: terminalId,
name: terminalName,
component: terminalComponent,
file: terminalFile,
container: terminalContainer,
};
this.terminals.set(terminalId, instance);
resolve(instance);
} catch (error) {
console.error("Failed to create installation terminal:", error);
reject(error);
}
}, 100);
});
return terminalInstance;
}
/**
* Setup terminal event handlers
* @param {EditorFile} terminalFile - Terminal file instance
* @param {TerminalComponent} terminalComponent - Terminal component
* @param {string} terminalId - Terminal ID
*/
setupTerminalHandlers(terminalFile, terminalComponent, terminalId) {
// Handle tab focus/blur
terminalFile.onfocus = () => {
setTimeout(() => {
terminalComponent.focus();
terminalComponent.fit();
}, 10);
};
// Handle tab close
terminalFile.onclose = () => {
this.closeTerminal(terminalId);
};
// Enhanced resize handling with debouncing
let resizeTimeout = null;
const RESIZE_DEBOUNCE = 200;
let lastResizeTime = 0;
const resizeObserver = new ResizeObserver((entries) => {
const now = Date.now();
// Clear any pending resize
if (resizeTimeout) {
clearTimeout(resizeTimeout);
}
// Debounce rapid resize events (common during keyboard open/close)
resizeTimeout = setTimeout(() => {
try {
// Check if terminal is still available and mounted
if (!terminalComponent.terminal || !terminalComponent.container) {
return;
}
// Get current terminal state
const currentRows = terminalComponent.terminal.rows;
const currentCols = terminalComponent.terminal.cols;
// Fit the terminal to new container size
terminalComponent.fit();
// Check if dimensions actually changed after fit
const newRows = terminalComponent.terminal.rows;
const newCols = terminalComponent.terminal.cols;
if (
Math.abs(newRows - currentRows) > 1 ||
Math.abs(newCols - currentCols) > 1
) {
// console.log(
// `Terminal ${terminalId} resized: ${currentRows}x${currentCols} -> ${newRows}x${newCols}`,
// );
}
// Update last resize time
lastResizeTime = now;
} catch (error) {
console.error(`Resize error for terminal ${terminalId}:`, error);
}
}, RESIZE_DEBOUNCE);
});
// Wait for the terminal container to be available, then observe it
setTimeout(() => {
const containerElement = terminalFile.content;
if (containerElement && containerElement instanceof Element) {
resizeObserver.observe(containerElement);
} else {
console.warn("Terminal container not available for ResizeObserver");
}
}, 200);
// Terminal event handlers
terminalComponent.onConnect = () => {
console.log(`Terminal ${terminalId} connected`);
};
terminalComponent.onDisconnect = () => {
console.log(`Terminal ${terminalId} disconnected`);
};
terminalComponent.onError = (error) => {
console.error(`Terminal ${terminalId} error:`, error);
window.toast?.("Terminal connection error");
// Close the terminal tab on error
this.closeTerminal(terminalId);
};
terminalComponent.onTitleChange = (title) => {
if (title) {
// Format terminal title as "Terminal ! - title"
const formattedTitle = `Terminal ${this.terminalCounter} - ${title}`;
terminalFile.filename = formattedTitle;
// Refresh the header subtitle if this terminal is active
if (
editorManager.activeFile &&
editorManager.activeFile.id === terminalFile.id
) {
// Force refresh of the header subtitle
terminalFile.setCustomTitle(getTerminalTitle);
}
}
};
terminalComponent.onProcessExit = (exitData) => {
// Format exit message based on exit code and signal
let message;
if (exitData.signal) {
message = `Process terminated by signal ${exitData.signal}`;
} else if (exitData.exit_code === 0) {
message = `Process exited successfully (code ${exitData.exit_code})`;
} else {
message = `Process exited with code ${exitData.exit_code}`;
}
this.closeTerminal(terminalId);
terminalFile.remove(true);
toast(message);
};
// Store references for cleanup
terminalFile._terminalId = terminalId;
terminalFile.terminalComponent = terminalComponent;
terminalFile._resizeObserver = resizeObserver;
// Set up custom title function for terminal
const getTerminalTitle = () => {
if (terminalComponent.pid) {
return `PID: ${terminalComponent.pid}`;
}
// fallback to terminal name
return `${terminalId}`;
};
terminalFile.setCustomTitle(getTerminalTitle);
}
/**
* Close a terminal session
* @param {string} terminalId - Terminal ID
*/
closeTerminal(terminalId) {
const terminal = this.terminals.get(terminalId);
if (!terminal) return;
try {
// Cleanup resize observer
if (terminal.file._resizeObserver) {
terminal.file._resizeObserver.disconnect();
}
// Dispose terminal component
terminal.component.dispose();
// Remove from map
this.terminals.delete(terminalId);
console.log(`Terminal ${terminalId} closed`);
} catch (error) {
console.error(`Error closing terminal ${terminalId}:`, error);
}
}
/**
* Get terminal by ID
* @param {string} terminalId - Terminal ID
* @returns {object|null} Terminal instance
*/
getTerminal(terminalId) {
return this.terminals.get(terminalId) || null;
}
/**
* Get all active terminals
* @returns {Map} All terminals
*/
getAllTerminals() {
return this.terminals;
}
/**
* Write to a specific terminal
* @param {string} terminalId - Terminal ID
* @param {string} data - Data to write
*/
writeToTerminal(terminalId, data) {
const terminal = this.getTerminal(terminalId);
if (terminal) {
terminal.component.write(data);
}
}
/**
* Clear a specific terminal
* @param {string} terminalId - Terminal ID
*/
clearTerminal(terminalId) {
const terminal = this.getTerminal(terminalId);
if (terminal) {
terminal.component.clear();
}
}
/**
* Get terminal styles for shadow DOM
* @returns {string} CSS styles
*/
getTerminalStyles() {
return `
.terminal-content {
width: 100%;
height: 100%;
box-sizing: border-box;
background: #1e1e1e;
overflow: hidden;
position: relative;
padding: 0.25rem;
}
`;
}
/**
* Create a local terminal (no server connection)
* @param {object} options - Terminal options
* @returns {Promise<object>} Terminal instance
*/
async createLocalTerminal(options = {}) {
return this.createTerminal({
...options,
serverMode: false,
});
}
/**
* Create a server terminal (with backend connection)
* @param {object} options - Terminal options
* @returns {Promise<object>} Terminal instance
*/
async createServerTerminal(options = {}) {
return this.createTerminal({
...options,
serverMode: true,
});
}
/**
* Handle keyboard resize events for all terminals
* This is called when the virtual keyboard opens/closes on mobile
*/
handleKeyboardResize() {
// Add a small delay to let the UI settle
setTimeout(() => {
this.terminals.forEach((terminal) => {
try {
if (terminal.component && terminal.component.terminal) {
// Force a re-fit for all terminals
terminal.component.fit();
// If terminal has lots of content, try to preserve scroll position
const buffer = terminal.component.terminal.buffer?.active;
if (
buffer &&
buffer.length > terminal.component.terminal.rows * 2
) {
// For content-heavy terminals, ensure we stay near the bottom if we were there
const wasNearBottom =
buffer.viewportY >=
buffer.length - terminal.component.terminal.rows - 5;
if (wasNearBottom) {
// Scroll to bottom after resize
setTimeout(() => {
terminal.component.terminal.scrollToBottom();
}, 100);
}
}
}
} catch (error) {
console.error(
`Error handling keyboard resize for terminal ${terminal.id}:`,
error,
);
}
});
}, 150);
}
/**
* Stabilize terminal viewport after resize operations
*/
stabilizeTerminals() {
this.terminals.forEach((terminal) => {
try {
if (terminal.component && terminal.component.terminal) {
// Clear any touch selections during stabilization
if (
terminal.component.touchSelection &&
terminal.component.touchSelection.isSelecting
) {
terminal.component.touchSelection.clearSelection();
}
// Re-fit and refresh
terminal.component.fit();
// Focus the active terminal to ensure proper state
if (terminal.file && terminal.file.isOpen) {
setTimeout(() => {
terminal.component.focus();
}, 50);
}
}
} catch (error) {
console.error(`Error stabilizing terminal ${terminal.id}:`, error);
}
});
}
}
// Create singleton instance
const terminalManager = new TerminalManager();
export default terminalManager;