blob: d45878919e4978c622fde6b6f5ecd9a320d7c231 [file] [log] [blame]
Ted Kremenekab188932010-01-05 19:32:54 +00001//===- CIndex.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 implements the Clang-C Source Indexing library.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CIndexer.h"
15
16#include "clang/AST/Decl.h"
17#include "clang/AST/DeclVisitor.h"
18#include "clang/AST/StmtVisitor.h"
19#include "clang/Basic/FileManager.h"
20#include "clang/Basic/SourceManager.h"
21#include "clang/Basic/Version.h"
22#include "clang/Sema/CodeCompleteConsumer.h"
23#include "llvm/ADT/StringExtras.h"
Dylan Noblesmith1770e0d2011-12-22 22:49:47 +000024#include "llvm/Config/llvm-config.h"
Ted Kremenekab188932010-01-05 19:32:54 +000025#include "llvm/Support/Compiler.h"
26#include "llvm/Support/MemoryBuffer.h"
27#include "llvm/Support/raw_ostream.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000028#include "llvm/Support/Program.h"
Ted Kremenekab188932010-01-05 19:32:54 +000029
30#include <cstdio>
31#include <vector>
32#include <sstream>
33
NAKAMURA Takumi3b35a4d2010-11-09 03:25:16 +000034#ifdef __CYGWIN__
NAKAMURA Takumi893793b2011-03-08 22:17:33 +000035#include <cygwin/version.h>
NAKAMURA Takumi3b35a4d2010-11-09 03:25:16 +000036#include <sys/cygwin.h>
37#define LLVM_ON_WIN32 1
38#endif
39
Ted Kremenekab188932010-01-05 19:32:54 +000040#ifdef LLVM_ON_WIN32
41#include <windows.h>
42#else
43#include <dlfcn.h>
44#endif
45
46using namespace clang;
Ted Kremenekab188932010-01-05 19:32:54 +000047
Douglas Gregord1e6fdb2010-10-11 23:17:59 +000048std::string CIndexer::getClangResourcesPath() {
Ted Kremenekab188932010-01-05 19:32:54 +000049 // Did we already compute the path?
Douglas Gregord1e6fdb2010-10-11 23:17:59 +000050 if (!ResourcesPath.empty())
51 return ResourcesPath.str();
52
53 // Find the location where this library lives (libclang.dylib).
Ted Kremenekab188932010-01-05 19:32:54 +000054#ifdef LLVM_ON_WIN32
55 MEMORY_BASIC_INFORMATION mbi;
56 char path[MAX_PATH];
57 VirtualQuery((void *)(uintptr_t)clang_createTranslationUnit, &mbi,
58 sizeof(mbi));
59 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
NAKAMURA Takumi3b35a4d2010-11-09 03:25:16 +000060
61#ifdef __CYGWIN__
62 char w32path[MAX_PATH];
63 strcpy(w32path, path);
NAKAMURA Takumi893793b2011-03-08 22:17:33 +000064#if CYGWIN_VERSION_API_MAJOR > 0 || CYGWIN_VERSION_API_MINOR >= 181
65 cygwin_conv_path(CCP_WIN_A_TO_POSIX, w32path, path, MAX_PATH);
66#else
NAKAMURA Takumi3b35a4d2010-11-09 03:25:16 +000067 cygwin_conv_to_full_posix_path(w32path, path);
68#endif
NAKAMURA Takumi893793b2011-03-08 22:17:33 +000069#endif
NAKAMURA Takumi3b35a4d2010-11-09 03:25:16 +000070
Douglas Gregord1e6fdb2010-10-11 23:17:59 +000071 llvm::sys::Path LibClangPath(path);
72 LibClangPath.eraseComponent();
Ted Kremenekab188932010-01-05 19:32:54 +000073#else
74 // This silly cast below avoids a C++ warning.
75 Dl_info info;
76 if (dladdr((void *)(uintptr_t)clang_createTranslationUnit, &info) == 0)
David Blaikieb219cfc2011-09-23 05:06:16 +000077 llvm_unreachable("Call to dladdr() failed");
Douglas Gregord1e6fdb2010-10-11 23:17:59 +000078
79 llvm::sys::Path LibClangPath(info.dli_fname);
80
Ted Kremenekab188932010-01-05 19:32:54 +000081 // We now have the CIndex directory, locate clang relative to it.
Douglas Gregord1e6fdb2010-10-11 23:17:59 +000082 LibClangPath.eraseComponent();
Ted Kremenekab188932010-01-05 19:32:54 +000083#endif
Douglas Gregord1e6fdb2010-10-11 23:17:59 +000084
85 LibClangPath.appendComponent("clang");
86 LibClangPath.appendComponent(CLANG_VERSION_STRING);
Ted Kremenekab188932010-01-05 19:32:54 +000087
88 // Cache our result.
Douglas Gregord1e6fdb2010-10-11 23:17:59 +000089 ResourcesPath = LibClangPath;
90 return LibClangPath.str();
Ted Kremenekab188932010-01-05 19:32:54 +000091}
Douglas Gregor4db64a42010-01-23 00:14:00 +000092
Benjamin Kramerc2a98162010-03-13 21:22:49 +000093static llvm::sys::Path GetTemporaryPath() {
Daniel Dunbar74198af2010-02-02 05:19:57 +000094 // FIXME: This is lame; sys::Path should provide this function (in particular,
95 // it should know how to find the temporary files dir).
96 std::string Error;
97 const char *TmpDir = ::getenv("TMPDIR");
98 if (!TmpDir)
99 TmpDir = ::getenv("TEMP");
100 if (!TmpDir)
101 TmpDir = ::getenv("TMP");
102 if (!TmpDir)
103 TmpDir = "/tmp";
104 llvm::sys::Path P(TmpDir);
Benjamin Kramerc2a98162010-03-13 21:22:49 +0000105 P.appendComponent("remap");
Daniel Dunbar74198af2010-02-02 05:19:57 +0000106 if (P.makeUnique(false, &Error))
107 return llvm::sys::Path("");
108
109 // FIXME: Grumble, makeUnique sometimes leaves the file around!? PR3837.
110 P.eraseFromDisk(false, 0);
111
112 return P;
113}
114
Douglas Gregor4db64a42010-01-23 00:14:00 +0000115bool clang::RemapFiles(unsigned num_unsaved_files,
116 struct CXUnsavedFile *unsaved_files,
117 std::vector<std::string> &RemapArgs,
118 std::vector<llvm::sys::Path> &TemporaryFiles) {
119 for (unsigned i = 0; i != num_unsaved_files; ++i) {
Douglas Gregor4db64a42010-01-23 00:14:00 +0000120 // Write the contents of this unsaved file into the temporary file.
Benjamin Kramerc2a98162010-03-13 21:22:49 +0000121 llvm::sys::Path SavedFile(GetTemporaryPath());
Daniel Dunbar74198af2010-02-02 05:19:57 +0000122 if (SavedFile.empty())
123 return true;
124
Douglas Gregor4db64a42010-01-23 00:14:00 +0000125 std::string ErrorInfo;
Francois Pichetc44fe4b2010-10-12 01:01:43 +0000126 llvm::raw_fd_ostream OS(SavedFile.c_str(), ErrorInfo,
127 llvm::raw_fd_ostream::F_Binary);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000128 if (!ErrorInfo.empty())
129 return true;
130
131 OS.write(unsaved_files[i].Contents, unsaved_files[i].Length);
132 OS.close();
133 if (OS.has_error()) {
134 SavedFile.eraseFromDisk();
Dan Gohmanebaf2572010-05-27 20:16:37 +0000135 OS.clear_error();
Douglas Gregor4db64a42010-01-23 00:14:00 +0000136 return true;
137 }
138
139 // Remap the file.
140 std::string RemapArg = unsaved_files[i].Filename;
141 RemapArg += ';';
Daniel Dunbar74198af2010-02-02 05:19:57 +0000142 RemapArg += SavedFile.str();
Douglas Gregor4db64a42010-01-23 00:14:00 +0000143 RemapArgs.push_back("-Xclang");
144 RemapArgs.push_back("-remap-file");
145 RemapArgs.push_back("-Xclang");
146 RemapArgs.push_back(RemapArg);
147 TemporaryFiles.push_back(SavedFile);
148 }
149
150 return false;
151}
152