blob: d559f13864761f08de68295e0cb8c988a14d8bc1 [file] [log] [blame]
Ted Kremenekab188932010-01-05 19:32:54 +00001//===- CIndexer.h - 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 CIndexer, a subclass of Indexer that provides extra
11// functionality needed by the CIndex library.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_CINDEXER_H
16#define LLVM_CLANG_CINDEXER_H
17
18#include "clang-c/Index.h"
Ted Kremenekab188932010-01-05 19:32:54 +000019#include "clang/Frontend/CompilerInstance.h"
20#include "clang/Frontend/ASTUnit.h"
Douglas Gregorfc8ea232010-01-26 17:06:03 +000021#include "llvm/ADT/StringRef.h"
Ted Kremenekab188932010-01-05 19:32:54 +000022#include "llvm/System/Path.h"
Douglas Gregor4db64a42010-01-23 00:14:00 +000023#include <vector>
Ted Kremenekab188932010-01-05 19:32:54 +000024
25using namespace clang;
26
Ted Kremenekee4db4f2010-02-17 00:41:08 +000027namespace clang {
28namespace cxstring {
29 CXString createCXString(const char *String, bool DupString = false);
30 CXString createCXString(llvm::StringRef String, bool DupString = true);
31}
32}
33
Douglas Gregora030b7c2010-01-22 20:35:53 +000034class CIndexer {
Ted Kremenekab188932010-01-05 19:32:54 +000035 bool UseExternalASTGeneration;
36 bool OnlyLocalDecls;
Ted Kremenekab188932010-01-05 19:32:54 +000037
38 llvm::sys::Path ClangPath;
39
40public:
Douglas Gregor936ea3b2010-01-28 00:56:43 +000041 CIndexer() : UseExternalASTGeneration(false), OnlyLocalDecls(false) { }
Ted Kremenekab188932010-01-05 19:32:54 +000042
Ted Kremenekab188932010-01-05 19:32:54 +000043 /// \brief Whether we only want to see "local" declarations (that did not
44 /// come from a previous precompiled header). If false, we want to see all
45 /// declarations.
46 bool getOnlyLocalDecls() const { return OnlyLocalDecls; }
47 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
48
Ted Kremenekab188932010-01-05 19:32:54 +000049 bool getUseExternalASTGeneration() const { return UseExternalASTGeneration; }
50 void setUseExternalASTGeneration(bool Value) {
51 UseExternalASTGeneration = Value;
52 }
53
Ted Kremenekab188932010-01-05 19:32:54 +000054 /// \brief Get the path of the clang binary.
55 const llvm::sys::Path& getClangPath();
56
57 /// \brief Get the path of the clang resource files.
58 std::string getClangResourcesPath();
Ted Kremenekab188932010-01-05 19:32:54 +000059};
60
Douglas Gregor4db64a42010-01-23 00:14:00 +000061namespace clang {
62 /**
63 * \brief Given a set of "unsaved" files, create temporary files and
64 * construct the clang -cc1 argument list needed to perform the remapping.
65 *
66 * \returns true if an error occurred.
67 */
68 bool RemapFiles(unsigned num_unsaved_files,
69 struct CXUnsavedFile *unsaved_files,
70 std::vector<std::string> &RemapArgs,
71 std::vector<llvm::sys::Path> &TemporaryFiles);
72}
73
Ted Kremenekab188932010-01-05 19:32:54 +000074#endif