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
| class RealtimeSync { constructor() { this.connections = new Map(); this.documentSessions = new Map(); this.operationBuffer = new Map(); this.syncConfig = { batchSize: 10, batchTimeout: 100, maxRetries: 3, heartbeatInterval: 30000 };
this.initializeSync(); }
initializeSync() { this.startBatchProcessor(); this.startHeartbeatMonitor(); }
async broadcastOperation(documentId, operation, excludeUserId) { try { const session = this.documentSessions.get(documentId); if (!session) { console.warn(`文档会话不存在: ${documentId}`); return; }
const message = { type: 'operation', documentId: documentId, operation: operation, timestamp: Date.now() };
const broadcastPromises = [];
for (const userId of session.participants) { if (userId !== excludeUserId) { broadcastPromises.push( this.sendToUser(userId, message) ); } }
await Promise.allSettled(broadcastPromises);
session.stats.operationsBroadcast++;
} catch (error) { console.error('广播操作失败:', error); } }
async sendToUser(userId, message) { try { const connection = this.connections.get(userId);
if (!connection || !connection.isActive) { await this.bufferMessage(userId, message); return false; }
if (connection.websocket.readyState === WebSocket.OPEN) { connection.websocket.send(JSON.stringify(message)); connection.lastActivity = Date.now(); return true; } else { connection.isActive = false; await this.bufferMessage(userId, message); return false; }
} catch (error) { console.error(`发送消息给用户${userId}失败:`, error); return false; } }
async bufferMessage(userId, message) { const bufferKey = `${userId}:${message.documentId}`;
if (!this.operationBuffer.has(bufferKey)) { this.operationBuffer.set(bufferKey, []); }
const buffer = this.operationBuffer.get(bufferKey); buffer.push({ ...message, bufferedAt: Date.now() });
if (buffer.length > 1000) { buffer.splice(0, buffer.length - 1000); } }
async flushBufferedMessages(userId, documentId) { try { const bufferKey = `${userId}:${documentId}`; const buffer = this.operationBuffer.get(bufferKey);
if (!buffer || buffer.length === 0) { return; }
buffer.sort((a, b) => a.timestamp - b.timestamp);
const batchSize = 50; for (let i = 0; i < buffer.length; i += batchSize) { const batch = buffer.slice(i, i + batchSize);
await this.sendToUser(userId, { type: 'operation_batch', documentId: documentId, operations: batch.map(msg => msg.operation), timestamp: Date.now() });
await new Promise(resolve => setTimeout(resolve, 10)); }
this.operationBuffer.delete(bufferKey);
console.log(`已发送${buffer.length}条缓冲消息给用户${userId}`);
} catch (error) { console.error('发送缓冲消息失败:', error); } }
async broadcastUserJoined(documentId, userId) { const message = { type: 'user_joined', documentId: documentId, userId: userId, timestamp: Date.now() };
await this.broadcastToDocument(documentId, message, userId); }
async broadcastUserLeft(documentId, userId) { const message = { type: 'user_left', documentId: documentId, userId: userId, timestamp: Date.now() };
await this.broadcastToDocument(documentId, message, userId); }
async broadcastPresenceUpdate(documentId, userId, presenceData) { const message = { type: 'presence_update', documentId: documentId, userId: userId, presence: presenceData, timestamp: Date.now() };
await this.broadcastToDocument(documentId, message, userId); }
async broadcastToDocument(documentId, message, excludeUserId = null) { const session = this.documentSessions.get(documentId); if (!session) return;
const promises = []; for (const userId of session.participants) { if (userId !== excludeUserId) { promises.push(this.sendToUser(userId, message)); } }
await Promise.allSettled(promises); }
registerConnection(userId, websocket, documentId) { this.connections.set(userId, { websocket: websocket, isActive: true, connectedAt: Date.now(), lastActivity: Date.now(), documentId: documentId });
this.addToDocumentSession(documentId, userId);
this.setupWebSocketHandlers(userId, websocket, documentId);
console.log(`用户${userId}连接到文档${documentId}`); }
unregisterConnection(userId, documentId) { this.connections.delete(userId);
this.removeFromDocumentSession(documentId, userId);
console.log(`用户${userId}从文档${documentId}断开连接`); }
addToDocumentSession(documentId, userId) { if (!this.documentSessions.has(documentId)) { this.documentSessions.set(documentId, { participants: new Set(), createdAt: Date.now(), stats: { operationsBroadcast: 0, messagesBuffered: 0, reconnections: 0 } }); }
const session = this.documentSessions.get(documentId); session.participants.add(userId); }
removeFromDocumentSession(documentId, userId) { const session = this.documentSessions.get(documentId); if (session) { session.participants.delete(userId);
if (session.participants.size === 0) { this.documentSessions.delete(documentId); console.log(`文档会话已清理: ${documentId}`); } } }
setupWebSocketHandlers(userId, websocket, documentId) { websocket.on('message', (data) => { this.handleWebSocketMessage(userId, data, documentId); });
websocket.on('close', () => { this.handleWebSocketClose(userId, documentId); });
websocket.on('error', (error) => { console.error(`WebSocket错误 (用户${userId}):`, error); });
websocket.on('pong', () => { const connection = this.connections.get(userId); if (connection) { connection.lastActivity = Date.now(); } }); }
handleWebSocketMessage(userId, data, documentId) { try { const message = JSON.parse(data.toString());
const connection = this.connections.get(userId); if (connection) { connection.lastActivity = Date.now(); }
switch (message.type) { case 'heartbeat': this.handleHeartbeat(userId); break; case 'operation': this.handleOperation(userId, documentId, message.operation); break; case 'presence': this.handlePresenceUpdate(userId, documentId, message.presence); break; default: console.warn('未知消息类型:', message.type); }
} catch (error) { console.error('处理WebSocket消息失败:', error); } }
handleWebSocketClose(userId, documentId) { console.log(`WebSocket连接关闭: 用户${userId}`); this.unregisterConnection(userId, documentId); }
handleHeartbeat(userId) { const connection = this.connections.get(userId); if (connection) { connection.lastActivity = Date.now(); connection.websocket.send(JSON.stringify({ type: 'heartbeat_ack' })); } }
startBatchProcessor() { setInterval(() => { this.processBatchedOperations(); }, this.syncConfig.batchTimeout); }
startHeartbeatMonitor() { setInterval(() => { this.checkConnectionHealth(); }, this.syncConfig.heartbeatInterval); }
checkConnectionHealth() { const now = Date.now(); const timeout = this.syncConfig.heartbeatInterval * 2;
for (const [userId, connection] of this.connections.entries()) { if (now - connection.lastActivity > timeout) { console.log(`连接超时,断开用户${userId}`); connection.websocket.terminate(); this.connections.delete(userId); } else { if (connection.websocket.readyState === WebSocket.OPEN) { connection.websocket.ping(); } } } }
getSyncStats() { const stats = { activeConnections: this.connections.size, activeSessions: this.documentSessions.size, bufferedMessages: 0, totalOperations: 0 };
for (const buffer of this.operationBuffer.values()) { stats.bufferedMessages += buffer.length; }
for (const session of this.documentSessions.values()) { stats.totalOperations += session.stats.operationsBroadcast; }
return stats; } }
|