blob: df86f9d04702e76a10c51bb41ba3e83751dd9acd [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"
21#include "llvm/ADT/SmallString.h"
Chris Lattnerd57a7ef2009-08-23 22:45:33 +000022#include "llvm/Support/raw_ostream.h"
Douglas Gregor4fed3f42009-04-27 18:38:38 +000023#include "llvm/System/Path.h"
Ted Kremenek6bb816a2008-02-24 03:15:25 +000024#include "llvm/Config/config.h"
Benjamin Kramer458fb102009-09-05 09:49:39 +000025#include <map>
26#include <set>
27#include <string>
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
30// FIXME: Enhance libsystem to support inode and other fields.
31#include <sys/stat.h>
32
Chris Lattnera8c11c62007-09-03 18:37:14 +000033#if defined(_MSC_VER)
Chris Lattner3102c832009-02-12 01:37:35 +000034#define S_ISDIR(s) (_S_IFDIR & s)
Chris Lattnera8c11c62007-09-03 18:37:14 +000035#endif
Reid Spencer5f016e22007-07-11 17:01:13 +000036
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000037/// NON_EXISTENT_DIR - A special value distinct from null that is used to
Reid Spencer5f016e22007-07-11 17:01:13 +000038/// represent a dir name that doesn't exist on the disk.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000039#define NON_EXISTENT_DIR reinterpret_cast<DirectoryEntry*>((intptr_t)-1)
Reid Spencer5f016e22007-07-11 17:01:13 +000040
Ted Kremenekcb8d58b2009-01-28 00:27:31 +000041//===----------------------------------------------------------------------===//
42// Windows.
43//===----------------------------------------------------------------------===//
44
Ted Kremenek6bb816a2008-02-24 03:15:25 +000045#ifdef LLVM_ON_WIN32
46
47#define IS_DIR_SEPARATOR_CHAR(x) ((x) == '/' || (x) == '\\')
48
49namespace {
Mike Stump1eb44332009-09-09 15:08:12 +000050 static std::string GetFullPath(const char *relPath) {
Ted Kremenek6bb816a2008-02-24 03:15:25 +000051 char *absPathStrPtr = _fullpath(NULL, relPath, 0);
52 assert(absPathStrPtr && "_fullpath() returned NULL!");
53
54 std::string absPath(absPathStrPtr);
55
56 free(absPathStrPtr);
57 return absPath;
58 }
59}
60
61class FileManager::UniqueDirContainer {
62 /// UniqueDirs - Cache from full path to existing directories/files.
63 ///
Mike Stump1eb44332009-09-09 15:08:12 +000064 llvm::StringMap<DirectoryEntry> UniqueDirs;
Ted Kremenek6bb816a2008-02-24 03:15:25 +000065
66public:
67 DirectoryEntry &getDirectory(const char *Name, struct stat &StatBuf) {
68 std::string FullPath(GetFullPath(Name));
69 return UniqueDirs.GetOrCreateValue(
70 FullPath.c_str(),
71 FullPath.c_str() + FullPath.size()
72 ).getValue();
73 }
Mike Stump1eb44332009-09-09 15:08:12 +000074
Ted Kremenek6bb816a2008-02-24 03:15:25 +000075 size_t size() { return UniqueDirs.size(); }
76};
77
78class FileManager::UniqueFileContainer {
79 /// UniqueFiles - Cache from full path to existing directories/files.
80 ///
Ted Kremenek75368892009-01-28 01:01:07 +000081 llvm::StringMap<FileEntry, llvm::BumpPtrAllocator> UniqueFiles;
Ted Kremenek6bb816a2008-02-24 03:15:25 +000082
83public:
84 FileEntry &getFile(const char *Name, struct stat &StatBuf) {
85 std::string FullPath(GetFullPath(Name));
86 return UniqueFiles.GetOrCreateValue(
87 FullPath.c_str(),
88 FullPath.c_str() + FullPath.size()
89 ).getValue();
90 }
91
92 size_t size() { return UniqueFiles.size(); }
93};
94
Ted Kremenekcb8d58b2009-01-28 00:27:31 +000095//===----------------------------------------------------------------------===//
96// Unix-like Systems.
97//===----------------------------------------------------------------------===//
98
Ted Kremenek6bb816a2008-02-24 03:15:25 +000099#else
100
101#define IS_DIR_SEPARATOR_CHAR(x) ((x) == '/')
102
103class FileManager::UniqueDirContainer {
104 /// UniqueDirs - Cache from ID's to existing directories/files.
105 ///
Mike Stump1eb44332009-09-09 15:08:12 +0000106 std::map<std::pair<dev_t, ino_t>, DirectoryEntry> UniqueDirs;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000107
108public:
109 DirectoryEntry &getDirectory(const char *Name, struct stat &StatBuf) {
110 return UniqueDirs[std::make_pair(StatBuf.st_dev, StatBuf.st_ino)];
111 }
112
113 size_t size() { return UniqueDirs.size(); }
114};
115
116class FileManager::UniqueFileContainer {
117 /// UniqueFiles - Cache from ID's to existing directories/files.
118 ///
119 std::set<FileEntry> UniqueFiles;
120
121public:
122 FileEntry &getFile(const char *Name, struct stat &StatBuf) {
123 return
124 const_cast<FileEntry&>(
125 *UniqueFiles.insert(FileEntry(StatBuf.st_dev,
Ted Kremenek96438f32009-02-12 03:17:57 +0000126 StatBuf.st_ino,
127 StatBuf.st_mode)).first);
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000128 }
129
130 size_t size() { return UniqueFiles.size(); }
131};
132
133#endif
134
Ted Kremenekcb8d58b2009-01-28 00:27:31 +0000135//===----------------------------------------------------------------------===//
136// Common logic.
137//===----------------------------------------------------------------------===//
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000138
Ted Kremenek96438f32009-02-12 03:17:57 +0000139FileManager::FileManager()
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000140 : UniqueDirs(*new UniqueDirContainer),
141 UniqueFiles(*new UniqueFileContainer),
Ted Kremenek96438f32009-02-12 03:17:57 +0000142 DirEntries(64), FileEntries(64), NextFileUID(0) {
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000143 NumDirLookups = NumFileLookups = 0;
144 NumDirCacheMisses = NumFileCacheMisses = 0;
145}
146
147FileManager::~FileManager() {
148 delete &UniqueDirs;
149 delete &UniqueFiles;
150}
151
Reid Spencer5f016e22007-07-11 17:01:13 +0000152/// getDirectory - Lookup, cache, and verify the specified directory. This
153/// returns null if the directory doesn't exist.
Mike Stump1eb44332009-09-09 15:08:12 +0000154///
Reid Spencer5f016e22007-07-11 17:01:13 +0000155const DirectoryEntry *FileManager::getDirectory(const char *NameStart,
156 const char *NameEnd) {
157 ++NumDirLookups;
158 llvm::StringMapEntry<DirectoryEntry *> &NamedDirEnt =
159 DirEntries.GetOrCreateValue(NameStart, NameEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 // See if there is already an entry in the map.
162 if (NamedDirEnt.getValue())
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000163 return NamedDirEnt.getValue() == NON_EXISTENT_DIR
Reid Spencer5f016e22007-07-11 17:01:13 +0000164 ? 0 : NamedDirEnt.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000165
Reid Spencer5f016e22007-07-11 17:01:13 +0000166 ++NumDirCacheMisses;
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 // By default, initialize it to invalid.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000169 NamedDirEnt.setValue(NON_EXISTENT_DIR);
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Reid Spencer5f016e22007-07-11 17:01:13 +0000171 // Get the null-terminated directory name as stored as the key of the
172 // DirEntries map.
173 const char *InterndDirName = NamedDirEnt.getKeyData();
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Reid Spencer5f016e22007-07-11 17:01:13 +0000175 // Check to see if the directory exists.
176 struct stat StatBuf;
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000177 if (stat_cached(InterndDirName, &StatBuf) || // Error stat'ing.
Reid Spencer5f016e22007-07-11 17:01:13 +0000178 !S_ISDIR(StatBuf.st_mode)) // Not a directory?
179 return 0;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000180
Reid Spencer5f016e22007-07-11 17:01:13 +0000181 // It exists. See if we have already opened a directory with the same inode.
Mike Stump1eb44332009-09-09 15:08:12 +0000182 // This occurs when one dir is symlinked to another, for example.
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000183 DirectoryEntry &UDE = UniqueDirs.getDirectory(InterndDirName, StatBuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000184
Reid Spencer5f016e22007-07-11 17:01:13 +0000185 NamedDirEnt.setValue(&UDE);
186 if (UDE.getName()) // Already have an entry with this inode, return it.
187 return &UDE;
Mike Stump1eb44332009-09-09 15:08:12 +0000188
Reid Spencer5f016e22007-07-11 17:01:13 +0000189 // Otherwise, we don't have this directory yet, add it. We use the string
190 // key from the DirEntries map as the string.
191 UDE.Name = InterndDirName;
192 return &UDE;
193}
194
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000195/// NON_EXISTENT_FILE - A special value distinct from null that is used to
Reid Spencer5f016e22007-07-11 17:01:13 +0000196/// represent a filename that doesn't exist on the disk.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000197#define NON_EXISTENT_FILE reinterpret_cast<FileEntry*>((intptr_t)-1)
Reid Spencer5f016e22007-07-11 17:01:13 +0000198
199/// getFile - Lookup, cache, and verify the specified file. This returns null
200/// if the file doesn't exist.
Mike Stump1eb44332009-09-09 15:08:12 +0000201///
Reid Spencer5f016e22007-07-11 17:01:13 +0000202const FileEntry *FileManager::getFile(const char *NameStart,
203 const char *NameEnd) {
204 ++NumFileLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000205
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 // See if there is already an entry in the map.
207 llvm::StringMapEntry<FileEntry *> &NamedFileEnt =
208 FileEntries.GetOrCreateValue(NameStart, NameEnd);
209
210 // See if there is already an entry in the map.
211 if (NamedFileEnt.getValue())
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000212 return NamedFileEnt.getValue() == NON_EXISTENT_FILE
Reid Spencer5f016e22007-07-11 17:01:13 +0000213 ? 0 : NamedFileEnt.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000214
Reid Spencer5f016e22007-07-11 17:01:13 +0000215 ++NumFileCacheMisses;
216
217 // By default, initialize it to invalid.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000218 NamedFileEnt.setValue(NON_EXISTENT_FILE);
Reid Spencer5f016e22007-07-11 17:01:13 +0000219
220 // Figure out what directory it is in. If the string contains a / in it,
221 // strip off everything after it.
222 // FIXME: this logic should be in sys::Path.
223 const char *SlashPos = NameEnd-1;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000224 while (SlashPos >= NameStart && !IS_DIR_SEPARATOR_CHAR(SlashPos[0]))
Reid Spencer5f016e22007-07-11 17:01:13 +0000225 --SlashPos;
Chris Lattner46730b22009-08-12 17:50:39 +0000226 // Ignore duplicate //'s.
227 while (SlashPos > NameStart && IS_DIR_SEPARATOR_CHAR(SlashPos[-1]))
228 --SlashPos;
Mike Stump1eb44332009-09-09 15:08:12 +0000229
Reid Spencer5f016e22007-07-11 17:01:13 +0000230 const DirectoryEntry *DirInfo;
231 if (SlashPos < NameStart) {
232 // Use the current directory if file has no path component.
233 const char *Name = ".";
234 DirInfo = getDirectory(Name, Name+1);
235 } else if (SlashPos == NameEnd-1)
236 return 0; // If filename ends with a /, it's a directory.
237 else
238 DirInfo = getDirectory(NameStart, SlashPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000239
Reid Spencer5f016e22007-07-11 17:01:13 +0000240 if (DirInfo == 0) // Directory doesn't exist, file can't exist.
241 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000242
Reid Spencer5f016e22007-07-11 17:01:13 +0000243 // Get the null-terminated file name as stored as the key of the
244 // FileEntries map.
245 const char *InterndFileName = NamedFileEnt.getKeyData();
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Reid Spencer5f016e22007-07-11 17:01:13 +0000247 // FIXME: Use the directory info to prune this, before doing the stat syscall.
248 // FIXME: This will reduce the # syscalls.
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Reid Spencer5f016e22007-07-11 17:01:13 +0000250 // Nope, there isn't. Check to see if the file exists.
251 struct stat StatBuf;
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000252 //llvm::errs() << "STATING: " << Filename;
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000253 if (stat_cached(InterndFileName, &StatBuf) || // Error stat'ing.
254 S_ISDIR(StatBuf.st_mode)) { // A directory?
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 // If this file doesn't exist, we leave a null in FileEntries for this path.
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000256 //llvm::errs() << ": Not existing\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000257 return 0;
258 }
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000259 //llvm::errs() << ": exists\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Ted Kremenekbca6d122007-12-18 22:29:39 +0000261 // It exists. See if we have already opened a file with the same inode.
Reid Spencer5f016e22007-07-11 17:01:13 +0000262 // This occurs when one dir is symlinked to another, for example.
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000263 FileEntry &UFE = UniqueFiles.getFile(InterndFileName, StatBuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Reid Spencer5f016e22007-07-11 17:01:13 +0000265 NamedFileEnt.setValue(&UFE);
266 if (UFE.getName()) // Already have an entry with this inode, return it.
267 return &UFE;
268
269 // Otherwise, we don't have this directory yet, add it.
270 // FIXME: Change the name to be a char* that points back to the 'FileEntries'
271 // key.
272 UFE.Name = InterndFileName;
273 UFE.Size = StatBuf.st_size;
274 UFE.ModTime = StatBuf.st_mtime;
275 UFE.Dir = DirInfo;
276 UFE.UID = NextFileUID++;
277 return &UFE;
278}
279
280void FileManager::PrintStats() const {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000281 llvm::errs() << "\n*** File Manager Stats:\n";
282 llvm::errs() << UniqueFiles.size() << " files found, "
283 << UniqueDirs.size() << " dirs found.\n";
284 llvm::errs() << NumDirLookups << " dir lookups, "
285 << NumDirCacheMisses << " dir cache misses.\n";
286 llvm::errs() << NumFileLookups << " file lookups, "
287 << NumFileCacheMisses << " file cache misses.\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000288
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +0000289 //llvm::errs() << PagesMapped << BytesOfPagesMapped << FSLookups;
Reid Spencer5f016e22007-07-11 17:01:13 +0000290}
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000291
292int MemorizeStatCalls::stat(const char *path, struct stat *buf) {
293 int result = ::stat(path, buf);
Mike Stump1eb44332009-09-09 15:08:12 +0000294
295 if (result != 0) {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000296 // Cache failed 'stat' results.
297 struct stat empty;
Chris Lattnerf1affe62009-09-18 04:51:01 +0000298 memset(&empty, 0, sizeof(empty));
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000299 StatCalls[path] = StatResult(result, empty);
300 }
301 else if (!S_ISDIR(buf->st_mode) || llvm::sys::Path(path).isAbsolute()) {
302 // Cache file 'stat' results and directories with absolutely
303 // paths.
304 StatCalls[path] = StatResult(result, *buf);
305 }
Mike Stump1eb44332009-09-09 15:08:12 +0000306
307 return result;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000308}