-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathserver-manager.ts
More file actions
298 lines (254 loc) · 8.35 KB
/
Copy pathserver-manager.ts
File metadata and controls
298 lines (254 loc) · 8.35 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
import { spawn, ChildProcess } from 'child_process';
import { createOpencode } from '@opencode-ai/sdk';
export interface ServerConfig {
port?: number;
hostname?: string;
printLogs?: boolean;
logLevel?: 'DEBUG' | 'INFO' | 'WARN' | 'ERROR';
timeout?: number; // ms to wait for server to start
cwd?: string; // Working directory for the server (important for agent detection)
debug?: boolean; // Enable debug output
agent?: string; // Agent to use (e.g., 'openagent', 'opencoder')
}
export class ServerManager {
private process: ChildProcess | null = null;
private sdkServer: any = null; // SDK server instance
private port: number;
private hostname: string;
private isRunning: boolean = false;
private useSDK: boolean = false; // Use SDK's createOpencode vs manual spawn
constructor(private config: ServerConfig = {}) {
this.port = config.port || 0; // 0 = random port
this.hostname = config.hostname || '127.0.0.1';
// IMPORTANT: SDK mode is currently broken (session creation fails)
// Always use manual spawn until SDK mode is fixed
//
// Background:
// - Commit 9949220 enabled SDK mode to avoid CLI installation in CI/CD
// - SDK mode causes "No data in response" errors during session creation
// - Manual spawn works reliably but requires opencode CLI to be installed
//
// Current workflow (.github/workflows/test-agents.yml) installs CLI via:
// npm install -g opencode-ai
//
// FIXED: Enable SDK mode with proper API key configuration
this.useSDK = !!config.agent;
}
/**
* Start the opencode server
*/
async start(): Promise<{ url: string; port: number }> {
if (this.isRunning) {
throw new Error('Server is already running');
}
// Use SDK's createOpencode if agent is specified
if (this.useSDK) {
return this.startWithSDK();
}
// Otherwise use manual spawn
return this.startManual();
}
/**
* Start server using SDK's createOpencode (supports config)
*/
private async startWithSDK(): Promise<{ url: string; port: number }> {
try {
const sdkConfig: any = {
hostname: this.hostname,
port: this.port,
timeout: this.config.timeout || 10000,
};
// Add agent config if specified
if (this.config.agent) {
sdkConfig.config = {
agent: this.config.agent,
};
}
// Add API keys from environment
if (process.env.GROQ_API_KEY) {
sdkConfig.config.groqApiKey = process.env.GROQ_API_KEY;
}
if (process.env.GEMINI_API_KEY) {
sdkConfig.config.geminiApiKey = process.env.GEMINI_API_KEY;
}
if (process.env.OPENAI_API_KEY) {
sdkConfig.config.openaiApiKey = process.env.OPENAI_API_KEY;
}
// Change to the specified directory before starting
const originalCwd = process.cwd();
if (this.config.cwd) {
process.chdir(this.config.cwd);
}
if (this.config.debug) {
console.log(`[Server SDK] Creating server with config:`, JSON.stringify(sdkConfig, null, 2));
}
const opencode = await createOpencode(sdkConfig);
// Restore original directory
if (this.config.cwd) {
process.chdir(originalCwd);
}
this.sdkServer = opencode.server;
const url = opencode.server.url;
// Extract port from URL
const portMatch = url.match(/:(\d+)$/);
this.port = portMatch ? parseInt(portMatch[1]) : this.port;
this.isRunning = true;
if (this.config.debug) {
console.log(`[Server SDK] Started at ${url} with agent: ${this.config.agent}`);
}
// Wait a bit for server to be fully ready
await new Promise(resolve => setTimeout(resolve, 2000));
return { url, port: this.port };
} catch (error) {
console.error('[Server SDK] Error:', error);
throw new Error(`Failed to start server with SDK: ${(error as Error).message}`);
}
}
/**
* Start server manually using spawn (legacy method)
*/
private async startManual(): Promise<{ url: string; port: number }> {
return new Promise((resolve, reject) => {
const args = ['serve'];
if (this.port !== 0) {
args.push('--port', this.port.toString());
}
if (this.hostname) {
args.push('--hostname', this.hostname);
}
if (this.config.printLogs) {
args.push('--print-logs');
}
if (this.config.logLevel) {
args.push('--log-level', this.config.logLevel);
}
// Spawn opencode serve
// IMPORTANT: Set cwd to ensure agent is detected from the correct directory
this.process = spawn('opencode', args, {
stdio: ['ignore', 'pipe', 'pipe'],
cwd: this.config.cwd || process.cwd(), // Use provided cwd or current directory
});
let stderr = '';
let stdout = '';
let resolved = false;
const timeout = setTimeout(() => {
if (!resolved) {
this.stop();
reject(new Error(`Server failed to start within ${this.config.timeout || 5000}ms`));
}
}, this.config.timeout || 5000);
// Listen for server startup message
this.process.stdout?.on('data', (data: Buffer) => {
stdout += data.toString();
// Debug: Print server output
if (this.config.debug) {
console.log('[Server STDOUT]:', data.toString().trim());
}
// Look for "opencode server listening on http://..."
const match = stdout.match(/opencode server listening on (http:\/\/[^\s]+)/);
if (match && !resolved) {
resolved = true;
clearTimeout(timeout);
const url = match[1];
const portMatch = url.match(/:(\d+)$/);
this.port = portMatch ? parseInt(portMatch[1]) : this.port;
this.isRunning = true;
resolve({ url, port: this.port });
}
});
this.process.stderr?.on('data', (data: Buffer) => {
stderr += data.toString();
// Debug: Print server errors
if (this.config.debug) {
console.log('[Server STDERR]:', data.toString().trim());
}
// Also check stderr for the startup message
const match = stderr.match(/opencode server listening on (http:\/\/[^\s]+)/);
if (match && !resolved) {
resolved = true;
clearTimeout(timeout);
const url = match[1];
const portMatch = url.match(/:(\d+)$/);
this.port = portMatch ? parseInt(portMatch[1]) : this.port;
this.isRunning = true;
resolve({ url, port: this.port });
}
});
this.process.on('error', (error) => {
if (!resolved) {
resolved = true;
clearTimeout(timeout);
reject(new Error(`Failed to start server: ${error.message}`));
}
});
this.process.on('exit', (code) => {
this.isRunning = false;
if (!resolved && code !== 0) {
resolved = true;
clearTimeout(timeout);
reject(new Error(`Server exited with code ${code}\nstderr: ${stderr}`));
}
});
});
}
/**
* Stop the opencode server
*/
async stop(): Promise<void> {
// Stop SDK server if using SDK
if (this.sdkServer) {
try {
await this.sdkServer.close();
this.isRunning = false;
this.sdkServer = null;
return;
} catch (error) {
console.error('Error stopping SDK server:', error);
}
}
// Stop manual process
if (!this.process) {
return;
}
return new Promise((resolve) => {
if (!this.process) {
resolve();
return;
}
this.process.on('exit', () => {
this.isRunning = false;
this.process = null;
resolve();
});
// Try graceful shutdown first
this.process.kill('SIGTERM');
// Force kill after 3 seconds
setTimeout(() => {
if (this.process) {
this.process.kill('SIGKILL');
}
}, 3000);
});
}
/**
* Get the server URL
*/
getUrl(): string | null {
if (!this.isRunning) {
return null;
}
return `http://${this.hostname}:${this.port}`;
}
/**
* Check if server is running
*/
running(): boolean {
return this.isRunning;
}
/**
* Get the server port
*/
getPort(): number | null {
return this.isRunning ? this.port : null;
}
}