clang 17.0.0git
FileManager.cpp
Go to the documentation of this file.
1//===--- FileManager.cpp - File System Probing and Caching ----------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the FileManager interface.
10//
11//===----------------------------------------------------------------------===//
12//
13// TODO: This should index all interesting directories with dirent calls.
14// getdirentries ?
15// opendir/readdir_r/closedir ?
16//
17//===----------------------------------------------------------------------===//
18
21#include "llvm/ADT/STLExtras.h"
22#include "llvm/ADT/SmallString.h"
23#include "llvm/ADT/Statistic.h"
24#include "llvm/Config/llvm-config.h"
25#include "llvm/Support/FileSystem.h"
26#include "llvm/Support/MemoryBuffer.h"
27#include "llvm/Support/Path.h"
28#include "llvm/Support/raw_ostream.h"
29#include <algorithm>
30#include <cassert>
31#include <climits>
32#include <cstdint>
33#include <cstdlib>
34#include <optional>
35#include <string>
36#include <utility>
37
38using namespace clang;
39
40#define DEBUG_TYPE "file-search"
41
42ALWAYS_ENABLED_STATISTIC(NumDirLookups, "Number of directory lookups.");
43ALWAYS_ENABLED_STATISTIC(NumFileLookups, "Number of file lookups.");
44ALWAYS_ENABLED_STATISTIC(NumDirCacheMisses,
45 "Number of directory cache misses.");
46ALWAYS_ENABLED_STATISTIC(NumFileCacheMisses, "Number of file cache misses.");
47
48//===----------------------------------------------------------------------===//
49// Common logic.
50//===----------------------------------------------------------------------===//
51
54 : FS(std::move(FS)), FileSystemOpts(FSO), SeenDirEntries(64),
55 SeenFileEntries(64), NextFileUID(0) {
56 // If the caller doesn't provide a virtual file system, just grab the real
57 // file system.
58 if (!this->FS)
59 this->FS = llvm::vfs::getRealFileSystem();
60}
61
63
64void FileManager::setStatCache(std::unique_ptr<FileSystemStatCache> statCache) {
65 assert(statCache && "No stat cache provided?");
66 StatCache = std::move(statCache);
67}
68
69void FileManager::clearStatCache() { StatCache.reset(); }
70
71/// Retrieve the directory that the given file name resides in.
72/// Filename can point to either a real file or a virtual file.
75 bool CacheFailure) {
76 if (Filename.empty())
77 return llvm::errorCodeToError(
78 make_error_code(std::errc::no_such_file_or_directory));
79
80 if (llvm::sys::path::is_separator(Filename[Filename.size() - 1]))
81 return llvm::errorCodeToError(make_error_code(std::errc::is_a_directory));
82
83 StringRef DirName = llvm::sys::path::parent_path(Filename);
84 // Use the current directory if file has no path component.
85 if (DirName.empty())
86 DirName = ".";
87
88 return FileMgr.getDirectoryRef(DirName, CacheFailure);
89}
90
91/// Add all ancestors of the given path (pointing to either a file or
92/// a directory) as virtual directories.
93void FileManager::addAncestorsAsVirtualDirs(StringRef Path) {
94 StringRef DirName = llvm::sys::path::parent_path(Path);
95 if (DirName.empty())
96 DirName = ".";
97
98 auto &NamedDirEnt = *SeenDirEntries.insert(
99 {DirName, std::errc::no_such_file_or_directory}).first;
100
101 // When caching a virtual directory, we always cache its ancestors
102 // at the same time. Therefore, if DirName is already in the cache,
103 // we don't need to recurse as its ancestors must also already be in
104 // the cache (or it's a known non-virtual directory).
105 if (NamedDirEnt.second)
106 return;
107
108 // Add the virtual directory to the cache.
109 auto *UDE = new (DirsAlloc.Allocate()) DirectoryEntry();
110 UDE->Name = NamedDirEnt.first();
111 NamedDirEnt.second = *UDE;
112 VirtualDirectoryEntries.push_back(UDE);
113
114 // Recursively add the other ancestors.
115 addAncestorsAsVirtualDirs(DirName);
116}
117
119FileManager::getDirectoryRef(StringRef DirName, bool CacheFailure) {
120 // stat doesn't like trailing separators except for root directory.
121 // At least, on Win32 MSVCRT, stat() cannot strip trailing '/'.
122 // (though it can strip '\\')
123 if (DirName.size() > 1 &&
124 DirName != llvm::sys::path::root_path(DirName) &&
125 llvm::sys::path::is_separator(DirName.back()))
126 DirName = DirName.substr(0, DirName.size()-1);
127 std::optional<std::string> DirNameStr;
128 if (is_style_windows(llvm::sys::path::Style::native)) {
129 // Fixing a problem with "clang C:test.c" on Windows.
130 // Stat("C:") does not recognize "C:" as a valid directory
131 if (DirName.size() > 1 && DirName.back() == ':' &&
132 DirName.equals_insensitive(llvm::sys::path::root_name(DirName))) {
133 DirNameStr = DirName.str() + '.';
134 DirName = *DirNameStr;
135 }
136 }
137
138 ++NumDirLookups;
139
140 // See if there was already an entry in the map. Note that the map
141 // contains both virtual and real directories.
142 auto SeenDirInsertResult =
143 SeenDirEntries.insert({DirName, std::errc::no_such_file_or_directory});
144 if (!SeenDirInsertResult.second) {
145 if (SeenDirInsertResult.first->second)
146 return DirectoryEntryRef(*SeenDirInsertResult.first);
147 return llvm::errorCodeToError(SeenDirInsertResult.first->second.getError());
148 }
149
150 // We've not seen this before. Fill it in.
151 ++NumDirCacheMisses;
152 auto &NamedDirEnt = *SeenDirInsertResult.first;
153 assert(!NamedDirEnt.second && "should be newly-created");
154
155 // Get the null-terminated directory name as stored as the key of the
156 // SeenDirEntries map.
157 StringRef InterndDirName = NamedDirEnt.first();
158
159 // Check to see if the directory exists.
160 llvm::vfs::Status Status;
161 auto statError = getStatValue(InterndDirName, Status, false,
162 nullptr /*directory lookup*/);
163 if (statError) {
164 // There's no real directory at the given path.
165 if (CacheFailure)
166 NamedDirEnt.second = statError;
167 else
168 SeenDirEntries.erase(DirName);
169 return llvm::errorCodeToError(statError);
170 }
171
172 // It exists. See if we have already opened a directory with the
173 // same inode (this occurs on Unix-like systems when one dir is
174 // symlinked to another, for example) or the same path (on
175 // Windows).
176 DirectoryEntry *&UDE = UniqueRealDirs[Status.getUniqueID()];
177
178 if (!UDE) {
179 // We don't have this directory yet, add it. We use the string
180 // key from the SeenDirEntries map as the string.
181 UDE = new (DirsAlloc.Allocate()) DirectoryEntry();
182 UDE->Name = InterndDirName;
183 }
184 NamedDirEnt.second = *UDE;
185
186 return DirectoryEntryRef(NamedDirEnt);
187}
188
189llvm::ErrorOr<const DirectoryEntry *>
190FileManager::getDirectory(StringRef DirName, bool CacheFailure) {
191 auto Result = getDirectoryRef(DirName, CacheFailure);
192 if (Result)
193 return &Result->getDirEntry();
194 return llvm::errorToErrorCode(Result.takeError());
195}
196
197llvm::ErrorOr<const FileEntry *>
198FileManager::getFile(StringRef Filename, bool openFile, bool CacheFailure) {
199 auto Result = getFileRef(Filename, openFile, CacheFailure);
200 if (Result)
201 return &Result->getFileEntry();
202 return llvm::errorToErrorCode(Result.takeError());
203}
204
206FileManager::getFileRef(StringRef Filename, bool openFile, bool CacheFailure) {
207 ++NumFileLookups;
208
209 // See if there is already an entry in the map.
210 auto SeenFileInsertResult =
211 SeenFileEntries.insert({Filename, std::errc::no_such_file_or_directory});
212 if (!SeenFileInsertResult.second) {
213 if (!SeenFileInsertResult.first->second)
214 return llvm::errorCodeToError(
215 SeenFileInsertResult.first->second.getError());
216 return FileEntryRef(*SeenFileInsertResult.first);
217 }
218
219 // We've not seen this before. Fill it in.
220 ++NumFileCacheMisses;
221 auto *NamedFileEnt = &*SeenFileInsertResult.first;
222 assert(!NamedFileEnt->second && "should be newly-created");
223
224 // Get the null-terminated file name as stored as the key of the
225 // SeenFileEntries map.
226 StringRef InterndFileName = NamedFileEnt->first();
227
228 // Look up the directory for the file. When looking up something like
229 // sys/foo.h we'll discover all of the search directories that have a 'sys'
230 // subdirectory. This will let us avoid having to waste time on known-to-fail
231 // searches when we go to find sys/bar.h, because all the search directories
232 // without a 'sys' subdir will get a cached failure result.
233 auto DirInfoOrErr = getDirectoryFromFile(*this, Filename, CacheFailure);
234 if (!DirInfoOrErr) { // Directory doesn't exist, file can't exist.
235 std::error_code Err = errorToErrorCode(DirInfoOrErr.takeError());
236 if (CacheFailure)
237 NamedFileEnt->second = Err;
238 else
239 SeenFileEntries.erase(Filename);
240
241 return llvm::errorCodeToError(Err);
242 }
243 DirectoryEntryRef DirInfo = *DirInfoOrErr;
244
245 // FIXME: Use the directory info to prune this, before doing the stat syscall.
246 // FIXME: This will reduce the # syscalls.
247
248 // Check to see if the file exists.
249 std::unique_ptr<llvm::vfs::File> F;
250 llvm::vfs::Status Status;
251 auto statError = getStatValue(InterndFileName, Status, true,
252 openFile ? &F : nullptr);
253 if (statError) {
254 // There's no real file at the given path.
255 if (CacheFailure)
256 NamedFileEnt->second = statError;
257 else
258 SeenFileEntries.erase(Filename);
259
260 return llvm::errorCodeToError(statError);
261 }
262
263 assert((openFile || !F) && "undesired open file");
264
265 // It exists. See if we have already opened a file with the same inode.
266 // This occurs when one dir is symlinked to another, for example.
267 FileEntry *&UFE = UniqueRealFiles[Status.getUniqueID()];
268 bool ReusingEntry = UFE != nullptr;
269 if (!UFE)
270 UFE = new (FilesAlloc.Allocate()) FileEntry();
271
272 if (!Status.ExposesExternalVFSPath || Status.getName() == Filename) {
273 // Use the requested name. Set the FileEntry.
274 NamedFileEnt->second = FileEntryRef::MapValue(*UFE, DirInfo);
275 } else {
276 // Name mismatch. We need a redirect. First grab the actual entry we want
277 // to return.
278 //
279 // This redirection logic intentionally leaks the external name of a
280 // redirected file that uses 'use-external-name' in \a
281 // vfs::RedirectionFileSystem. This allows clang to report the external
282 // name to users (in diagnostics) and to tools that don't have access to
283 // the VFS (in debug info and dependency '.d' files).
284 //
285 // FIXME: This is pretty complex and has some very complicated interactions
286 // with the rest of clang. It's also inconsistent with how "real"
287 // filesystems behave and confuses parts of clang expect to see the
288 // name-as-accessed on the \a FileEntryRef.
289 //
290 // A potential plan to remove this is as follows -
291 // - Update callers such as `HeaderSearch::findUsableModuleForHeader()`
292 // to explicitly use the `getNameAsRequested()` rather than just using
293 // `getName()`.
294 // - Add a `FileManager::getExternalPath` API for explicitly getting the
295 // remapped external filename when there is one available. Adopt it in
296 // callers like diagnostics/deps reporting instead of calling
297 // `getName()` directly.
298 // - Switch the meaning of `FileEntryRef::getName()` to get the requested
299 // name, not the external name. Once that sticks, revert callers that
300 // want the requested name back to calling `getName()`.
301 // - Update the VFS to always return the requested name. This could also
302 // return the external name, or just have an API to request it
303 // lazily. The latter has the benefit of making accesses of the
304 // external path easily tracked, but may also require extra work than
305 // just returning up front.
306 // - (Optionally) Add an API to VFS to get the external filename lazily
307 // and update `FileManager::getExternalPath()` to use it instead. This
308 // has the benefit of making such accesses easily tracked, though isn't
309 // necessarily required (and could cause extra work than just adding to
310 // eg. `vfs::Status` up front).
311 auto &Redirection =
312 *SeenFileEntries
313 .insert({Status.getName(), FileEntryRef::MapValue(*UFE, DirInfo)})
314 .first;
315 assert(Redirection.second->V.is<FileEntry *>() &&
316 "filename redirected to a non-canonical filename?");
317 assert(Redirection.second->V.get<FileEntry *>() == UFE &&
318 "filename from getStatValue() refers to wrong file");
319
320 // Cache the redirection in the previously-inserted entry, still available
321 // in the tentative return value.
322 NamedFileEnt->second = FileEntryRef::MapValue(Redirection, DirInfo);
323 }
324
325 FileEntryRef ReturnedRef(*NamedFileEnt);
326 if (ReusingEntry) { // Already have an entry with this inode, return it.
327
328 // FIXME: This hack ensures that `getDir()` will use the path that was
329 // used to lookup this file, even if we found a file by different path
330 // first. This is required in order to find a module's structure when its
331 // headers/module map are mapped in the VFS.
332 //
333 // See above for how this will eventually be removed. `IsVFSMapped`
334 // *cannot* be narrowed to `ExposesExternalVFSPath` as crash reproducers
335 // also depend on this logic and they have `use-external-paths: false`.
336 if (&DirInfo.getDirEntry() != UFE->Dir && Status.IsVFSMapped)
337 UFE->Dir = &DirInfo.getDirEntry();
338
339 // Always update LastRef to the last name by which a file was accessed.
340 // FIXME: Neither this nor always using the first reference is correct; we
341 // want to switch towards a design where we return a FileName object that
342 // encapsulates both the name by which the file was accessed and the
343 // corresponding FileEntry.
344 // FIXME: LastRef should be removed from FileEntry once all clients adopt
345 // FileEntryRef.
346 UFE->LastRef = ReturnedRef;
347
348 return ReturnedRef;
349 }
350
351 // Otherwise, we don't have this file yet, add it.
352 UFE->LastRef = ReturnedRef;
353 UFE->Size = Status.getSize();
354 UFE->ModTime = llvm::sys::toTimeT(Status.getLastModificationTime());
355 UFE->Dir = &DirInfo.getDirEntry();
356 UFE->UID = NextFileUID++;
357 UFE->UniqueID = Status.getUniqueID();
358 UFE->IsNamedPipe = Status.getType() == llvm::sys::fs::file_type::fifo_file;
359 UFE->File = std::move(F);
360
361 if (UFE->File) {
362 if (auto PathName = UFE->File->getName())
363 fillRealPathName(UFE, *PathName);
364 } else if (!openFile) {
365 // We should still fill the path even if we aren't opening the file.
366 fillRealPathName(UFE, InterndFileName);
367 }
368 return ReturnedRef;
369}
370
372 // Only read stdin once.
373 if (STDIN)
374 return *STDIN;
375
376 std::unique_ptr<llvm::MemoryBuffer> Content;
377 if (auto ContentOrError = llvm::MemoryBuffer::getSTDIN())
378 Content = std::move(*ContentOrError);
379 else
380 return llvm::errorCodeToError(ContentOrError.getError());
381
382 STDIN = getVirtualFileRef(Content->getBufferIdentifier(),
383 Content->getBufferSize(), 0);
384 FileEntry &FE = const_cast<FileEntry &>(STDIN->getFileEntry());
385 FE.Content = std::move(Content);
386 FE.IsNamedPipe = true;
387 return *STDIN;
388}
389
390const FileEntry *FileManager::getVirtualFile(StringRef Filename, off_t Size,
391 time_t ModificationTime) {
392 return &getVirtualFileRef(Filename, Size, ModificationTime).getFileEntry();
393}
394
396 time_t ModificationTime) {
397 ++NumFileLookups;
398
399 // See if there is already an entry in the map for an existing file.
400 auto &NamedFileEnt = *SeenFileEntries.insert(
401 {Filename, std::errc::no_such_file_or_directory}).first;
402 if (NamedFileEnt.second) {
403 FileEntryRef::MapValue Value = *NamedFileEnt.second;
404 if (LLVM_LIKELY(Value.V.is<FileEntry *>()))
405 return FileEntryRef(NamedFileEnt);
406 return FileEntryRef(*Value.V.get<const FileEntryRef::MapEntry *>());
407 }
408
409 // We've not seen this before, or the file is cached as non-existent.
410 ++NumFileCacheMisses;
411 addAncestorsAsVirtualDirs(Filename);
412 FileEntry *UFE = nullptr;
413
414 // Now that all ancestors of Filename are in the cache, the
415 // following call is guaranteed to find the DirectoryEntry from the
416 // cache. A virtual file can also have an empty filename, that could come
417 // from a source location preprocessor directive with an empty filename as
418 // an example, so we need to pretend it has a name to ensure a valid directory
419 // entry can be returned.
420 auto DirInfo = expectedToOptional(getDirectoryFromFile(
421 *this, Filename.empty() ? "." : Filename, /*CacheFailure=*/true));
422 assert(DirInfo &&
423 "The directory of a virtual file should already be in the cache.");
424
425 // Check to see if the file exists. If so, drop the virtual file
426 llvm::vfs::Status Status;
427 const char *InterndFileName = NamedFileEnt.first().data();
428 if (!getStatValue(InterndFileName, Status, true, nullptr)) {
429 Status = llvm::vfs::Status(
430 Status.getName(), Status.getUniqueID(),
431 llvm::sys::toTimePoint(ModificationTime),
432 Status.getUser(), Status.getGroup(), Size,
433 Status.getType(), Status.getPermissions());
434
435 auto &RealFE = UniqueRealFiles[Status.getUniqueID()];
436 if (RealFE) {
437 // If we had already opened this file, close it now so we don't
438 // leak the descriptor. We're not going to use the file
439 // descriptor anyway, since this is a virtual file.
440 if (RealFE->File)
441 RealFE->closeFile();
442 // If we already have an entry with this inode, return it.
443 //
444 // FIXME: Surely this should add a reference by the new name, and return
445 // it instead...
446 NamedFileEnt.second = FileEntryRef::MapValue(*RealFE, *DirInfo);
447 return FileEntryRef(NamedFileEnt);
448 }
449 // File exists, but no entry - create it.
450 RealFE = new (FilesAlloc.Allocate()) FileEntry();
451 RealFE->UniqueID = Status.getUniqueID();
452 RealFE->IsNamedPipe =
453 Status.getType() == llvm::sys::fs::file_type::fifo_file;
454 fillRealPathName(RealFE, Status.getName());
455
456 UFE = RealFE;
457 } else {
458 // File does not exist, create a virtual entry.
459 UFE = new (FilesAlloc.Allocate()) FileEntry();
460 VirtualFileEntries.push_back(UFE);
461 }
462
463 NamedFileEnt.second = FileEntryRef::MapValue(*UFE, *DirInfo);
464 UFE->LastRef = FileEntryRef(NamedFileEnt);
465 UFE->Size = Size;
466 UFE->ModTime = ModificationTime;
467 UFE->Dir = &DirInfo->getDirEntry();
468 UFE->UID = NextFileUID++;
469 UFE->File.reset();
470 return FileEntryRef(NamedFileEnt);
471}
472
474 // Stat of the file and return nullptr if it doesn't exist.
475 llvm::vfs::Status Status;
476 if (getStatValue(VF.getName(), Status, /*isFile=*/true, /*F=*/nullptr))
477 return std::nullopt;
478
479 if (!SeenBypassFileEntries)
480 SeenBypassFileEntries = std::make_unique<
481 llvm::StringMap<llvm::ErrorOr<FileEntryRef::MapValue>>>();
482
483 // If we've already bypassed just use the existing one.
484 auto Insertion = SeenBypassFileEntries->insert(
485 {VF.getName(), std::errc::no_such_file_or_directory});
486 if (!Insertion.second)
487 return FileEntryRef(*Insertion.first);
488
489 // Fill in the new entry from the stat.
490 FileEntry *BFE = new (FilesAlloc.Allocate()) FileEntry();
491 BypassFileEntries.push_back(BFE);
492 Insertion.first->second = FileEntryRef::MapValue(*BFE, VF.getDir());
493 BFE->LastRef = FileEntryRef(*Insertion.first);
494 BFE->Size = Status.getSize();
495 BFE->Dir = VF.getFileEntry().Dir;
496 BFE->ModTime = llvm::sys::toTimeT(Status.getLastModificationTime());
497 BFE->UID = NextFileUID++;
498
499 // Save the entry in the bypass table and return.
500 return FileEntryRef(*Insertion.first);
501}
502
504 StringRef pathRef(path.data(), path.size());
505
506 if (FileSystemOpts.WorkingDir.empty()
507 || llvm::sys::path::is_absolute(pathRef))
508 return false;
509
510 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
511 llvm::sys::path::append(NewPath, pathRef);
512 path = NewPath;
513 return true;
514}
515
517 bool Changed = FixupRelativePath(Path);
518
519 if (!llvm::sys::path::is_absolute(StringRef(Path.data(), Path.size()))) {
520 FS->makeAbsolute(Path);
521 Changed = true;
522 }
523
524 return Changed;
525}
526
527void FileManager::fillRealPathName(FileEntry *UFE, llvm::StringRef FileName) {
528 llvm::SmallString<128> AbsPath(FileName);
529 // This is not the same as `VFS::getRealPath()`, which resolves symlinks
530 // but can be very expensive on real file systems.
531 // FIXME: the semantic of RealPathName is unclear, and the name might be
532 // misleading. We need to clean up the interface here.
533 makeAbsolutePath(AbsPath);
534 llvm::sys::path::remove_dots(AbsPath, /*remove_dot_dot=*/true);
535 UFE->RealPathName = std::string(AbsPath.str());
536}
537
538llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
539FileManager::getBufferForFile(const FileEntry *Entry, bool isVolatile,
540 bool RequiresNullTerminator) {
541 // If the content is living on the file entry, return a reference to it.
542 if (Entry->Content)
543 return llvm::MemoryBuffer::getMemBuffer(Entry->Content->getMemBufferRef());
544
545 uint64_t FileSize = Entry->getSize();
546 // If there's a high enough chance that the file have changed since we
547 // got its size, force a stat before opening it.
548 if (isVolatile || Entry->isNamedPipe())
549 FileSize = -1;
550
551 StringRef Filename = Entry->getName();
552 // If the file is already open, use the open file descriptor.
553 if (Entry->File) {
554 auto Result = Entry->File->getBuffer(Filename, FileSize,
555 RequiresNullTerminator, isVolatile);
556 Entry->closeFile();
557 return Result;
558 }
559
560 // Otherwise, open the file.
561 return getBufferForFileImpl(Filename, FileSize, isVolatile,
562 RequiresNullTerminator);
563}
564
565llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
566FileManager::getBufferForFileImpl(StringRef Filename, int64_t FileSize,
567 bool isVolatile,
568 bool RequiresNullTerminator) {
569 if (FileSystemOpts.WorkingDir.empty())
570 return FS->getBufferForFile(Filename, FileSize, RequiresNullTerminator,
571 isVolatile);
572
573 SmallString<128> FilePath(Filename);
574 FixupRelativePath(FilePath);
575 return FS->getBufferForFile(FilePath, FileSize, RequiresNullTerminator,
576 isVolatile);
577}
578
579/// getStatValue - Get the 'stat' information for the specified path,
580/// using the cache to accelerate it if possible. This returns true
581/// if the path points to a virtual file or does not exist, or returns
582/// false if it's an existent real file. If FileDescriptor is NULL,
583/// do directory look-up instead of file look-up.
584std::error_code
585FileManager::getStatValue(StringRef Path, llvm::vfs::Status &Status,
586 bool isFile, std::unique_ptr<llvm::vfs::File> *F) {
587 // FIXME: FileSystemOpts shouldn't be passed in here, all paths should be
588 // absolute!
589 if (FileSystemOpts.WorkingDir.empty())
590 return FileSystemStatCache::get(Path, Status, isFile, F,
591 StatCache.get(), *FS);
592
593 SmallString<128> FilePath(Path);
594 FixupRelativePath(FilePath);
595
596 return FileSystemStatCache::get(FilePath.c_str(), Status, isFile, F,
597 StatCache.get(), *FS);
598}
599
600std::error_code
602 llvm::vfs::Status &Result) {
603 SmallString<128> FilePath(Path);
604 FixupRelativePath(FilePath);
605
606 llvm::ErrorOr<llvm::vfs::Status> S = FS->status(FilePath.c_str());
607 if (!S)
608 return S.getError();
609 Result = *S;
610 return std::error_code();
611}
612
614 SmallVectorImpl<const FileEntry *> &UIDToFiles) const {
615 UIDToFiles.clear();
616 UIDToFiles.resize(NextFileUID);
617
618 // Map file entries
619 for (llvm::StringMap<llvm::ErrorOr<FileEntryRef::MapValue>,
620 llvm::BumpPtrAllocator>::const_iterator
621 FE = SeenFileEntries.begin(),
622 FEEnd = SeenFileEntries.end();
623 FE != FEEnd; ++FE)
624 if (llvm::ErrorOr<FileEntryRef::MapValue> Entry = FE->getValue()) {
625 if (const auto *FE = Entry->V.dyn_cast<FileEntry *>())
626 UIDToFiles[FE->getUID()] = FE;
627 }
628
629 // Map virtual file entries
630 for (const auto &VFE : VirtualFileEntries)
631 UIDToFiles[VFE->getUID()] = VFE;
632}
633
635 llvm::DenseMap<const void *, llvm::StringRef>::iterator Known
636 = CanonicalNames.find(Dir);
637 if (Known != CanonicalNames.end())
638 return Known->second;
639
640 StringRef CanonicalName(Dir->getName());
641
642 SmallString<4096> CanonicalNameBuf;
643 if (!FS->getRealPath(Dir->getName(), CanonicalNameBuf))
644 CanonicalName = CanonicalNameBuf.str().copy(CanonicalNameStorage);
645
646 CanonicalNames.insert({Dir, CanonicalName});
647 return CanonicalName;
648}
649
651 llvm::DenseMap<const void *, llvm::StringRef>::iterator Known
652 = CanonicalNames.find(File);
653 if (Known != CanonicalNames.end())
654 return Known->second;
655
656 StringRef CanonicalName(File->getName());
657
658 SmallString<4096> CanonicalNameBuf;
659 if (!FS->getRealPath(File->getName(), CanonicalNameBuf))
660 CanonicalName = CanonicalNameBuf.str().copy(CanonicalNameStorage);
661
662 CanonicalNames.insert({File, CanonicalName});
663 return CanonicalName;
664}
665
667 llvm::errs() << "\n*** File Manager Stats:\n";
668 llvm::errs() << UniqueRealFiles.size() << " real files found, "
669 << UniqueRealDirs.size() << " real dirs found.\n";
670 llvm::errs() << VirtualFileEntries.size() << " virtual files found, "
671 << VirtualDirectoryEntries.size() << " virtual dirs found.\n";
672 llvm::errs() << NumDirLookups << " dir lookups, "
673 << NumDirCacheMisses << " dir cache misses.\n";
674 llvm::errs() << NumFileLookups << " file lookups, "
675 << NumFileCacheMisses << " file cache misses.\n";
676
677 //llvm::errs() << PagesMapped << BytesOfPagesMapped << FSLookups;
678}
static llvm::Expected< DirectoryEntryRef > getDirectoryFromFile(FileManager &FileMgr, StringRef Filename, bool CacheFailure)
Retrieve the directory that the given file name resides in.
Definition: FileManager.cpp:74
ALWAYS_ENABLED_STATISTIC(NumDirLookups, "Number of directory lookups.")
Defines the clang::FileManager interface and associated types.
Defines the FileSystemStatCache interface.
StringRef Filename
Definition: Format.cpp:2792
A reference to a DirectoryEntry that includes the name of the directory as it was accessed by the Fil...
const DirectoryEntry & getDirEntry() const
Cached information about one directory (either on disk or in the virtual file system).
StringRef getName() const
A reference to a FileEntry that includes the name of the file as it was accessed by the FileManager's...
Definition: FileEntry.h:57
const FileEntry & getFileEntry() const
Definition: FileEntry.h:70
llvm::StringMapEntry< llvm::ErrorOr< MapValue > > MapEntry
Type used in the StringMap.
Definition: FileEntry.h:112
StringRef getName() const
The name of this FileEntry.
Definition: FileEntry.h:61
DirectoryEntryRef getDir() const
Definition: FileEntry.h:73
Cached information about one file (either on disk or in the virtual file system).
Definition: FileEntry.h:353
StringRef getName() const
Definition: FileEntry.h:384
bool isNamedPipe() const
Check whether the file is a named pipe (and thus can't be opened by the native FileManager methods).
Definition: FileEntry.h:398
void closeFile() const
Definition: FileEntry.cpp:24
off_t getSize() const
Definition: FileEntry.h:388
Implements support for file system lookup, file system caching, and directory search management.
Definition: FileManager.h:53
void clearStatCache()
Removes the FileSystemStatCache object from the manager.
Definition: FileManager.cpp:69
std::error_code getNoncachedStatValue(StringRef Path, llvm::vfs::Status &Result)
Get the 'stat' information for the given Path.
FileManager(const FileSystemOptions &FileSystemOpts, IntrusiveRefCntPtr< llvm::vfs::FileSystem > FS=nullptr)
Construct a file manager, optionally with a custom VFS.
Definition: FileManager.cpp:52
llvm::ErrorOr< const DirectoryEntry * > getDirectory(StringRef DirName, bool CacheFailure=true)
Lookup, cache, and verify the specified directory (real or virtual).
llvm::Expected< FileEntryRef > getSTDIN()
Get the FileEntryRef for stdin, returning an error if stdin cannot be read.
llvm::ErrorOr< std::unique_ptr< llvm::MemoryBuffer > > getBufferForFile(const FileEntry *Entry, bool isVolatile=false, bool RequiresNullTerminator=true)
Open the specified file as a MemoryBuffer, returning a new MemoryBuffer if successful,...
bool makeAbsolutePath(SmallVectorImpl< char > &Path) const
Makes Path absolute taking into account FileSystemOptions and the working directory option.
const FileEntry * getVirtualFile(StringRef Filename, off_t Size, time_t ModificationTime)
llvm::Expected< DirectoryEntryRef > getDirectoryRef(StringRef DirName, bool CacheFailure=true)
Lookup, cache, and verify the specified directory (real or virtual).
void setStatCache(std::unique_ptr< FileSystemStatCache > statCache)
Installs the provided FileSystemStatCache object within the FileManager.
Definition: FileManager.cpp:64
FileEntryRef getVirtualFileRef(StringRef Filename, off_t Size, time_t ModificationTime)
Retrieve a file entry for a "virtual" file that acts as if there were a file with the given name on d...
llvm::ErrorOr< const FileEntry * > getFile(StringRef Filename, bool OpenFile=false, bool CacheFailure=true)
Lookup, cache, and verify the specified file (real or virtual).
bool FixupRelativePath(SmallVectorImpl< char > &path) const
If path is not absolute and FileSystemOptions set the working directory, the path is modified to be r...
void PrintStats() const
void GetUniqueIDMapping(SmallVectorImpl< const FileEntry * > &UIDToFiles) const
Produce an array mapping from the unique IDs assigned to each file to the corresponding FileEntry poi...
OptionalFileEntryRef getBypassFile(FileEntryRef VFE)
Retrieve a FileEntry that bypasses VFE, which is expected to be a virtual file entry,...
StringRef getCanonicalName(const DirectoryEntry *Dir)
Retrieve the canonical name for a given directory.
llvm::Expected< FileEntryRef > getFileRef(StringRef Filename, bool OpenFile=false, bool CacheFailure=true)
Lookup, cache, and verify the specified file (real or virtual).
Keeps track of options that affect how file operations are performed.
std::string WorkingDir
If set, paths are resolved as if the working directory was set to the value of WorkingDir.
static std::error_code get(StringRef Path, llvm::vfs::Status &Status, bool isFile, std::unique_ptr< llvm::vfs::File > *F, FileSystemStatCache *Cache, llvm::vfs::FileSystem &FS)
Get the 'stat' information for the specified path, using the cache to accelerate it if possible.
std::error_code make_error_code(BuildPreambleError Error)
@ Result
The result type of a method or function.
Definition: Format.h:4756
Type stored in the StringMap.
Definition: FileEntry.h:115