Spaces:
Sleeping
Sleeping
File size: 5,260 Bytes
f6266b9 | 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 | /**
* HTTP/2 gRPC client for the local Windsurf language server binary.
*
* Uses Node.js built-in http2 module. No external dependencies.
*/
import http2 from 'http2';
import { log } from './config.js';
/**
* Wrap a protobuf payload in a gRPC frame.
* Format: 1 byte compression (0) + 4 bytes BE length + payload
*/
export function grpcFrame(payload) {
const buf = Buffer.isBuffer(payload) ? payload : Buffer.from(payload);
const frame = Buffer.alloc(5 + buf.length);
frame[0] = 0; // no compression
frame.writeUInt32BE(buf.length, 1);
buf.copy(frame, 5);
return frame;
}
/**
* Strip gRPC frame header (5 bytes) from a response buffer.
* Returns the protobuf payload.
*/
export function stripGrpcFrame(buf) {
if (buf.length >= 5 && buf[0] === 0) {
const msgLen = buf.readUInt32BE(1);
if (buf.length >= 5 + msgLen) {
return buf.subarray(5, 5 + msgLen);
}
}
return buf;
}
/**
* Extract all gRPC frames from a buffer (may contain multiple concatenated frames).
*/
export function extractGrpcFrames(buf) {
const frames = [];
let offset = 0;
while (offset + 5 <= buf.length) {
const compressed = buf[offset];
const msgLen = buf.readUInt32BE(offset + 1);
if (compressed !== 0 || offset + 5 + msgLen > buf.length) break;
frames.push(buf.subarray(offset + 5, offset + 5 + msgLen));
offset += 5 + msgLen;
}
return frames;
}
/**
* Make a unary gRPC call to the language server.
*
* @param {number} port - Language server port
* @param {string} csrfToken - CSRF token
* @param {string} path - gRPC path (e.g. /exa.language_server_pb.LanguageServerService/StartCascade)
* @param {Buffer} body - gRPC-framed request
* @param {number} timeout - Timeout in ms
* @returns {Promise<Buffer>} Protobuf response (stripped of gRPC frame)
*/
export function grpcUnary(port, csrfToken, path, body, timeout = 30000) {
return new Promise((resolve, reject) => {
const client = http2.connect(`http://localhost:${port}`);
const chunks = [];
let timer;
client.on('error', (err) => {
clearTimeout(timer);
client.close();
reject(err);
});
timer = setTimeout(() => {
client.close();
reject(new Error('gRPC unary timeout'));
}, timeout);
const req = client.request({
':method': 'POST',
':path': path,
'content-type': 'application/grpc',
'te': 'trailers',
'x-codeium-csrf-token': csrfToken,
});
req.on('data', (chunk) => chunks.push(chunk));
let grpcStatus = '0', grpcMessage = '';
req.on('trailers', (trailers) => {
grpcStatus = String(trailers['grpc-status'] ?? '0');
grpcMessage = String(trailers['grpc-message'] ?? '');
});
req.on('end', () => {
clearTimeout(timer);
client.close();
if (grpcStatus !== '0') {
const msg = grpcMessage ? decodeURIComponent(grpcMessage) : `gRPC status ${grpcStatus}`;
reject(new Error(msg));
return;
}
const full = Buffer.concat(chunks);
resolve(stripGrpcFrame(full));
});
req.on('error', (err) => {
clearTimeout(timer);
client.close();
reject(err);
});
req.write(body);
req.end();
});
}
/**
* Make a streaming gRPC call to the language server.
* Yields parsed gRPC frame payloads as they arrive.
*
* @param {number} port
* @param {string} csrfToken
* @param {string} path
* @param {Buffer} body
* @param {object} opts - { onData, onEnd, onError, timeout }
*/
export function grpcStream(port, csrfToken, path, body, opts = {}) {
const { onData, onEnd, onError, timeout = 300000 } = opts;
const client = http2.connect(`http://localhost:${port}`);
let timer;
let pendingBuf = Buffer.alloc(0);
client.on('error', (err) => {
clearTimeout(timer);
client.close();
onError?.(err);
});
timer = setTimeout(() => {
client.close();
onError?.(new Error('gRPC stream timeout'));
}, timeout);
const req = client.request({
':method': 'POST',
':path': path,
'content-type': 'application/grpc',
'te': 'trailers',
'x-codeium-csrf-token': csrfToken,
});
req.on('data', (chunk) => {
// Accumulate and parse gRPC frames
pendingBuf = Buffer.concat([pendingBuf, chunk]);
while (pendingBuf.length >= 5) {
const compressed = pendingBuf[0];
const msgLen = pendingBuf.readUInt32BE(1);
if (pendingBuf.length < 5 + msgLen) break; // wait for more data
if (compressed === 0) {
const payload = pendingBuf.subarray(5, 5 + msgLen);
onData?.(payload);
}
pendingBuf = pendingBuf.subarray(5 + msgLen);
}
});
let grpcStatus = '0', grpcMessage = '';
req.on('trailers', (trailers) => {
grpcStatus = String(trailers['grpc-status'] ?? '0');
grpcMessage = String(trailers['grpc-message'] ?? '');
});
req.on('end', () => {
clearTimeout(timer);
client.close();
if (grpcStatus !== '0') {
const msg = grpcMessage ? decodeURIComponent(grpcMessage) : `gRPC status ${grpcStatus}`;
onError?.(new Error(msg));
} else {
onEnd?.();
}
});
req.on('error', (err) => {
clearTimeout(timer);
client.close();
onError?.(err);
});
req.write(body);
req.end();
}
|