blob: 98979d56cf0da75ee74b223923195e31ae41cd78 [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"
Douglas Gregor4fed3f42009-04-27 18:38:38 +000022#include "llvm/System/Path.h"
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000023#include "llvm/Support/Streams.h"
Ted Kremenek6bb816a2008-02-24 03:15:25 +000024#include "llvm/Config/config.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26
27// FIXME: Enhance libsystem to support inode and other fields.
28#include <sys/stat.h>
29
Chris Lattnera8c11c62007-09-03 18:37:14 +000030#if defined(_MSC_VER)
Chris Lattner3102c832009-02-12 01:37:35 +000031#define S_ISDIR(s) (_S_IFDIR & s)
Chris Lattnera8c11c62007-09-03 18:37:14 +000032#endif
Reid Spencer5f016e22007-07-11 17:01:13 +000033
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000034/// NON_EXISTENT_DIR - A special value distinct from null that is used to
Reid Spencer5f016e22007-07-11 17:01:13 +000035/// represent a dir name that doesn't exist on the disk.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +000036#define NON_EXISTENT_DIR reinterpret_cast<DirectoryEntry*>((intptr_t)-1)
Reid Spencer5f016e22007-07-11 17:01:13 +000037
Ted Kremenekcb8d58b2009-01-28 00:27:31 +000038//===----------------------------------------------------------------------===//
39// Windows.
40//===----------------------------------------------------------------------===//
41
Ted Kremenek6bb816a2008-02-24 03:15:25 +000042#ifdef LLVM_ON_WIN32
43
44#define IS_DIR_SEPARATOR_CHAR(x) ((x) == '/' || (x) == '\\')
45
46namespace {
47 static std::string GetFullPath(const char *relPath)
48 {
49 char *absPathStrPtr = _fullpath(NULL, relPath, 0);
50 assert(absPathStrPtr && "_fullpath() returned NULL!");
51
52 std::string absPath(absPathStrPtr);
53
54 free(absPathStrPtr);
55 return absPath;
56 }
57}
58
59class FileManager::UniqueDirContainer {
60 /// UniqueDirs - Cache from full path to existing directories/files.
61 ///
62 llvm::StringMap<DirectoryEntry> UniqueDirs;
63
64public:
65 DirectoryEntry &getDirectory(const char *Name, struct stat &StatBuf) {
66 std::string FullPath(GetFullPath(Name));
67 return UniqueDirs.GetOrCreateValue(
68 FullPath.c_str(),
69 FullPath.c_str() + FullPath.size()
70 ).getValue();
71 }
72
73 size_t size() { return UniqueDirs.size(); }
74};
75
76class FileManager::UniqueFileContainer {
77 /// UniqueFiles - Cache from full path to existing directories/files.
78 ///
Ted Kremenek75368892009-01-28 01:01:07 +000079 llvm::StringMap<FileEntry, llvm::BumpPtrAllocator> UniqueFiles;
Ted Kremenek6bb816a2008-02-24 03:15:25 +000080
81public:
82 FileEntry &getFile(const char *Name, struct stat &StatBuf) {
83 std::string FullPath(GetFullPath(Name));
84 return UniqueFiles.GetOrCreateValue(
85 FullPath.c_str(),
86 FullPath.c_str() + FullPath.size()
87 ).getValue();
88 }
89
90 size_t size() { return UniqueFiles.size(); }
91};
92
Ted Kremenekcb8d58b2009-01-28 00:27:31 +000093//===----------------------------------------------------------------------===//
94// Unix-like Systems.
95//===----------------------------------------------------------------------===//
96
Ted Kremenek6bb816a2008-02-24 03:15:25 +000097#else
98
99#define IS_DIR_SEPARATOR_CHAR(x) ((x) == '/')
100
101class FileManager::UniqueDirContainer {
102 /// UniqueDirs - Cache from ID's to existing directories/files.
103 ///
104 std::map<std::pair<dev_t, ino_t>, DirectoryEntry> UniqueDirs;
105
106public:
107 DirectoryEntry &getDirectory(const char *Name, struct stat &StatBuf) {
108 return UniqueDirs[std::make_pair(StatBuf.st_dev, StatBuf.st_ino)];
109 }
110
111 size_t size() { return UniqueDirs.size(); }
112};
113
114class FileManager::UniqueFileContainer {
115 /// UniqueFiles - Cache from ID's to existing directories/files.
116 ///
117 std::set<FileEntry> UniqueFiles;
118
119public:
120 FileEntry &getFile(const char *Name, struct stat &StatBuf) {
121 return
122 const_cast<FileEntry&>(
123 *UniqueFiles.insert(FileEntry(StatBuf.st_dev,
Ted Kremenek96438f32009-02-12 03:17:57 +0000124 StatBuf.st_ino,
125 StatBuf.st_mode)).first);
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000126 }
127
128 size_t size() { return UniqueFiles.size(); }
129};
130
131#endif
132
Ted Kremenekcb8d58b2009-01-28 00:27:31 +0000133//===----------------------------------------------------------------------===//
134// Common logic.
135//===----------------------------------------------------------------------===//
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000136
Ted Kremenek96438f32009-02-12 03:17:57 +0000137FileManager::FileManager()
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000138 : UniqueDirs(*new UniqueDirContainer),
139 UniqueFiles(*new UniqueFileContainer),
Ted Kremenek96438f32009-02-12 03:17:57 +0000140 DirEntries(64), FileEntries(64), NextFileUID(0) {
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000141 NumDirLookups = NumFileLookups = 0;
142 NumDirCacheMisses = NumFileCacheMisses = 0;
143}
144
145FileManager::~FileManager() {
146 delete &UniqueDirs;
147 delete &UniqueFiles;
148}
149
Reid Spencer5f016e22007-07-11 17:01:13 +0000150/// getDirectory - Lookup, cache, and verify the specified directory. This
151/// returns null if the directory doesn't exist.
152///
153const DirectoryEntry *FileManager::getDirectory(const char *NameStart,
154 const char *NameEnd) {
155 ++NumDirLookups;
156 llvm::StringMapEntry<DirectoryEntry *> &NamedDirEnt =
157 DirEntries.GetOrCreateValue(NameStart, NameEnd);
158
159 // See if there is already an entry in the map.
160 if (NamedDirEnt.getValue())
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000161 return NamedDirEnt.getValue() == NON_EXISTENT_DIR
Reid Spencer5f016e22007-07-11 17:01:13 +0000162 ? 0 : NamedDirEnt.getValue();
163
164 ++NumDirCacheMisses;
165
166 // By default, initialize it to invalid.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000167 NamedDirEnt.setValue(NON_EXISTENT_DIR);
Reid Spencer5f016e22007-07-11 17:01:13 +0000168
169 // Get the null-terminated directory name as stored as the key of the
170 // DirEntries map.
171 const char *InterndDirName = NamedDirEnt.getKeyData();
172
173 // Check to see if the directory exists.
174 struct stat StatBuf;
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000175 if (stat_cached(InterndDirName, &StatBuf) || // Error stat'ing.
Reid Spencer5f016e22007-07-11 17:01:13 +0000176 !S_ISDIR(StatBuf.st_mode)) // Not a directory?
177 return 0;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000178
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 // It exists. See if we have already opened a directory with the same inode.
Ted Kremenekda995442007-12-18 20:45:25 +0000180 // This occurs when one dir is symlinked to another, for example.
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000181 DirectoryEntry &UDE = UniqueDirs.getDirectory(InterndDirName, StatBuf);
Reid Spencer5f016e22007-07-11 17:01:13 +0000182
183 NamedDirEnt.setValue(&UDE);
184 if (UDE.getName()) // Already have an entry with this inode, return it.
185 return &UDE;
186
187 // Otherwise, we don't have this directory yet, add it. We use the string
188 // key from the DirEntries map as the string.
189 UDE.Name = InterndDirName;
190 return &UDE;
191}
192
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000193/// NON_EXISTENT_FILE - A special value distinct from null that is used to
Reid Spencer5f016e22007-07-11 17:01:13 +0000194/// represent a filename that doesn't exist on the disk.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000195#define NON_EXISTENT_FILE reinterpret_cast<FileEntry*>((intptr_t)-1)
Reid Spencer5f016e22007-07-11 17:01:13 +0000196
197/// getFile - Lookup, cache, and verify the specified file. This returns null
198/// if the file doesn't exist.
199///
200const FileEntry *FileManager::getFile(const char *NameStart,
201 const char *NameEnd) {
202 ++NumFileLookups;
203
204 // See if there is already an entry in the map.
205 llvm::StringMapEntry<FileEntry *> &NamedFileEnt =
206 FileEntries.GetOrCreateValue(NameStart, NameEnd);
207
208 // See if there is already an entry in the map.
209 if (NamedFileEnt.getValue())
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000210 return NamedFileEnt.getValue() == NON_EXISTENT_FILE
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 ? 0 : NamedFileEnt.getValue();
212
213 ++NumFileCacheMisses;
214
215 // By default, initialize it to invalid.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000216 NamedFileEnt.setValue(NON_EXISTENT_FILE);
Reid Spencer5f016e22007-07-11 17:01:13 +0000217
218 // Figure out what directory it is in. If the string contains a / in it,
219 // strip off everything after it.
220 // FIXME: this logic should be in sys::Path.
221 const char *SlashPos = NameEnd-1;
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000222 while (SlashPos >= NameStart && !IS_DIR_SEPARATOR_CHAR(SlashPos[0]))
Reid Spencer5f016e22007-07-11 17:01:13 +0000223 --SlashPos;
Chris Lattner46730b22009-08-12 17:50:39 +0000224 // Ignore duplicate //'s.
225 while (SlashPos > NameStart && IS_DIR_SEPARATOR_CHAR(SlashPos[-1]))
226 --SlashPos;
Reid Spencer5f016e22007-07-11 17:01:13 +0000227
228 const DirectoryEntry *DirInfo;
229 if (SlashPos < NameStart) {
230 // Use the current directory if file has no path component.
231 const char *Name = ".";
232 DirInfo = getDirectory(Name, Name+1);
233 } else if (SlashPos == NameEnd-1)
234 return 0; // If filename ends with a /, it's a directory.
235 else
236 DirInfo = getDirectory(NameStart, SlashPos);
237
238 if (DirInfo == 0) // Directory doesn't exist, file can't exist.
239 return 0;
240
241 // Get the null-terminated file name as stored as the key of the
242 // FileEntries map.
243 const char *InterndFileName = NamedFileEnt.getKeyData();
244
245 // FIXME: Use the directory info to prune this, before doing the stat syscall.
246 // FIXME: This will reduce the # syscalls.
247
248 // Nope, there isn't. Check to see if the file exists.
249 struct stat StatBuf;
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000250 //llvm::cerr << "STATING: " << Filename;
Ted Kremenekfc7052d2009-02-12 00:39:05 +0000251 if (stat_cached(InterndFileName, &StatBuf) || // Error stat'ing.
252 S_ISDIR(StatBuf.st_mode)) { // A directory?
Reid Spencer5f016e22007-07-11 17:01:13 +0000253 // If this file doesn't exist, we leave a null in FileEntries for this path.
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000254 //llvm::cerr << ": Not existing\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000255 return 0;
256 }
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000257 //llvm::cerr << ": exists\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000258
Ted Kremenekbca6d122007-12-18 22:29:39 +0000259 // It exists. See if we have already opened a file with the same inode.
Reid Spencer5f016e22007-07-11 17:01:13 +0000260 // This occurs when one dir is symlinked to another, for example.
Ted Kremenek6bb816a2008-02-24 03:15:25 +0000261 FileEntry &UFE = UniqueFiles.getFile(InterndFileName, StatBuf);
Reid Spencer5f016e22007-07-11 17:01:13 +0000262
263 NamedFileEnt.setValue(&UFE);
264 if (UFE.getName()) // Already have an entry with this inode, return it.
265 return &UFE;
266
267 // Otherwise, we don't have this directory yet, add it.
268 // FIXME: Change the name to be a char* that points back to the 'FileEntries'
269 // key.
270 UFE.Name = InterndFileName;
271 UFE.Size = StatBuf.st_size;
272 UFE.ModTime = StatBuf.st_mtime;
273 UFE.Dir = DirInfo;
274 UFE.UID = NextFileUID++;
275 return &UFE;
276}
277
278void FileManager::PrintStats() const {
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000279 llvm::cerr << "\n*** File Manager Stats:\n";
280 llvm::cerr << UniqueFiles.size() << " files found, "
281 << UniqueDirs.size() << " dirs found.\n";
282 llvm::cerr << NumDirLookups << " dir lookups, "
283 << NumDirCacheMisses << " dir cache misses.\n";
284 llvm::cerr << NumFileLookups << " file lookups, "
285 << NumFileCacheMisses << " file cache misses.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000286
Ted Kremenek3d2da3d2008-01-11 20:42:05 +0000287 //llvm::cerr << PagesMapped << BytesOfPagesMapped << FSLookups;
Reid Spencer5f016e22007-07-11 17:01:13 +0000288}
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000289
290int MemorizeStatCalls::stat(const char *path, struct stat *buf) {
291 int result = ::stat(path, buf);
292
293 if (result != 0) {
294 // Cache failed 'stat' results.
295 struct stat empty;
296 StatCalls[path] = StatResult(result, empty);
297 }
298 else if (!S_ISDIR(buf->st_mode) || llvm::sys::Path(path).isAbsolute()) {
299 // Cache file 'stat' results and directories with absolutely
300 // paths.
301 StatCalls[path] = StatResult(result, *buf);
302 }
303
304 return result;
305}