Spaces:
Running
Running
File size: 16,576 Bytes
02eac4b |
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 |
/**
* Core video client for LeRobot Arena
* Base class providing REST API, WebSocket, and WebRTC functionality
*/
import { EventEmitter } from 'eventemitter3';
import type {
ParticipantRole,
RoomInfo,
RoomState,
ConnectionInfo,
WebSocketMessage,
JoinMessage,
ListRoomsResponse,
CreateRoomResponse,
GetRoomResponse,
GetRoomStateResponse,
DeleteRoomResponse,
WebRTCSignalResponse,
WebRTCSignalRequest,
ClientOptions,
WebRTCConfig,
WebRTCStats,
VideoConfig,
RecoveryConfig,
ErrorCallback,
ConnectedCallback,
DisconnectedCallback,
} from './types.js';
export class VideoClientCore extends EventEmitter {
protected baseUrl: string;
protected apiBase: string;
protected websocket: WebSocket | null = null;
protected peerConnection: RTCPeerConnection | null = null;
protected localStream: MediaStream | null = null;
protected remoteStream: MediaStream | null = null;
protected workspaceId: string | null = null;
protected roomId: string | null = null;
protected role: ParticipantRole | null = null;
protected participantId: string | null = null;
protected connected = false;
protected options: ClientOptions;
protected webrtcConfig: WebRTCConfig;
// Event callbacks
protected onErrorCallback: ErrorCallback | null = null;
protected onConnectedCallback: ConnectedCallback | null = null;
protected onDisconnectedCallback: DisconnectedCallback | null = null;
constructor(baseUrl = 'http://localhost:8000', options: ClientOptions = {}) {
super();
this.baseUrl = baseUrl.replace(/\/$/, '');
this.apiBase = `${this.baseUrl}/video`;
this.options = {
timeout: 5000,
reconnect_attempts: 3,
heartbeat_interval: 30000,
...options,
};
this.webrtcConfig = {
iceServers: [{ urls: 'stun:stun.l.google.com:19302' }],
constraints: {
video: {
width: { ideal: 640 },
height: { ideal: 480 },
frameRate: { ideal: 30 }
},
audio: false
},
bitrate: 1000000,
framerate: 30,
resolution: { width: 640, height: 480 },
codecPreferences: ['VP8', 'H264'],
...this.options.webrtc_config,
};
}
// ============= REST API METHODS =============
async listRooms(workspaceId: string): Promise<RoomInfo[]> {
const response = await this.fetchApi<ListRoomsResponse>(`/workspaces/${workspaceId}/rooms`);
return response.rooms;
}
async createRoom(workspaceId?: string, roomId?: string, config?: VideoConfig, recoveryConfig?: RecoveryConfig): Promise<{ workspaceId: string; roomId: string }> {
// Generate workspace ID if not provided
const finalWorkspaceId = workspaceId || this.generateWorkspaceId();
const payload = {
room_id: roomId,
workspace_id: finalWorkspaceId,
config,
recovery_config: recoveryConfig
};
const response = await this.fetchApi<CreateRoomResponse>(`/workspaces/${finalWorkspaceId}/rooms`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload),
});
return { workspaceId: response.workspace_id, roomId: response.room_id };
}
async deleteRoom(workspaceId: string, roomId: string): Promise<boolean> {
try {
const response = await this.fetchApi<DeleteRoomResponse>(`/workspaces/${workspaceId}/rooms/${roomId}`, {
method: 'DELETE',
});
return response.success;
} catch (error) {
if (error instanceof Error && error.message.includes('404')) {
return false;
}
throw error;
}
}
async getRoomState(workspaceId: string, roomId: string): Promise<RoomState> {
const response = await this.fetchApi<GetRoomStateResponse>(`/workspaces/${workspaceId}/rooms/${roomId}/state`);
return response.state;
}
async getRoomInfo(workspaceId: string, roomId: string): Promise<RoomInfo> {
const response = await this.fetchApi<GetRoomResponse>(`/workspaces/${workspaceId}/rooms/${roomId}`);
return response.room;
}
// ============= WEBRTC SIGNALING =============
async sendWebRTCSignal(workspaceId: string, roomId: string, clientId: string, message: RTCSessionDescriptionInit | RTCIceCandidateInit | Record<string, unknown>): Promise<WebRTCSignalResponse> {
const request: WebRTCSignalRequest = { client_id: clientId, message };
return this.fetchApi<WebRTCSignalResponse>(`/workspaces/${workspaceId}/rooms/${roomId}/webrtc/signal`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(request),
});
}
// ============= WEBSOCKET CONNECTION =============
async connectToRoom(
workspaceId: string,
roomId: string,
role: ParticipantRole,
participantId?: string
): Promise<boolean> {
if (this.connected) {
await this.disconnect();
}
this.workspaceId = workspaceId;
this.roomId = roomId;
this.role = role;
this.participantId = participantId || `${role}_${Date.now()}_${Math.random().toString(36).substr(2, 9)}`;
// Convert HTTP URL to WebSocket URL
const wsUrl = this.baseUrl
.replace(/^http/, 'ws')
.replace(/^https/, 'wss');
const wsEndpoint = `${wsUrl}/video/workspaces/${workspaceId}/rooms/${roomId}/ws`;
try {
this.websocket = new WebSocket(wsEndpoint);
// Set up WebSocket event handlers
return new Promise((resolve, reject) => {
const timeout = setTimeout(() => {
reject(new Error('Connection timeout'));
}, this.options.timeout || 5000);
this.websocket!.onopen = () => {
clearTimeout(timeout);
this.sendJoinMessage();
};
this.websocket!.onmessage = (event) => {
try {
const message: WebSocketMessage = JSON.parse(event.data);
this.handleMessage(message);
// Handle initial connection responses
if (message.type === 'joined') {
this.connected = true;
this.onConnectedCallback?.();
this.emit('connected');
resolve(true);
} else if (message.type === 'error') {
this.handleError(message.message);
resolve(false);
}
} catch (error) {
console.error('Failed to parse WebSocket message:', error);
}
};
this.websocket!.onerror = (error) => {
clearTimeout(timeout);
console.error('WebSocket error:', error);
this.handleError('WebSocket connection error');
reject(error);
};
this.websocket!.onclose = () => {
clearTimeout(timeout);
this.connected = false;
this.onDisconnectedCallback?.();
this.emit('disconnected');
};
});
} catch (error) {
console.error('Failed to connect to room:', error);
return false;
}
}
async disconnect(): Promise<void> {
// Close WebRTC connection
if (this.peerConnection) {
this.peerConnection.close();
this.peerConnection = null;
}
// Stop local streams
if (this.localStream) {
this.localStream.getTracks().forEach(track => track.stop());
this.localStream = null;
}
// Close WebSocket
if (this.websocket && this.websocket.readyState === WebSocket.OPEN) {
this.websocket.close();
}
this.websocket = null;
this.remoteStream = null;
this.connected = false;
this.workspaceId = null;
this.roomId = null;
this.role = null;
this.participantId = null;
this.onDisconnectedCallback?.();
this.emit('disconnected');
}
// ============= WEBRTC METHODS =============
createPeerConnection(): RTCPeerConnection {
const config: RTCConfiguration = {
iceServers: this.webrtcConfig.iceServers || [
{ urls: 'stun:stun.l.google.com:19302' }
]
};
this.peerConnection = new RTCPeerConnection(config);
// Connection state changes
this.peerConnection.onconnectionstatechange = () => {
const state = this.peerConnection?.connectionState;
console.info(`🔌 WebRTC connection state: ${state}`);
};
// ICE connection state
this.peerConnection.oniceconnectionstatechange = () => {
const state = this.peerConnection?.iceConnectionState;
console.info(`🧊 ICE connection state: ${state}`);
};
// ICE candidate handling
this.peerConnection.onicecandidate = (event: RTCPeerConnectionIceEvent) => {
if (event.candidate && this.workspaceId && this.roomId && this.participantId) {
// Send ICE candidate via signaling
this.sendWebRTCSignal(this.workspaceId, this.roomId, this.participantId, {
type: 'ice',
candidate: event.candidate.toJSON()
} as Record<string, unknown>);
}
};
// Handle remote stream
this.peerConnection.ontrack = (event: RTCTrackEvent) => {
console.info('📺 Received remote track:', event.track.kind);
this.remoteStream = event.streams[0] || null;
this.emit('remoteStream', this.remoteStream);
};
return this.peerConnection;
}
async createOffer(): Promise<RTCSessionDescriptionInit> {
if (!this.peerConnection) {
throw new Error('Peer connection not created');
}
const offer = await this.peerConnection.createOffer();
await this.peerConnection.setLocalDescription(offer);
return offer;
}
async createAnswer(offer: RTCSessionDescriptionInit): Promise<RTCSessionDescriptionInit> {
if (!this.peerConnection) {
throw new Error('Peer connection not created');
}
await this.peerConnection.setRemoteDescription(offer);
const answer = await this.peerConnection.createAnswer();
await this.peerConnection.setLocalDescription(answer);
return answer;
}
async setRemoteDescription(description: RTCSessionDescriptionInit): Promise<void> {
if (!this.peerConnection) {
throw new Error('Peer connection not created');
}
await this.peerConnection.setRemoteDescription(description);
}
async addIceCandidate(candidate: RTCIceCandidateInit): Promise<void> {
if (!this.peerConnection) {
throw new Error('Peer connection not created');
}
await this.peerConnection.addIceCandidate(candidate);
}
// ============= MEDIA METHODS =============
async startProducing(constraints?: MediaStreamConstraints): Promise<MediaStream> {
const mediaConstraints = constraints || this.webrtcConfig.constraints;
try {
this.localStream = await navigator.mediaDevices.getUserMedia(mediaConstraints);
return this.localStream;
} catch (error) {
throw new Error(`Failed to start video production: ${error}`);
}
}
async startScreenShare(): Promise<MediaStream> {
try {
this.localStream = await navigator.mediaDevices.getDisplayMedia({
video: {
width: this.webrtcConfig.resolution?.width || 1920,
height: this.webrtcConfig.resolution?.height || 1080,
frameRate: this.webrtcConfig.framerate || 30
},
audio: false
});
return this.localStream;
} catch (error) {
throw new Error(`Failed to start screen share: ${error}`);
}
}
stopProducing(): void {
if (this.localStream) {
this.localStream.getTracks().forEach(track => track.stop());
this.localStream = null;
}
}
// ============= GETTERS =============
getLocalStream(): MediaStream | null {
return this.localStream;
}
getRemoteStream(): MediaStream | null {
return this.remoteStream;
}
getPeerConnection(): RTCPeerConnection | null {
return this.peerConnection;
}
async getStats(): Promise<WebRTCStats | null> {
if (!this.peerConnection) {
return null;
}
const stats = await this.peerConnection.getStats();
return this.extractVideoStats(stats);
}
// ============= MESSAGE HANDLING =============
protected sendJoinMessage(): void {
if (!this.websocket || !this.participantId || !this.role) return;
const joinMessage: JoinMessage = {
participant_id: this.participantId,
role: this.role,
};
this.websocket.send(JSON.stringify(joinMessage));
}
protected handleMessage(message: WebSocketMessage): void {
switch (message.type) {
case 'joined':
console.log(`Successfully joined room ${message.room_id} as ${message.role}`);
break;
case 'heartbeat_ack':
console.debug('Heartbeat acknowledged');
break;
case 'error':
this.handleError(message.message);
break;
default:
// Let subclasses handle specific message types
this.handleRoleSpecificMessage(message);
}
}
protected handleRoleSpecificMessage(message: WebSocketMessage): void {
// To be overridden by subclasses
this.emit('message', message);
}
protected handleError(errorMessage: string): void {
console.error('Video client error:', errorMessage);
this.onErrorCallback?.(errorMessage);
this.emit('error', errorMessage);
}
// ============= UTILITY METHODS =============
async sendHeartbeat(): Promise<void> {
if (!this.connected || !this.websocket) return;
const message = { type: 'heartbeat' as const };
this.websocket.send(JSON.stringify(message));
}
isConnected(): boolean {
return this.connected;
}
getConnectionInfo(): ConnectionInfo {
return {
connected: this.connected,
workspace_id: this.workspaceId,
room_id: this.roomId,
role: this.role,
participant_id: this.participantId,
base_url: this.baseUrl,
};
}
// ============= EVENT CALLBACK SETTERS =============
onError(callback: ErrorCallback): void {
this.onErrorCallback = callback;
}
onConnected(callback: ConnectedCallback): void {
this.onConnectedCallback = callback;
}
onDisconnected(callback: DisconnectedCallback): void {
this.onDisconnectedCallback = callback;
}
// ============= PRIVATE HELPERS =============
private async fetchApi<T>(endpoint: string, options: RequestInit = {}): Promise<T> {
const url = `${this.apiBase}${endpoint}`;
const response = await fetch(url, {
...options,
signal: AbortSignal.timeout(this.options.timeout || 5000),
});
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
}
return response.json() as Promise<T>;
}
private extractVideoStats(stats: RTCStatsReport): WebRTCStats | null {
let inboundVideoStats: RTCInboundRtpStreamStats | null = null;
let outboundVideoStats: RTCOutboundRtpStreamStats | null = null;
stats.forEach((report) => {
if (report.type === 'inbound-rtp' && 'kind' in report && report.kind === 'video') {
inboundVideoStats = report as RTCInboundRtpStreamStats;
} else if (report.type === 'outbound-rtp' && 'kind' in report && report.kind === 'video') {
outboundVideoStats = report as RTCOutboundRtpStreamStats;
}
});
// Handle inbound stats (consumer)
if (inboundVideoStats) {
return {
videoBitsPerSecond: (inboundVideoStats as any).bytesReceived || 0,
framesPerSecond: (inboundVideoStats as any).framesPerSecond || 0,
frameWidth: (inboundVideoStats as any).frameWidth || 0,
frameHeight: (inboundVideoStats as any).frameHeight || 0,
packetsLost: (inboundVideoStats as any).packetsLost || 0,
totalPackets: (inboundVideoStats as any).packetsReceived || (inboundVideoStats as any).framesDecoded || 0
};
}
// Handle outbound stats (producer)
if (outboundVideoStats) {
return {
videoBitsPerSecond: (outboundVideoStats as any).bytesSent || 0,
framesPerSecond: (outboundVideoStats as any).framesPerSecond || 0,
frameWidth: (outboundVideoStats as any).frameWidth || 0,
frameHeight: (outboundVideoStats as any).frameHeight || 0,
packetsLost: (outboundVideoStats as any).packetsLost || 0,
totalPackets: (outboundVideoStats as any).packetsSent || (outboundVideoStats as any).framesSent || 0
};
}
return null;
}
// ============= WORKSPACE HELPERS =============
protected generateWorkspaceId(): string {
// Generate a UUID-like workspace ID
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
const r = Math.random() * 16 | 0;
const v = c === 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}
} |