blob: 6b356b87d53aefb8e140e6f90bb639985bd261fc [file] [log] [blame]
Ted Kremenek8fbc88e2007-12-04 22:42:20 +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"
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +000021#include "clang/Basic/FileSystemOptions.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "llvm/ADT/SmallString.h"
Chris Lattnerc070da42010-08-23 23:50:42 +000023#include "llvm/ADT/StringExtras.h"
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +000024#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerd57a7ef2009-08-23 22:45:33 +000025#include "llvm/Support/raw_ostream.h"
Douglas Gregor4fed3f42009-04-27 18:38:38 +000026#include "llvm/System/Path.h"
Ted Kremenek6bb816a2008-02-24 03:15:25 +000027#include "llvm/Config/config.h"
Benjamin Kramer458fb102009-09-05 09:49:39 +000028#include <map>
29#include <set>
30#include <string>
Reid Spencer5f016e22007-07-11 17:01:13 +000031using namespace clang;
32
33// FIXME: Enhance libsystem to support inode and other fields.
34#include <sys/stat.h>
35
Chris Lattnera8c11c62007-09-03 18:37:14 +000036#if defined(_MSC_VER)
Chris Lattner3102c832009-02-12 01:37:35 +000037#define S_ISDIR(s) (_S_IFDIR & s)
Chris Lattnera8c11c62007-09-03 18:37:14 +000038#endif
Reid Spencer5f016e22007-07-11 17:01:13 +000039
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000040/// NON_EXISTENT_DIR - A special value distinct from null that is used to
Reid Spencer5f016e22007-07-11 17:01:13 +000041/// represent a dir name that doesn't exist on the disk.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000042#define NON_EXISTENT_DIR reinterpret_cast<DirectoryEntry*>((intptr_t)-1)
Reid Spencer5f016e22007-07-11 17:01:13 +000043
Ted Kremenekcb8d58b2009-01-28 00:27:31 +000044//===----------------------------------------------------------------------===//
45// Windows.
46//===----------------------------------------------------------------------===//
47
Ted Kremenek6bb816a2008-02-24 03:15:25 +000048#ifdef LLVM_ON_WIN32
49
Benjamin Krameraa8b2d92010-11-21 11:32:22 +000050#define IS_DIR_SEPARATOR_CHAR(x) ((x) == '/' || (x) == '\\')
Ted Kremenek6bb816a2008-02-24 03:15:25 +000051
52namespace {
Mike Stump1eb44332009-09-09 15:08:12 +000053 static std::string GetFullPath(const char *relPath) {
Ted Kremenek6bb816a2008-02-24 03:15:25 +000054 char *absPathStrPtr = _fullpath(NULL, relPath, 0);
55 assert(absPathStrPtr && "_fullpath() returned NULL!");
56
57 std::string absPath(absPathStrPtr);
58
59 free(absPathStrPtr);
60 return absPath;
61 }
62}
63
64class FileManager::UniqueDirContainer {
65 /// UniqueDirs - Cache from full path to existing directories/files.
66 ///
Mike Stump1eb44332009-09-09 15:08:12 +000067 llvm::StringMap<DirectoryEntry> UniqueDirs;
Ted Kremenek6bb816a2008-02-24 03:15:25 +000068
69public:
70 DirectoryEntry &getDirectory(const char *Name, struct stat &StatBuf) {
71 std::string FullPath(GetFullPath(Name));
72 return UniqueDirs.GetOrCreateValue(
73 FullPath.c_str(),
74 FullPath.c_str() + FullPath.size()
75 ).getValue();
76 }
Mike Stump1eb44332009-09-09 15:08:12 +000077
Ted Kremenek6bb816a2008-02-24 03:15:25 +000078 size_t size() { return UniqueDirs.size(); }
79};
80
81class FileManager::UniqueFileContainer {
82 /// UniqueFiles - Cache from full path to existing directories/files.
83 ///
Ted Kremenek75368892009-01-28 01:01:07 +000084 llvm::StringMap<FileEntry, llvm::BumpPtrAllocator> UniqueFiles;
Ted Kremenek6bb816a2008-02-24 03:15:25 +000085
86public:
87 FileEntry &getFile(const char *Name, struct stat &StatBuf) {
88 std::string FullPath(GetFullPath(Name));
Chris Lattnerc070da42010-08-23 23:50:42 +000089
90 // LowercaseString because Windows filesystem is case insensitive.
91 FullPath = llvm::LowercaseString(FullPath);
Ted Kremenek6bb816a2008-02-24 03:15:25 +000092 return UniqueFiles.GetOrCreateValue(
93 FullPath.c_str(),
94 FullPath.c_str() + FullPath.size()
95 ).getValue();
96 }
97
98 size_t size() { return UniqueFiles.size(); }
99};
100
Ted Kremenekcb8d58b2009-01-28 00:27:31 +0000101//===----------------------------------------------------------------------===//
102// Unix-like Systems.
103//===----------------------------------------------------------------------===//
104
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000105#else
106
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000107#define IS_DIR_SEPARATOR_CHAR(x) ((x) == '/')
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000108
109class FileManager::UniqueDirContainer {
110 /// UniqueDirs - Cache from ID's to existing directories/files.
111 ///
Mike Stump1eb44332009-09-09 15:08:12 +0000112 std::map<std::pair<dev_t, ino_t>, DirectoryEntry> UniqueDirs;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000113
114public:
115 DirectoryEntry &getDirectory(const char *Name, struct stat &StatBuf) {
116 return UniqueDirs[std::make_pair(StatBuf.st_dev, StatBuf.st_ino)];
117 }
118
119 size_t size() { return UniqueDirs.size(); }
120};
121
122class FileManager::UniqueFileContainer {
123 /// UniqueFiles - Cache from ID's to existing directories/files.
124 ///
125 std::set<FileEntry> UniqueFiles;
126
127public:
128 FileEntry &getFile(const char *Name, struct stat &StatBuf) {
129 return
130 const_cast<FileEntry&>(
131 *UniqueFiles.insert(FileEntry(StatBuf.st_dev,
Ted Kremenek96438f32009-02-12 03:17:57 +0000132 StatBuf.st_ino,
133 StatBuf.st_mode)).first);
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000134 }
135
136 size_t size() { return UniqueFiles.size(); }
137};
138
139#endif
140
Ted Kremenekcb8d58b2009-01-28 00:27:31 +0000141//===----------------------------------------------------------------------===//
142// Common logic.
143//===----------------------------------------------------------------------===//
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000144
Chris Lattner7ad97ff2010-11-23 07:51:02 +0000145FileManager::FileManager(const FileSystemOptions &FSO)
146 : FileSystemOpts(FSO),
147 UniqueDirs(*new UniqueDirContainer),
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000148 UniqueFiles(*new UniqueFileContainer),
Ted Kremenek96438f32009-02-12 03:17:57 +0000149 DirEntries(64), FileEntries(64), NextFileUID(0) {
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000150 NumDirLookups = NumFileLookups = 0;
151 NumDirCacheMisses = NumFileCacheMisses = 0;
152}
153
154FileManager::~FileManager() {
155 delete &UniqueDirs;
156 delete &UniqueFiles;
Douglas Gregor057e5672009-12-02 18:12:28 +0000157 for (llvm::SmallVectorImpl<FileEntry *>::iterator
158 V = VirtualFileEntries.begin(),
159 VEnd = VirtualFileEntries.end();
160 V != VEnd;
161 ++V)
162 delete *V;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000163}
164
Douglas Gregor52e71082009-10-16 18:18:30 +0000165void FileManager::addStatCache(StatSysCallCache *statCache, bool AtBeginning) {
166 assert(statCache && "No stat cache provided?");
167 if (AtBeginning || StatCache.get() == 0) {
168 statCache->setNextStatCache(StatCache.take());
169 StatCache.reset(statCache);
170 return;
171 }
172
173 StatSysCallCache *LastCache = StatCache.get();
174 while (LastCache->getNextStatCache())
175 LastCache = LastCache->getNextStatCache();
176
177 LastCache->setNextStatCache(statCache);
178}
179
180void FileManager::removeStatCache(StatSysCallCache *statCache) {
181 if (!statCache)
182 return;
183
184 if (StatCache.get() == statCache) {
185 // This is the first stat cache.
186 StatCache.reset(StatCache->takeNextStatCache());
187 return;
188 }
189
190 // Find the stat cache in the list.
191 StatSysCallCache *PrevCache = StatCache.get();
192 while (PrevCache && PrevCache->getNextStatCache() != statCache)
193 PrevCache = PrevCache->getNextStatCache();
194 if (PrevCache)
195 PrevCache->setNextStatCache(statCache->getNextStatCache());
196 else
197 assert(false && "Stat cache not found for removal");
198}
199
Douglas Gregor057e5672009-12-02 18:12:28 +0000200/// \brief Retrieve the directory that the given file name resides in.
201static const DirectoryEntry *getDirectoryFromFile(FileManager &FileMgr,
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000202 llvm::StringRef Filename,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000203 const FileSystemOptions &FileSystemOpts) {
Douglas Gregor057e5672009-12-02 18:12:28 +0000204 // Figure out what directory it is in. If the string contains a / in it,
205 // strip off everything after it.
206 // FIXME: this logic should be in sys::Path.
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000207 size_t SlashPos = Filename.size();
208 while (SlashPos != 0 && !IS_DIR_SEPARATOR_CHAR(Filename[SlashPos-1]))
209 --SlashPos;
210
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000211 // Use the current directory if file has no path component.
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000212 if (SlashPos == 0)
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000213 return FileMgr.getDirectory(".", FileSystemOpts);
Douglas Gregor057e5672009-12-02 18:12:28 +0000214
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000215 if (SlashPos == Filename.size()-1)
Douglas Gregor057e5672009-12-02 18:12:28 +0000216 return 0; // If filename ends with a /, it's a directory.
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000217
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000218 // Ignore repeated //'s.
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000219 while (SlashPos != 0 && IS_DIR_SEPARATOR_CHAR(Filename[SlashPos-1]))
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000220 --SlashPos;
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000221
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000222 return FileMgr.getDirectory(Filename.substr(0, SlashPos), FileSystemOpts);
Douglas Gregor057e5672009-12-02 18:12:28 +0000223}
224
Reid Spencer5f016e22007-07-11 17:01:13 +0000225/// getDirectory - Lookup, cache, and verify the specified directory. This
226/// returns null if the directory doesn't exist.
Mike Stump1eb44332009-09-09 15:08:12 +0000227///
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000228const DirectoryEntry *FileManager::getDirectory(llvm::StringRef Filename,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000229 const FileSystemOptions &FileSystemOpts) {
John Thompson9a6ac542009-12-18 14:18:21 +0000230 // stat doesn't like trailing separators (at least on Windows).
Benjamin Krameraa8b2d92010-11-21 11:32:22 +0000231 if (Filename.size() > 1 && IS_DIR_SEPARATOR_CHAR(Filename.back()))
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000232 Filename = Filename.substr(0, Filename.size()-1);
John Thompson9a6ac542009-12-18 14:18:21 +0000233
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 ++NumDirLookups;
235 llvm::StringMapEntry<DirectoryEntry *> &NamedDirEnt =
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000236 DirEntries.GetOrCreateValue(Filename);
Mike Stump1eb44332009-09-09 15:08:12 +0000237
Reid Spencer5f016e22007-07-11 17:01:13 +0000238 // See if there is already an entry in the map.
239 if (NamedDirEnt.getValue())
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000240 return NamedDirEnt.getValue() == NON_EXISTENT_DIR
Reid Spencer5f016e22007-07-11 17:01:13 +0000241 ? 0 : NamedDirEnt.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000242
Reid Spencer5f016e22007-07-11 17:01:13 +0000243 ++NumDirCacheMisses;
Mike Stump1eb44332009-09-09 15:08:12 +0000244
Reid Spencer5f016e22007-07-11 17:01:13 +0000245 // By default, initialize it to invalid.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000246 NamedDirEnt.setValue(NON_EXISTENT_DIR);
Mike Stump1eb44332009-09-09 15:08:12 +0000247
Reid Spencer5f016e22007-07-11 17:01:13 +0000248 // Get the null-terminated directory name as stored as the key of the
249 // DirEntries map.
250 const char *InterndDirName = NamedDirEnt.getKeyData();
Mike Stump1eb44332009-09-09 15:08:12 +0000251
Reid Spencer5f016e22007-07-11 17:01:13 +0000252 // Check to see if the directory exists.
253 struct stat StatBuf;
Chris Lattner7ad97ff2010-11-23 07:51:02 +0000254 if (stat_cached(InterndDirName, &StatBuf) || // Error stat'ing.
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 !S_ISDIR(StatBuf.st_mode)) // Not a directory?
256 return 0;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000257
Reid Spencer5f016e22007-07-11 17:01:13 +0000258 // It exists. See if we have already opened a directory with the same inode.
Mike Stump1eb44332009-09-09 15:08:12 +0000259 // This occurs when one dir is symlinked to another, for example.
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000260 DirectoryEntry &UDE = UniqueDirs.getDirectory(InterndDirName, StatBuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000261
Reid Spencer5f016e22007-07-11 17:01:13 +0000262 NamedDirEnt.setValue(&UDE);
263 if (UDE.getName()) // Already have an entry with this inode, return it.
264 return &UDE;
Mike Stump1eb44332009-09-09 15:08:12 +0000265
Reid Spencer5f016e22007-07-11 17:01:13 +0000266 // Otherwise, we don't have this directory yet, add it. We use the string
267 // key from the DirEntries map as the string.
268 UDE.Name = InterndDirName;
269 return &UDE;
270}
271
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000272/// NON_EXISTENT_FILE - A special value distinct from null that is used to
Reid Spencer5f016e22007-07-11 17:01:13 +0000273/// represent a filename that doesn't exist on the disk.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000274#define NON_EXISTENT_FILE reinterpret_cast<FileEntry*>((intptr_t)-1)
Reid Spencer5f016e22007-07-11 17:01:13 +0000275
276/// getFile - Lookup, cache, and verify the specified file. This returns null
277/// if the file doesn't exist.
Mike Stump1eb44332009-09-09 15:08:12 +0000278///
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000279const FileEntry *FileManager::getFile(llvm::StringRef Filename,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000280 const FileSystemOptions &FileSystemOpts) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000281 ++NumFileLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000282
Reid Spencer5f016e22007-07-11 17:01:13 +0000283 // See if there is already an entry in the map.
284 llvm::StringMapEntry<FileEntry *> &NamedFileEnt =
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000285 FileEntries.GetOrCreateValue(Filename);
Reid Spencer5f016e22007-07-11 17:01:13 +0000286
287 // See if there is already an entry in the map.
288 if (NamedFileEnt.getValue())
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000289 return NamedFileEnt.getValue() == NON_EXISTENT_FILE
Reid Spencer5f016e22007-07-11 17:01:13 +0000290 ? 0 : NamedFileEnt.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000291
Reid Spencer5f016e22007-07-11 17:01:13 +0000292 ++NumFileCacheMisses;
293
294 // By default, initialize it to invalid.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000295 NamedFileEnt.setValue(NON_EXISTENT_FILE);
Reid Spencer5f016e22007-07-11 17:01:13 +0000296
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Reid Spencer5f016e22007-07-11 17:01:13 +0000298 // Get the null-terminated file name as stored as the key of the
299 // FileEntries map.
300 const char *InterndFileName = NamedFileEnt.getKeyData();
Mike Stump1eb44332009-09-09 15:08:12 +0000301
Douglas Gregor057e5672009-12-02 18:12:28 +0000302 const DirectoryEntry *DirInfo
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000303 = getDirectoryFromFile(*this, Filename, FileSystemOpts);
Douglas Gregor057e5672009-12-02 18:12:28 +0000304 if (DirInfo == 0) // Directory doesn't exist, file can't exist.
305 return 0;
306
Reid Spencer5f016e22007-07-11 17:01:13 +0000307 // FIXME: Use the directory info to prune this, before doing the stat syscall.
308 // FIXME: This will reduce the # syscalls.
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Reid Spencer5f016e22007-07-11 17:01:13 +0000310 // Nope, there isn't. Check to see if the file exists.
311 struct stat StatBuf;
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000312 //llvm::errs() << "STATING: " << Filename;
Chris Lattner7ad97ff2010-11-23 07:51:02 +0000313 if (stat_cached(InterndFileName, &StatBuf) || // Error stat'ing.
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000314 S_ISDIR(StatBuf.st_mode)) { // A directory?
Reid Spencer5f016e22007-07-11 17:01:13 +0000315 // If this file doesn't exist, we leave a null in FileEntries for this path.
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000316 //llvm::errs() << ": Not existing\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000317 return 0;
318 }
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000319 //llvm::errs() << ": exists\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Ted Kremenekbca6d122007-12-18 22:29:39 +0000321 // It exists. See if we have already opened a file with the same inode.
Reid Spencer5f016e22007-07-11 17:01:13 +0000322 // This occurs when one dir is symlinked to another, for example.
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000323 FileEntry &UFE = UniqueFiles.getFile(InterndFileName, StatBuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Reid Spencer5f016e22007-07-11 17:01:13 +0000325 NamedFileEnt.setValue(&UFE);
326 if (UFE.getName()) // Already have an entry with this inode, return it.
327 return &UFE;
328
329 // Otherwise, we don't have this directory yet, add it.
330 // FIXME: Change the name to be a char* that points back to the 'FileEntries'
331 // key.
332 UFE.Name = InterndFileName;
333 UFE.Size = StatBuf.st_size;
334 UFE.ModTime = StatBuf.st_mtime;
335 UFE.Dir = DirInfo;
336 UFE.UID = NextFileUID++;
337 return &UFE;
338}
339
Douglas Gregor057e5672009-12-02 18:12:28 +0000340const FileEntry *
Benjamin Kramerec1b1cc2010-07-14 23:19:41 +0000341FileManager::getVirtualFile(llvm::StringRef Filename, off_t Size,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000342 time_t ModificationTime,
343 const FileSystemOptions &FileSystemOpts) {
Douglas Gregor057e5672009-12-02 18:12:28 +0000344 ++NumFileLookups;
345
346 // See if there is already an entry in the map.
347 llvm::StringMapEntry<FileEntry *> &NamedFileEnt =
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000348 FileEntries.GetOrCreateValue(Filename);
Douglas Gregor057e5672009-12-02 18:12:28 +0000349
350 // See if there is already an entry in the map.
351 if (NamedFileEnt.getValue())
352 return NamedFileEnt.getValue() == NON_EXISTENT_FILE
353 ? 0 : NamedFileEnt.getValue();
354
355 ++NumFileCacheMisses;
356
357 // By default, initialize it to invalid.
358 NamedFileEnt.setValue(NON_EXISTENT_FILE);
359
360 const DirectoryEntry *DirInfo
Chris Lattnerf69a1f32010-11-21 09:50:16 +0000361 = getDirectoryFromFile(*this, Filename, FileSystemOpts);
Douglas Gregor057e5672009-12-02 18:12:28 +0000362 if (DirInfo == 0) // Directory doesn't exist, file can't exist.
363 return 0;
364
365 FileEntry *UFE = new FileEntry();
366 VirtualFileEntries.push_back(UFE);
367 NamedFileEnt.setValue(UFE);
368
369 UFE->Name = NamedFileEnt.getKeyData();
370 UFE->Size = Size;
371 UFE->ModTime = ModificationTime;
372 UFE->Dir = DirInfo;
373 UFE->UID = NextFileUID++;
Douglas Gregor3e15e0a2010-07-26 23:54:23 +0000374
375 // If this virtual file resolves to a file, also map that file to the
376 // newly-created file entry.
377 const char *InterndFileName = NamedFileEnt.getKeyData();
378 struct stat StatBuf;
Chris Lattner7ad97ff2010-11-23 07:51:02 +0000379 if (!stat_cached(InterndFileName, &StatBuf) &&
Douglas Gregor3e15e0a2010-07-26 23:54:23 +0000380 !S_ISDIR(StatBuf.st_mode)) {
381 llvm::sys::Path FilePath(InterndFileName);
382 FilePath.makeAbsolute();
383 FileEntries[FilePath.str()] = UFE;
384 }
385
Douglas Gregor057e5672009-12-02 18:12:28 +0000386 return UFE;
387}
388
Chris Lattner67452f52010-11-23 04:45:28 +0000389void FileManager::FixupRelativePath(llvm::sys::Path &path,
390 const FileSystemOptions &FSOpts) {
391 if (FSOpts.WorkingDir.empty() || path.isAbsolute()) return;
392
393 llvm::sys::Path NewPath(FSOpts.WorkingDir);
394 NewPath.appendComponent(path.str());
395 path = NewPath;
396}
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000397
Chris Lattner67452f52010-11-23 04:45:28 +0000398
399
400llvm::MemoryBuffer *FileManager::
401getBufferForFile(llvm::StringRef Filename,
402 const FileSystemOptions &FileSystemOpts,
Chris Lattner151466a2010-11-23 06:09:11 +0000403 std::string *ErrorStr, int64_t FileSize) {
Chris Lattner67452f52010-11-23 04:45:28 +0000404 if (FileSystemOpts.WorkingDir.empty())
Chris Lattner151466a2010-11-23 06:09:11 +0000405 return llvm::MemoryBuffer::getFile(Filename, ErrorStr, FileSize);
Chris Lattner67452f52010-11-23 04:45:28 +0000406
407 llvm::sys::Path FilePath(Filename);
408 FixupRelativePath(FilePath, FileSystemOpts);
Chris Lattner151466a2010-11-23 06:09:11 +0000409 return llvm::MemoryBuffer::getFile(FilePath.c_str(), ErrorStr, FileSize);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000410}
411
Chris Lattner7ad97ff2010-11-23 07:51:02 +0000412int FileManager::stat_cached(const char *path, struct stat *buf) {
Chris Lattnerefc4be22010-11-23 04:33:43 +0000413 if (FileSystemOpts.WorkingDir.empty())
414 return StatCache.get() ? StatCache->stat(path, buf) : stat(path, buf);
415
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000416 llvm::sys::Path FilePath(path);
417 FixupRelativePath(FilePath, FileSystemOpts);
418
419 return StatCache.get() ? StatCache->stat(FilePath.c_str(), buf)
420 : stat(FilePath.c_str(), buf);
421}
422
Reid Spencer5f016e22007-07-11 17:01:13 +0000423void FileManager::PrintStats() const {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000424 llvm::errs() << "\n*** File Manager Stats:\n";
425 llvm::errs() << UniqueFiles.size() << " files found, "
426 << UniqueDirs.size() << " dirs found.\n";
427 llvm::errs() << NumDirLookups << " dir lookups, "
428 << NumDirCacheMisses << " dir cache misses.\n";
429 llvm::errs() << NumFileLookups << " file lookups, "
430 << NumFileCacheMisses << " file cache misses.\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000432 //llvm::errs() << PagesMapped << BytesOfPagesMapped << FSLookups;
Reid Spencer5f016e22007-07-11 17:01:13 +0000433}
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000434
435int MemorizeStatCalls::stat(const char *path, struct stat *buf) {
Douglas Gregor52e71082009-10-16 18:18:30 +0000436 int result = StatSysCallCache::stat(path, buf);
437
Daniel Dunbar475ddb42009-12-11 00:27:20 +0000438 // Do not cache failed stats, it is easy to construct common inconsistent
439 // situations if we do, and they are not important for PCH performance (which
440 // currently only needs the stats to construct the initial FileManager
441 // entries).
442 if (result != 0)
443 return result;
444
445 // Cache file 'stat' results and directories with absolutely paths.
446 if (!S_ISDIR(buf->st_mode) || llvm::sys::Path(path).isAbsolute())
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000447 StatCalls[path] = StatResult(result, *buf);
Mike Stump1eb44332009-09-09 15:08:12 +0000448
449 return result;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000450}