blob: 5bcc4ea044159d48c22f13b2294e21ebfb44bf2f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- HeaderSearch.cpp - Resolve Header File Locations ---===//
2//
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 DirectoryLookup and HeaderSearch interfaces.
11//
12//===----------------------------------------------------------------------===//
13
Reid Spencer5f016e22007-07-11 17:01:13 +000014#include "clang/Lex/HeaderSearch.h"
Douglas Gregora30cfe52011-11-11 19:10:28 +000015#include "clang/Basic/Diagnostic.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000016#include "clang/Basic/FileManager.h"
17#include "clang/Basic/IdentifierTable.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/Lex/HeaderMap.h"
19#include "clang/Lex/HeaderSearchOptions.h"
20#include "clang/Lex/Lexer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "llvm/ADT/SmallString.h"
Ted Kremenekeabea452011-07-27 18:41:18 +000022#include "llvm/Support/Capacity.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000023#include "llvm/Support/FileSystem.h"
24#include "llvm/Support/Path.h"
Daniel Jasperddd2dfc2013-09-24 09:14:14 +000025#include "llvm/Support/raw_ostream.h"
Chris Lattner3daed522009-03-02 22:20:04 +000026#include <cstdio>
Douglas Gregor3cc62772013-01-22 23:49:45 +000027#if defined(LLVM_ON_UNIX)
Dmitri Gribenkoadeb7822013-01-26 16:29:36 +000028#include <limits.h>
Douglas Gregor3cc62772013-01-22 23:49:45 +000029#endif
Reid Spencer5f016e22007-07-11 17:01:13 +000030using namespace clang;
31
Douglas Gregor8c5a7602009-04-25 23:30:02 +000032const IdentifierInfo *
33HeaderFileInfo::getControllingMacro(ExternalIdentifierLookup *External) {
34 if (ControllingMacro)
35 return ControllingMacro;
36
37 if (!ControllingMacroID || !External)
38 return 0;
39
40 ControllingMacro = External->GetIdentifier(ControllingMacroID);
41 return ControllingMacro;
42}
43
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000044ExternalHeaderFileInfoSource::~ExternalHeaderFileInfoSource() {}
45
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000046HeaderSearch::HeaderSearch(IntrusiveRefCntPtr<HeaderSearchOptions> HSOpts,
Douglas Gregorc042edd2012-10-24 16:19:39 +000047 FileManager &FM, DiagnosticsEngine &Diags,
Douglas Gregordc58aa72012-01-30 06:01:29 +000048 const LangOptions &LangOpts,
49 const TargetInfo *Target)
Douglas Gregorc042edd2012-10-24 16:19:39 +000050 : HSOpts(HSOpts), FileMgr(FM), FrameworkMap(64),
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +000051 ModMap(FileMgr, *Diags.getClient(), LangOpts, Target, *this)
Douglas Gregor8e238062011-11-11 00:35:06 +000052{
Nico Weber74a5fd82011-05-24 04:31:14 +000053 AngledDirIdx = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000054 SystemDirIdx = 0;
55 NoCurDirSearch = false;
Mike Stump1eb44332009-09-09 15:08:12 +000056
Douglas Gregor8c5a7602009-04-25 23:30:02 +000057 ExternalLookup = 0;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000058 ExternalSource = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000059 NumIncluded = 0;
60 NumMultiIncludeFileOptzn = 0;
61 NumFrameworkLookups = NumSubFrameworkLookups = 0;
62}
63
Chris Lattner822da612007-12-17 06:36:45 +000064HeaderSearch::~HeaderSearch() {
65 // Delete headermaps.
66 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
67 delete HeaderMaps[i].second;
68}
Mike Stump1eb44332009-09-09 15:08:12 +000069
Reid Spencer5f016e22007-07-11 17:01:13 +000070void HeaderSearch::PrintStats() {
71 fprintf(stderr, "\n*** HeaderSearch Stats:\n");
72 fprintf(stderr, "%d files tracked.\n", (int)FileInfo.size());
73 unsigned NumOnceOnlyFiles = 0, MaxNumIncludes = 0, NumSingleIncludedFiles = 0;
74 for (unsigned i = 0, e = FileInfo.size(); i != e; ++i) {
75 NumOnceOnlyFiles += FileInfo[i].isImport;
76 if (MaxNumIncludes < FileInfo[i].NumIncludes)
77 MaxNumIncludes = FileInfo[i].NumIncludes;
78 NumSingleIncludedFiles += FileInfo[i].NumIncludes == 1;
79 }
80 fprintf(stderr, " %d #import/#pragma once files.\n", NumOnceOnlyFiles);
81 fprintf(stderr, " %d included exactly once.\n", NumSingleIncludedFiles);
82 fprintf(stderr, " %d max times a file is included.\n", MaxNumIncludes);
Mike Stump1eb44332009-09-09 15:08:12 +000083
Reid Spencer5f016e22007-07-11 17:01:13 +000084 fprintf(stderr, " %d #include/#include_next/#import.\n", NumIncluded);
85 fprintf(stderr, " %d #includes skipped due to"
86 " the multi-include optimization.\n", NumMultiIncludeFileOptzn);
Mike Stump1eb44332009-09-09 15:08:12 +000087
Reid Spencer5f016e22007-07-11 17:01:13 +000088 fprintf(stderr, "%d framework lookups.\n", NumFrameworkLookups);
89 fprintf(stderr, "%d subframework lookups.\n", NumSubFrameworkLookups);
90}
91
Chris Lattner822da612007-12-17 06:36:45 +000092/// CreateHeaderMap - This method returns a HeaderMap for the specified
Sylvestre Ledrubed28ac2012-07-23 08:59:39 +000093/// FileEntry, uniquing them through the 'HeaderMaps' datastructure.
Chris Lattner1bfd4a62007-12-17 18:34:53 +000094const HeaderMap *HeaderSearch::CreateHeaderMap(const FileEntry *FE) {
Chris Lattner822da612007-12-17 06:36:45 +000095 // We expect the number of headermaps to be small, and almost always empty.
Chris Lattnerdf772332007-12-17 07:52:39 +000096 // If it ever grows, use of a linear search should be re-evaluated.
Chris Lattner822da612007-12-17 06:36:45 +000097 if (!HeaderMaps.empty()) {
98 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
Chris Lattnerdf772332007-12-17 07:52:39 +000099 // Pointer equality comparison of FileEntries works because they are
100 // already uniqued by inode.
Mike Stump1eb44332009-09-09 15:08:12 +0000101 if (HeaderMaps[i].first == FE)
Chris Lattner822da612007-12-17 06:36:45 +0000102 return HeaderMaps[i].second;
103 }
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Chris Lattner39b49bc2010-11-23 08:35:12 +0000105 if (const HeaderMap *HM = HeaderMap::Create(FE, FileMgr)) {
Chris Lattner822da612007-12-17 06:36:45 +0000106 HeaderMaps.push_back(std::make_pair(FE, HM));
107 return HM;
108 }
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Chris Lattner822da612007-12-17 06:36:45 +0000110 return 0;
111}
112
Douglas Gregore434ec72012-01-29 17:08:11 +0000113std::string HeaderSearch::getModuleFileName(Module *Module) {
Douglas Gregor9a6da692011-09-12 20:41:59 +0000114 // If we don't have a module cache path, we can't do anything.
Douglas Gregore434ec72012-01-29 17:08:11 +0000115 if (ModuleCachePath.empty())
116 return std::string();
117
118
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000119 SmallString<256> Result(ModuleCachePath);
Douglas Gregore434ec72012-01-29 17:08:11 +0000120 llvm::sys::path::append(Result, Module->getTopLevelModule()->Name + ".pcm");
121 return Result.str().str();
122}
123
124std::string HeaderSearch::getModuleFileName(StringRef ModuleName) {
125 // If we don't have a module cache path, we can't do anything.
126 if (ModuleCachePath.empty())
127 return std::string();
Douglas Gregor6e975c42011-09-13 23:15:45 +0000128
Douglas Gregore434ec72012-01-29 17:08:11 +0000129
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000130 SmallString<256> Result(ModuleCachePath);
Douglas Gregore434ec72012-01-29 17:08:11 +0000131 llvm::sys::path::append(Result, ModuleName + ".pcm");
132 return Result.str().str();
133}
134
135Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) {
Douglas Gregorcf70d782011-11-12 00:05:07 +0000136 // Look in the module map to determine if there is a module by this name.
Douglas Gregore434ec72012-01-29 17:08:11 +0000137 Module *Module = ModMap.findModule(ModuleName);
138 if (Module || !AllowSearch)
139 return Module;
140
Douglas Gregor7005b902013-01-10 01:43:00 +0000141 // Look through the various header search paths to load any available module
Douglas Gregore434ec72012-01-29 17:08:11 +0000142 // maps, searching for a module map that describes this module.
143 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
144 if (SearchDirs[Idx].isFramework()) {
145 // Search for or infer a module map for a framework.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000146 SmallString<128> FrameworkDirName;
Douglas Gregore434ec72012-01-29 17:08:11 +0000147 FrameworkDirName += SearchDirs[Idx].getFrameworkDir()->getName();
148 llvm::sys::path::append(FrameworkDirName, ModuleName + ".framework");
149 if (const DirectoryEntry *FrameworkDir
150 = FileMgr.getDirectory(FrameworkDirName)) {
151 bool IsSystem
152 = SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_User;
153 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
Douglas Gregorcf70d782011-11-12 00:05:07 +0000154 if (Module)
155 break;
156 }
Douglas Gregore434ec72012-01-29 17:08:11 +0000157 }
158
159 // FIXME: Figure out how header maps and module maps will work together.
160
161 // Only deal with normal search directories.
162 if (!SearchDirs[Idx].isNormalDir())
163 continue;
Douglas Gregor8f5d7d12013-06-21 16:28:10 +0000164
165 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory();
Douglas Gregore434ec72012-01-29 17:08:11 +0000166 // Search for a module map file in this directory.
Douglas Gregor8f5d7d12013-06-21 16:28:10 +0000167 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem)
168 == LMM_NewlyLoaded) {
Douglas Gregore434ec72012-01-29 17:08:11 +0000169 // We just loaded a module map file; check whether the module is
170 // available now.
171 Module = ModMap.findModule(ModuleName);
172 if (Module)
173 break;
174 }
175
176 // Search for a module map in a subdirectory with the same name as the
177 // module.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000178 SmallString<128> NestedModuleMapDirName;
Douglas Gregore434ec72012-01-29 17:08:11 +0000179 NestedModuleMapDirName = SearchDirs[Idx].getDir()->getName();
180 llvm::sys::path::append(NestedModuleMapDirName, ModuleName);
Douglas Gregor8f5d7d12013-06-21 16:28:10 +0000181 if (loadModuleMapFile(NestedModuleMapDirName, IsSystem) == LMM_NewlyLoaded){
Douglas Gregore434ec72012-01-29 17:08:11 +0000182 // If we just loaded a module map file, look for the module again.
183 Module = ModMap.findModule(ModuleName);
184 if (Module)
185 break;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000186 }
Douglas Gregorcdf28082013-03-21 01:08:50 +0000187
188 // If we've already performed the exhaustive search for module maps in this
189 // search directory, don't do it again.
190 if (SearchDirs[Idx].haveSearchedAllModuleMaps())
191 continue;
192
193 // Load all module maps in the immediate subdirectories of this search
194 // directory.
195 loadSubdirectoryModuleMaps(SearchDirs[Idx]);
196
197 // Look again for the module.
198 Module = ModMap.findModule(ModuleName);
199 if (Module)
200 break;
Douglas Gregorcf70d782011-11-12 00:05:07 +0000201 }
Douglas Gregorcdf28082013-03-21 01:08:50 +0000202
Douglas Gregore434ec72012-01-29 17:08:11 +0000203 return Module;
Douglas Gregor9a6da692011-09-12 20:41:59 +0000204}
205
Chris Lattnerdf772332007-12-17 07:52:39 +0000206//===----------------------------------------------------------------------===//
207// File lookup within a DirectoryLookup scope
208//===----------------------------------------------------------------------===//
209
Chris Lattner3af66a92007-12-17 17:57:27 +0000210/// getName - Return the directory or filename corresponding to this lookup
211/// object.
212const char *DirectoryLookup::getName() const {
213 if (isNormalDir())
214 return getDir()->getName();
215 if (isFramework())
216 return getFrameworkDir()->getName();
217 assert(isHeaderMap() && "Unknown DirectoryLookup");
218 return getHeaderMap()->getFileName();
219}
220
221
Chris Lattnerdf772332007-12-17 07:52:39 +0000222/// LookupFile - Lookup the specified file in this search path, returning it
223/// if it exists or returning null if not.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000224const FileEntry *DirectoryLookup::LookupFile(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000225 StringRef Filename,
Manuel Klimek74124942011-04-26 21:50:03 +0000226 HeaderSearch &HS,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000227 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000228 SmallVectorImpl<char> *RelativePath,
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000229 ModuleMap::KnownHeader *SuggestedModule,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000230 bool &InUserSpecifiedSystemFramework) const {
231 InUserSpecifiedSystemFramework = false;
232
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000233 SmallString<1024> TmpDir;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000234 if (isNormalDir()) {
235 // Concatenate the requested file onto the directory.
Eli Friedmana6e023c2011-07-08 20:17:28 +0000236 TmpDir = getDir()->getName();
237 llvm::sys::path::append(TmpDir, Filename);
Manuel Klimek74124942011-04-26 21:50:03 +0000238 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000239 StringRef SearchPathRef(getDir()->getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000240 SearchPath->clear();
241 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
242 }
243 if (RelativePath != NULL) {
244 RelativePath->clear();
245 RelativePath->append(Filename.begin(), Filename.end());
246 }
Douglas Gregora30cfe52011-11-11 19:10:28 +0000247
248 // If we have a module map that might map this header, load it and
249 // check whether we'll have a suggestion for a module.
Douglas Gregor8f5d7d12013-06-21 16:28:10 +0000250 if (SuggestedModule &&
251 HS.hasModuleMap(TmpDir, getDir(), isSystemHeaderDirectory())) {
Douglas Gregora30cfe52011-11-11 19:10:28 +0000252 const FileEntry *File = HS.getFileMgr().getFile(TmpDir.str(),
253 /*openFile=*/false);
254 if (!File)
255 return File;
256
257 // If there is a module that corresponds to this header,
258 // suggest it.
Douglas Gregor5e3f9222011-12-08 17:01:29 +0000259 *SuggestedModule = HS.findModuleForHeader(File);
Douglas Gregora30cfe52011-11-11 19:10:28 +0000260 return File;
261 }
262
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000263 return HS.getFileMgr().getFile(TmpDir.str(), /*openFile=*/true);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000264 }
Mike Stump1eb44332009-09-09 15:08:12 +0000265
Chris Lattnerafded5b2007-12-17 08:13:48 +0000266 if (isFramework())
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000267 return DoFrameworkLookup(Filename, HS, SearchPath, RelativePath,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000268 SuggestedModule, InUserSpecifiedSystemFramework);
Mike Stump1eb44332009-09-09 15:08:12 +0000269
Chris Lattnerb09e71f2007-12-17 08:17:39 +0000270 assert(isHeaderMap() && "Unknown directory lookup");
Manuel Klimek74124942011-04-26 21:50:03 +0000271 const FileEntry * const Result = getHeaderMap()->LookupFile(
272 Filename, HS.getFileMgr());
273 if (Result) {
274 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000275 StringRef SearchPathRef(getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000276 SearchPath->clear();
277 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
278 }
279 if (RelativePath != NULL) {
280 RelativePath->clear();
281 RelativePath->append(Filename.begin(), Filename.end());
282 }
283 }
284 return Result;
Chris Lattnerdf772332007-12-17 07:52:39 +0000285}
286
Douglas Gregor7005b902013-01-10 01:43:00 +0000287/// \brief Given a framework directory, find the top-most framework directory.
288///
289/// \param FileMgr The file manager to use for directory lookups.
290/// \param DirName The name of the framework directory.
291/// \param SubmodulePath Will be populated with the submodule path from the
292/// returned top-level module to the originally named framework.
293static const DirectoryEntry *
294getTopFrameworkDir(FileManager &FileMgr, StringRef DirName,
295 SmallVectorImpl<std::string> &SubmodulePath) {
296 assert(llvm::sys::path::extension(DirName) == ".framework" &&
297 "Not a framework directory");
298
Douglas Gregor7005b902013-01-10 01:43:00 +0000299 // Note: as an egregious but useful hack we use the real path here, because
300 // frameworks moving between top-level frameworks to embedded frameworks tend
301 // to be symlinked, and we base the logical structure of modules on the
302 // physical layout. In particular, we need to deal with crazy includes like
303 //
304 // #include <Foo/Frameworks/Bar.framework/Headers/Wibble.h>
305 //
306 // where 'Bar' used to be embedded in 'Foo', is now a top-level framework
307 // which one should access with, e.g.,
308 //
309 // #include <Bar/Wibble.h>
310 //
311 // Similar issues occur when a top-level framework has moved into an
312 // embedded framework.
Douglas Gregor7005b902013-01-10 01:43:00 +0000313 const DirectoryEntry *TopFrameworkDir = FileMgr.getDirectory(DirName);
Douglas Gregor713b7c02013-01-26 00:55:12 +0000314 DirName = FileMgr.getCanonicalName(TopFrameworkDir);
Douglas Gregor7005b902013-01-10 01:43:00 +0000315 do {
316 // Get the parent directory name.
317 DirName = llvm::sys::path::parent_path(DirName);
318 if (DirName.empty())
319 break;
320
321 // Determine whether this directory exists.
322 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
323 if (!Dir)
324 break;
325
326 // If this is a framework directory, then we're a subframework of this
327 // framework.
328 if (llvm::sys::path::extension(DirName) == ".framework") {
329 SubmodulePath.push_back(llvm::sys::path::stem(DirName));
330 TopFrameworkDir = Dir;
331 }
332 } while (true);
333
334 return TopFrameworkDir;
335}
Chris Lattnerdf772332007-12-17 07:52:39 +0000336
Chris Lattnerafded5b2007-12-17 08:13:48 +0000337/// DoFrameworkLookup - Do a lookup of the specified file in the current
338/// DirectoryLookup, which is a framework directory.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000339const FileEntry *DirectoryLookup::DoFrameworkLookup(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000340 StringRef Filename,
Manuel Klimek74124942011-04-26 21:50:03 +0000341 HeaderSearch &HS,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000342 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000343 SmallVectorImpl<char> *RelativePath,
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000344 ModuleMap::KnownHeader *SuggestedModule,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000345 bool &InUserSpecifiedSystemFramework) const
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000346{
Chris Lattnerafded5b2007-12-17 08:13:48 +0000347 FileManager &FileMgr = HS.getFileMgr();
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Reid Spencer5f016e22007-07-11 17:01:13 +0000349 // Framework names must have a '/' in the filename.
Chris Lattnera1394812010-01-10 01:35:12 +0000350 size_t SlashPos = Filename.find('/');
Chris Lattner5f9e2722011-07-23 10:55:15 +0000351 if (SlashPos == StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000352
Chris Lattnerafded5b2007-12-17 08:13:48 +0000353 // Find out if this is the home for the specified framework, by checking
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000354 // HeaderSearch. Possible answers are yes/no and unknown.
355 HeaderSearch::FrameworkCacheEntry &CacheEntry =
Chris Lattnera1394812010-01-10 01:35:12 +0000356 HS.LookupFrameworkCache(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000357
Chris Lattnerafded5b2007-12-17 08:13:48 +0000358 // If it is known and in some other directory, fail.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000359 if (CacheEntry.Directory && CacheEntry.Directory != getFrameworkDir())
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Chris Lattnerafded5b2007-12-17 08:13:48 +0000362 // Otherwise, construct the path to this framework dir.
Mike Stump1eb44332009-09-09 15:08:12 +0000363
Reid Spencer5f016e22007-07-11 17:01:13 +0000364 // FrameworkName = "/System/Library/Frameworks/"
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000365 SmallString<1024> FrameworkName;
Chris Lattnerafded5b2007-12-17 08:13:48 +0000366 FrameworkName += getFrameworkDir()->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000367 if (FrameworkName.empty() || FrameworkName.back() != '/')
368 FrameworkName.push_back('/');
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 // FrameworkName = "/System/Library/Frameworks/Cocoa"
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000371 StringRef ModuleName(Filename.begin(), SlashPos);
372 FrameworkName += ModuleName;
Mike Stump1eb44332009-09-09 15:08:12 +0000373
Reid Spencer5f016e22007-07-11 17:01:13 +0000374 // FrameworkName = "/System/Library/Frameworks/Cocoa.framework/"
375 FrameworkName += ".framework/";
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000377 // If the cache entry was unresolved, populate it now.
378 if (CacheEntry.Directory == 0) {
Chris Lattnerafded5b2007-12-17 08:13:48 +0000379 HS.IncrementFrameworkLookupCount();
Mike Stump1eb44332009-09-09 15:08:12 +0000380
Reid Spencer5f016e22007-07-11 17:01:13 +0000381 // If the framework dir doesn't exist, we fail.
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000382 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
383 if (Dir == 0) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000384
Reid Spencer5f016e22007-07-11 17:01:13 +0000385 // Otherwise, if it does, remember that this is the right direntry for this
386 // framework.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000387 CacheEntry.Directory = getFrameworkDir();
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000388
389 // If this is a user search directory, check if the framework has been
390 // user-specified as a system framework.
391 if (getDirCharacteristic() == SrcMgr::C_User) {
392 SmallString<1024> SystemFrameworkMarker(FrameworkName);
393 SystemFrameworkMarker += ".system_framework";
394 if (llvm::sys::fs::exists(SystemFrameworkMarker.str())) {
395 CacheEntry.IsUserSpecifiedSystemFramework = true;
396 }
397 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000398 }
Mike Stump1eb44332009-09-09 15:08:12 +0000399
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000400 // Set the 'user-specified system framework' flag.
401 InUserSpecifiedSystemFramework = CacheEntry.IsUserSpecifiedSystemFramework;
402
Manuel Klimek74124942011-04-26 21:50:03 +0000403 if (RelativePath != NULL) {
404 RelativePath->clear();
405 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
406 }
Douglas Gregor2821c7f2011-11-17 01:41:17 +0000407
Reid Spencer5f016e22007-07-11 17:01:13 +0000408 // Check "/System/Library/Frameworks/Cocoa.framework/Headers/file.h"
409 unsigned OrigSize = FrameworkName.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000410
Reid Spencer5f016e22007-07-11 17:01:13 +0000411 FrameworkName += "Headers/";
Manuel Klimek74124942011-04-26 21:50:03 +0000412
413 if (SearchPath != NULL) {
414 SearchPath->clear();
415 // Without trailing '/'.
416 SearchPath->append(FrameworkName.begin(), FrameworkName.end()-1);
417 }
418
Chris Lattnera1394812010-01-10 01:35:12 +0000419 FrameworkName.append(Filename.begin()+SlashPos+1, Filename.end());
Douglas Gregor7005b902013-01-10 01:43:00 +0000420 const FileEntry *FE = FileMgr.getFile(FrameworkName.str(),
421 /*openFile=*/!SuggestedModule);
422 if (!FE) {
423 // Check "/System/Library/Frameworks/Cocoa.framework/PrivateHeaders/file.h"
424 const char *Private = "Private";
425 FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
426 Private+strlen(Private));
427 if (SearchPath != NULL)
428 SearchPath->insert(SearchPath->begin()+OrigSize, Private,
429 Private+strlen(Private));
430
431 FE = FileMgr.getFile(FrameworkName.str(), /*openFile=*/!SuggestedModule);
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Douglas Gregor7005b902013-01-10 01:43:00 +0000434 // If we found the header and are allowed to suggest a module, do so now.
435 if (FE && SuggestedModule) {
436 // Find the framework in which this header occurs.
437 StringRef FrameworkPath = FE->getName();
438 bool FoundFramework = false;
439 do {
440 // Get the parent directory name.
441 FrameworkPath = llvm::sys::path::parent_path(FrameworkPath);
442 if (FrameworkPath.empty())
443 break;
Manuel Klimek74124942011-04-26 21:50:03 +0000444
Douglas Gregor7005b902013-01-10 01:43:00 +0000445 // Determine whether this directory exists.
446 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkPath);
447 if (!Dir)
448 break;
449
450 // If this is a framework directory, then we're a subframework of this
451 // framework.
452 if (llvm::sys::path::extension(FrameworkPath) == ".framework") {
453 FoundFramework = true;
454 break;
455 }
456 } while (true);
457
458 if (FoundFramework) {
459 // Find the top-level framework based on this framework.
460 SmallVector<std::string, 4> SubmodulePath;
461 const DirectoryEntry *TopFrameworkDir
462 = ::getTopFrameworkDir(FileMgr, FrameworkPath, SubmodulePath);
463
464 // Determine the name of the top-level framework.
465 StringRef ModuleName = llvm::sys::path::stem(TopFrameworkDir->getName());
466
467 // Load this framework module. If that succeeds, find the suggested module
468 // for this header, if any.
469 bool IsSystem = getDirCharacteristic() != SrcMgr::C_User;
470 if (HS.loadFrameworkModule(ModuleName, TopFrameworkDir, IsSystem)) {
471 *SuggestedModule = HS.findModuleForHeader(FE);
472 }
473 } else {
474 *SuggestedModule = HS.findModuleForHeader(FE);
475 }
476 }
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000477 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000478}
479
Douglas Gregordc58aa72012-01-30 06:01:29 +0000480void HeaderSearch::setTarget(const TargetInfo &Target) {
481 ModMap.setTarget(Target);
482}
483
Chris Lattnerdf772332007-12-17 07:52:39 +0000484
Chris Lattnerafded5b2007-12-17 08:13:48 +0000485//===----------------------------------------------------------------------===//
486// Header File Location.
487//===----------------------------------------------------------------------===//
488
489
James Dennett853519c2012-06-20 00:56:32 +0000490/// LookupFile - Given a "foo" or \<foo> reference, look up the indicated file,
Reid Spencer5f016e22007-07-11 17:01:13 +0000491/// return null on failure. isAngled indicates whether the file reference is
James Dennett853519c2012-06-20 00:56:32 +0000492/// for system \#include's or not (i.e. using <> instead of ""). CurFileEnt, if
493/// non-null, indicates where the \#including file is, in case a relative search
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000494/// is needed.
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000495const FileEntry *HeaderSearch::LookupFile(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000496 StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000497 bool isAngled,
498 const DirectoryLookup *FromDir,
499 const DirectoryLookup *&CurDir,
500 const FileEntry *CurFileEnt,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000501 SmallVectorImpl<char> *SearchPath,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000502 SmallVectorImpl<char> *RelativePath,
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000503 ModuleMap::KnownHeader *SuggestedModule,
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000504 bool SkipCache)
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000505{
506 if (SuggestedModule)
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000507 *SuggestedModule = ModuleMap::KnownHeader();
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000508
Reid Spencer5f016e22007-07-11 17:01:13 +0000509 // If 'Filename' is absolute, check to see if it exists and no searching.
Michael J. Spencer256053b2010-12-17 21:22:22 +0000510 if (llvm::sys::path::is_absolute(Filename)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000511 CurDir = 0;
512
513 // If this was an #include_next "/absolute/file", fail.
514 if (FromDir) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Manuel Klimek74124942011-04-26 21:50:03 +0000516 if (SearchPath != NULL)
517 SearchPath->clear();
518 if (RelativePath != NULL) {
519 RelativePath->clear();
520 RelativePath->append(Filename.begin(), Filename.end());
521 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000522 // Otherwise, just return the file.
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000523 return FileMgr.getFile(Filename, /*openFile=*/true);
Reid Spencer5f016e22007-07-11 17:01:13 +0000524 }
Mike Stump1eb44332009-09-09 15:08:12 +0000525
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000526 // Unless disabled, check to see if the file is in the #includer's
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000527 // directory. This has to be based on CurFileEnt, not CurDir, because
528 // CurFileEnt could be a #include of a subdirectory (#include "foo/bar.h") and
Chris Lattnerdf772332007-12-17 07:52:39 +0000529 // a subsequent include of "baz.h" should resolve to "whatever/foo/baz.h".
530 // This search is not done for <> headers.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000531 if (CurFileEnt && !isAngled && !NoCurDirSearch) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000532 SmallString<1024> TmpDir;
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000533 // Concatenate the requested file onto the directory.
534 // FIXME: Portability. Filename concatenation should be in sys::Path.
535 TmpDir += CurFileEnt->getDir()->getName();
536 TmpDir.push_back('/');
537 TmpDir.append(Filename.begin(), Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000538 if (const FileEntry *FE = FileMgr.getFile(TmpDir.str(),/*openFile=*/true)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000539 // Leave CurDir unset.
Douglas Gregor10fe93d2010-08-08 07:49:23 +0000540 // This file is a system header or C++ unfriendly if the old file is.
541 //
Douglas Gregor21efbb62012-08-13 15:47:39 +0000542 // Note that we only use one of FromHFI/ToHFI at once, due to potential
543 // reallocation of the underlying vector potentially making the first
544 // reference binding dangling.
545 HeaderFileInfo &FromHFI = getFileInfo(CurFileEnt);
546 unsigned DirInfo = FromHFI.DirInfo;
547 bool IndexHeaderMapHeader = FromHFI.IndexHeaderMapHeader;
548 StringRef Framework = FromHFI.Framework;
549
550 HeaderFileInfo &ToHFI = getFileInfo(FE);
551 ToHFI.DirInfo = DirInfo;
552 ToHFI.IndexHeaderMapHeader = IndexHeaderMapHeader;
553 ToHFI.Framework = Framework;
554
Manuel Klimek74124942011-04-26 21:50:03 +0000555 if (SearchPath != NULL) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000556 StringRef SearchPathRef(CurFileEnt->getDir()->getName());
Manuel Klimek74124942011-04-26 21:50:03 +0000557 SearchPath->clear();
558 SearchPath->append(SearchPathRef.begin(), SearchPathRef.end());
559 }
560 if (RelativePath != NULL) {
561 RelativePath->clear();
562 RelativePath->append(Filename.begin(), Filename.end());
563 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000564 return FE;
565 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000566 }
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Reid Spencer5f016e22007-07-11 17:01:13 +0000568 CurDir = 0;
569
570 // If this is a system #include, ignore the user #include locs.
Nico Weber74a5fd82011-05-24 04:31:14 +0000571 unsigned i = isAngled ? AngledDirIdx : 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000572
Reid Spencer5f016e22007-07-11 17:01:13 +0000573 // If this is a #include_next request, start searching after the directory the
574 // file was found in.
575 if (FromDir)
576 i = FromDir-&SearchDirs[0];
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Chris Lattner9960ae82007-07-22 07:28:00 +0000578 // Cache all of the lookups performed by this method. Many headers are
579 // multiply included, and the "pragma once" optimization prevents them from
580 // being relex/pp'd, but they would still have to search through a
581 // (potentially huge) series of SearchDirs to find it.
582 std::pair<unsigned, unsigned> &CacheLookup =
Chris Lattnera1394812010-01-10 01:35:12 +0000583 LookupFileCache.GetOrCreateValue(Filename).getValue();
Chris Lattner9960ae82007-07-22 07:28:00 +0000584
585 // If the entry has been previously looked up, the first value will be
586 // non-zero. If the value is equal to i (the start point of our search), then
587 // this is a matching hit.
Douglas Gregor1c2e9332011-11-20 17:46:46 +0000588 if (!SkipCache && CacheLookup.first == i+1) {
Chris Lattner9960ae82007-07-22 07:28:00 +0000589 // Skip querying potentially lots of directories for this lookup.
590 i = CacheLookup.second;
591 } else {
592 // Otherwise, this is the first query, or the previous query didn't match
593 // our search start. We will fill in our found location below, so prime the
594 // start point value.
595 CacheLookup.first = i+1;
596 }
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Reid Spencer5f016e22007-07-11 17:01:13 +0000598 // Check each directory in sequence to see if it contains this file.
599 for (; i != SearchDirs.size(); ++i) {
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000600 bool InUserSpecifiedSystemFramework = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000601 const FileEntry *FE =
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000602 SearchDirs[i].LookupFile(Filename, *this, SearchPath, RelativePath,
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000603 SuggestedModule, InUserSpecifiedSystemFramework);
Chris Lattnerafded5b2007-12-17 08:13:48 +0000604 if (!FE) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000605
Chris Lattnerafded5b2007-12-17 08:13:48 +0000606 CurDir = &SearchDirs[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000607
Chris Lattnerafded5b2007-12-17 08:13:48 +0000608 // This file is a system header or C++ unfriendly if the dir is.
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000609 HeaderFileInfo &HFI = getFileInfo(FE);
610 HFI.DirInfo = CurDir->getDirCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Daniel Dunbar85ff9692012-04-05 17:10:06 +0000612 // If the directory characteristic is User but this framework was
613 // user-specified to be treated as a system framework, promote the
614 // characteristic.
615 if (HFI.DirInfo == SrcMgr::C_User && InUserSpecifiedSystemFramework)
616 HFI.DirInfo = SrcMgr::C_System;
617
Richard Smithf122a132012-06-13 20:27:03 +0000618 // If the filename matches a known system header prefix, override
619 // whether the file is a system header.
Richard Trieu4ef2f6a2012-06-13 20:52:36 +0000620 for (unsigned j = SystemHeaderPrefixes.size(); j; --j) {
621 if (Filename.startswith(SystemHeaderPrefixes[j-1].first)) {
622 HFI.DirInfo = SystemHeaderPrefixes[j-1].second ? SrcMgr::C_System
Richard Smithf122a132012-06-13 20:27:03 +0000623 : SrcMgr::C_User;
624 break;
625 }
626 }
627
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000628 // If this file is found in a header map and uses the framework style of
629 // includes, then this header is part of a framework we're building.
630 if (CurDir->isIndexHeaderMap()) {
631 size_t SlashPos = Filename.find('/');
632 if (SlashPos != StringRef::npos) {
633 HFI.IndexHeaderMapHeader = 1;
634 HFI.Framework = getUniqueFrameworkName(StringRef(Filename.begin(),
635 SlashPos));
636 }
637 }
638
Chris Lattnerafded5b2007-12-17 08:13:48 +0000639 // Remember this location for the next lookup we do.
640 CacheLookup.second = i;
641 return FE;
Reid Spencer5f016e22007-07-11 17:01:13 +0000642 }
Mike Stump1eb44332009-09-09 15:08:12 +0000643
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000644 // If we are including a file with a quoted include "foo.h" from inside
645 // a header in a framework that is currently being built, and we couldn't
646 // resolve "foo.h" any other way, change the include to <Foo/foo.h>, where
647 // "Foo" is the name of the framework in which the including header was found.
648 if (CurFileEnt && !isAngled && Filename.find('/') == StringRef::npos) {
649 HeaderFileInfo &IncludingHFI = getFileInfo(CurFileEnt);
650 if (IncludingHFI.IndexHeaderMapHeader) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000651 SmallString<128> ScratchFilename;
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000652 ScratchFilename += IncludingHFI.Framework;
653 ScratchFilename += '/';
654 ScratchFilename += Filename;
655
656 const FileEntry *Result = LookupFile(ScratchFilename, /*isAngled=*/true,
657 FromDir, CurDir, CurFileEnt,
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000658 SearchPath, RelativePath,
659 SuggestedModule);
Douglas Gregor2c7b7802011-07-30 06:28:34 +0000660 std::pair<unsigned, unsigned> &CacheLookup
661 = LookupFileCache.GetOrCreateValue(Filename).getValue();
662 CacheLookup.second
663 = LookupFileCache.GetOrCreateValue(ScratchFilename).getValue().second;
664 return Result;
665 }
666 }
667
Chris Lattner9960ae82007-07-22 07:28:00 +0000668 // Otherwise, didn't find it. Remember we didn't find this.
669 CacheLookup.second = SearchDirs.size();
Reid Spencer5f016e22007-07-11 17:01:13 +0000670 return 0;
671}
672
673/// LookupSubframeworkHeader - Look up a subframework for the specified
James Dennett853519c2012-06-20 00:56:32 +0000674/// \#include file. For example, if \#include'ing <HIToolbox/HIToolbox.h> from
Reid Spencer5f016e22007-07-11 17:01:13 +0000675/// within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox
676/// is a subframework within Carbon.framework. If so, return the FileEntry
677/// for the designated file, otherwise return null.
678const FileEntry *HeaderSearch::
Chris Lattner5f9e2722011-07-23 10:55:15 +0000679LookupSubframeworkHeader(StringRef Filename,
Chandler Carruthb5142bb2011-03-16 18:34:36 +0000680 const FileEntry *ContextFileEnt,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000681 SmallVectorImpl<char> *SearchPath,
Douglas Gregor1b58c742013-02-08 00:10:48 +0000682 SmallVectorImpl<char> *RelativePath,
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000683 ModuleMap::KnownHeader *SuggestedModule) {
Chris Lattner9415a0c2008-02-01 05:34:02 +0000684 assert(ContextFileEnt && "No context file?");
Mike Stump1eb44332009-09-09 15:08:12 +0000685
Reid Spencer5f016e22007-07-11 17:01:13 +0000686 // Framework names must have a '/' in the filename. Find it.
Douglas Gregorefda0e82011-12-09 16:48:01 +0000687 // FIXME: Should we permit '\' on Windows?
Chris Lattnera1394812010-01-10 01:35:12 +0000688 size_t SlashPos = Filename.find('/');
Chris Lattner5f9e2722011-07-23 10:55:15 +0000689 if (SlashPos == StringRef::npos) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 // Look up the base framework name of the ContextFileEnt.
692 const char *ContextName = ContextFileEnt->getName();
Mike Stump1eb44332009-09-09 15:08:12 +0000693
Reid Spencer5f016e22007-07-11 17:01:13 +0000694 // If the context info wasn't a framework, couldn't be a subframework.
Douglas Gregorefda0e82011-12-09 16:48:01 +0000695 const unsigned DotFrameworkLen = 10;
696 const char *FrameworkPos = strstr(ContextName, ".framework");
697 if (FrameworkPos == 0 ||
698 (FrameworkPos[DotFrameworkLen] != '/' &&
699 FrameworkPos[DotFrameworkLen] != '\\'))
Reid Spencer5f016e22007-07-11 17:01:13 +0000700 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000701
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000702 SmallString<1024> FrameworkName(ContextName, FrameworkPos+DotFrameworkLen+1);
Reid Spencer5f016e22007-07-11 17:01:13 +0000703
704 // Append Frameworks/HIToolbox.framework/
705 FrameworkName += "Frameworks/";
Chris Lattnera1394812010-01-10 01:35:12 +0000706 FrameworkName.append(Filename.begin(), Filename.begin()+SlashPos);
Reid Spencer5f016e22007-07-11 17:01:13 +0000707 FrameworkName += ".framework/";
708
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000709 llvm::StringMapEntry<FrameworkCacheEntry> &CacheLookup =
Chris Lattner65382272010-11-21 09:55:08 +0000710 FrameworkMap.GetOrCreateValue(Filename.substr(0, SlashPos));
Mike Stump1eb44332009-09-09 15:08:12 +0000711
Reid Spencer5f016e22007-07-11 17:01:13 +0000712 // Some other location?
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000713 if (CacheLookup.getValue().Directory &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000714 CacheLookup.getKeyLength() == FrameworkName.size() &&
715 memcmp(CacheLookup.getKeyData(), &FrameworkName[0],
716 CacheLookup.getKeyLength()) != 0)
717 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000718
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 // Cache subframework.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000720 if (CacheLookup.getValue().Directory == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 ++NumSubFrameworkLookups;
Mike Stump1eb44332009-09-09 15:08:12 +0000722
Reid Spencer5f016e22007-07-11 17:01:13 +0000723 // If the framework dir doesn't exist, we fail.
Chris Lattner39b49bc2010-11-23 08:35:12 +0000724 const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.str());
Reid Spencer5f016e22007-07-11 17:01:13 +0000725 if (Dir == 0) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Reid Spencer5f016e22007-07-11 17:01:13 +0000727 // Otherwise, if it does, remember that this is the right direntry for this
728 // framework.
Daniel Dunbar9ee35f92012-04-05 17:09:40 +0000729 CacheLookup.getValue().Directory = Dir;
Reid Spencer5f016e22007-07-11 17:01:13 +0000730 }
Mike Stump1eb44332009-09-09 15:08:12 +0000731
Reid Spencer5f016e22007-07-11 17:01:13 +0000732 const FileEntry *FE = 0;
733
Manuel Klimek74124942011-04-26 21:50:03 +0000734 if (RelativePath != NULL) {
735 RelativePath->clear();
736 RelativePath->append(Filename.begin()+SlashPos+1, Filename.end());
737 }
738
Reid Spencer5f016e22007-07-11 17:01:13 +0000739 // Check ".../Frameworks/HIToolbox.framework/Headers/HIToolbox.h"
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000740 SmallString<1024> HeadersFilename(FrameworkName);
Reid Spencer5f016e22007-07-11 17:01:13 +0000741 HeadersFilename += "Headers/";
Manuel Klimek74124942011-04-26 21:50:03 +0000742 if (SearchPath != NULL) {
743 SearchPath->clear();
744 // Without trailing '/'.
745 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
746 }
747
Chris Lattnera1394812010-01-10 01:35:12 +0000748 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000749 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true))) {
Mike Stump1eb44332009-09-09 15:08:12 +0000750
Reid Spencer5f016e22007-07-11 17:01:13 +0000751 // Check ".../Frameworks/HIToolbox.framework/PrivateHeaders/HIToolbox.h"
752 HeadersFilename = FrameworkName;
753 HeadersFilename += "PrivateHeaders/";
Manuel Klimek74124942011-04-26 21:50:03 +0000754 if (SearchPath != NULL) {
755 SearchPath->clear();
756 // Without trailing '/'.
757 SearchPath->append(HeadersFilename.begin(), HeadersFilename.end()-1);
758 }
759
Chris Lattnera1394812010-01-10 01:35:12 +0000760 HeadersFilename.append(Filename.begin()+SlashPos+1, Filename.end());
Argyrios Kyrtzidis3cd01282011-03-16 19:17:25 +0000761 if (!(FE = FileMgr.getFile(HeadersFilename.str(), /*openFile=*/true)))
Reid Spencer5f016e22007-07-11 17:01:13 +0000762 return 0;
763 }
Mike Stump1eb44332009-09-09 15:08:12 +0000764
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 // This file is a system header or C++ unfriendly if the old file is.
Ted Kremenekca63fa02008-02-24 03:55:14 +0000766 //
Chris Lattnerc9dde4f2008-02-25 21:38:21 +0000767 // Note that the temporary 'DirInfo' is required here, as either call to
768 // getFileInfo could resize the vector and we don't want to rely on order
769 // of evaluation.
770 unsigned DirInfo = getFileInfo(ContextFileEnt).DirInfo;
771 getFileInfo(FE).DirInfo = DirInfo;
Douglas Gregor1b58c742013-02-08 00:10:48 +0000772
773 // If we're supposed to suggest a module, look for one now.
774 if (SuggestedModule) {
775 // Find the top-level framework based on this framework.
776 FrameworkName.pop_back(); // remove the trailing '/'
777 SmallVector<std::string, 4> SubmodulePath;
778 const DirectoryEntry *TopFrameworkDir
779 = ::getTopFrameworkDir(FileMgr, FrameworkName, SubmodulePath);
780
781 // Determine the name of the top-level framework.
782 StringRef ModuleName = llvm::sys::path::stem(TopFrameworkDir->getName());
783
784 // Load this framework module. If that succeeds, find the suggested module
785 // for this header, if any.
786 bool IsSystem = false;
787 if (loadFrameworkModule(ModuleName, TopFrameworkDir, IsSystem)) {
788 *SuggestedModule = findModuleForHeader(FE);
789 }
790 }
791
Reid Spencer5f016e22007-07-11 17:01:13 +0000792 return FE;
793}
794
Chandler Carruthcb381ea2011-12-09 01:33:57 +0000795/// \brief Helper static function to normalize a path for injection into
796/// a synthetic header.
797/*static*/ std::string
798HeaderSearch::NormalizeDashIncludePath(StringRef File, FileManager &FileMgr) {
799 // Implicit include paths should be resolved relative to the current
800 // working directory first, and then use the regular header search
801 // mechanism. The proper way to handle this is to have the
802 // predefines buffer located at the current working directory, but
803 // it has no file entry. For now, workaround this by using an
804 // absolute path if we find the file here, and otherwise letting
805 // header search handle it.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000806 SmallString<128> Path(File);
Chandler Carruthcb381ea2011-12-09 01:33:57 +0000807 llvm::sys::fs::make_absolute(Path);
808 bool exists;
809 if (llvm::sys::fs::exists(Path.str(), exists) || !exists)
810 Path = File;
811 else if (exists)
812 FileMgr.getFile(File);
813
814 return Lexer::Stringify(Path.str());
815}
816
Reid Spencer5f016e22007-07-11 17:01:13 +0000817//===----------------------------------------------------------------------===//
818// File Info Management.
819//===----------------------------------------------------------------------===//
820
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000821/// \brief Merge the header file info provided by \p OtherHFI into the current
822/// header file info (\p HFI)
823static void mergeHeaderFileInfo(HeaderFileInfo &HFI,
824 const HeaderFileInfo &OtherHFI) {
825 HFI.isImport |= OtherHFI.isImport;
826 HFI.isPragmaOnce |= OtherHFI.isPragmaOnce;
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +0000827 HFI.isModuleHeader |= OtherHFI.isModuleHeader;
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000828 HFI.NumIncludes += OtherHFI.NumIncludes;
829
830 if (!HFI.ControllingMacro && !HFI.ControllingMacroID) {
831 HFI.ControllingMacro = OtherHFI.ControllingMacro;
832 HFI.ControllingMacroID = OtherHFI.ControllingMacroID;
833 }
834
835 if (OtherHFI.External) {
836 HFI.DirInfo = OtherHFI.DirInfo;
837 HFI.External = OtherHFI.External;
838 HFI.IndexHeaderMapHeader = OtherHFI.IndexHeaderMapHeader;
839 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000840
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000841 if (HFI.Framework.empty())
842 HFI.Framework = OtherHFI.Framework;
843
844 HFI.Resolved = true;
845}
846
Steve Naroff83d63c72009-04-24 20:03:17 +0000847/// getFileInfo - Return the HeaderFileInfo structure for the specified
Reid Spencer5f016e22007-07-11 17:01:13 +0000848/// FileEntry.
Steve Naroff83d63c72009-04-24 20:03:17 +0000849HeaderFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 if (FE->getUID() >= FileInfo.size())
851 FileInfo.resize(FE->getUID()+1);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000852
853 HeaderFileInfo &HFI = FileInfo[FE->getUID()];
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000854 if (ExternalSource && !HFI.Resolved)
855 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(FE));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000856 return HFI;
Mike Stump1eb44332009-09-09 15:08:12 +0000857}
Reid Spencer5f016e22007-07-11 17:01:13 +0000858
Douglas Gregordd3e5542011-05-04 00:14:37 +0000859bool HeaderSearch::isFileMultipleIncludeGuarded(const FileEntry *File) {
860 // Check if we've ever seen this file as a header.
861 if (File->getUID() >= FileInfo.size())
862 return false;
863
864 // Resolve header file info from the external source, if needed.
865 HeaderFileInfo &HFI = FileInfo[File->getUID()];
Douglas Gregor8f8d5812011-09-17 05:35:18 +0000866 if (ExternalSource && !HFI.Resolved)
867 mergeHeaderFileInfo(HFI, ExternalSource->GetHeaderFileInfo(File));
Douglas Gregordd3e5542011-05-04 00:14:37 +0000868
Argyrios Kyrtzidis44dfff62012-12-10 20:08:37 +0000869 return HFI.isPragmaOnce || HFI.isImport ||
870 HFI.ControllingMacro || HFI.ControllingMacroID;
Douglas Gregordd3e5542011-05-04 00:14:37 +0000871}
872
Argyrios Kyrtzidisd3220db2013-05-08 23:46:46 +0000873void HeaderSearch::MarkFileModuleHeader(const FileEntry *FE,
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000874 ModuleMap::ModuleHeaderRole Role,
Argyrios Kyrtzidisd3220db2013-05-08 23:46:46 +0000875 bool isCompilingModuleHeader) {
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +0000876 if (FE->getUID() >= FileInfo.size())
877 FileInfo.resize(FE->getUID()+1);
878
879 HeaderFileInfo &HFI = FileInfo[FE->getUID()];
880 HFI.isModuleHeader = true;
Argyrios Kyrtzidisd3220db2013-05-08 23:46:46 +0000881 HFI.isCompilingModuleHeader = isCompilingModuleHeader;
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000882 HFI.setHeaderRole(Role);
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +0000883}
884
Reid Spencer5f016e22007-07-11 17:01:13 +0000885bool HeaderSearch::ShouldEnterIncludeFile(const FileEntry *File, bool isImport){
886 ++NumIncluded; // Count # of attempted #includes.
887
888 // Get information about this file.
Steve Naroff83d63c72009-04-24 20:03:17 +0000889 HeaderFileInfo &FileInfo = getFileInfo(File);
Mike Stump1eb44332009-09-09 15:08:12 +0000890
Reid Spencer5f016e22007-07-11 17:01:13 +0000891 // If this is a #import directive, check that we have not already imported
892 // this header.
893 if (isImport) {
894 // If this has already been imported, don't import it again.
895 FileInfo.isImport = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000896
Reid Spencer5f016e22007-07-11 17:01:13 +0000897 // Has this already been #import'ed or #include'd?
898 if (FileInfo.NumIncludes) return false;
899 } else {
900 // Otherwise, if this is a #include of a file that was previously #import'd
901 // or if this is the second #include of a #pragma once file, ignore it.
902 if (FileInfo.isImport)
903 return false;
904 }
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Reid Spencer5f016e22007-07-11 17:01:13 +0000906 // Next, check to see if the file is wrapped with #ifndef guards. If so, and
907 // if the macro that guards it is defined, we know the #include has no effect.
Mike Stump1eb44332009-09-09 15:08:12 +0000908 if (const IdentifierInfo *ControllingMacro
Douglas Gregor8c5a7602009-04-25 23:30:02 +0000909 = FileInfo.getControllingMacro(ExternalLookup))
910 if (ControllingMacro->hasMacroDefinition()) {
911 ++NumMultiIncludeFileOptzn;
912 return false;
913 }
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Reid Spencer5f016e22007-07-11 17:01:13 +0000915 // Increment the number of times this file has been included.
916 ++FileInfo.NumIncludes;
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Reid Spencer5f016e22007-07-11 17:01:13 +0000918 return true;
919}
920
Ted Kremenekd1194fb2011-07-26 23:46:11 +0000921size_t HeaderSearch::getTotalMemory() const {
922 return SearchDirs.capacity()
Ted Kremenekeabea452011-07-27 18:41:18 +0000923 + llvm::capacity_in_bytes(FileInfo)
924 + llvm::capacity_in_bytes(HeaderMaps)
Ted Kremenekd1194fb2011-07-26 23:46:11 +0000925 + LookupFileCache.getAllocator().getTotalMemory()
926 + FrameworkMap.getAllocator().getTotalMemory();
927}
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000928
929StringRef HeaderSearch::getUniqueFrameworkName(StringRef Framework) {
930 return FrameworkNames.GetOrCreateValue(Framework).getKey();
931}
Douglas Gregora30cfe52011-11-11 19:10:28 +0000932
933bool HeaderSearch::hasModuleMap(StringRef FileName,
Douglas Gregor8f5d7d12013-06-21 16:28:10 +0000934 const DirectoryEntry *Root,
935 bool IsSystem) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000936 SmallVector<const DirectoryEntry *, 2> FixUpDirectories;
Douglas Gregora30cfe52011-11-11 19:10:28 +0000937
938 StringRef DirName = FileName;
939 do {
940 // Get the parent directory name.
941 DirName = llvm::sys::path::parent_path(DirName);
942 if (DirName.empty())
943 return false;
Daniel Jasper1b8840c2013-09-24 09:27:13 +0000944
Douglas Gregora30cfe52011-11-11 19:10:28 +0000945 // Determine whether this directory exists.
946 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
947 if (!Dir)
948 return false;
949
Daniel Jasper1b8840c2013-09-24 09:27:13 +0000950 // Load user-specified module map files in 'Dir'.
951 bool ModuleMapFound = false;
952 for (llvm::SetVector<std::string>::iterator
953 I = HSOpts->ModuleMapFiles.begin(),
954 E = HSOpts->ModuleMapFiles.end();
955 I != E; ++I) {
956 StringRef ModuleMapFileDir = llvm::sys::path::parent_path(*I);
957 if (!llvm::sys::fs::equivalent(ModuleMapFileDir, DirName))
958 continue;
959
960 const FileEntry *File = FileMgr.getFile(*I);
961 if (!File)
962 continue;
963
964 loadModuleMapFile(File, /*IsSystem=*/false);
965 ModuleMapFound = true;
966 }
967
968 // Try to load the "module.map" file in this directory.
Douglas Gregor8f5d7d12013-06-21 16:28:10 +0000969 switch (loadModuleMapFile(Dir, IsSystem)) {
Douglas Gregor26697972011-11-12 00:22:19 +0000970 case LMM_NewlyLoaded:
971 case LMM_AlreadyLoaded:
Daniel Jasper1b8840c2013-09-24 09:27:13 +0000972 ModuleMapFound = true;
973 break;
Douglas Gregor26697972011-11-12 00:22:19 +0000974
975 case LMM_NoDirectory:
976 case LMM_InvalidModuleMap:
977 break;
Douglas Gregora30cfe52011-11-11 19:10:28 +0000978 }
Douglas Gregora30cfe52011-11-11 19:10:28 +0000979
Daniel Jasper1b8840c2013-09-24 09:27:13 +0000980 if (ModuleMapFound) {
981 // Success. All of the directories we stepped through inherit this module
982 // map file.
983 for (unsigned I = 0, N = FixUpDirectories.size(); I != N; ++I)
984 DirectoryHasModuleMap[FixUpDirectories[I]] = true;
985 return true;
986 }
987
Douglas Gregorcf70d782011-11-12 00:05:07 +0000988 // If we hit the top of our search, we're done.
989 if (Dir == Root)
990 return false;
991
Douglas Gregora30cfe52011-11-11 19:10:28 +0000992 // Keep track of all of the directories we checked, so we can mark them as
993 // having module maps if we eventually do find a module map.
994 FixUpDirectories.push_back(Dir);
995 } while (true);
Douglas Gregora30cfe52011-11-11 19:10:28 +0000996}
997
Lawrence Crowlbc3f6282013-06-20 21:14:14 +0000998ModuleMap::KnownHeader
999HeaderSearch::findModuleForHeader(const FileEntry *File) const {
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00001000 if (ExternalSource) {
1001 // Make sure the external source has handled header info about this file,
1002 // which includes whether the file is part of a module.
1003 (void)getFileInfo(File);
1004 }
Lawrence Crowlbc3f6282013-06-20 21:14:14 +00001005 return ModMap.findModuleForHeader(File);
Douglas Gregora30cfe52011-11-11 19:10:28 +00001006}
1007
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001008bool HeaderSearch::loadModuleMapFile(const FileEntry *File, bool IsSystem) {
Douglas Gregordb1cde72011-11-16 00:09:06 +00001009 const DirectoryEntry *Dir = File->getDir();
1010
1011 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
1012 = DirectoryHasModuleMap.find(Dir);
1013 if (KnownDir != DirectoryHasModuleMap.end())
1014 return !KnownDir->second;
1015
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001016 bool Result = ModMap.parseModuleMapFile(File, IsSystem);
Douglas Gregor4813442c2011-12-07 21:25:07 +00001017 if (!Result && llvm::sys::path::filename(File->getName()) == "module.map") {
1018 // If the file we loaded was a module.map, look for the corresponding
1019 // module_private.map.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001020 SmallString<128> PrivateFilename(Dir->getName());
Douglas Gregor4813442c2011-12-07 21:25:07 +00001021 llvm::sys::path::append(PrivateFilename, "module_private.map");
1022 if (const FileEntry *PrivateFile = FileMgr.getFile(PrivateFilename))
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001023 Result = ModMap.parseModuleMapFile(PrivateFile, IsSystem);
Douglas Gregor4813442c2011-12-07 21:25:07 +00001024 }
1025
1026 DirectoryHasModuleMap[Dir] = !Result;
Douglas Gregordb1cde72011-11-16 00:09:06 +00001027 return Result;
1028}
1029
Douglas Gregore434ec72012-01-29 17:08:11 +00001030Module *HeaderSearch::loadFrameworkModule(StringRef Name,
1031 const DirectoryEntry *Dir,
1032 bool IsSystem) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001033 if (Module *Module = ModMap.findModule(Name))
Douglas Gregor2821c7f2011-11-17 01:41:17 +00001034 return Module;
1035
1036 // Try to load a module map file.
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001037 switch (loadModuleMapFile(Dir, IsSystem)) {
Douglas Gregor2821c7f2011-11-17 01:41:17 +00001038 case LMM_InvalidModuleMap:
1039 break;
1040
1041 case LMM_AlreadyLoaded:
1042 case LMM_NoDirectory:
1043 return 0;
1044
1045 case LMM_NewlyLoaded:
1046 return ModMap.findModule(Name);
1047 }
Douglas Gregora8c6fea2012-01-13 22:31:52 +00001048
Douglas Gregor7005b902013-01-10 01:43:00 +00001049 // Figure out the top-level framework directory and the submodule path from
1050 // that top-level framework to the requested framework.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001051 SmallVector<std::string, 2> SubmodulePath;
Douglas Gregora8c6fea2012-01-13 22:31:52 +00001052 SubmodulePath.push_back(Name);
Douglas Gregor7005b902013-01-10 01:43:00 +00001053 const DirectoryEntry *TopFrameworkDir
1054 = ::getTopFrameworkDir(FileMgr, Dir->getName(), SubmodulePath);
Douglas Gregor82e52372012-11-06 19:39:40 +00001055
Douglas Gregor82e52372012-11-06 19:39:40 +00001056
Douglas Gregora8c6fea2012-01-13 22:31:52 +00001057 // Try to infer a module map from the top-level framework directory.
1058 Module *Result = ModMap.inferFrameworkModule(SubmodulePath.back(),
Douglas Gregora1f1fad2012-01-27 19:52:33 +00001059 TopFrameworkDir,
1060 IsSystem,
Douglas Gregora8c6fea2012-01-13 22:31:52 +00001061 /*Parent=*/0);
Douglas Gregor7005b902013-01-10 01:43:00 +00001062 if (!Result)
1063 return 0;
Douglas Gregora8c6fea2012-01-13 22:31:52 +00001064
1065 // Follow the submodule path to find the requested (sub)framework module
1066 // within the top-level framework module.
1067 SubmodulePath.pop_back();
1068 while (!SubmodulePath.empty() && Result) {
1069 Result = ModMap.lookupModuleQualified(SubmodulePath.back(), Result);
1070 SubmodulePath.pop_back();
1071 }
1072 return Result;
Douglas Gregor2821c7f2011-11-17 01:41:17 +00001073}
1074
Douglas Gregordb1cde72011-11-16 00:09:06 +00001075
Douglas Gregor26697972011-11-12 00:22:19 +00001076HeaderSearch::LoadModuleMapResult
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001077HeaderSearch::loadModuleMapFile(StringRef DirName, bool IsSystem) {
Douglas Gregorcf70d782011-11-12 00:05:07 +00001078 if (const DirectoryEntry *Dir = FileMgr.getDirectory(DirName))
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001079 return loadModuleMapFile(Dir, IsSystem);
Douglas Gregorcf70d782011-11-12 00:05:07 +00001080
Douglas Gregor26697972011-11-12 00:22:19 +00001081 return LMM_NoDirectory;
Douglas Gregorcf70d782011-11-12 00:05:07 +00001082}
1083
Douglas Gregor26697972011-11-12 00:22:19 +00001084HeaderSearch::LoadModuleMapResult
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001085HeaderSearch::loadModuleMapFile(const DirectoryEntry *Dir, bool IsSystem) {
Douglas Gregorcf70d782011-11-12 00:05:07 +00001086 llvm::DenseMap<const DirectoryEntry *, bool>::iterator KnownDir
1087 = DirectoryHasModuleMap.find(Dir);
1088 if (KnownDir != DirectoryHasModuleMap.end())
Douglas Gregor26697972011-11-12 00:22:19 +00001089 return KnownDir->second? LMM_AlreadyLoaded : LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +00001090
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001091 SmallString<128> ModuleMapFileName;
Douglas Gregorcf70d782011-11-12 00:05:07 +00001092 ModuleMapFileName += Dir->getName();
Douglas Gregor587986e2011-12-07 02:23:45 +00001093 unsigned ModuleMapDirNameLen = ModuleMapFileName.size();
Douglas Gregorcf70d782011-11-12 00:05:07 +00001094 llvm::sys::path::append(ModuleMapFileName, "module.map");
1095 if (const FileEntry *ModuleMapFile = FileMgr.getFile(ModuleMapFileName)) {
1096 // We have found a module map file. Try to parse it.
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001097 if (ModMap.parseModuleMapFile(ModuleMapFile, IsSystem)) {
Douglas Gregor587986e2011-12-07 02:23:45 +00001098 // No suitable module map.
1099 DirectoryHasModuleMap[Dir] = false;
1100 return LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +00001101 }
Douglas Gregor587986e2011-12-07 02:23:45 +00001102
1103 // This directory has a module map.
1104 DirectoryHasModuleMap[Dir] = true;
1105
1106 // Check whether there is a private module map that we need to load as well.
1107 ModuleMapFileName.erase(ModuleMapFileName.begin() + ModuleMapDirNameLen,
1108 ModuleMapFileName.end());
1109 llvm::sys::path::append(ModuleMapFileName, "module_private.map");
1110 if (const FileEntry *PrivateModuleMapFile
1111 = FileMgr.getFile(ModuleMapFileName)) {
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001112 if (ModMap.parseModuleMapFile(PrivateModuleMapFile, IsSystem)) {
Douglas Gregor587986e2011-12-07 02:23:45 +00001113 // No suitable module map.
1114 DirectoryHasModuleMap[Dir] = false;
1115 return LMM_InvalidModuleMap;
1116 }
1117 }
1118
1119 return LMM_NewlyLoaded;
Douglas Gregorcf70d782011-11-12 00:05:07 +00001120 }
1121
1122 // No suitable module map.
1123 DirectoryHasModuleMap[Dir] = false;
Douglas Gregor26697972011-11-12 00:22:19 +00001124 return LMM_InvalidModuleMap;
Douglas Gregorcf70d782011-11-12 00:05:07 +00001125}
Douglas Gregora30cfe52011-11-11 19:10:28 +00001126
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001127void HeaderSearch::collectAllModules(SmallVectorImpl<Module *> &Modules) {
Douglas Gregorc5b2e582012-01-29 18:15:03 +00001128 Modules.clear();
1129
1130 // Load module maps for each of the header search directories.
1131 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001132 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory();
Douglas Gregorc5b2e582012-01-29 18:15:03 +00001133 if (SearchDirs[Idx].isFramework()) {
1134 llvm::error_code EC;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001135 SmallString<128> DirNative;
Douglas Gregorc5b2e582012-01-29 18:15:03 +00001136 llvm::sys::path::native(SearchDirs[Idx].getFrameworkDir()->getName(),
1137 DirNative);
1138
1139 // Search each of the ".framework" directories to load them as modules.
Douglas Gregorc5b2e582012-01-29 18:15:03 +00001140 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1141 Dir != DirEnd && !EC; Dir.increment(EC)) {
1142 if (llvm::sys::path::extension(Dir->path()) != ".framework")
1143 continue;
1144
1145 const DirectoryEntry *FrameworkDir = FileMgr.getDirectory(Dir->path());
1146 if (!FrameworkDir)
1147 continue;
1148
1149 // Load this framework module.
1150 loadFrameworkModule(llvm::sys::path::stem(Dir->path()), FrameworkDir,
1151 IsSystem);
1152 }
1153 continue;
1154 }
1155
1156 // FIXME: Deal with header maps.
1157 if (SearchDirs[Idx].isHeaderMap())
1158 continue;
1159
1160 // Try to load a module map file for the search directory.
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001161 loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem);
Douglas Gregorc5b2e582012-01-29 18:15:03 +00001162
1163 // Try to load module map files for immediate subdirectories of this search
1164 // directory.
Douglas Gregorcdf28082013-03-21 01:08:50 +00001165 loadSubdirectoryModuleMaps(SearchDirs[Idx]);
Douglas Gregorc5b2e582012-01-29 18:15:03 +00001166 }
1167
1168 // Populate the list of modules.
1169 for (ModuleMap::module_iterator M = ModMap.module_begin(),
1170 MEnd = ModMap.module_end();
1171 M != MEnd; ++M) {
1172 Modules.push_back(M->getValue());
1173 }
1174}
Douglas Gregorcdf28082013-03-21 01:08:50 +00001175
Douglas Gregor30a16f12013-05-10 22:52:27 +00001176void HeaderSearch::loadTopLevelSystemModules() {
1177 // Load module maps for each of the header search directories.
1178 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
1179 // We only care about normal system header directories.
1180 if (!SearchDirs[Idx].isNormalDir() ||
1181 SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_System) {
1182 continue;
1183 }
1184
1185 // Try to load a module map file for the search directory.
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001186 loadModuleMapFile(SearchDirs[Idx].getDir(),
1187 SearchDirs[Idx].isSystemHeaderDirectory());
Douglas Gregor30a16f12013-05-10 22:52:27 +00001188 }
1189}
1190
Douglas Gregorcdf28082013-03-21 01:08:50 +00001191void HeaderSearch::loadSubdirectoryModuleMaps(DirectoryLookup &SearchDir) {
1192 if (SearchDir.haveSearchedAllModuleMaps())
1193 return;
1194
1195 llvm::error_code EC;
1196 SmallString<128> DirNative;
1197 llvm::sys::path::native(SearchDir.getDir()->getName(), DirNative);
1198 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1199 Dir != DirEnd && !EC; Dir.increment(EC)) {
Douglas Gregor8f5d7d12013-06-21 16:28:10 +00001200 loadModuleMapFile(Dir->path(), SearchDir.isSystemHeaderDirectory());
Douglas Gregorcdf28082013-03-21 01:08:50 +00001201 }
1202
1203 SearchDir.setSearchedAllModuleMaps(true);
1204}