blob: c46e2c7db380823190a7f38b0006c6ae9a274396 [file] [log] [blame]
Chris Lattner10e286a2010-11-23 19:19:34 +00001//===--- FileManager.cpp - File System Probing and Caching ----------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the FileManager interface.
11//
12//===----------------------------------------------------------------------===//
13//
14// TODO: This should index all interesting directories with dirent calls.
15// getdirentries ?
16// opendir/readdir_r/closedir ?
17//
18//===----------------------------------------------------------------------===//
19
20#include "clang/Basic/FileManager.h"
Chris Lattner10e286a2010-11-23 19:19:34 +000021#include "clang/Basic/FileSystemStatCache.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "llvm/ADT/SmallString.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000023#include "llvm/Config/llvm-config.h"
Michael J. Spencerfbfd1802010-12-21 16:45:57 +000024#include "llvm/Support/FileSystem.h"
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +000025#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000026#include "llvm/Support/Path.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000027#include "llvm/Support/raw_ostream.h"
Benjamin Kramer458fb102009-09-05 09:49:39 +000028#include <map>
29#include <set>
30#include <string>
Stephen Hinesc568f1e2014-07-21 00:47:37 -070031#include <system_error>
Chris Lattner291fcf02010-11-23 21:53:15 +000032
Reid Spencer5f016e22007-07-11 17:01:13 +000033using namespace clang;
34
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000035/// NON_EXISTENT_DIR - A special value distinct from null that is used to
Reid Spencer5f016e22007-07-11 17:01:13 +000036/// represent a dir name that doesn't exist on the disk.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000037#define NON_EXISTENT_DIR reinterpret_cast<DirectoryEntry*>((intptr_t)-1)
Reid Spencer5f016e22007-07-11 17:01:13 +000038
Chris Lattnerf9f77662010-11-23 20:50:22 +000039/// NON_EXISTENT_FILE - A special value distinct from null that is used to
40/// represent a filename that doesn't exist on the disk.
41#define NON_EXISTENT_FILE reinterpret_cast<FileEntry*>((intptr_t)-1)
42
Ted Kremenekcb8d58b2009-01-28 00:27:31 +000043//===----------------------------------------------------------------------===//
44// Common logic.
45//===----------------------------------------------------------------------===//
Ted Kremenek6bb816a2008-02-24 03:15:25 +000046
Stephen Hines651f13c2014-04-23 16:59:28 -070047FileManager::FileManager(const FileSystemOptions &FSO,
48 IntrusiveRefCntPtr<vfs::FileSystem> FS)
49 : FS(FS), FileSystemOpts(FSO),
Zhanyong Wan9b555ea2011-02-11 18:44:49 +000050 SeenDirEntries(64), SeenFileEntries(64), NextFileUID(0) {
Ted Kremenek6bb816a2008-02-24 03:15:25 +000051 NumDirLookups = NumFileLookups = 0;
52 NumDirCacheMisses = NumFileCacheMisses = 0;
Stephen Hines651f13c2014-04-23 16:59:28 -070053
54 // If the caller doesn't provide a virtual file system, just grab the real
55 // file system.
56 if (!FS)
57 this->FS = vfs::getRealFileSystem();
Ted Kremenek6bb816a2008-02-24 03:15:25 +000058}
59
60FileManager::~FileManager() {
Chris Lattnerf3e8a992010-11-23 20:30:42 +000061 for (unsigned i = 0, e = VirtualFileEntries.size(); i != e; ++i)
62 delete VirtualFileEntries[i];
Zhanyong Wan9b555ea2011-02-11 18:44:49 +000063 for (unsigned i = 0, e = VirtualDirectoryEntries.size(); i != e; ++i)
64 delete VirtualDirectoryEntries[i];
Ted Kremenek6bb816a2008-02-24 03:15:25 +000065}
66
Stephen Hines176edba2014-12-01 14:53:08 -080067void FileManager::addStatCache(std::unique_ptr<FileSystemStatCache> statCache,
Chris Lattner10e286a2010-11-23 19:19:34 +000068 bool AtBeginning) {
Douglas Gregor52e71082009-10-16 18:18:30 +000069 assert(statCache && "No stat cache provided?");
Stephen Hines6bcf27b2014-05-29 04:14:42 -070070 if (AtBeginning || !StatCache.get()) {
Stephen Hines176edba2014-12-01 14:53:08 -080071 statCache->setNextStatCache(std::move(StatCache));
72 StatCache = std::move(statCache);
Douglas Gregor52e71082009-10-16 18:18:30 +000073 return;
74 }
75
Chris Lattner10e286a2010-11-23 19:19:34 +000076 FileSystemStatCache *LastCache = StatCache.get();
Douglas Gregor52e71082009-10-16 18:18:30 +000077 while (LastCache->getNextStatCache())
78 LastCache = LastCache->getNextStatCache();
Stephen Hines176edba2014-12-01 14:53:08 -080079
80 LastCache->setNextStatCache(std::move(statCache));
Douglas Gregor52e71082009-10-16 18:18:30 +000081}
82
Chris Lattner10e286a2010-11-23 19:19:34 +000083void FileManager::removeStatCache(FileSystemStatCache *statCache) {
Douglas Gregor52e71082009-10-16 18:18:30 +000084 if (!statCache)
85 return;
86
87 if (StatCache.get() == statCache) {
88 // This is the first stat cache.
Stephen Hines176edba2014-12-01 14:53:08 -080089 StatCache = StatCache->takeNextStatCache();
Douglas Gregor52e71082009-10-16 18:18:30 +000090 return;
91 }
92
93 // Find the stat cache in the list.
Chris Lattner10e286a2010-11-23 19:19:34 +000094 FileSystemStatCache *PrevCache = StatCache.get();
Douglas Gregor52e71082009-10-16 18:18:30 +000095 while (PrevCache && PrevCache->getNextStatCache() != statCache)
96 PrevCache = PrevCache->getNextStatCache();
Chris Lattnerf9f77662010-11-23 20:50:22 +000097
98 assert(PrevCache && "Stat cache not found for removal");
Stephen Hines176edba2014-12-01 14:53:08 -080099 PrevCache->setNextStatCache(statCache->takeNextStatCache());
Douglas Gregor52e71082009-10-16 18:18:30 +0000100}
101
Manuel Klimek98be8602012-07-31 13:56:54 +0000102void FileManager::clearStatCaches() {
Stephen Hines176edba2014-12-01 14:53:08 -0800103 StatCache.reset();
Manuel Klimek98be8602012-07-31 13:56:54 +0000104}
105
Douglas Gregor057e5672009-12-02 18:12:28 +0000106/// \brief Retrieve the directory that the given file name resides in.
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000107/// Filename can point to either a real file or a virtual file.
Douglas Gregor057e5672009-12-02 18:12:28 +0000108static const DirectoryEntry *getDirectoryFromFile(FileManager &FileMgr,
Douglas Gregor6e975c42011-09-13 23:15:45 +0000109 StringRef Filename,
110 bool CacheFailure) {
Zhanyong Wan21af8872011-02-11 21:25:35 +0000111 if (Filename.empty())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700112 return nullptr;
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000113
Zhanyong Wan21af8872011-02-11 21:25:35 +0000114 if (llvm::sys::path::is_separator(Filename[Filename.size() - 1]))
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700115 return nullptr; // If Filename is a directory.
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000116
Chris Lattner5f9e2722011-07-23 10:55:15 +0000117 StringRef DirName = llvm::sys::path::parent_path(Filename);
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000118 // Use the current directory if file has no path component.
Zhanyong Wan21af8872011-02-11 21:25:35 +0000119 if (DirName.empty())
120 DirName = ".";
Douglas Gregor057e5672009-12-02 18:12:28 +0000121
Douglas Gregor6e975c42011-09-13 23:15:45 +0000122 return FileMgr.getDirectory(DirName, CacheFailure);
Douglas Gregor057e5672009-12-02 18:12:28 +0000123}
124
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000125/// Add all ancestors of the given path (pointing to either a file or
126/// a directory) as virtual directories.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000127void FileManager::addAncestorsAsVirtualDirs(StringRef Path) {
128 StringRef DirName = llvm::sys::path::parent_path(Path);
Zhanyong Wan21af8872011-02-11 21:25:35 +0000129 if (DirName.empty())
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000130 return;
131
Stephen Hines176edba2014-12-01 14:53:08 -0800132 auto &NamedDirEnt =
133 *SeenDirEntries.insert(std::make_pair(DirName, nullptr)).first;
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000134
135 // When caching a virtual directory, we always cache its ancestors
136 // at the same time. Therefore, if DirName is already in the cache,
137 // we don't need to recurse as its ancestors must also already be in
138 // the cache.
Stephen Hines176edba2014-12-01 14:53:08 -0800139 if (NamedDirEnt.second)
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000140 return;
141
142 // Add the virtual directory to the cache.
143 DirectoryEntry *UDE = new DirectoryEntry;
Stephen Hines176edba2014-12-01 14:53:08 -0800144 UDE->Name = NamedDirEnt.first().data();
145 NamedDirEnt.second = UDE;
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000146 VirtualDirectoryEntries.push_back(UDE);
147
148 // Recursively add the other ancestors.
149 addAncestorsAsVirtualDirs(DirName);
150}
151
Douglas Gregor6e975c42011-09-13 23:15:45 +0000152const DirectoryEntry *FileManager::getDirectory(StringRef DirName,
153 bool CacheFailure) {
NAKAMURA Takumi759a4b42012-06-16 06:04:10 +0000154 // stat doesn't like trailing separators except for root directory.
NAKAMURA Takumi678a3ea2011-11-17 06:16:05 +0000155 // At least, on Win32 MSVCRT, stat() cannot strip trailing '/'.
156 // (though it can strip '\\')
NAKAMURA Takumi759a4b42012-06-16 06:04:10 +0000157 if (DirName.size() > 1 &&
158 DirName != llvm::sys::path::root_path(DirName) &&
159 llvm::sys::path::is_separator(DirName.back()))
NAKAMURA Takumi678a3ea2011-11-17 06:16:05 +0000160 DirName = DirName.substr(0, DirName.size()-1);
Rafael Espindola146d57f2013-07-29 15:47:24 +0000161#ifdef LLVM_ON_WIN32
162 // Fixing a problem with "clang C:test.c" on Windows.
163 // Stat("C:") does not recognize "C:" as a valid directory
164 std::string DirNameStr;
165 if (DirName.size() > 1 && DirName.back() == ':' &&
166 DirName.equals_lower(llvm::sys::path::root_name(DirName))) {
167 DirNameStr = DirName.str() + '.';
168 DirName = DirNameStr;
169 }
170#endif
NAKAMURA Takumi678a3ea2011-11-17 06:16:05 +0000171
Reid Spencer5f016e22007-07-11 17:01:13 +0000172 ++NumDirLookups;
Stephen Hines176edba2014-12-01 14:53:08 -0800173 auto &NamedDirEnt =
174 *SeenDirEntries.insert(std::make_pair(DirName, nullptr)).first;
Mike Stump1eb44332009-09-09 15:08:12 +0000175
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000176 // See if there was already an entry in the map. Note that the map
177 // contains both virtual and real directories.
Stephen Hines176edba2014-12-01 14:53:08 -0800178 if (NamedDirEnt.second)
179 return NamedDirEnt.second == NON_EXISTENT_DIR ? nullptr
180 : NamedDirEnt.second;
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Reid Spencer5f016e22007-07-11 17:01:13 +0000182 ++NumDirCacheMisses;
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 // By default, initialize it to invalid.
Stephen Hines176edba2014-12-01 14:53:08 -0800185 NamedDirEnt.second = NON_EXISTENT_DIR;
Mike Stump1eb44332009-09-09 15:08:12 +0000186
Reid Spencer5f016e22007-07-11 17:01:13 +0000187 // Get the null-terminated directory name as stored as the key of the
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000188 // SeenDirEntries map.
Stephen Hines176edba2014-12-01 14:53:08 -0800189 const char *InterndDirName = NamedDirEnt.first().data();
Mike Stump1eb44332009-09-09 15:08:12 +0000190
Reid Spencer5f016e22007-07-11 17:01:13 +0000191 // Check to see if the directory exists.
Rafael Espindola0fda0f72013-08-01 21:42:11 +0000192 FileData Data;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700193 if (getStatValue(InterndDirName, Data, false, nullptr /*directory lookup*/)) {
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000194 // There's no real directory at the given path.
Douglas Gregor6e975c42011-09-13 23:15:45 +0000195 if (!CacheFailure)
196 SeenDirEntries.erase(DirName);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700197 return nullptr;
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000198 }
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000199
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000200 // It exists. See if we have already opened a directory with the
201 // same inode (this occurs on Unix-like systems when one dir is
202 // symlinked to another, for example) or the same path (on
203 // Windows).
Stephen Hines651f13c2014-04-23 16:59:28 -0700204 DirectoryEntry &UDE = UniqueRealDirs[Data.UniqueID];
Mike Stump1eb44332009-09-09 15:08:12 +0000205
Stephen Hines176edba2014-12-01 14:53:08 -0800206 NamedDirEnt.second = &UDE;
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000207 if (!UDE.getName()) {
208 // We don't have this directory yet, add it. We use the string
209 // key from the SeenDirEntries map as the string.
210 UDE.Name = InterndDirName;
211 }
Mike Stump1eb44332009-09-09 15:08:12 +0000212
Reid Spencer5f016e22007-07-11 17:01:13 +0000213 return &UDE;
214}
215
Douglas Gregor6e975c42011-09-13 23:15:45 +0000216const FileEntry *FileManager::getFile(StringRef Filename, bool openFile,
217 bool CacheFailure) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000218 ++NumFileLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000219
Reid Spencer5f016e22007-07-11 17:01:13 +0000220 // See if there is already an entry in the map.
Stephen Hines176edba2014-12-01 14:53:08 -0800221 auto &NamedFileEnt =
222 *SeenFileEntries.insert(std::make_pair(Filename, nullptr)).first;
Reid Spencer5f016e22007-07-11 17:01:13 +0000223
224 // See if there is already an entry in the map.
Stephen Hines176edba2014-12-01 14:53:08 -0800225 if (NamedFileEnt.second)
226 return NamedFileEnt.second == NON_EXISTENT_FILE ? nullptr
227 : NamedFileEnt.second;
Mike Stump1eb44332009-09-09 15:08:12 +0000228
Reid Spencer5f016e22007-07-11 17:01:13 +0000229 ++NumFileCacheMisses;
230
231 // By default, initialize it to invalid.
Stephen Hines176edba2014-12-01 14:53:08 -0800232 NamedFileEnt.second = NON_EXISTENT_FILE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000233
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 // Get the null-terminated file name as stored as the key of the
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000235 // SeenFileEntries map.
Stephen Hines176edba2014-12-01 14:53:08 -0800236 const char *InterndFileName = NamedFileEnt.first().data();
Mike Stump1eb44332009-09-09 15:08:12 +0000237
Chris Lattnerf3e8a992010-11-23 20:30:42 +0000238 // Look up the directory for the file. When looking up something like
239 // sys/foo.h we'll discover all of the search directories that have a 'sys'
240 // subdirectory. This will let us avoid having to waste time on known-to-fail
241 // searches when we go to find sys/bar.h, because all the search directories
242 // without a 'sys' subdir will get a cached failure result.
Douglas Gregor6e975c42011-09-13 23:15:45 +0000243 const DirectoryEntry *DirInfo = getDirectoryFromFile(*this, Filename,
244 CacheFailure);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700245 if (DirInfo == nullptr) { // Directory doesn't exist, file can't exist.
Douglas Gregor6e975c42011-09-13 23:15:45 +0000246 if (!CacheFailure)
247 SeenFileEntries.erase(Filename);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700248
249 return nullptr;
Douglas Gregor6e975c42011-09-13 23:15:45 +0000250 }
251
Reid Spencer5f016e22007-07-11 17:01:13 +0000252 // FIXME: Use the directory info to prune this, before doing the stat syscall.
253 // FIXME: This will reduce the # syscalls.
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 // Nope, there isn't. Check to see if the file exists.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700256 std::unique_ptr<vfs::File> F;
Rafael Espindola0fda0f72013-08-01 21:42:11 +0000257 FileData Data;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700258 if (getStatValue(InterndFileName, Data, true, openFile ? &F : nullptr)) {
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000259 // There's no real file at the given path.
Douglas Gregor6e975c42011-09-13 23:15:45 +0000260 if (!CacheFailure)
261 SeenFileEntries.erase(Filename);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700262
263 return nullptr;
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000264 }
Mike Stump1eb44332009-09-09 15:08:12 +0000265
Stephen Hines651f13c2014-04-23 16:59:28 -0700266 assert((openFile || !F) && "undesired open file");
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000267
Ted Kremenekbca6d122007-12-18 22:29:39 +0000268 // It exists. See if we have already opened a file with the same inode.
Reid Spencer5f016e22007-07-11 17:01:13 +0000269 // This occurs when one dir is symlinked to another, for example.
Stephen Hines651f13c2014-04-23 16:59:28 -0700270 FileEntry &UFE = UniqueRealFiles[Data.UniqueID];
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Stephen Hines176edba2014-12-01 14:53:08 -0800272 NamedFileEnt.second = &UFE;
273
274 // If the name returned by getStatValue is different than Filename, re-intern
275 // the name.
276 if (Data.Name != Filename) {
277 auto &NamedFileEnt =
278 *SeenFileEntries.insert(std::make_pair(Data.Name, nullptr)).first;
279 if (!NamedFileEnt.second)
280 NamedFileEnt.second = &UFE;
281 else
282 assert(NamedFileEnt.second == &UFE &&
283 "filename from getStatValue() refers to wrong file");
284 InterndFileName = NamedFileEnt.first().data();
285 }
286
Stephen Hines651f13c2014-04-23 16:59:28 -0700287 if (UFE.isValid()) { // Already have an entry with this inode, return it.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700288
289 // FIXME: this hack ensures that if we look up a file by a virtual path in
290 // the VFS that the getDir() will have the virtual path, even if we found
291 // the file by a 'real' path first. This is required in order to find a
292 // module's structure when its headers/module map are mapped in the VFS.
293 // We should remove this as soon as we can properly support a file having
294 // multiple names.
295 if (DirInfo != UFE.Dir && Data.IsVFSMapped)
296 UFE.Dir = DirInfo;
297
Stephen Hines176edba2014-12-01 14:53:08 -0800298 // Always update the name to use the last name by which a file was accessed.
299 // FIXME: Neither this nor always using the first name is correct; we want
300 // to switch towards a design where we return a FileName object that
301 // encapsulates both the name by which the file was accessed and the
302 // corresponding FileEntry.
303 UFE.Name = InterndFileName;
304
Reid Spencer5f016e22007-07-11 17:01:13 +0000305 return &UFE;
Chris Lattner898a0612010-11-23 21:17:56 +0000306 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000307
Stephen Hines651f13c2014-04-23 16:59:28 -0700308 // Otherwise, we don't have this file yet, add it.
Stephen Hines176edba2014-12-01 14:53:08 -0800309 UFE.Name = InterndFileName;
Rafael Espindola0fda0f72013-08-01 21:42:11 +0000310 UFE.Size = Data.Size;
311 UFE.ModTime = Data.ModTime;
Reid Spencer5f016e22007-07-11 17:01:13 +0000312 UFE.Dir = DirInfo;
313 UFE.UID = NextFileUID++;
Stephen Hines651f13c2014-04-23 16:59:28 -0700314 UFE.UniqueID = Data.UniqueID;
315 UFE.IsNamedPipe = Data.IsNamedPipe;
316 UFE.InPCH = Data.InPCH;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700317 UFE.File = std::move(F);
Stephen Hines651f13c2014-04-23 16:59:28 -0700318 UFE.IsValid = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000319 return &UFE;
320}
321
Douglas Gregor057e5672009-12-02 18:12:28 +0000322const FileEntry *
Chris Lattner5f9e2722011-07-23 10:55:15 +0000323FileManager::getVirtualFile(StringRef Filename, off_t Size,
Chris Lattner39b49bc2010-11-23 08:35:12 +0000324 time_t ModificationTime) {
Douglas Gregor057e5672009-12-02 18:12:28 +0000325 ++NumFileLookups;
326
327 // See if there is already an entry in the map.
Stephen Hines176edba2014-12-01 14:53:08 -0800328 auto &NamedFileEnt =
329 *SeenFileEntries.insert(std::make_pair(Filename, nullptr)).first;
Douglas Gregor057e5672009-12-02 18:12:28 +0000330
331 // See if there is already an entry in the map.
Stephen Hines176edba2014-12-01 14:53:08 -0800332 if (NamedFileEnt.second && NamedFileEnt.second != NON_EXISTENT_FILE)
333 return NamedFileEnt.second;
Douglas Gregor057e5672009-12-02 18:12:28 +0000334
335 ++NumFileCacheMisses;
336
337 // By default, initialize it to invalid.
Stephen Hines176edba2014-12-01 14:53:08 -0800338 NamedFileEnt.second = NON_EXISTENT_FILE;
Douglas Gregor057e5672009-12-02 18:12:28 +0000339
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000340 addAncestorsAsVirtualDirs(Filename);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700341 FileEntry *UFE = nullptr;
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000342
343 // Now that all ancestors of Filename are in the cache, the
344 // following call is guaranteed to find the DirectoryEntry from the
345 // cache.
Douglas Gregor6e975c42011-09-13 23:15:45 +0000346 const DirectoryEntry *DirInfo = getDirectoryFromFile(*this, Filename,
347 /*CacheFailure=*/true);
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000348 assert(DirInfo &&
349 "The directory of a virtual file should already be in the cache.");
Douglas Gregor057e5672009-12-02 18:12:28 +0000350
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000351 // Check to see if the file exists. If so, drop the virtual file
Rafael Espindola0fda0f72013-08-01 21:42:11 +0000352 FileData Data;
Stephen Hines176edba2014-12-01 14:53:08 -0800353 const char *InterndFileName = NamedFileEnt.first().data();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700354 if (getStatValue(InterndFileName, Data, true, nullptr) == 0) {
Rafael Espindola0fda0f72013-08-01 21:42:11 +0000355 Data.Size = Size;
356 Data.ModTime = ModificationTime;
Stephen Hines651f13c2014-04-23 16:59:28 -0700357 UFE = &UniqueRealFiles[Data.UniqueID];
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +0000358
Stephen Hines176edba2014-12-01 14:53:08 -0800359 NamedFileEnt.second = UFE;
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +0000360
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000361 // If we had already opened this file, close it now so we don't
362 // leak the descriptor. We're not going to use the file
363 // descriptor anyway, since this is a virtual file.
Stephen Hines651f13c2014-04-23 16:59:28 -0700364 if (UFE->File)
365 UFE->closeFile();
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000366
367 // If we already have an entry with this inode, return it.
Stephen Hines651f13c2014-04-23 16:59:28 -0700368 if (UFE->isValid())
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000369 return UFE;
Stephen Hines651f13c2014-04-23 16:59:28 -0700370
371 UFE->UniqueID = Data.UniqueID;
372 UFE->IsNamedPipe = Data.IsNamedPipe;
373 UFE->InPCH = Data.InPCH;
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +0000374 }
375
376 if (!UFE) {
377 UFE = new FileEntry();
378 VirtualFileEntries.push_back(UFE);
Stephen Hines176edba2014-12-01 14:53:08 -0800379 NamedFileEnt.second = UFE;
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +0000380 }
Douglas Gregor057e5672009-12-02 18:12:28 +0000381
Chris Lattnerf9f77662010-11-23 20:50:22 +0000382 UFE->Name = InterndFileName;
Douglas Gregor057e5672009-12-02 18:12:28 +0000383 UFE->Size = Size;
384 UFE->ModTime = ModificationTime;
385 UFE->Dir = DirInfo;
386 UFE->UID = NextFileUID++;
Stephen Hines651f13c2014-04-23 16:59:28 -0700387 UFE->File.reset();
Douglas Gregor057e5672009-12-02 18:12:28 +0000388 return UFE;
389}
390
Chris Lattner5f9e2722011-07-23 10:55:15 +0000391void FileManager::FixupRelativePath(SmallVectorImpl<char> &path) const {
392 StringRef pathRef(path.data(), path.size());
Anders Carlssonaf036a62011-03-06 22:25:35 +0000393
Anders Carlsson2e2468e2011-03-14 01:13:54 +0000394 if (FileSystemOpts.WorkingDir.empty()
395 || llvm::sys::path::is_absolute(pathRef))
Michael J. Spencer256053b2010-12-17 21:22:22 +0000396 return;
397
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000398 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
Anders Carlssonaf036a62011-03-06 22:25:35 +0000399 llvm::sys::path::append(NewPath, pathRef);
Chris Lattner67452f52010-11-23 04:45:28 +0000400 path = NewPath;
401}
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000402
Stephen Hines176edba2014-12-01 14:53:08 -0800403llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
404FileManager::getBufferForFile(const FileEntry *Entry, bool isVolatile,
405 bool ShouldCloseOpenFile) {
Argyrios Kyrtzidisff398962012-07-11 20:59:04 +0000406 uint64_t FileSize = Entry->getSize();
407 // If there's a high enough chance that the file have changed since we
408 // got its size, force a stat before opening it.
409 if (isVolatile)
410 FileSize = -1;
411
Argyrios Kyrtzidisa8d530e2011-03-15 00:47:44 +0000412 const char *Filename = Entry->getName();
413 // If the file is already open, use the open file descriptor.
Stephen Hines651f13c2014-04-23 16:59:28 -0700414 if (Entry->File) {
Stephen Hines176edba2014-12-01 14:53:08 -0800415 auto Result =
416 Entry->File->getBuffer(Filename, FileSize,
417 /*RequiresNullTerminator=*/true, isVolatile);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700418 // FIXME: we need a set of APIs that can make guarantees about whether a
419 // FileEntry is open or not.
420 if (ShouldCloseOpenFile)
421 Entry->closeFile();
Stephen Hines176edba2014-12-01 14:53:08 -0800422 return Result;
Argyrios Kyrtzidisa8d530e2011-03-15 00:47:44 +0000423 }
424
425 // Otherwise, open the file.
426
Stephen Hines176edba2014-12-01 14:53:08 -0800427 if (FileSystemOpts.WorkingDir.empty())
428 return FS->getBufferForFile(Filename, FileSize,
429 /*RequiresNullTerminator=*/true, isVolatile);
Anders Carlssonaf036a62011-03-06 22:25:35 +0000430
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000431 SmallString<128> FilePath(Entry->getName());
Anders Carlsson03fd3622011-03-07 01:28:33 +0000432 FixupRelativePath(FilePath);
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -0700433 return FS->getBufferForFile(FilePath, FileSize,
Stephen Hines176edba2014-12-01 14:53:08 -0800434 /*RequiresNullTerminator=*/true, isVolatile);
Chris Lattner75dfb652010-11-23 09:19:42 +0000435}
436
Stephen Hines176edba2014-12-01 14:53:08 -0800437llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>>
438FileManager::getBufferForFile(StringRef Filename) {
439 if (FileSystemOpts.WorkingDir.empty())
440 return FS->getBufferForFile(Filename);
Michael J. Spencer3a321e22010-12-09 17:36:38 +0000441
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000442 SmallString<128> FilePath(Filename);
Anders Carlsson03fd3622011-03-07 01:28:33 +0000443 FixupRelativePath(FilePath);
Stephen Hines176edba2014-12-01 14:53:08 -0800444 return FS->getBufferForFile(FilePath.c_str());
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000445}
446
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000447/// getStatValue - Get the 'stat' information for the specified path,
448/// using the cache to accelerate it if possible. This returns true
449/// if the path points to a virtual file or does not exist, or returns
450/// false if it's an existent real file. If FileDescriptor is NULL,
451/// do directory look-up instead of file look-up.
Rafael Espindola0fda0f72013-08-01 21:42:11 +0000452bool FileManager::getStatValue(const char *Path, FileData &Data, bool isFile,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700453 std::unique_ptr<vfs::File> *F) {
Chris Lattner10e286a2010-11-23 19:19:34 +0000454 // FIXME: FileSystemOpts shouldn't be passed in here, all paths should be
455 // absolute!
Chris Lattner11aa4b02010-11-23 19:56:39 +0000456 if (FileSystemOpts.WorkingDir.empty())
Stephen Hines651f13c2014-04-23 16:59:28 -0700457 return FileSystemStatCache::get(Path, Data, isFile, F,StatCache.get(), *FS);
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000458
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000459 SmallString<128> FilePath(Path);
Anders Carlsson03fd3622011-03-07 01:28:33 +0000460 FixupRelativePath(FilePath);
Chris Lattner11aa4b02010-11-23 19:56:39 +0000461
Stephen Hines651f13c2014-04-23 16:59:28 -0700462 return FileSystemStatCache::get(FilePath.c_str(), Data, isFile, F,
463 StatCache.get(), *FS);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000464}
465
Rafael Espindolaaefb1d32013-07-29 18:22:23 +0000466bool FileManager::getNoncachedStatValue(StringRef Path,
Stephen Hines651f13c2014-04-23 16:59:28 -0700467 vfs::Status &Result) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000468 SmallString<128> FilePath(Path);
Anders Carlsson7dbafb32011-03-18 19:23:19 +0000469 FixupRelativePath(FilePath);
470
Stephen Hines651f13c2014-04-23 16:59:28 -0700471 llvm::ErrorOr<vfs::Status> S = FS->status(FilePath.c_str());
472 if (!S)
473 return true;
474 Result = *S;
475 return false;
Anders Carlsson7dbafb32011-03-18 19:23:19 +0000476}
477
Axel Naumann5ba05592012-07-10 16:50:27 +0000478void FileManager::invalidateCache(const FileEntry *Entry) {
479 assert(Entry && "Cannot invalidate a NULL FileEntry");
Axel Naumann3ce42c32012-06-27 09:17:42 +0000480
481 SeenFileEntries.erase(Entry->getName());
Axel Naumann5ba05592012-07-10 16:50:27 +0000482
483 // FileEntry invalidation should not block future optimizations in the file
484 // caches. Possible alternatives are cache truncation (invalidate last N) or
485 // invalidation of the whole cache.
Stephen Hines651f13c2014-04-23 16:59:28 -0700486 UniqueRealFiles.erase(Entry->getUniqueID());
Axel Naumann3ce42c32012-06-27 09:17:42 +0000487}
488
489
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000490void FileManager::GetUniqueIDMapping(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000491 SmallVectorImpl<const FileEntry *> &UIDToFiles) const {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000492 UIDToFiles.clear();
493 UIDToFiles.resize(NextFileUID);
494
495 // Map file entries
496 for (llvm::StringMap<FileEntry*, llvm::BumpPtrAllocator>::const_iterator
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000497 FE = SeenFileEntries.begin(), FEEnd = SeenFileEntries.end();
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000498 FE != FEEnd; ++FE)
499 if (FE->getValue() && FE->getValue() != NON_EXISTENT_FILE)
500 UIDToFiles[FE->getValue()->getUID()] = FE->getValue();
501
502 // Map virtual file entries
Craig Topper09d19ef2013-07-04 03:08:24 +0000503 for (SmallVectorImpl<FileEntry *>::const_iterator
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000504 VFE = VirtualFileEntries.begin(), VFEEnd = VirtualFileEntries.end();
505 VFE != VFEEnd; ++VFE)
506 if (*VFE && *VFE != NON_EXISTENT_FILE)
507 UIDToFiles[(*VFE)->getUID()] = *VFE;
508}
Chris Lattner10e286a2010-11-23 19:19:34 +0000509
Argyrios Kyrtzidisd54dff02012-05-03 21:50:39 +0000510void FileManager::modifyFileEntry(FileEntry *File,
511 off_t Size, time_t ModificationTime) {
512 File->Size = Size;
513 File->ModTime = ModificationTime;
514}
515
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700516/// Remove '.' path components from the given absolute path.
517/// \return \c true if any changes were made.
518// FIXME: Move this to llvm::sys::path.
519bool FileManager::removeDotPaths(SmallVectorImpl<char> &Path) {
520 using namespace llvm::sys;
521
522 SmallVector<StringRef, 16> ComponentStack;
523 StringRef P(Path.data(), Path.size());
524
525 // Skip the root path, then look for traversal in the components.
526 StringRef Rel = path::relative_path(P);
527 bool AnyDots = false;
528 for (StringRef C : llvm::make_range(path::begin(Rel), path::end(Rel))) {
529 if (C == ".") {
530 AnyDots = true;
531 continue;
532 }
533 ComponentStack.push_back(C);
534 }
535
536 if (!AnyDots)
537 return false;
538
539 SmallString<256> Buffer = path::root_path(P);
540 for (StringRef C : ComponentStack)
541 path::append(Buffer, C);
542
543 Path.swap(Buffer);
544 return true;
545}
546
Douglas Gregor713b7c02013-01-26 00:55:12 +0000547StringRef FileManager::getCanonicalName(const DirectoryEntry *Dir) {
548 // FIXME: use llvm::sys::fs::canonical() when it gets implemented
Douglas Gregor713b7c02013-01-26 00:55:12 +0000549 llvm::DenseMap<const DirectoryEntry *, llvm::StringRef>::iterator Known
550 = CanonicalDirNames.find(Dir);
551 if (Known != CanonicalDirNames.end())
552 return Known->second;
553
554 StringRef CanonicalName(Dir->getName());
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700555
556#ifdef LLVM_ON_UNIX
Douglas Gregor713b7c02013-01-26 00:55:12 +0000557 char CanonicalNameBuf[PATH_MAX];
558 if (realpath(Dir->getName(), CanonicalNameBuf)) {
559 unsigned Len = strlen(CanonicalNameBuf);
560 char *Mem = static_cast<char *>(CanonicalNameStorage.Allocate(Len, 1));
561 memcpy(Mem, CanonicalNameBuf, Len);
562 CanonicalName = StringRef(Mem, Len);
563 }
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700564#else
565 SmallString<256> CanonicalNameBuf(CanonicalName);
566 llvm::sys::fs::make_absolute(CanonicalNameBuf);
567 llvm::sys::path::native(CanonicalNameBuf);
568 removeDotPaths(CanonicalNameBuf);
569#endif
Douglas Gregor713b7c02013-01-26 00:55:12 +0000570
571 CanonicalDirNames.insert(std::make_pair(Dir, CanonicalName));
572 return CanonicalName;
Douglas Gregor713b7c02013-01-26 00:55:12 +0000573}
Chris Lattner10e286a2010-11-23 19:19:34 +0000574
Reid Spencer5f016e22007-07-11 17:01:13 +0000575void FileManager::PrintStats() const {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000576 llvm::errs() << "\n*** File Manager Stats:\n";
Zhanyong Wan9b555ea2011-02-11 18:44:49 +0000577 llvm::errs() << UniqueRealFiles.size() << " real files found, "
578 << UniqueRealDirs.size() << " real dirs found.\n";
579 llvm::errs() << VirtualFileEntries.size() << " virtual files found, "
580 << VirtualDirectoryEntries.size() << " virtual dirs found.\n";
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000581 llvm::errs() << NumDirLookups << " dir lookups, "
582 << NumDirCacheMisses << " dir cache misses.\n";
583 llvm::errs() << NumFileLookups << " file lookups, "
584 << NumFileCacheMisses << " file cache misses.\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000585
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000586 //llvm::errs() << PagesMapped << BytesOfPagesMapped << FSLookups;
Reid Spencer5f016e22007-07-11 17:01:13 +0000587}