Index: clangd/ClangdLSPServer.h =================================================================== --- clangd/ClangdLSPServer.h +++ clangd/ClangdLSPServer.h @@ -28,7 +28,8 @@ public: ClangdLSPServer(JSONOutput &Out, unsigned AsyncThreadsCount, bool SnippetCompletions, - llvm::Optional ResourceDir); + llvm::Optional ResourceDir, + llvm::Optional CompileCommandsDir); /// Run LSP server loop, receiving input for it from \p In. \p In must be /// opened in binary mode. Output will be written using Out variable passed to Index: clangd/ClangdLSPServer.cpp =================================================================== --- clangd/ClangdLSPServer.cpp +++ clangd/ClangdLSPServer.cpp @@ -222,8 +222,9 @@ ClangdLSPServer::ClangdLSPServer(JSONOutput &Out, unsigned AsyncThreadsCount, bool SnippetCompletions, - llvm::Optional ResourceDir) - : Out(Out), DiagConsumer(*this), + llvm::Optional ResourceDir, + llvm::Optional CompileCommandsDir) + : Out(Out), CDB(CompileCommandsDir), DiagConsumer(*this), Server(CDB, DiagConsumer, FSProvider, AsyncThreadsCount, SnippetCompletions, ResourceDir) {} Index: clangd/GlobalCompilationDatabase.h =================================================================== --- clangd/GlobalCompilationDatabase.h +++ clangd/GlobalCompilationDatabase.h @@ -45,14 +45,19 @@ class DirectoryBasedGlobalCompilationDatabase : public GlobalCompilationDatabase { public: + DirectoryBasedGlobalCompilationDatabase( + llvm::Optional NewCompileCommandsDir) + : CompileCommandsDir(NewCompileCommandsDir) {} std::vector getCompileCommands(PathRef File) override; void setExtraFlagsForFile(PathRef File, std::vector ExtraFlags); private: - tooling::CompilationDatabase *getCompilationDatabase(PathRef File); + tooling::CompilationDatabase *getCompilationDatabase(PathRef File); + tooling::CompilationDatabase *tryLoadDatabaseFromPath(PathRef File); + llvm::Optional CompileCommandsDir; std::mutex Mutex; /// Caches compilation databases loaded from directories(keys are /// directories). Index: clangd/GlobalCompilationDatabase.cpp =================================================================== --- clangd/GlobalCompilationDatabase.cpp +++ clangd/GlobalCompilationDatabase.cpp @@ -62,43 +62,54 @@ } tooling::CompilationDatabase * -DirectoryBasedGlobalCompilationDatabase::getCompilationDatabase(PathRef File) { - std::lock_guard Lock(Mutex); - +DirectoryBasedGlobalCompilationDatabase::tryLoadDatabaseFromPath(PathRef File) { + namespace path = llvm::sys::path; + auto CachedIt = CompilationDatabases.find(File); + std::string Error = ""; assert((path::is_absolute(File, path::Style::posix) || path::is_absolute(File, path::Style::windows)) && "path must be absolute"); - for (auto Path = path::parent_path(File); !Path.empty(); - Path = path::parent_path(Path)) { - - auto CachedIt = CompilationDatabases.find(Path); - if (CachedIt != CompilationDatabases.end()) - return CachedIt->second.get(); - std::string Error; - auto CDB = tooling::CompilationDatabase::loadFromDirectory(Path, Error); - if (!CDB) { - if (!Error.empty()) { - // FIXME(ibiryukov): logging - // Output.log("Error when trying to load compilation database from " + - // Twine(Path) + ": " + Twine(Error) + "\n"); - } - continue; - } + if (CachedIt != CompilationDatabases.end()) + return CachedIt->second.get(); + auto CDB = tooling::CompilationDatabase::loadFromDirectory(File, Error); + if (CDB && Error.empty()) { + auto Result = CDB.get(); + CompilationDatabases.insert(std::make_pair(File, std::move(CDB))); // FIXME(ibiryukov): Invalidate cached compilation databases on changes - auto result = CDB.get(); - CompilationDatabases.insert(std::make_pair(Path, std::move(CDB))); - return result; + return Result; } - // FIXME(ibiryukov): logging // Output.log("Failed to find compilation database for " + Twine(File) + // "\n"); return nullptr; } +tooling::CompilationDatabase * +DirectoryBasedGlobalCompilationDatabase::getCompilationDatabase(PathRef File) { + std::lock_guard Lock(Mutex); + + namespace path = llvm::sys::path; + if (!CompileCommandsDir.hasValue()) + { + CompileCommandsDir = "/"; + return tryLoadDatabaseFromPath(CompileCommandsDir.getValue()); + } + + for (auto Path = path::parent_path(File); !Path.empty(); + Path = path::parent_path(Path)) { + auto CDB = tryLoadDatabaseFromPath(Path); + if (!CDB) + continue; + + return CDB; + } + + return nullptr; +} + } // namespace clangd } // namespace clang Index: clangd/tool/ClangdMain.cpp =================================================================== --- clangd/tool/ClangdMain.cpp +++ clangd/tool/ClangdMain.cpp @@ -11,16 +11,24 @@ #include "JSONRPCDispatcher.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/FileSystem.h" +#include "llvm/Support/Path.h" #include "llvm/Support/Program.h" - #include #include #include #include +#include using namespace clang; using namespace clang::clangd; +static llvm::cl::opt CompileCommandsDir( + "compile-commands-dir", + llvm::cl::desc("Specify a path to look for compile_commands.json. If path " + "is invalid, clangd will look in the current directory and " + "parent paths of each source file.")); + + static llvm::cl::opt WorkerThreadsCount("j", llvm::cl::desc("Number of async workers used by clangd"), @@ -56,18 +64,44 @@ if (RunSynchronously) WorkerThreadsCount = 0; + /// Validate command line arguments. llvm::raw_ostream &Outs = llvm::outs(); llvm::raw_ostream &Logs = llvm::errs(); - JSONOutput Out(Outs, Logs); + JSONOutput Out(Outs, Logs); - // Change stdin to binary to not lose \r\n on windows. - llvm::sys::ChangeStdinToBinary(); + // If --compile-commands-dir arg was invoked, check value and override default + // path. + namespace path = llvm::sys::path; + llvm::Optional CompileCommandsDirPath; + + if (CompileCommandsDir.empty()) + CompileCommandsDirPath = llvm::None; + else + { + if (!llvm::sys::path::is_absolute(CompileCommandsDir)) { + llvm::errs() << "Path specified by --compile-commands-dir must be an absolute " + "path. The argument will be ignored.\n"; + CompileCommandsDir = ""; + } + + if (!llvm::sys::fs::exists(CompileCommandsDir)) { + llvm::errs() << "Path specified by --compile-commands-dir does not exist. The argument will be " + "ignored.\n"; + CompileCommandsDir = ""; + } + CompileCommandsDirPath = CompileCommandsDir; + } llvm::Optional ResourceDirRef = None; if (!ResourceDir.empty()) ResourceDirRef = ResourceDir; + /// Change stdin to binary to not lose \r\n on windows. + llvm::sys::ChangeStdinToBinary(); + + /// Initialize and run ClangdLSPServer. + ClangdLSPServer LSPServer(Out, WorkerThreadsCount, EnableSnippets, - ResourceDirRef); + ResourceDirRef, CompileCommandsDirPath); LSPServer.run(std::cin); }