mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[vfs][indexes] IJPL-149673: filter out invalid ('alien') files before AssertionError is thrown
+ bandage for annoying 'Alien file...' exception in tests GitOrigin-RevId: cc1b83a160f33e7ecfcd6df10886acb025396cc1
This commit is contained in:
committed by
intellij-monorepo-bot
parent
eb0de2e35a
commit
f8f562946a
@@ -15,6 +15,7 @@ import com.intellij.openapi.util.text.StringUtil
|
||||
import com.intellij.openapi.vfs.InvalidVirtualFileAccessException
|
||||
import com.intellij.openapi.vfs.VfsUtil
|
||||
import com.intellij.openapi.vfs.VirtualFile
|
||||
import com.intellij.openapi.vfs.VirtualFileWithId
|
||||
import com.intellij.openapi.vfs.newvfs.ArchiveFileSystem
|
||||
import com.intellij.openapi.vfs.newvfs.impl.CachedFileType
|
||||
import com.intellij.platform.diagnostic.telemetry.IJTracer
|
||||
@@ -273,9 +274,14 @@ class IndexUpdateRunner(
|
||||
contentLoader: CachedFileContentLoader,
|
||||
statistics: IndexingFileSetStatistics,
|
||||
) {
|
||||
|
||||
// snapshot at the beginning: if file changes while being processed, we can detect this on the following scanning
|
||||
val file = fileIndexingRequest.file
|
||||
if(!file.isValid){
|
||||
//this is a bandage for the annoying 'Alien file...' errors in tests: in real life it shouldn't be possible to come
|
||||
// here with an invalid file, but in a (badly isolated) tests it could happen
|
||||
LOG.warn("Invalid (alien?) file: #${(file as VirtualFileWithId).id}")
|
||||
return
|
||||
}
|
||||
// snapshot at the beginning: if file changes while being processed, we can detect this on the following scanning
|
||||
val indexingStamp = indexingRequest.getFileIndexingStamp(file)
|
||||
|
||||
val (applier, contentLoadingTime, length) = if (fileIndexingRequest.isDeleteRequest) {
|
||||
|
||||
Reference in New Issue
Block a user