2006-10-18 13:34:33 +08:00
|
|
|
//===--- HeaderSearch.cpp - Resolve Header File Locations ---===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the DirectoryLookup and HeaderSearch interfaces.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Lex/HeaderSearch.h"
|
2007-10-07 16:58:51 +08:00
|
|
|
#include "clang/Basic/FileManager.h"
|
|
|
|
#include "clang/Basic/IdentifierTable.h"
|
2006-10-18 13:34:33 +08:00
|
|
|
#include "llvm/System/Path.h"
|
2006-10-30 11:40:58 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2006-10-18 13:34:33 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2007-04-04 06:14:25 +08:00
|
|
|
HeaderSearch::HeaderSearch(FileManager &FM) : FileMgr(FM), FrameworkMap(64) {
|
2006-10-20 14:23:14 +08:00
|
|
|
SystemDirIdx = 0;
|
|
|
|
NoCurDirSearch = false;
|
|
|
|
|
|
|
|
NumIncluded = 0;
|
|
|
|
NumMultiIncludeFileOptzn = 0;
|
|
|
|
NumFrameworkLookups = NumSubFrameworkLookups = 0;
|
|
|
|
}
|
|
|
|
|
2006-10-18 13:34:33 +08:00
|
|
|
void HeaderSearch::PrintStats() {
|
2007-06-16 07:05:46 +08:00
|
|
|
fprintf(stderr, "\n*** HeaderSearch Stats:\n");
|
|
|
|
fprintf(stderr, "%d files tracked.\n", (int)FileInfo.size());
|
2006-10-18 13:34:33 +08:00
|
|
|
unsigned NumOnceOnlyFiles = 0, MaxNumIncludes = 0, NumSingleIncludedFiles = 0;
|
|
|
|
for (unsigned i = 0, e = FileInfo.size(); i != e; ++i) {
|
|
|
|
NumOnceOnlyFiles += FileInfo[i].isImport;
|
|
|
|
if (MaxNumIncludes < FileInfo[i].NumIncludes)
|
|
|
|
MaxNumIncludes = FileInfo[i].NumIncludes;
|
|
|
|
NumSingleIncludedFiles += FileInfo[i].NumIncludes == 1;
|
|
|
|
}
|
2007-06-16 07:05:46 +08:00
|
|
|
fprintf(stderr, " %d #import/#pragma once files.\n", NumOnceOnlyFiles);
|
|
|
|
fprintf(stderr, " %d included exactly once.\n", NumSingleIncludedFiles);
|
|
|
|
fprintf(stderr, " %d max times a file is included.\n", MaxNumIncludes);
|
2006-10-18 13:34:33 +08:00
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
fprintf(stderr, " %d #include/#include_next/#import.\n", NumIncluded);
|
|
|
|
fprintf(stderr, " %d #includes skipped due to"
|
|
|
|
" the multi-include optimization.\n", NumMultiIncludeFileOptzn);
|
2006-10-20 14:23:14 +08:00
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
fprintf(stderr, "%d framework lookups.\n", NumFrameworkLookups);
|
|
|
|
fprintf(stderr, "%d subframework lookups.\n", NumSubFrameworkLookups);
|
2006-10-18 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Header File Location.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-10-20 14:23:14 +08:00
|
|
|
const FileEntry *HeaderSearch::DoFrameworkLookup(const DirectoryEntry *Dir,
|
2006-10-30 13:33:15 +08:00
|
|
|
const char *FilenameStart,
|
|
|
|
const char *FilenameEnd) {
|
2006-10-18 13:34:33 +08:00
|
|
|
// Framework names must have a '/' in the filename.
|
2006-10-30 13:33:15 +08:00
|
|
|
const char *SlashPos = std::find(FilenameStart, FilenameEnd, '/');
|
|
|
|
if (SlashPos == FilenameEnd) return 0;
|
2006-10-18 13:34:33 +08:00
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::StringMapEntry<const DirectoryEntry *> &CacheLookup =
|
2006-10-30 13:33:15 +08:00
|
|
|
FrameworkMap.GetOrCreateValue(FilenameStart, SlashPos);
|
2006-10-20 14:23:14 +08:00
|
|
|
|
2006-10-22 15:24:13 +08:00
|
|
|
// If it is some other directory, fail.
|
2007-02-09 03:08:49 +08:00
|
|
|
if (CacheLookup.getValue() && CacheLookup.getValue() != Dir)
|
2006-10-22 15:24:13 +08:00
|
|
|
return 0;
|
|
|
|
|
2006-10-18 13:34:33 +08:00
|
|
|
// FrameworkName = "/System/Library/Frameworks/"
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::SmallString<1024> FrameworkName;
|
2006-10-30 13:09:49 +08:00
|
|
|
FrameworkName += Dir->getName();
|
|
|
|
if (FrameworkName.empty() || FrameworkName.back() != '/')
|
|
|
|
FrameworkName.push_back('/');
|
2006-10-18 13:34:33 +08:00
|
|
|
|
|
|
|
// FrameworkName = "/System/Library/Frameworks/Cocoa"
|
2006-10-30 13:33:15 +08:00
|
|
|
FrameworkName.append(FilenameStart, SlashPos);
|
2006-10-18 13:34:33 +08:00
|
|
|
|
|
|
|
// FrameworkName = "/System/Library/Frameworks/Cocoa.framework/"
|
|
|
|
FrameworkName += ".framework/";
|
2006-10-22 15:24:13 +08:00
|
|
|
|
2007-02-09 03:08:49 +08:00
|
|
|
if (CacheLookup.getValue() == 0) {
|
2006-10-22 15:24:13 +08:00
|
|
|
++NumFrameworkLookups;
|
|
|
|
|
|
|
|
// If the framework dir doesn't exist, we fail.
|
2007-06-16 07:05:46 +08:00
|
|
|
if (!llvm::sys::Path(std::string(FrameworkName.begin(),
|
|
|
|
FrameworkName.end())).exists())
|
2006-10-22 15:24:13 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Otherwise, if it does, remember that this is the right direntry for this
|
|
|
|
// framework.
|
2007-02-09 03:08:49 +08:00
|
|
|
CacheLookup.setValue(Dir);
|
2006-10-22 15:24:13 +08:00
|
|
|
}
|
2006-10-18 13:34:33 +08:00
|
|
|
|
|
|
|
// Check "/System/Library/Frameworks/Cocoa.framework/Headers/file.h"
|
2006-10-30 13:09:49 +08:00
|
|
|
unsigned OrigSize = FrameworkName.size();
|
|
|
|
|
|
|
|
FrameworkName += "Headers/";
|
2006-10-30 13:33:15 +08:00
|
|
|
FrameworkName.append(SlashPos+1, FilenameEnd);
|
2006-10-30 13:09:49 +08:00
|
|
|
if (const FileEntry *FE = FileMgr.getFile(FrameworkName.begin(),
|
|
|
|
FrameworkName.end())) {
|
2006-10-20 12:55:45 +08:00
|
|
|
return FE;
|
2006-10-30 13:09:49 +08:00
|
|
|
}
|
2006-10-18 13:34:33 +08:00
|
|
|
|
|
|
|
// Check "/System/Library/Frameworks/Cocoa.framework/PrivateHeaders/file.h"
|
2006-10-30 13:09:49 +08:00
|
|
|
const char *Private = "Private";
|
|
|
|
FrameworkName.insert(FrameworkName.begin()+OrigSize, Private,
|
|
|
|
Private+strlen(Private));
|
|
|
|
return FileMgr.getFile(FrameworkName.begin(), FrameworkName.end());
|
2006-10-18 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
|
|
|
|
/// return null on failure. isAngled indicates whether the file reference is
|
|
|
|
/// for system #include's or not (i.e. using <> instead of ""). CurFileEnt, if
|
|
|
|
/// non-null, indicates where the #including file is, in case a relative search
|
|
|
|
/// is needed.
|
2006-10-30 13:33:15 +08:00
|
|
|
const FileEntry *HeaderSearch::LookupFile(const char *FilenameStart,
|
|
|
|
const char *FilenameEnd,
|
2006-10-18 13:34:33 +08:00
|
|
|
bool isAngled,
|
|
|
|
const DirectoryLookup *FromDir,
|
|
|
|
const DirectoryLookup *&CurDir,
|
|
|
|
const FileEntry *CurFileEnt) {
|
|
|
|
// If 'Filename' is absolute, check to see if it exists and no searching.
|
|
|
|
// FIXME: Portability. This should be a sys::Path interface, this doesn't
|
|
|
|
// handle things like C:\foo.txt right, nor win32 \\network\device\blah.
|
2006-10-30 13:33:15 +08:00
|
|
|
if (FilenameStart[0] == '/') {
|
2006-10-18 13:34:33 +08:00
|
|
|
CurDir = 0;
|
|
|
|
|
|
|
|
// If this was an #include_next "/absolute/file", fail.
|
|
|
|
if (FromDir) return 0;
|
|
|
|
|
|
|
|
// Otherwise, just return the file.
|
2006-10-30 13:33:15 +08:00
|
|
|
return FileMgr.getFile(FilenameStart, FilenameEnd);
|
2006-10-18 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::SmallString<1024> TmpDir;
|
2006-10-30 12:42:33 +08:00
|
|
|
|
2006-10-18 13:34:33 +08:00
|
|
|
// Step #0, unless disabled, check to see if the file is in the #includer's
|
|
|
|
// directory. This search is not done for <> headers.
|
2006-10-20 12:42:40 +08:00
|
|
|
if (CurFileEnt && !isAngled && !NoCurDirSearch) {
|
2006-10-18 13:34:33 +08:00
|
|
|
// Concatenate the requested file onto the directory.
|
|
|
|
// FIXME: Portability. Filename concatenation should be in sys::Path.
|
2006-10-30 12:42:33 +08:00
|
|
|
TmpDir += CurFileEnt->getDir()->getName();
|
|
|
|
TmpDir.push_back('/');
|
2006-10-30 13:33:15 +08:00
|
|
|
TmpDir.append(FilenameStart, FilenameEnd);
|
2006-10-30 12:42:33 +08:00
|
|
|
if (const FileEntry *FE = FileMgr.getFile(TmpDir.begin(), TmpDir.end())) {
|
2006-10-18 13:34:33 +08:00
|
|
|
// Leave CurDir unset.
|
|
|
|
|
|
|
|
// This file is a system header or C++ unfriendly if the old file is.
|
2006-10-20 12:42:40 +08:00
|
|
|
getFileInfo(FE).DirInfo = getFileInfo(CurFileEnt).DirInfo;
|
2006-10-18 13:34:33 +08:00
|
|
|
return FE;
|
|
|
|
}
|
2006-10-30 12:42:33 +08:00
|
|
|
TmpDir.clear();
|
2006-10-18 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CurDir = 0;
|
|
|
|
|
|
|
|
// If this is a system #include, ignore the user #include locs.
|
|
|
|
unsigned i = isAngled ? SystemDirIdx : 0;
|
|
|
|
|
|
|
|
// If this is a #include_next request, start searching after the directory the
|
|
|
|
// file was found in.
|
|
|
|
if (FromDir)
|
|
|
|
i = FromDir-&SearchDirs[0];
|
|
|
|
|
2007-07-22 15:28:00 +08:00
|
|
|
// Cache all of the lookups performed by this method. Many headers are
|
|
|
|
// multiply included, and the "pragma once" optimization prevents them from
|
|
|
|
// being relex/pp'd, but they would still have to search through a
|
|
|
|
// (potentially huge) series of SearchDirs to find it.
|
|
|
|
std::pair<unsigned, unsigned> &CacheLookup =
|
|
|
|
LookupFileCache.GetOrCreateValue(FilenameStart, FilenameEnd).getValue();
|
|
|
|
|
|
|
|
// If the entry has been previously looked up, the first value will be
|
|
|
|
// non-zero. If the value is equal to i (the start point of our search), then
|
|
|
|
// this is a matching hit.
|
|
|
|
if (CacheLookup.first == i+1) {
|
|
|
|
// Skip querying potentially lots of directories for this lookup.
|
|
|
|
i = CacheLookup.second;
|
|
|
|
} else {
|
|
|
|
// Otherwise, this is the first query, or the previous query didn't match
|
|
|
|
// our search start. We will fill in our found location below, so prime the
|
|
|
|
// start point value.
|
|
|
|
CacheLookup.first = i+1;
|
|
|
|
}
|
|
|
|
|
2006-10-18 13:34:33 +08:00
|
|
|
// Check each directory in sequence to see if it contains this file.
|
|
|
|
for (; i != SearchDirs.size(); ++i) {
|
2006-10-20 12:55:45 +08:00
|
|
|
const FileEntry *FE = 0;
|
2006-10-18 13:34:33 +08:00
|
|
|
if (!SearchDirs[i].isFramework()) {
|
|
|
|
// FIXME: Portability. Adding file to dir should be in sys::Path.
|
2006-10-30 12:42:33 +08:00
|
|
|
// Concatenate the requested file onto the directory.
|
|
|
|
TmpDir.clear();
|
|
|
|
TmpDir += SearchDirs[i].getDir()->getName();
|
|
|
|
TmpDir.push_back('/');
|
2006-10-30 13:33:15 +08:00
|
|
|
TmpDir.append(FilenameStart, FilenameEnd);
|
2006-10-30 12:42:33 +08:00
|
|
|
FE = FileMgr.getFile(TmpDir.begin(), TmpDir.end());
|
2006-10-18 13:34:33 +08:00
|
|
|
} else {
|
2006-10-30 13:33:15 +08:00
|
|
|
FE = DoFrameworkLookup(SearchDirs[i].getDir(), FilenameStart,FilenameEnd);
|
2006-10-18 13:34:33 +08:00
|
|
|
}
|
|
|
|
|
2006-10-20 12:55:45 +08:00
|
|
|
if (FE) {
|
2006-10-18 13:34:33 +08:00
|
|
|
CurDir = &SearchDirs[i];
|
|
|
|
|
|
|
|
// This file is a system header or C++ unfriendly if the dir is.
|
|
|
|
getFileInfo(FE).DirInfo = CurDir->getDirCharacteristic();
|
2007-07-22 15:28:00 +08:00
|
|
|
|
|
|
|
// Remember this location for the next lookup we do.
|
|
|
|
CacheLookup.second = i;
|
2006-10-18 13:34:33 +08:00
|
|
|
return FE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-22 15:28:00 +08:00
|
|
|
// Otherwise, didn't find it. Remember we didn't find this.
|
|
|
|
CacheLookup.second = SearchDirs.size();
|
2006-10-18 13:34:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-20 12:42:40 +08:00
|
|
|
/// LookupSubframeworkHeader - Look up a subframework for the specified
|
|
|
|
/// #include file. For example, if #include'ing <HIToolbox/HIToolbox.h> from
|
|
|
|
/// within ".../Carbon.framework/Headers/Carbon.h", check to see if HIToolbox
|
|
|
|
/// is a subframework within Carbon.framework. If so, return the FileEntry
|
|
|
|
/// for the designated file, otherwise return null.
|
|
|
|
const FileEntry *HeaderSearch::
|
2006-10-30 13:33:15 +08:00
|
|
|
LookupSubframeworkHeader(const char *FilenameStart,
|
|
|
|
const char *FilenameEnd,
|
2006-10-20 12:42:40 +08:00
|
|
|
const FileEntry *ContextFileEnt) {
|
|
|
|
// Framework names must have a '/' in the filename. Find it.
|
2006-10-30 13:33:15 +08:00
|
|
|
const char *SlashPos = std::find(FilenameStart, FilenameEnd, '/');
|
|
|
|
if (SlashPos == FilenameEnd) return 0;
|
2006-10-20 12:42:40 +08:00
|
|
|
|
|
|
|
// Look up the base framework name of the ContextFileEnt.
|
2006-10-27 13:12:36 +08:00
|
|
|
const char *ContextName = ContextFileEnt->getName();
|
|
|
|
|
2006-10-20 12:42:40 +08:00
|
|
|
// If the context info wasn't a framework, couldn't be a subframework.
|
2006-10-27 13:12:36 +08:00
|
|
|
const char *FrameworkPos = strstr(ContextName, ".framework/");
|
|
|
|
if (FrameworkPos == 0)
|
2006-10-20 12:42:40 +08:00
|
|
|
return 0;
|
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::SmallString<1024> FrameworkName(ContextName,
|
|
|
|
FrameworkPos+strlen(".framework/"));
|
2006-10-22 15:24:13 +08:00
|
|
|
|
2006-10-20 12:42:40 +08:00
|
|
|
// Append Frameworks/HIToolbox.framework/
|
|
|
|
FrameworkName += "Frameworks/";
|
2006-10-30 13:33:15 +08:00
|
|
|
FrameworkName.append(FilenameStart, SlashPos);
|
2006-10-20 12:42:40 +08:00
|
|
|
FrameworkName += ".framework/";
|
2006-10-20 12:55:45 +08:00
|
|
|
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::StringMapEntry<const DirectoryEntry *> &CacheLookup =
|
2006-10-30 13:33:15 +08:00
|
|
|
FrameworkMap.GetOrCreateValue(FilenameStart, SlashPos);
|
2006-10-22 15:24:13 +08:00
|
|
|
|
|
|
|
// Some other location?
|
2007-02-09 03:08:49 +08:00
|
|
|
if (CacheLookup.getValue() &&
|
|
|
|
CacheLookup.getKeyLength() == FrameworkName.size() &&
|
|
|
|
memcmp(CacheLookup.getKeyData(), &FrameworkName[0],
|
|
|
|
CacheLookup.getKeyLength()) != 0)
|
2006-10-22 15:24:13 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Cache subframework.
|
2007-02-09 03:08:49 +08:00
|
|
|
if (CacheLookup.getValue() == 0) {
|
2006-10-22 15:24:13 +08:00
|
|
|
++NumSubFrameworkLookups;
|
|
|
|
|
|
|
|
// If the framework dir doesn't exist, we fail.
|
2006-10-30 11:40:58 +08:00
|
|
|
const DirectoryEntry *Dir = FileMgr.getDirectory(FrameworkName.begin(),
|
|
|
|
FrameworkName.end());
|
2006-10-22 15:24:13 +08:00
|
|
|
if (Dir == 0) return 0;
|
|
|
|
|
|
|
|
// Otherwise, if it does, remember that this is the right direntry for this
|
|
|
|
// framework.
|
2007-02-09 03:08:49 +08:00
|
|
|
CacheLookup.setValue(Dir);
|
2006-10-22 15:24:13 +08:00
|
|
|
}
|
|
|
|
|
2006-10-20 12:55:45 +08:00
|
|
|
const FileEntry *FE = 0;
|
|
|
|
|
2006-10-20 12:42:40 +08:00
|
|
|
// Check ".../Frameworks/HIToolbox.framework/Headers/HIToolbox.h"
|
2007-06-16 07:05:46 +08:00
|
|
|
llvm::SmallString<1024> HeadersFilename(FrameworkName);
|
2006-10-30 11:40:58 +08:00
|
|
|
HeadersFilename += "Headers/";
|
2006-10-30 13:33:15 +08:00
|
|
|
HeadersFilename.append(SlashPos+1, FilenameEnd);
|
2006-10-30 11:40:58 +08:00
|
|
|
if (!(FE = FileMgr.getFile(HeadersFilename.begin(),
|
|
|
|
HeadersFilename.end()))) {
|
2006-10-20 12:42:40 +08:00
|
|
|
|
|
|
|
// Check ".../Frameworks/HIToolbox.framework/PrivateHeaders/HIToolbox.h"
|
2006-10-30 11:40:58 +08:00
|
|
|
HeadersFilename = FrameworkName;
|
|
|
|
HeadersFilename += "PrivateHeaders/";
|
2006-10-30 13:33:15 +08:00
|
|
|
HeadersFilename.append(SlashPos+1, FilenameEnd);
|
2006-10-30 11:40:58 +08:00
|
|
|
if (!(FE = FileMgr.getFile(HeadersFilename.begin(), HeadersFilename.end())))
|
2006-10-20 12:42:40 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-20 12:55:45 +08:00
|
|
|
// This file is a system header or C++ unfriendly if the old file is.
|
|
|
|
getFileInfo(FE).DirInfo = getFileInfo(ContextFileEnt).DirInfo;
|
|
|
|
return FE;
|
2006-10-20 12:42:40 +08:00
|
|
|
}
|
|
|
|
|
2006-10-18 13:34:33 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// File Info Management.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
/// getFileInfo - Return the PerFileInfo structure for the specified
|
|
|
|
/// FileEntry.
|
|
|
|
HeaderSearch::PerFileInfo &HeaderSearch::getFileInfo(const FileEntry *FE) {
|
|
|
|
if (FE->getUID() >= FileInfo.size())
|
|
|
|
FileInfo.resize(FE->getUID()+1);
|
|
|
|
return FileInfo[FE->getUID()];
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ShouldEnterIncludeFile - Mark the specified file as a target of of a
|
|
|
|
/// #include, #include_next, or #import directive. Return false if #including
|
|
|
|
/// the file will have no effect or true if we should include it.
|
|
|
|
bool HeaderSearch::ShouldEnterIncludeFile(const FileEntry *File, bool isImport){
|
|
|
|
++NumIncluded; // Count # of attempted #includes.
|
|
|
|
|
|
|
|
// Get information about this file.
|
|
|
|
PerFileInfo &FileInfo = getFileInfo(File);
|
|
|
|
|
|
|
|
// If this is a #import directive, check that we have not already imported
|
|
|
|
// this header.
|
|
|
|
if (isImport) {
|
|
|
|
// If this has already been imported, don't import it again.
|
|
|
|
FileInfo.isImport = true;
|
|
|
|
|
|
|
|
// Has this already been #import'ed or #include'd?
|
|
|
|
if (FileInfo.NumIncludes) return false;
|
|
|
|
} else {
|
|
|
|
// Otherwise, if this is a #include of a file that was previously #import'd
|
|
|
|
// or if this is the second #include of a #pragma once file, ignore it.
|
|
|
|
if (FileInfo.isImport)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next, check to see if the file is wrapped with #ifndef guards. If so, and
|
|
|
|
// if the macro that guards it is defined, we know the #include has no effect.
|
2007-10-07 15:57:27 +08:00
|
|
|
if (FileInfo.ControllingMacro &&
|
|
|
|
FileInfo.ControllingMacro->hasMacroDefinition()) {
|
2006-10-18 13:34:33 +08:00
|
|
|
++NumMultiIncludeFileOptzn;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Increment the number of times this file has been included.
|
|
|
|
++FileInfo.NumIncludes;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|