fix: clear() now properly resets VFS and COW state

Bug: After brain.clear(), VFS operations failed with
"Source entity 00000000-0000-0000-0000-000000000000 not found"

Root causes fixed:
- VFS instance remained in memory pointing to deleted root entity
- FileSystemStorage.clear() set blobStorage=undefined but didn't reinit
- Write-through cache returned stale entity data after clear()

Changes:
- Re-initialize COW (BlobStorage) after storage.clear() in brainy.ts
- Reset and reinitialize VFS following checkout() pattern
- Add clearWriteCache() to BaseStorage, call in Memory/FileSystem adapters
- Add 7 integration tests for VFS clear functionality

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
David Snelling 2026-01-16 17:04:09 -08:00
parent 1a813c7b86
commit 79ae349b60
5 changed files with 277 additions and 0 deletions

View file

@ -2638,6 +2638,34 @@ export class Brainy<T = any> implements BrainyInterface<T> {
this._neural = undefined
this._nlp = undefined
this._tripleIntelligence = undefined
// v7.3.1: Re-initialize COW (BlobStorage) after storage.clear()
// storage.clear() sets blobStorage=undefined for FileSystem/cloud adapters
// VFS depends on blobStorage being available (unified blob storage for all files)
// Must be done BEFORE VFS reinitialization
if (typeof (this.storage as any).initializeCOW === 'function') {
await (this.storage as any).initializeCOW({
branch: (this.config.storage as any)?.branch || 'main',
enableCompression: true
})
}
// v7.3.1: Reset VFS state - root entity was deleted by storage.clear()
// Bug: VFS instance remained in memory pointing to deleted root entity
// Following checkout() pattern exactly (see lines 2907-2914)
if (this._vfs) {
// Clear PathResolver caches (including UnifiedCache VFS entries)
if ((this._vfs as any).pathResolver?.invalidateAllCaches) {
(this._vfs as any).pathResolver.invalidateAllCaches()
}
// Recreate and reinitialize VFS so it's ready for use
this._vfs = new VirtualFileSystem(this)
await this._vfs.init()
// _vfsInitialized remains true since we just initialized
} else {
// VFS was never used, reset flag for clean state
this._vfsInitialized = false
}
})
}