File size: 20,674 Bytes
94193b5 | 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 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 | import { getActiveVFS } from './index';
import { logger } from '@/lib/utils';
import { compressToUTF16, decompressFromUTF16 } from 'lz-string';
export type CheckpointKind = 'auto' | 'manual';
// File content can be either a string or base64-encoded binary data
interface CheckpointFileContent {
data: string;
encoding?: 'base64';
}
// Full checkpoint with file contents (only used during create/restore)
export interface Checkpoint {
id: string;
timestamp: string;
description: string;
files: Map<string, string | CheckpointFileContent>;
directories: Set<string>;
projectId: string;
kind: CheckpointKind;
pinned?: boolean;
baseRevisionId?: string | null;
}
// Lightweight metadata for listing (kept in RAM)
export interface CheckpointMetadata {
id: string;
timestamp: string;
description: string;
projectId: string;
kind: CheckpointKind;
pinned?: boolean;
baseRevisionId?: string | null;
}
// Serializable checkpoint format for storage
interface StoredCheckpoint {
id: string;
timestamp: string;
description: string;
files: [string, string | CheckpointFileContent][];
directories: string[];
projectId: string;
kind?: CheckpointKind;
pinned?: boolean;
baseRevisionId?: string | null;
}
// Compressed checkpoint format — lz-string UTF-16 encoded files+directories
interface StoredCheckpointCompressed {
id: string;
timestamp: string;
description: string;
projectId: string;
kind?: CheckpointKind;
pinned?: boolean;
baseRevisionId?: string | null;
compressed: true;
compressedData: string; // lz-string UTF-16 compressed JSON of { files, directories }
}
type StoredCheckpointAny = StoredCheckpoint | StoredCheckpointCompressed;
interface CreateCheckpointOptions {
kind?: CheckpointKind;
baseRevisionId?: string | null;
}
const MAX_UNPINNED_PER_PROJECT = 5;
let cpCounter = 0;
class CheckpointManager {
// LAZY LOADING: Only store metadata in RAM, not full checkpoint data
private checkpointMetadata: Map<string, CheckpointMetadata> = new Map();
private currentCheckpoint: string | null = null;
private storeName = 'checkpoints';
private isInitialized = false;
/**
* Convert ArrayBuffer to base64 string
*/
private arrayBufferToBase64(buffer: ArrayBuffer): string {
const bytes = new Uint8Array(buffer);
let binary = '';
for (let i = 0; i < bytes.length; i++) {
binary += String.fromCharCode(bytes[i]);
}
return btoa(binary);
}
/**
* Convert base64 string to ArrayBuffer
*/
private base64ToArrayBuffer(base64: string): ArrayBuffer {
const binaryString = atob(base64);
const bytes = new Uint8Array(binaryString.length);
for (let i = 0; i < binaryString.length; i++) {
bytes[i] = binaryString.charCodeAt(i);
}
return bytes.buffer;
}
/**
* Initialize by ensuring VFS database is ready
*/
private async initDB(): Promise<void> {
if (this.isInitialized) {
return;
}
// Initialize VFS which also initializes the shared database
const activeVFS = getActiveVFS();
await activeVFS.init();
this.isInitialized = true;
await this.loadCheckpointMetadataFromDB();
}
/**
* Get shared database connection from VFS
*/
private getDB(): IDBDatabase {
const activeVFS = getActiveVFS();
return activeVFS.getDatabase();
}
/**
* LAZY LOADING: Only load checkpoint metadata into RAM, not file contents.
* Full checkpoint data stays in IndexedDB and is loaded on-demand during restore.
*/
private async loadCheckpointMetadataFromDB(): Promise<void> {
return new Promise((resolve, reject) => {
const db = this.getDB();
const transaction = db.transaction([this.storeName], 'readonly');
const store = transaction.objectStore(this.storeName);
const request = store.getAll();
request.onsuccess = () => {
const storedCheckpoints = request.result as StoredCheckpointAny[];
this.checkpointMetadata.clear();
for (const stored of storedCheckpoints) {
// Only store metadata, NOT file contents
const metadata: CheckpointMetadata = {
id: stored.id,
timestamp: stored.timestamp,
description: stored.description,
projectId: stored.projectId,
kind: stored.kind || 'auto',
pinned: stored.pinned ?? false,
baseRevisionId: stored.baseRevisionId ?? null
};
this.checkpointMetadata.set(stored.id, metadata);
}
resolve();
};
request.onerror = () => {
logger.error('Failed to load checkpoint metadata from DB');
reject(request.error);
};
});
}
/**
* Load a single full checkpoint from IndexedDB (on-demand for restore)
*/
private async loadSingleCheckpointFromDB(checkpointId: string): Promise<Checkpoint | null> {
return new Promise((resolve, reject) => {
const db = this.getDB();
const transaction = db.transaction([this.storeName], 'readonly');
const store = transaction.objectStore(this.storeName);
const request = store.get(checkpointId);
request.onsuccess = () => {
const stored = request.result as StoredCheckpointAny | undefined;
if (!stored) {
resolve(null);
return;
}
let files: Map<string, string | CheckpointFileContent>;
let directories: Set<string>;
if ('compressed' in stored && stored.compressed) {
// Compressed format — decompress lz-string UTF-16
const json = decompressFromUTF16(stored.compressedData);
if (!json) {
logger.error(`[Checkpoint] Failed to decompress checkpoint ${checkpointId} (corrupt data)`);
resolve(null);
return;
}
const parsed = JSON.parse(json);
files = new Map(parsed.files);
directories = new Set(parsed.directories);
} else {
// Legacy uncompressed format
const legacy = stored as StoredCheckpoint;
files = new Map(legacy.files);
directories = new Set(legacy.directories);
}
const checkpoint: Checkpoint = {
id: stored.id,
timestamp: stored.timestamp,
description: stored.description,
projectId: stored.projectId,
kind: stored.kind || 'auto',
pinned: stored.pinned ?? false,
baseRevisionId: stored.baseRevisionId ?? null,
files,
directories
};
resolve(checkpoint);
};
request.onerror = () => {
logger.error('Failed to load checkpoint from DB');
reject(request.error);
};
});
}
/**
* Save a checkpoint to IndexedDB
*/
private async saveCheckpointToDB(checkpoint: Checkpoint): Promise<void> {
await this.initDB();
let record: StoredCheckpoint | StoredCheckpointCompressed;
try {
const payload = JSON.stringify({
files: Array.from(checkpoint.files.entries()),
directories: Array.from(checkpoint.directories)
});
const compressedData = compressToUTF16(payload);
record = {
id: checkpoint.id,
timestamp: checkpoint.timestamp,
description: checkpoint.description,
projectId: checkpoint.projectId,
kind: checkpoint.kind,
pinned: checkpoint.pinned ?? false,
baseRevisionId: checkpoint.baseRevisionId ?? null,
compressed: true,
compressedData
};
} catch {
// Fallback to uncompressed on compression failure
record = {
...checkpoint,
files: Array.from(checkpoint.files.entries()),
directories: Array.from(checkpoint.directories),
kind: checkpoint.kind,
pinned: checkpoint.pinned ?? false,
baseRevisionId: checkpoint.baseRevisionId ?? null
};
}
return new Promise((resolve, reject) => {
let db: IDBDatabase;
try {
db = this.getDB();
} catch (err) {
reject(err);
return;
}
const transaction = db.transaction([this.storeName], 'readwrite');
const store = transaction.objectStore(this.storeName);
const request = store.put(record);
request.onsuccess = () => resolve();
request.onerror = () => {
logger.error('Failed to save checkpoint to DB');
reject(request.error);
};
});
}
/**
* Delete a checkpoint from IndexedDB
*/
private async deleteCheckpointFromDB(checkpointId: string): Promise<void> {
await this.initDB();
return new Promise((resolve, reject) => {
const db = this.getDB();
const transaction = db.transaction([this.storeName], 'readwrite');
const store = transaction.objectStore(this.storeName);
const request = store.delete(checkpointId);
request.onsuccess = () => resolve();
request.onerror = () => {
logger.error('Failed to delete checkpoint from DB');
reject(request.error);
};
});
}
/**
* Create a checkpoint of current project state
*/
async createCheckpoint(
projectId: string,
description: string,
options: CreateCheckpointOptions = {}
): Promise<Checkpoint> {
await this.initDB();
const activeVFS = getActiveVFS();
await activeVFS.init();
const files = await activeVFS.listDirectory(projectId, '/');
const fileContents = new Map<string, string | CheckpointFileContent>();
const directories = new Set<string>();
for (const file of files) {
if (file.metadata?.isGenerated) continue;
const pathParts = file.path.split('/').filter(Boolean);
for (let i = 1; i <= pathParts.length - 1; i++) {
const dirPath = '/' + pathParts.slice(0, i).join('/');
directories.add(dirPath);
}
if (typeof file.content === 'string') {
fileContents.set(file.path, file.content);
} else if (file.content instanceof ArrayBuffer) {
const base64Data = this.arrayBufferToBase64(file.content);
fileContents.set(file.path, {
data: base64Data,
encoding: 'base64'
});
} else {
try {
const fullFile = await activeVFS.readFile(projectId, file.path);
if (typeof fullFile.content === 'string') {
fileContents.set(file.path, fullFile.content);
} else if (fullFile.content instanceof ArrayBuffer) {
const base64Data = this.arrayBufferToBase64(fullFile.content);
fileContents.set(file.path, {
data: base64Data,
encoding: 'base64'
});
}
} catch (error) {
logger.error(`Failed to read file for checkpoint: ${file.path}`, error);
}
}
}
const checkpoint: Checkpoint = {
id: `cp_${Date.now()}_${cpCounter++}`,
timestamp: new Date().toISOString(),
description,
files: fileContents,
directories,
projectId,
kind: options.kind || 'auto',
baseRevisionId: options.baseRevisionId ?? null
};
const metadata: CheckpointMetadata = {
id: checkpoint.id,
timestamp: checkpoint.timestamp,
description: checkpoint.description,
projectId: checkpoint.projectId,
kind: checkpoint.kind,
pinned: false,
baseRevisionId: checkpoint.baseRevisionId
};
this.checkpointMetadata.set(checkpoint.id, metadata);
this.currentCheckpoint = checkpoint.id;
await this.saveCheckpointToDB(checkpoint);
await this.pruneUnpinned(projectId);
return checkpoint;
}
private async pruneUnpinned(projectId: string): Promise<void> {
const unpinned = Array.from(this.checkpointMetadata.values())
.filter(cp => cp.projectId === projectId && !cp.pinned)
.sort((a, b) => new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime());
if (unpinned.length <= MAX_UNPINNED_PER_PROJECT) return;
const toDelete = unpinned.slice(0, unpinned.length - MAX_UNPINNED_PER_PROJECT);
for (const cp of toDelete) {
this.checkpointMetadata.delete(cp.id);
await this.deleteCheckpointFromDB(cp.id);
}
if (toDelete.length > 0) {
logger.debug(`[CheckpointManager] Pruned ${toDelete.length} old checkpoints for project ${projectId}`);
}
}
/**
* Restore project to a checkpoint
*/
async restoreCheckpoint(checkpointId: string): Promise<boolean> {
// Defensive check: ensure checkpointId is a string
if (typeof checkpointId !== 'string') {
logger.error('[Checkpoint] Invalid checkpoint ID type:', typeof checkpointId, checkpointId);
return false;
}
// Basic validation of checkpoint ID format
if (!checkpointId.startsWith('cp_') || checkpointId.length < 6) {
logger.error('[Checkpoint] Invalid checkpoint ID format:', checkpointId);
return false;
}
await this.initDB();
// LAZY LOADING: Load full checkpoint from IndexedDB on-demand
const checkpoint = await this.loadSingleCheckpointFromDB(checkpointId);
if (!checkpoint) {
logger.error(`[Checkpoint] Checkpoint not found in database: ${checkpointId}`);
return false;
}
const activeVFS = getActiveVFS();
await activeVFS.init();
try {
const currentFiles = await activeVFS.listDirectory(checkpoint.projectId, '/');
const currentDirs = new Set<string>();
for (const file of currentFiles) {
const pathParts = file.path.split('/').filter(Boolean);
for (let i = 1; i <= pathParts.length - 1; i++) {
const dirPath = '/' + pathParts.slice(0, i).join('/');
currentDirs.add(dirPath);
}
}
for (const file of currentFiles) {
if (!checkpoint.files.has(file.path)) {
await activeVFS.deleteFile(checkpoint.projectId, file.path);
}
}
const dirsToDelete = Array.from(currentDirs)
.filter(dir => !checkpoint.directories || !checkpoint.directories.has(dir))
.sort((a, b) => b.length - a.length);
for (const dir of dirsToDelete) {
try {
await activeVFS.deleteDirectory(checkpoint.projectId, dir);
} catch {
}
}
if (checkpoint.directories) {
const dirsToCreate = Array.from(checkpoint.directories)
.sort((a, b) => a.length - b.length);
for (const dir of dirsToCreate) {
if (!currentDirs.has(dir)) {
try {
await activeVFS.createDirectory(checkpoint.projectId, dir);
} catch {
}
}
}
}
// Restore each file silently so listeners (preview compile, file-tree
// reload) don't fire N times — one event is dispatched after the loop.
// Without this, restoring a checkpoint with many files (e.g. 250 image
// frames) triggers a reload storm as the debounce fires mid-loop and
// each compile races the next batch of writes.
for (const [path, content] of checkpoint.files) {
let actualContent: string | ArrayBuffer;
if (typeof content === 'object' && content.encoding === 'base64') {
actualContent = this.base64ToArrayBuffer(content.data);
} else {
actualContent = content as string;
}
const exists = currentFiles.some(f => f.path === path);
if (exists) {
try {
await activeVFS.updateFile(checkpoint.projectId, path, actualContent, { silent: true });
} catch {
await activeVFS.createFile(checkpoint.projectId, path, actualContent, { silent: true });
}
} else {
await activeVFS.createFile(checkpoint.projectId, path, actualContent, { silent: true });
}
}
if (typeof window !== 'undefined') {
window.dispatchEvent(new Event('filesChanged'));
}
this.currentCheckpoint = checkpointId;
return true;
} catch (error) {
logger.error('Failed to restore checkpoint:', error);
return false;
}
}
/**
* Get all checkpoint metadata for a project (lightweight - no file contents)
*/
async getCheckpoints(projectId: string): Promise<CheckpointMetadata[]> {
await this.initDB();
// If we have no metadata for this project, reload from IDB — another project's
// data may have been loaded and this one was never fetched or was unloaded.
const hasAny = Array.from(this.checkpointMetadata.values()).some(cp => cp.projectId === projectId);
if (!hasAny) {
await this.loadCheckpointMetadataFromDB();
}
return Array.from(this.checkpointMetadata.values())
.filter(cp => cp.projectId === projectId)
.sort((a, b) => b.timestamp.localeCompare(a.timestamp));
}
/**
* Get the current checkpoint metadata
*/
getCurrentCheckpoint(): CheckpointMetadata | null {
if (!this.currentCheckpoint) return null;
return this.checkpointMetadata.get(this.currentCheckpoint) || null;
}
/**
* Check if a checkpoint exists
*/
async checkpointExists(checkpointId: string): Promise<boolean> {
if (!checkpointId || typeof checkpointId !== 'string') {
return false;
}
await this.initDB();
// Check metadata (which is always loaded)
return this.checkpointMetadata.has(checkpointId);
}
async pinCheckpoint(checkpointId: string): Promise<boolean> {
return this.setPinned(checkpointId, true);
}
async unpinCheckpoint(checkpointId: string): Promise<boolean> {
return this.setPinned(checkpointId, false);
}
private async setPinned(checkpointId: string, pinned: boolean): Promise<boolean> {
await this.initDB();
const meta = this.checkpointMetadata.get(checkpointId);
if (!meta) return false;
meta.pinned = pinned;
this.checkpointMetadata.set(checkpointId, meta);
const full = await this.loadSingleCheckpointFromDB(checkpointId);
if (!full) return false;
full.pinned = pinned;
await this.saveCheckpointToDB(full);
if (!pinned) {
await this.pruneUnpinned(meta.projectId);
}
return true;
}
/**
* Clear all non-pinned checkpoints for a project
*/
async clearCheckpoints(projectId: string): Promise<void> {
await this.initDB();
const toDelete: string[] = [];
for (const [id, meta] of this.checkpointMetadata) {
if (meta.projectId === projectId && !meta.pinned) {
this.checkpointMetadata.delete(id);
toDelete.push(id);
}
}
for (const id of toDelete) {
await this.deleteCheckpointFromDB(id);
}
if (this.currentCheckpoint && toDelete.includes(this.currentCheckpoint)) {
this.currentCheckpoint = null;
}
}
/**
* Clear non-manual, non-pinned checkpoints for a project.
* Called when conversation is cleared.
*/
async clearAutoCheckpoints(projectId: string): Promise<void> {
await this.initDB();
const toDelete: string[] = [];
for (const [id, meta] of this.checkpointMetadata) {
if (meta.projectId === projectId && meta.kind !== 'manual' && !meta.pinned) {
toDelete.push(id);
}
}
for (const id of toDelete) {
this.checkpointMetadata.delete(id);
await this.deleteCheckpointFromDB(id);
}
if (this.currentCheckpoint && toDelete.includes(this.currentCheckpoint)) {
this.currentCheckpoint = null;
}
if (toDelete.length > 0) {
logger.debug(`[CheckpointManager] Cleared ${toDelete.length} auto-checkpoints for project ${projectId}`);
}
}
/**
* Unload all checkpoint metadata for a project from memory
* Checkpoints remain in IndexedDB and can be reloaded on demand
* This is called when leaving a project to free up memory
*/
unloadProject(projectId: string): void {
let unloadedCount = 0;
for (const [id, meta] of this.checkpointMetadata) {
if (meta.projectId === projectId) {
this.checkpointMetadata.delete(id);
unloadedCount++;
}
}
// Reset current checkpoint if it was from this project
if (this.currentCheckpoint) {
const current = this.checkpointMetadata.get(this.currentCheckpoint);
if (!current) {
this.currentCheckpoint = null;
}
}
// Force metadata reload on next operation so checkpoints created
// while the workspace was unmounted (e.g. during background generation)
// are visible when the project is re-opened
if (unloadedCount > 0) {
this.isInitialized = false;
logger.debug(`[CheckpointManager] Unloaded ${unloadedCount} checkpoint metadata for project ${projectId} from memory`);
}
}
}
export const checkpointManager = new CheckpointManager();
|