blob: b83e2b7f326c9b906b75df6eb8aec78b395d2247 [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
Douglas Gregora030b7c2010-01-22 20:35:53 +000027class CIndexer {
Ted Kremenekab188932010-01-05 19:32:54 +000028 bool UseExternalASTGeneration;
29 bool OnlyLocalDecls;
Ted Kremenekab188932010-01-05 19:32:54 +000030
31 llvm::sys::Path ClangPath;
32
33public:
Douglas Gregor936ea3b2010-01-28 00:56:43 +000034 CIndexer() : UseExternalASTGeneration(false), OnlyLocalDecls(false) { }
Ted Kremenekab188932010-01-05 19:32:54 +000035
Ted Kremenekab188932010-01-05 19:32:54 +000036 /// \brief Whether we only want to see "local" declarations (that did not
37 /// come from a previous precompiled header). If false, we want to see all
38 /// declarations.
39 bool getOnlyLocalDecls() const { return OnlyLocalDecls; }
40 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
41
Ted Kremenekab188932010-01-05 19:32:54 +000042 bool getUseExternalASTGeneration() const { return UseExternalASTGeneration; }
43 void setUseExternalASTGeneration(bool Value) {
44 UseExternalASTGeneration = Value;
45 }
46
Ted Kremenekab188932010-01-05 19:32:54 +000047 /// \brief Get the path of the clang binary.
48 const llvm::sys::Path& getClangPath();
49
50 /// \brief Get the path of the clang resource files.
51 std::string getClangResourcesPath();
Ted Kremenek4b333d22010-01-12 00:36:38 +000052
53 static CXString createCXString(const char *String, bool DupString = false);
Douglas Gregorfc8ea232010-01-26 17:06:03 +000054 static CXString createCXString(llvm::StringRef String,
55 bool DupString = false);
Ted Kremenekab188932010-01-05 19:32:54 +000056};
57
Douglas Gregor4db64a42010-01-23 00:14:00 +000058namespace clang {
59 /**
60 * \brief Given a set of "unsaved" files, create temporary files and
61 * construct the clang -cc1 argument list needed to perform the remapping.
62 *
63 * \returns true if an error occurred.
64 */
65 bool RemapFiles(unsigned num_unsaved_files,
66 struct CXUnsavedFile *unsaved_files,
67 std::vector<std::string> &RemapArgs,
68 std::vector<llvm::sys::Path> &TemporaryFiles);
69}
70
Ted Kremenekab188932010-01-05 19:32:54 +000071#endif