blob: 365609b4f37b85e9743635e5ab28de06273d658a [file] [log] [blame]
Ted Kremenek16b55a72010-01-26 19:31:51 +00001//===- CIndexInclusionStack.cpp - Clang-C Source Indexing Library ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a callback mechanism for clients to get the inclusion
11// stack from a translation unit.
12//
13//===----------------------------------------------------------------------===//
14
15#include "CIndexer.h"
16#include "CXSourceLocation.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000017#include "CXTranslationUnit.h"
Ted Kremenek16b55a72010-01-26 19:31:51 +000018#include "clang/AST/DeclVisitor.h"
Benjamin Kramerb846deb2010-04-12 19:45:50 +000019#include "clang/Frontend/ASTUnit.h"
Ted Kremenek16b55a72010-01-26 19:31:51 +000020#include "llvm/ADT/SmallString.h"
21#include "llvm/Support/raw_ostream.h"
Benjamin Kramerb846deb2010-04-12 19:45:50 +000022using namespace clang;
Ted Kremenek16b55a72010-01-26 19:31:51 +000023
24extern "C" {
25void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB,
26 CXClientData clientData) {
Stephen Hines651f13c2014-04-23 16:59:28 -070027 if (cxtu::isNotUsableTU(TU)) {
28 LOG_BAD_TU(TU);
29 return;
30 }
31
Dmitri Gribenko5694feb2013-01-26 18:53:38 +000032 ASTUnit *CXXUnit = cxtu::getASTUnit(TU);
Ted Kremenek16b55a72010-01-26 19:31:51 +000033 SourceManager &SM = CXXUnit->getSourceManager();
34 ASTContext &Ctx = CXXUnit->getASTContext();
35
Chris Lattner5f9e2722011-07-23 10:55:15 +000036 SmallVector<CXSourceLocation, 10> InclusionStack;
Douglas Gregorf62d43d2011-07-19 16:10:42 +000037 unsigned n = SM.local_sloc_entry_size();
Ted Kremenek16b55a72010-01-26 19:31:51 +000038
39 // In the case where all the SLocEntries are in an external source, traverse
40 // those SLocEntries as well. This is the case where we are looking
41 // at the inclusion stack of an AST/PCH file.
Douglas Gregorf62d43d2011-07-19 16:10:42 +000042 const SrcMgr::SLocEntry &(SourceManager::*Getter)(unsigned, bool*) const;
43 if (n == 1) {
44 Getter = &SourceManager::getLoadedSLocEntry;
45 n = SM.loaded_sloc_entry_size();
46 } else
47 Getter = &SourceManager::getLocalSLocEntry;
48
49 for (unsigned i = 0 ; i < n ; ++i) {
Douglas Gregore23ac652011-04-20 00:21:03 +000050 bool Invalid = false;
Douglas Gregorf62d43d2011-07-19 16:10:42 +000051 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
Ted Kremenek16b55a72010-01-26 19:31:51 +000052
Douglas Gregore23ac652011-04-20 00:21:03 +000053 if (!SL.isFile() || Invalid)
Ted Kremenek16b55a72010-01-26 19:31:51 +000054 continue;
55
56 const SrcMgr::FileInfo &FI = SL.getFile();
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +000057 if (!FI.getContentCache()->OrigEntry)
Ted Kremenek16b55a72010-01-26 19:31:51 +000058 continue;
59
60 // Build the inclusion stack.
61 SourceLocation L = FI.getIncludeLoc();
62 InclusionStack.clear();
63 while (L.isValid()) {
64 PresumedLoc PLoc = SM.getPresumedLoc(L);
65 InclusionStack.push_back(cxloc::translateSourceLocation(Ctx, L));
Douglas Gregorcb7b1e12010-11-12 07:15:47 +000066 L = PLoc.isValid()? PLoc.getIncludeLoc() : SourceLocation();
Ted Kremenek16b55a72010-01-26 19:31:51 +000067 }
68
69 // Callback to the client.
70 // FIXME: We should have a function to construct CXFiles.
David Greene61eacf02013-01-15 22:09:46 +000071 CB(static_cast<CXFile>(
72 const_cast<FileEntry *>(FI.getContentCache()->OrigEntry)),
Ted Kremenek16b55a72010-01-26 19:31:51 +000073 InclusionStack.data(), InclusionStack.size(), clientData);
74 }
75}
76} // end extern C