blob: 43dc11ee114caca83314db5841ded3c7a9fb26b2 [file] [log] [blame]
Krasimir Georgiev95ef1712017-04-12 17:13:08 +00001//===--- ClangdMain.cpp - clangd server loop ------------------------------===//
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +00002//
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
Ilya Biryukov38d79772017-05-16 09:38:59 +000010#include "ClangdLSPServer.h"
Ilya Biryukovafb55542017-05-16 14:40:30 +000011#include "JSONRPCDispatcher.h"
Ilya Biryukove6dbb582017-10-10 09:08:47 +000012#include "Path.h"
Sam McCall8567cb32017-11-02 09:21:51 +000013#include "Trace.h"
Haojian Wuba28e9a2018-01-10 14:44:34 +000014#include "index/SymbolYAML.h"
Benjamin Kramerf0af3e62017-03-01 16:16:29 +000015#include "llvm/Support/CommandLine.h"
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +000016#include "llvm/Support/FileSystem.h"
Ilya Biryukov0c1ca6b2017-10-02 15:13:20 +000017#include "llvm/Support/Path.h"
Benjamin Kramer6a3d74e2017-02-07 12:40:59 +000018#include "llvm/Support/Program.h"
Ilya Biryukove6dbb582017-10-10 09:08:47 +000019#include "llvm/Support/raw_ostream.h"
Sam McCalled2717a2018-02-14 03:20:07 +000020#include <cstdlib>
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +000021#include <iostream>
Ilya Biryukov38d79772017-05-16 09:38:59 +000022#include <memory>
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +000023#include <string>
Ilya Biryukovdb8b2d72017-08-14 08:45:47 +000024#include <thread>
Ilya Biryukov38d79772017-05-16 09:38:59 +000025
26using namespace clang;
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +000027using namespace clang::clangd;
28
Ilya Biryukove9eb7f02017-11-16 16:25:18 +000029namespace {
30enum class PCHStorageFlag { Disk, Memory };
Haojian Wuba28e9a2018-01-10 14:44:34 +000031
32// Build an in-memory static index for global symbols from a YAML-format file.
33// The size of global symbols should be relatively small, so that all symbols
34// can be managed in memory.
35std::unique_ptr<SymbolIndex> BuildStaticIndex(llvm::StringRef YamlSymbolFile) {
36 auto Buffer = llvm::MemoryBuffer::getFile(YamlSymbolFile);
37 if (!Buffer) {
38 llvm::errs() << "Can't open " << YamlSymbolFile << "\n";
39 return nullptr;
40 }
Sam McCall60039512018-02-09 14:42:01 +000041 auto Slab = SymbolsFromYAML(Buffer.get()->getBuffer());
Haojian Wuba28e9a2018-01-10 14:44:34 +000042 SymbolSlab::Builder SymsBuilder;
43 for (auto Sym : Slab)
44 SymsBuilder.insert(Sym);
45
46 return MemIndex::build(std::move(SymsBuilder).build());
Ilya Biryukove9eb7f02017-11-16 16:25:18 +000047}
Haojian Wuba28e9a2018-01-10 14:44:34 +000048} // namespace
Ilya Biryukove9eb7f02017-11-16 16:25:18 +000049
Ilya Biryukov0c1ca6b2017-10-02 15:13:20 +000050static llvm::cl::opt<Path> CompileCommandsDir(
51 "compile-commands-dir",
52 llvm::cl::desc("Specify a path to look for compile_commands.json. If path "
53 "is invalid, clangd will look in the current directory and "
54 "parent paths of each source file."));
55
Ilya Biryukovdb8b2d72017-08-14 08:45:47 +000056static llvm::cl::opt<unsigned>
57 WorkerThreadsCount("j",
58 llvm::cl::desc("Number of async workers used by clangd"),
59 llvm::cl::init(getDefaultAsyncThreadsCount()));
60
Sam McCalladccab62017-11-23 16:58:22 +000061// FIXME: Flags are the wrong mechanism for user preferences.
62// We should probably read a dotfile or similar.
63static llvm::cl::opt<bool> IncludeIneligibleResults(
64 "include-ineligible-results",
65 llvm::cl::desc(
66 "Include ineligible completion results (e.g. private members)"),
67 llvm::cl::init(clangd::CodeCompleteOptions().IncludeIneligibleResults),
68 llvm::cl::Hidden);
Ilya Biryukovb33c1572017-09-12 13:57:14 +000069
Sam McCall5ed599e2018-02-06 10:47:30 +000070static llvm::cl::opt<JSONStreamStyle> InputStyle(
71 "input-style", llvm::cl::desc("Input JSON stream encoding"),
72 llvm::cl::values(
73 clEnumValN(JSONStreamStyle::Standard, "standard", "usual LSP protocol"),
74 clEnumValN(JSONStreamStyle::Delimited, "delimited",
75 "messages delimited by --- lines, with # comment support")),
76 llvm::cl::init(JSONStreamStyle::Standard));
77
Sam McCalldd0566b2017-11-06 15:40:30 +000078static llvm::cl::opt<bool>
79 PrettyPrint("pretty", llvm::cl::desc("Pretty-print JSON output"),
80 llvm::cl::init(false));
81
Sam McCall5ed599e2018-02-06 10:47:30 +000082static llvm::cl::opt<bool> Test(
83 "lit-test",
84 llvm::cl::desc(
85 "Abbreviation for -input-style=delimited -pretty -run-synchronously. "
86 "Intended to simplify lit tests."),
87 llvm::cl::init(false), llvm::cl::Hidden);
88
Ilya Biryukove9eb7f02017-11-16 16:25:18 +000089static llvm::cl::opt<PCHStorageFlag> PCHStorage(
90 "pch-storage",
91 llvm::cl::desc("Storing PCHs in memory increases memory usages, but may "
92 "improve performance"),
93 llvm::cl::values(
94 clEnumValN(PCHStorageFlag::Disk, "disk", "store PCHs on disk"),
95 clEnumValN(PCHStorageFlag::Memory, "memory", "store PCHs in memory")),
96 llvm::cl::init(PCHStorageFlag::Disk));
97
Haojian Wu48b48652018-01-25 09:20:09 +000098static llvm::cl::opt<int> LimitCompletionResult(
Sam McCallea283c72018-01-30 09:21:30 +000099 "completion-limit",
Haojian Wu48b48652018-01-25 09:20:09 +0000100 llvm::cl::desc("Limit the number of completion results returned by clangd. "
101 "0 means no limit."),
Sam McCallea283c72018-01-30 09:21:30 +0000102 llvm::cl::init(100));
Haojian Wu48b48652018-01-25 09:20:09 +0000103
Ilya Biryukovdb8b2d72017-08-14 08:45:47 +0000104static llvm::cl::opt<bool> RunSynchronously(
105 "run-synchronously",
106 llvm::cl::desc("Parse on main thread. If set, -j is ignored"),
107 llvm::cl::init(false), llvm::cl::Hidden);
Benjamin Kramerf0af3e62017-03-01 16:16:29 +0000108
Ilya Biryukove6dbb582017-10-10 09:08:47 +0000109static llvm::cl::opt<Path>
Krasimir Georgiev0dcb48e2017-07-19 15:43:35 +0000110 ResourceDir("resource-dir",
Ilya Biryukov4ca7d852017-08-02 08:53:48 +0000111 llvm::cl::desc("Directory for system clang headers"),
Krasimir Georgiev0dcb48e2017-07-19 15:43:35 +0000112 llvm::cl::init(""), llvm::cl::Hidden);
113
Ilya Biryukove6dbb582017-10-10 09:08:47 +0000114static llvm::cl::opt<Path> InputMirrorFile(
115 "input-mirror-file",
116 llvm::cl::desc(
117 "Mirror all LSP input to the specified file. Useful for debugging."),
118 llvm::cl::init(""), llvm::cl::Hidden);
119
Eric Liubfac8f72017-12-19 18:00:37 +0000120static llvm::cl::opt<bool> EnableIndexBasedCompletion(
121 "enable-index-based-completion",
122 llvm::cl::desc(
Sam McCallea283c72018-01-30 09:21:30 +0000123 "Enable index-based global code completion. "
124 "Clang uses an index built from symbols in opened files"),
125 llvm::cl::init(true));
Eric Liubfac8f72017-12-19 18:00:37 +0000126
Haojian Wuba28e9a2018-01-10 14:44:34 +0000127static llvm::cl::opt<Path> YamlSymbolFile(
128 "yaml-symbol-file",
129 llvm::cl::desc(
130 "YAML-format global symbol file to build the static index. Clangd will "
131 "use the static index for global code completion.\n"
132 "WARNING: This option is experimental only, and will be removed "
133 "eventually. Don't rely on it."),
134 llvm::cl::init(""), llvm::cl::Hidden);
135
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +0000136int main(int argc, char *argv[]) {
Benjamin Kramerf0af3e62017-03-01 16:16:29 +0000137 llvm::cl::ParseCommandLineOptions(argc, argv, "clangd");
Sam McCall5ed599e2018-02-06 10:47:30 +0000138 if (Test) {
139 RunSynchronously = true;
140 InputStyle = JSONStreamStyle::Delimited;
141 PrettyPrint = true;
142 }
Ilya Biryukovafb55542017-05-16 14:40:30 +0000143
Ilya Biryukovdb8b2d72017-08-14 08:45:47 +0000144 if (!RunSynchronously && WorkerThreadsCount == 0) {
145 llvm::errs() << "A number of worker threads cannot be 0. Did you mean to "
146 "specify -run-synchronously?";
147 return 1;
148 }
149
150 // Ignore -j option if -run-synchonously is used.
151 // FIXME: a warning should be shown here.
152 if (RunSynchronously)
153 WorkerThreadsCount = 0;
154
Benjamin Kramer74a18952017-10-26 10:07:04 +0000155 // Validate command line arguments.
Ilya Biryukove6dbb582017-10-10 09:08:47 +0000156 llvm::Optional<llvm::raw_fd_ostream> InputMirrorStream;
157 if (!InputMirrorFile.empty()) {
158 std::error_code EC;
159 InputMirrorStream.emplace(InputMirrorFile, /*ref*/ EC, llvm::sys::fs::F_RW);
160 if (EC) {
161 InputMirrorStream.reset();
162 llvm::errs() << "Error while opening an input mirror file: "
163 << EC.message();
164 }
165 }
Ilya Biryukovee27d2e2017-12-14 15:04:59 +0000166
Sam McCalled2717a2018-02-14 03:20:07 +0000167 // Setup tracing facilities if CLANGD_TRACE is set. In practice enabling a
168 // trace flag in your editor's config is annoying, launching with
169 // `CLANGD_TRACE=trace.json vim` is easier.
Sam McCall8567cb32017-11-02 09:21:51 +0000170 llvm::Optional<llvm::raw_fd_ostream> TraceStream;
Ilya Biryukovee27d2e2017-12-14 15:04:59 +0000171 std::unique_ptr<trace::EventTracer> Tracer;
Sam McCalled2717a2018-02-14 03:20:07 +0000172 if (auto *TraceFile = getenv("CLANGD_TRACE")) {
Sam McCall8567cb32017-11-02 09:21:51 +0000173 std::error_code EC;
174 TraceStream.emplace(TraceFile, /*ref*/ EC, llvm::sys::fs::F_RW);
175 if (EC) {
Sam McCalled2717a2018-02-14 03:20:07 +0000176 TraceStream.reset();
177 llvm::errs() << "Error while opening trace file " << TraceFile << ": "
178 << EC.message();
Sam McCall8567cb32017-11-02 09:21:51 +0000179 } else {
Ilya Biryukovee27d2e2017-12-14 15:04:59 +0000180 Tracer = trace::createJSONTracer(*TraceStream, PrettyPrint);
Sam McCall8567cb32017-11-02 09:21:51 +0000181 }
182 }
Ilya Biryukove6dbb582017-10-10 09:08:47 +0000183
Ilya Biryukovee27d2e2017-12-14 15:04:59 +0000184 llvm::Optional<trace::Session> TracingSession;
185 if (Tracer)
186 TracingSession.emplace(*Tracer);
187
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +0000188 llvm::raw_ostream &Outs = llvm::outs();
189 llvm::raw_ostream &Logs = llvm::errs();
Ilya Biryukove6dbb582017-10-10 09:08:47 +0000190 JSONOutput Out(Outs, Logs,
Sam McCalldd0566b2017-11-06 15:40:30 +0000191 InputMirrorStream ? InputMirrorStream.getPointer() : nullptr,
192 PrettyPrint);
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +0000193
Ilya Biryukov940901e2017-12-13 12:51:22 +0000194 clangd::LoggingSession LoggingSession(Out);
195
Ilya Biryukov0c1ca6b2017-10-02 15:13:20 +0000196 // If --compile-commands-dir arg was invoked, check value and override default
197 // path.
Ilya Biryukov0c1ca6b2017-10-02 15:13:20 +0000198 llvm::Optional<Path> CompileCommandsDirPath;
199
200 if (CompileCommandsDir.empty()) {
201 CompileCommandsDirPath = llvm::None;
202 } else if (!llvm::sys::path::is_absolute(CompileCommandsDir) ||
203 !llvm::sys::fs::exists(CompileCommandsDir)) {
204 llvm::errs() << "Path specified by --compile-commands-dir either does not "
205 "exist or is not an absolute "
206 "path. The argument will be ignored.\n";
207 CompileCommandsDirPath = llvm::None;
208 } else {
209 CompileCommandsDirPath = CompileCommandsDir;
210 }
Benjamin Kramer6a3d74e2017-02-07 12:40:59 +0000211
Ilya Biryukove9eb7f02017-11-16 16:25:18 +0000212 bool StorePreamblesInMemory;
213 switch (PCHStorage) {
214 case PCHStorageFlag::Memory:
215 StorePreamblesInMemory = true;
216 break;
217 case PCHStorageFlag::Disk:
218 StorePreamblesInMemory = false;
219 break;
220 }
221
Krasimir Georgiev0dcb48e2017-07-19 15:43:35 +0000222 llvm::Optional<StringRef> ResourceDirRef = None;
223 if (!ResourceDir.empty())
224 ResourceDirRef = ResourceDir;
Ilya Biryukovdb8b2d72017-08-14 08:45:47 +0000225
Benjamin Kramer74a18952017-10-26 10:07:04 +0000226 // Change stdin to binary to not lose \r\n on windows.
Ilya Biryukov0c1ca6b2017-10-02 15:13:20 +0000227 llvm::sys::ChangeStdinToBinary();
228
Haojian Wuba28e9a2018-01-10 14:44:34 +0000229 std::unique_ptr<SymbolIndex> StaticIdx;
230 if (EnableIndexBasedCompletion && !YamlSymbolFile.empty())
231 StaticIdx = BuildStaticIndex(YamlSymbolFile);
Sam McCalladccab62017-11-23 16:58:22 +0000232 clangd::CodeCompleteOptions CCOpts;
Sam McCalladccab62017-11-23 16:58:22 +0000233 CCOpts.IncludeIneligibleResults = IncludeIneligibleResults;
Haojian Wu48b48652018-01-25 09:20:09 +0000234 CCOpts.Limit = LimitCompletionResult;
Benjamin Kramer74a18952017-10-26 10:07:04 +0000235 // Initialize and run ClangdLSPServer.
Ilya Biryukove9eb7f02017-11-16 16:25:18 +0000236 ClangdLSPServer LSPServer(Out, WorkerThreadsCount, StorePreamblesInMemory,
Eric Liubfac8f72017-12-19 18:00:37 +0000237 CCOpts, ResourceDirRef, CompileCommandsDirPath,
Haojian Wuba28e9a2018-01-10 14:44:34 +0000238 EnableIndexBasedCompletion, StaticIdx.get());
Ilya Biryukov0d9b8a32017-10-25 08:45:41 +0000239 constexpr int NoShutdownRequestErrorCode = 1;
Sam McCall8567cb32017-11-02 09:21:51 +0000240 llvm::set_thread_name("clangd.main");
Sam McCall5ed599e2018-02-06 10:47:30 +0000241 return LSPServer.run(std::cin, InputStyle) ? 0 : NoShutdownRequestErrorCode;
Benjamin Kramerbb1cdb62017-02-07 10:28:20 +0000242}