2017-03-25 20:15:00 +00:00
|
|
|
// TODO: cleanup includes
|
2017-04-09 02:24:32 +00:00
|
|
|
#include "cache.h"
|
2017-03-26 21:40:34 +00:00
|
|
|
#include "code_completion.h"
|
2017-04-08 22:54:36 +00:00
|
|
|
#include "file_consumer.h"
|
2017-04-15 04:53:10 +00:00
|
|
|
#include "fuzzy.h"
|
2017-02-25 23:59:09 +00:00
|
|
|
#include "indexer.h"
|
|
|
|
#include "query.h"
|
2017-03-05 02:16:23 +00:00
|
|
|
#include "language_server_api.h"
|
2017-04-09 02:24:32 +00:00
|
|
|
#include "options.h"
|
2017-03-26 21:40:34 +00:00
|
|
|
#include "project.h"
|
2017-03-25 20:27:28 +00:00
|
|
|
#include "platform.h"
|
2017-03-10 07:06:01 +00:00
|
|
|
#include "test.h"
|
2017-03-25 20:15:00 +00:00
|
|
|
#include "timer.h"
|
|
|
|
#include "threaded_queue.h"
|
|
|
|
#include "typed_bidi_message_queue.h"
|
2017-03-26 21:40:34 +00:00
|
|
|
#include "working_files.h"
|
2017-03-05 02:16:23 +00:00
|
|
|
|
2017-03-25 20:27:28 +00:00
|
|
|
#include <doctest/doctest.h>
|
|
|
|
#include <rapidjson/istreamwrapper.h>
|
|
|
|
#include <rapidjson/ostreamwrapper.h>
|
|
|
|
|
2017-03-31 05:30:50 +00:00
|
|
|
#include <fstream>
|
2017-04-17 01:22:59 +00:00
|
|
|
#include <functional>
|
2017-03-25 20:27:28 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <thread>
|
|
|
|
#include <vector>
|
2017-02-25 23:59:09 +00:00
|
|
|
|
2017-04-11 07:29:36 +00:00
|
|
|
// TODO: provide a feature like 'https://github.com/goldsborough/clang-expand',
|
|
|
|
// ie, a fully linear view of a function with inline function calls expanded.
|
|
|
|
// We can probably use vscode decorators to achieve it.
|
|
|
|
|
2017-03-25 20:27:28 +00:00
|
|
|
namespace {
|
2017-04-09 02:24:32 +00:00
|
|
|
|
2017-04-16 23:52:42 +00:00
|
|
|
const bool kUseMultipleProcesses = false; // TODO: initialization options not passed properly when set to true.
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct IpcManager {
|
|
|
|
// TODO: Rename TypedBidiMessageQueue to IpcTransport?
|
|
|
|
using IpcMessageQueue = TypedBidiMessageQueue<IpcId, BaseIpcMessage>;
|
|
|
|
|
2017-04-19 00:05:14 +00:00
|
|
|
static constexpr const char* kIpcLanguageClientName = "lanclient";
|
2017-04-16 19:02:29 +00:00
|
|
|
static constexpr const int kQueueSizeBytes = 1024 * 8;
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
static IpcManager* instance_;
|
|
|
|
static IpcManager* instance() {
|
|
|
|
return instance_;
|
2017-04-16 19:02:29 +00:00
|
|
|
}
|
2017-04-16 22:48:54 +00:00
|
|
|
static void CreateInstance() {
|
|
|
|
instance_ = new IpcManager();
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
std::unique_ptr<ThreadedQueue<std::unique_ptr<BaseIpcMessage>>> threaded_queue_for_client_;
|
|
|
|
std::unique_ptr<ThreadedQueue<std::unique_ptr<BaseIpcMessage>>> threaded_queue_for_server_;
|
|
|
|
std::unique_ptr<IpcMessageQueue> ipc_queue_;
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
enum class Destination {
|
|
|
|
Client, Server
|
|
|
|
};
|
|
|
|
|
|
|
|
MessageQueue* GetMessageQueue(Destination destination) {
|
|
|
|
assert(kUseMultipleProcesses);
|
|
|
|
return destination == Destination::Client ? &ipc_queue_->for_client : &ipc_queue_->for_server;
|
|
|
|
}
|
|
|
|
ThreadedQueue<std::unique_ptr<BaseIpcMessage>>* GetThreadedQueue(Destination destination) {
|
|
|
|
assert(!kUseMultipleProcesses);
|
|
|
|
return destination == Destination::Client ? threaded_queue_for_client_.get() : threaded_queue_for_server_.get();
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-16 20:43:30 +00:00
|
|
|
void SendOutMessageToClient(lsBaseOutMessage& response) {
|
2017-04-16 19:02:29 +00:00
|
|
|
std::ostringstream sstream;
|
|
|
|
response.Write(sstream);
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
if (kUseMultipleProcesses) {
|
|
|
|
Ipc_Cout out;
|
|
|
|
out.content = sstream.str();
|
|
|
|
ipc_queue_->SendMessage(&ipc_queue_->for_client, Ipc_Cout::kIpcId, out);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
auto out = MakeUnique<Ipc_Cout>();
|
|
|
|
out->content = sstream.str();
|
|
|
|
GetThreadedQueue(Destination::Client)->Enqueue(std::move(out));
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
void SendMessage(Destination destination, std::unique_ptr<BaseIpcMessage> message) {
|
|
|
|
if (kUseMultipleProcesses)
|
|
|
|
ipc_queue_->SendMessage(GetMessageQueue(destination), message->method_id, *message);
|
|
|
|
else
|
|
|
|
GetThreadedQueue(destination)->Enqueue(std::move(message));
|
2017-04-16 19:02:29 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 20:43:30 +00:00
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> GetMessages(Destination destination) {
|
2017-04-16 21:49:48 +00:00
|
|
|
if (kUseMultipleProcesses)
|
|
|
|
return ipc_queue_->GetMessages(GetMessageQueue(destination));
|
|
|
|
else
|
|
|
|
return GetThreadedQueue(destination)->DequeueAll();
|
2017-04-16 19:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-04-16 21:49:48 +00:00
|
|
|
IpcManager() {
|
|
|
|
if (kUseMultipleProcesses) {
|
|
|
|
ipc_queue_ = BuildIpcMessageQueue(kIpcLanguageClientName, kQueueSizeBytes);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
threaded_queue_for_client_ = MakeUnique<ThreadedQueue<std::unique_ptr<BaseIpcMessage>>>();
|
|
|
|
threaded_queue_for_server_ = MakeUnique<ThreadedQueue<std::unique_ptr<BaseIpcMessage>>>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 19:02:29 +00:00
|
|
|
template<typename T>
|
|
|
|
void RegisterId(IpcMessageQueue* t) {
|
|
|
|
t->RegisterId(T::kIpcId,
|
|
|
|
[](Writer& visitor, BaseIpcMessage& message) {
|
|
|
|
T& m = static_cast<T&>(message);
|
|
|
|
Reflect(visitor, m);
|
|
|
|
}, [](Reader& visitor) {
|
|
|
|
auto m = MakeUnique<T>();
|
|
|
|
Reflect(visitor, *m);
|
|
|
|
return m;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<IpcMessageQueue> BuildIpcMessageQueue(const std::string& name, size_t buffer_size) {
|
|
|
|
auto ipc = MakeUnique<IpcMessageQueue>(name, buffer_size);
|
|
|
|
RegisterId<Ipc_CancelRequest>(ipc.get());
|
|
|
|
RegisterId<Ipc_InitializeRequest>(ipc.get());
|
|
|
|
RegisterId<Ipc_InitializedNotification>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDidOpen>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDidChange>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDidClose>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDidSave>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentRename>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentComplete>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDefinition>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDocumentHighlight>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentHover>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentReferences>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDocumentSymbol>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentCodeLens>(ipc.get());
|
|
|
|
RegisterId<Ipc_CodeLensResolve>(ipc.get());
|
|
|
|
RegisterId<Ipc_WorkspaceSymbol>(ipc.get());
|
|
|
|
RegisterId<Ipc_Quit>(ipc.get());
|
|
|
|
RegisterId<Ipc_IsAlive>(ipc.get());
|
|
|
|
RegisterId<Ipc_OpenProject>(ipc.get());
|
|
|
|
RegisterId<Ipc_Cout>(ipc.get());
|
|
|
|
return ipc;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
IpcManager* IpcManager::instance_ = nullptr;
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-18 03:23:52 +00:00
|
|
|
bool IsQueryDbProcessRunningOutOfProcess() {
|
|
|
|
if (!kUseMultipleProcesses)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
IpcManager* ipc = IpcManager::instance();
|
|
|
|
|
|
|
|
// Discard any left-over messages from previous runs.
|
|
|
|
if (kUseMultipleProcesses)
|
|
|
|
ipc->GetMessages(IpcManager::Destination::Client);
|
|
|
|
|
|
|
|
// Emit an alive check. Sleep so the server has time to respond.
|
|
|
|
std::cerr << "[setup] Sending IsAlive request to server" << std::endl;
|
|
|
|
ipc->SendMessage(IpcManager::Destination::Server, MakeUnique<Ipc_IsAlive>());
|
|
|
|
|
|
|
|
// TODO: Tune this value or make it configurable.
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
|
|
|
|
|
|
|
// Check if we got an IsAlive message back.
|
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> messages = ipc->GetMessages(IpcManager::Destination::Client);
|
|
|
|
for (auto& message : messages) {
|
|
|
|
if (IpcId::IsAlive == message->method_id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
std::cerr << "[setup] Unhandled IPC message " << IpcIdToString(message->method_id) << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-18 03:23:52 +00:00
|
|
|
// No response back. Clear out server messages so server doesn't respond to stale request.
|
|
|
|
ipc->GetMessages(IpcManager::Destination::Server);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-09 02:24:32 +00:00
|
|
|
|
2017-04-12 06:41:19 +00:00
|
|
|
void PushBack(NonElidedVector<lsLocation>* result, optional<lsLocation> location) {
|
|
|
|
if (location)
|
|
|
|
result->push_back(*location);
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* FindFile(QueryDatabase* db, const std::string& filename, QueryFileId* file_id) {
|
2017-04-11 05:43:01 +00:00
|
|
|
auto it = db->usr_to_symbol.find(filename);
|
|
|
|
if (it != db->usr_to_symbol.end()) {
|
|
|
|
*file_id = QueryFileId(it->second.idx);
|
|
|
|
return &db->files[it->second.idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cerr << "Unable to find file " << filename << std::endl;
|
|
|
|
*file_id = QueryFileId(-1);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* FindFile(QueryDatabase* db, const std::string& filename) {
|
2017-04-13 06:01:42 +00:00
|
|
|
// TODO: consider calling NormalizePath here. It might add too much latency though.
|
2017-04-09 02:24:32 +00:00
|
|
|
auto it = db->usr_to_symbol.find(filename);
|
|
|
|
if (it != db->usr_to_symbol.end())
|
|
|
|
return &db->files[it->second.idx];
|
|
|
|
|
|
|
|
std::cerr << "Unable to find file " << filename << std::endl;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* GetQuery(QueryDatabase* db, const QueryFileId& id) {
|
2017-04-09 02:48:50 +00:00
|
|
|
return &db->files[id.id];
|
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryType* GetQuery(QueryDatabase* db, const QueryTypeId& id) {
|
2017-04-09 02:48:50 +00:00
|
|
|
return &db->types[id.id];
|
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFunc* GetQuery(QueryDatabase* db, const QueryFuncId& id) {
|
2017-04-09 02:48:50 +00:00
|
|
|
return &db->funcs[id.id];
|
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryVar* GetQuery(QueryDatabase* db, const QueryVarId& id) {
|
2017-04-09 02:48:50 +00:00
|
|
|
return &db->vars[id.id];
|
|
|
|
}
|
|
|
|
|
2017-04-10 05:34:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db, const QueryTypeId& id) {
|
|
|
|
return GetQuery(db, id)->def.definition_spelling;
|
2017-04-09 02:24:32 +00:00
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db, const QueryFuncId& id) {
|
|
|
|
return GetQuery(db, id)->def.definition_spelling;
|
2017-04-09 02:24:32 +00:00
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db, const QueryVarId& id) {
|
|
|
|
return GetQuery(db, id)->def.definition_spelling;
|
2017-04-09 02:24:32 +00:00
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db, const SymbolIdx& symbol) {
|
2017-04-09 02:24:32 +00:00
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type:
|
|
|
|
return db->types[symbol.idx].def.definition_spelling;
|
|
|
|
case SymbolKind::Func:
|
|
|
|
return db->funcs[symbol.idx].def.definition_spelling;
|
|
|
|
case SymbolKind::Var:
|
|
|
|
return db->vars[symbol.idx].def.definition_spelling;
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
|
2017-04-13 07:47:47 +00:00
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
std::string GetHoverForSymbol(QueryDatabase* db, const SymbolIdx& symbol) {
|
2017-04-14 05:18:02 +00:00
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type:
|
2017-04-15 04:58:07 +00:00
|
|
|
return db->types[symbol.idx].def.detailed_name;
|
2017-04-14 05:18:02 +00:00
|
|
|
case SymbolKind::Func:
|
2017-04-15 04:58:07 +00:00
|
|
|
return db->funcs[symbol.idx].def.detailed_name;
|
2017-04-14 05:18:02 +00:00
|
|
|
case SymbolKind::Var:
|
2017-04-15 04:58:07 +00:00
|
|
|
return db->vars[symbol.idx].def.detailed_name;
|
2017-04-14 05:18:02 +00:00
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> ToQueryLocation(QueryDatabase* db, const std::vector<QueryFuncRef>& refs) {
|
|
|
|
std::vector<QueryLocation> locs;
|
2017-04-13 07:47:47 +00:00
|
|
|
locs.reserve(refs.size());
|
|
|
|
for (const QueryFuncRef& ref : refs)
|
|
|
|
locs.push_back(ref.loc);
|
|
|
|
return locs;
|
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> ToQueryLocation(QueryDatabase* db, const std::vector<QueryTypeId>& ids) {
|
|
|
|
std::vector<QueryLocation> locs;
|
2017-04-13 07:47:47 +00:00
|
|
|
locs.reserve(ids.size());
|
|
|
|
for (const QueryTypeId& id : ids) {
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> loc = GetDefinitionSpellingOfSymbol(db, id);
|
2017-04-13 07:47:47 +00:00
|
|
|
if (loc)
|
|
|
|
locs.push_back(loc.value());
|
|
|
|
}
|
|
|
|
return locs;
|
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> ToQueryLocation(QueryDatabase* db, const std::vector<QueryFuncId>& ids) {
|
|
|
|
std::vector<QueryLocation> locs;
|
2017-04-13 07:47:47 +00:00
|
|
|
locs.reserve(ids.size());
|
|
|
|
for (const QueryFuncId& id : ids) {
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> loc = GetDefinitionSpellingOfSymbol(db, id);
|
2017-04-13 07:47:47 +00:00
|
|
|
if (loc)
|
|
|
|
locs.push_back(loc.value());
|
|
|
|
}
|
|
|
|
return locs;
|
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> ToQueryLocation(QueryDatabase* db, const std::vector<QueryVarId>& ids) {
|
|
|
|
std::vector<QueryLocation> locs;
|
2017-04-13 07:47:47 +00:00
|
|
|
locs.reserve(ids.size());
|
|
|
|
for (const QueryVarId& id : ids) {
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> loc = GetDefinitionSpellingOfSymbol(db, id);
|
2017-04-13 07:47:47 +00:00
|
|
|
if (loc)
|
|
|
|
locs.push_back(loc.value());
|
|
|
|
}
|
|
|
|
return locs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> GetUsesOfSymbol(QueryDatabase* db, const SymbolIdx& symbol) {
|
2017-04-13 07:47:47 +00:00
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type:
|
|
|
|
return db->types[symbol.idx].uses;
|
|
|
|
case SymbolKind::Func: {
|
|
|
|
// TODO: the vector allocation could be avoided.
|
2017-04-15 05:41:35 +00:00
|
|
|
const QueryFunc& func = db->funcs[symbol.idx];
|
|
|
|
std::vector<QueryLocation> result = ToQueryLocation(db, func.callers);
|
2017-04-13 07:47:47 +00:00
|
|
|
AddRange(&result, func.declarations);
|
|
|
|
if (func.def.definition_spelling)
|
|
|
|
result.push_back(*func.def.definition_spelling);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var:
|
|
|
|
return db->vars[symbol.idx].uses;
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionExtentOfSymbol(QueryDatabase* db, const QueryTypeId& id) {
|
|
|
|
return GetQuery(db, id)->def.definition_extent;
|
2017-04-09 22:16:06 +00:00
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionExtentOfSymbol(QueryDatabase* db, const QueryFuncId& id) {
|
|
|
|
return GetQuery(db, id)->def.definition_extent;
|
2017-04-09 22:16:06 +00:00
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionExtentOfSymbol(QueryDatabase* db, const QueryVarId& id) {
|
|
|
|
return GetQuery(db, id)->def.definition_extent;
|
2017-04-09 22:16:06 +00:00
|
|
|
}
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetDefinitionExtentOfSymbol(QueryDatabase* db, const SymbolIdx& symbol) {
|
2017-04-09 22:16:06 +00:00
|
|
|
switch (symbol.kind) {
|
2017-04-11 05:43:01 +00:00
|
|
|
case SymbolKind::File:
|
|
|
|
// TODO: If line 1 is deleted the file won't show up in, ie, workspace symbol search results.
|
2017-04-19 05:28:33 +00:00
|
|
|
return QueryLocation(QueryFileId(symbol.idx), Range(Position(1, 1), Position(1, 1)));
|
2017-04-11 05:43:01 +00:00
|
|
|
case SymbolKind::Type:
|
|
|
|
return db->types[symbol.idx].def.definition_extent;
|
|
|
|
case SymbolKind::Func:
|
|
|
|
return db->funcs[symbol.idx].def.definition_extent;
|
|
|
|
case SymbolKind::Var:
|
|
|
|
return db->vars[symbol.idx].def.definition_extent;
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
2017-04-09 22:16:06 +00:00
|
|
|
}
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> GetDeclarationsOfSymbolForGotoDefinition(QueryDatabase* db, const SymbolIdx& symbol) {
|
2017-04-11 05:43:01 +00:00
|
|
|
switch (symbol.kind) {
|
2017-04-11 06:02:53 +00:00
|
|
|
case SymbolKind::Type: {
|
|
|
|
// Returning the definition spelling of a type is a hack (and is why the
|
|
|
|
// function has the postfix `ForGotoDefintion`, but it lets the user
|
|
|
|
// jump to the start of a type if clicking goto-definition on the same
|
|
|
|
// type from within the type definition.
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> declaration = db->types[symbol.idx].def.definition_spelling;
|
2017-04-11 06:02:53 +00:00
|
|
|
if (declaration)
|
|
|
|
return { *declaration };
|
|
|
|
break;
|
|
|
|
}
|
2017-04-11 05:43:01 +00:00
|
|
|
case SymbolKind::Func:
|
|
|
|
return db->funcs[symbol.idx].declarations;
|
|
|
|
case SymbolKind::Var: {
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> declaration = db->vars[symbol.idx].def.declaration;
|
2017-04-11 05:43:01 +00:00
|
|
|
if (declaration)
|
|
|
|
return { *declaration };
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> GetBaseDefinitionOrDeclarationSpelling(QueryDatabase* db, QueryFunc& func) {
|
2017-04-11 07:29:36 +00:00
|
|
|
if (!func.def.base)
|
|
|
|
return nullopt;
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFunc& base = db->funcs[func.def.base->id];
|
2017-04-12 06:30:31 +00:00
|
|
|
auto def = base.def.definition_spelling;
|
|
|
|
if (!def && !base.declarations.empty())
|
|
|
|
def = base.declarations[0];
|
|
|
|
return def;
|
2017-04-11 07:29:36 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryFuncRef> GetCallersForAllBaseFunctions(QueryDatabase* db, QueryFunc& root) {
|
2017-04-11 07:29:36 +00:00
|
|
|
std::vector<QueryFuncRef> callers;
|
|
|
|
|
|
|
|
optional<QueryFuncId> func_id = root.def.base;
|
|
|
|
while (func_id) {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFunc& func = db->funcs[func_id->id];
|
|
|
|
AddRange(&callers, func.callers);
|
|
|
|
func_id = func.def.base;
|
2017-04-11 07:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return callers;
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryFuncRef> GetCallersForAllDerivedFunctions(QueryDatabase* db, QueryFunc& root) {
|
2017-04-11 07:29:36 +00:00
|
|
|
std::vector<QueryFuncRef> callers;
|
|
|
|
|
|
|
|
std::queue<QueryFuncId> queue;
|
|
|
|
PushRange(&queue, root.derived);
|
|
|
|
|
|
|
|
while (!queue.empty()) {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFunc& func = db->funcs[queue.front().id];
|
2017-04-11 07:29:36 +00:00
|
|
|
queue.pop();
|
2017-04-15 05:41:35 +00:00
|
|
|
PushRange(&queue, func.derived);
|
2017-04-11 07:29:36 +00:00
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
AddRange(&callers, func.callers);
|
2017-04-11 07:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return callers;
|
|
|
|
}
|
|
|
|
|
2017-04-09 22:16:06 +00:00
|
|
|
optional<lsRange> GetLsRange(WorkingFile* working_file, const Range& location) {
|
2017-04-09 19:38:52 +00:00
|
|
|
if (!working_file) {
|
|
|
|
return lsRange(
|
|
|
|
lsPosition(location.start.line - 1, location.start.column - 1),
|
|
|
|
lsPosition(location.end.line - 1, location.end.column - 1));
|
|
|
|
}
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
optional<int> start = working_file->GetBufferLineFromIndexLine(location.start.line);
|
|
|
|
optional<int> end = working_file->GetBufferLineFromIndexLine(location.end.line);
|
2017-04-16 08:09:12 +00:00
|
|
|
if (!start || !end)
|
2017-04-09 22:16:06 +00:00
|
|
|
return nullopt;
|
|
|
|
|
2017-04-09 02:24:32 +00:00
|
|
|
return lsRange(
|
2017-04-16 08:09:12 +00:00
|
|
|
lsPosition(*start - 1, location.start.column - 1),
|
|
|
|
lsPosition(*end - 1, location.end.column - 1));
|
2017-04-09 19:38:52 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
lsDocumentUri GetLsDocumentUri(QueryDatabase* db, QueryFileId file_id, std::string* path) {
|
|
|
|
*path = db->files[file_id.id].def.path;
|
2017-04-09 19:38:52 +00:00
|
|
|
return lsDocumentUri::FromPath(*path);
|
2017-04-09 02:24:32 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
lsDocumentUri GetLsDocumentUri(QueryDatabase* db, QueryFileId file_id) {
|
|
|
|
std::string path = db->files[file_id.id].def.path;
|
2017-04-09 02:24:32 +00:00
|
|
|
return lsDocumentUri::FromPath(path);
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<lsLocation> GetLsLocation(QueryDatabase* db, WorkingFiles* working_files, const QueryLocation& location) {
|
2017-04-09 19:38:52 +00:00
|
|
|
std::string path;
|
|
|
|
lsDocumentUri uri = GetLsDocumentUri(db, location.path, &path);
|
2017-04-09 22:16:06 +00:00
|
|
|
optional<lsRange> range = GetLsRange(working_files->GetFileByFilename(path), location.range);
|
|
|
|
if (!range)
|
|
|
|
return nullopt;
|
|
|
|
return lsLocation(uri, *range);
|
2017-04-09 02:24:32 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 22:16:06 +00:00
|
|
|
// Returns a symbol. The symbol will have *NOT* have a location assigned.
|
2017-04-19 06:56:37 +00:00
|
|
|
optional<lsSymbolInformation> GetSymbolInfo(QueryDatabase* db, WorkingFiles* working_files, SymbolIdx symbol) {
|
2017-04-09 02:48:50 +00:00
|
|
|
lsSymbolInformation info;
|
|
|
|
|
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::File: {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = symbol.ResolveFile(db);
|
|
|
|
info.name = file->def.path;
|
2017-04-09 02:48:50 +00:00
|
|
|
info.kind = lsSymbolKind::File;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Type: {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryType* type = symbol.ResolveType(db);
|
|
|
|
info.name = type->def.detailed_name;
|
2017-04-09 02:48:50 +00:00
|
|
|
info.kind = lsSymbolKind::Class;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFunc* func = symbol.ResolveFunc(db);
|
2017-04-16 08:09:12 +00:00
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
info.name = func->def.detailed_name;
|
|
|
|
if (func->def.declaring_type.has_value()) {
|
2017-04-09 02:48:50 +00:00
|
|
|
info.kind = lsSymbolKind::Method;
|
2017-04-15 05:41:35 +00:00
|
|
|
info.containerName = db->types[func->def.declaring_type->id].def.detailed_name;
|
2017-04-09 02:48:50 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
info.kind = lsSymbolKind::Function;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryVar* var = symbol.ResolveVar(db);
|
|
|
|
info.name += var->def.detailed_name;
|
2017-04-09 02:48:50 +00:00
|
|
|
info.kind = lsSymbolKind::Variable;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Invalid: {
|
2017-04-19 06:56:37 +00:00
|
|
|
return nullopt;
|
2017-04-09 02:48:50 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2017-04-11 07:29:36 +00:00
|
|
|
struct CommonCodeLensParams {
|
|
|
|
std::vector<TCodeLens>* result;
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryDatabase* db;
|
2017-04-11 07:29:36 +00:00
|
|
|
WorkingFiles* working_files;
|
|
|
|
WorkingFile* working_file;
|
|
|
|
};
|
2017-04-09 02:31:00 +00:00
|
|
|
|
|
|
|
void AddCodeLens(
|
2017-04-11 07:29:36 +00:00
|
|
|
CommonCodeLensParams* common,
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryLocation loc,
|
|
|
|
const std::vector<QueryLocation>& uses,
|
2017-04-09 02:31:00 +00:00
|
|
|
const char* singular,
|
2017-04-11 07:29:36 +00:00
|
|
|
const char* plural,
|
2017-04-19 05:28:33 +00:00
|
|
|
bool exclude_loc = false) {
|
2017-04-09 02:31:00 +00:00
|
|
|
TCodeLens code_lens;
|
2017-04-11 07:29:36 +00:00
|
|
|
optional<lsRange> range = GetLsRange(common->working_file, loc.range);
|
2017-04-09 22:16:06 +00:00
|
|
|
if (!range)
|
|
|
|
return;
|
|
|
|
code_lens.range = *range;
|
2017-04-09 02:31:00 +00:00
|
|
|
code_lens.command = lsCommand<lsCodeLensCommandArguments>();
|
|
|
|
code_lens.command->command = "superindex.showReferences";
|
2017-04-11 07:29:36 +00:00
|
|
|
code_lens.command->arguments.uri = GetLsDocumentUri(common->db, loc.path);
|
2017-04-09 02:31:00 +00:00
|
|
|
code_lens.command->arguments.position = code_lens.range.start;
|
|
|
|
|
|
|
|
// Add unique uses.
|
|
|
|
std::unordered_set<lsLocation> unique_uses;
|
2017-04-15 05:41:35 +00:00
|
|
|
for (const QueryLocation& use : uses) {
|
2017-04-09 02:31:00 +00:00
|
|
|
if (exclude_loc && use == loc)
|
|
|
|
continue;
|
2017-04-11 07:29:36 +00:00
|
|
|
optional<lsLocation> location = GetLsLocation(common->db, common->working_files, use);
|
2017-04-09 22:16:06 +00:00
|
|
|
if (!location)
|
|
|
|
continue;
|
|
|
|
unique_uses.insert(*location);
|
2017-04-09 02:31:00 +00:00
|
|
|
}
|
|
|
|
code_lens.command->arguments.locations.assign(unique_uses.begin(),
|
|
|
|
unique_uses.end());
|
|
|
|
|
|
|
|
// User visible label
|
|
|
|
size_t num_usages = unique_uses.size();
|
|
|
|
code_lens.command->title = std::to_string(num_usages) + " ";
|
|
|
|
if (num_usages == 1)
|
|
|
|
code_lens.command->title += singular;
|
|
|
|
else
|
|
|
|
code_lens.command->title += plural;
|
|
|
|
|
|
|
|
if (exclude_loc || unique_uses.size() > 0)
|
2017-04-11 07:29:36 +00:00
|
|
|
common->result->push_back(code_lens);
|
2017-03-25 20:27:28 +00:00
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
lsWorkspaceEdit BuildWorkspaceEdit(QueryDatabase* db, WorkingFiles* working_files, const std::vector<QueryLocation>& locations, const std::string& new_text) {
|
2017-04-14 08:21:03 +00:00
|
|
|
std::unordered_map<QueryFileId, lsTextDocumentEdit> path_to_edit;
|
|
|
|
|
|
|
|
for (auto& location : locations) {
|
|
|
|
optional<lsLocation> ls_location = GetLsLocation(db, working_files, location);
|
|
|
|
if (!ls_location)
|
|
|
|
continue;
|
2017-04-16 08:09:12 +00:00
|
|
|
|
2017-04-14 08:21:03 +00:00
|
|
|
if (path_to_edit.find(location.path) == path_to_edit.end()) {
|
|
|
|
path_to_edit[location.path] = lsTextDocumentEdit();
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
const std::string& path = db->files[location.path.id].def.path;
|
2017-04-14 08:21:03 +00:00
|
|
|
path_to_edit[location.path].textDocument.uri = lsDocumentUri::FromPath(path);
|
2017-04-16 08:09:12 +00:00
|
|
|
|
2017-04-14 08:21:03 +00:00
|
|
|
WorkingFile* working_file = working_files->GetFileByFilename(path);
|
|
|
|
if (working_file)
|
|
|
|
path_to_edit[location.path].textDocument.version = working_file->version;
|
|
|
|
}
|
|
|
|
|
|
|
|
lsTextEdit edit;
|
|
|
|
edit.range = ls_location->range;
|
|
|
|
edit.newText = new_text;
|
|
|
|
path_to_edit[location.path].edits.push_back(edit);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
lsWorkspaceEdit edit;
|
|
|
|
for (const auto& changes : path_to_edit)
|
|
|
|
edit.documentChanges.push_back(changes.second);
|
|
|
|
return edit;
|
|
|
|
}
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
std::vector<SymbolRef> FindSymbolsAtLocation(WorkingFile* working_file, QueryFile* file, lsPosition position) {
|
2017-04-15 05:14:05 +00:00
|
|
|
std::vector<SymbolRef> symbols;
|
|
|
|
symbols.reserve(1);
|
|
|
|
|
|
|
|
int target_line = position.line + 1;
|
|
|
|
int target_column = position.character + 1;
|
2017-04-19 07:52:48 +00:00
|
|
|
if (working_file) {
|
|
|
|
optional<int> index_line = working_file->GetIndexLineFromBufferLine(target_line);
|
|
|
|
if (index_line)
|
|
|
|
target_line = *index_line;
|
|
|
|
}
|
|
|
|
|
2017-04-15 05:14:05 +00:00
|
|
|
for (const SymbolRef& ref : file->def.all_symbols) {
|
|
|
|
if (ref.loc.range.Contains(target_line, target_column))
|
|
|
|
symbols.push_back(ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
return symbols;
|
|
|
|
}
|
|
|
|
|
2017-04-09 02:31:00 +00:00
|
|
|
} // namespace
|
|
|
|
|
2017-04-09 19:38:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-15 05:14:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-15 05:14:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-09 19:38:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
struct Index_DoIndex {
|
2017-04-03 01:34:15 +00:00
|
|
|
enum class Type {
|
2017-04-19 07:32:59 +00:00
|
|
|
ImportAndUpdate,
|
|
|
|
ImportOnly,
|
2017-04-03 01:34:15 +00:00
|
|
|
Update
|
|
|
|
};
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
std::string path;
|
|
|
|
std::vector<std::string> args;
|
2017-04-03 01:34:15 +00:00
|
|
|
Type type;
|
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
Index_DoIndex(Type type) : type(type) {}
|
2017-03-25 19:18:25 +00:00
|
|
|
};
|
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
struct Index_DoIdMap {
|
|
|
|
std::unique_ptr<IndexedFile> previous;
|
|
|
|
std::unique_ptr<IndexedFile> current;
|
|
|
|
|
|
|
|
explicit Index_DoIdMap(std::unique_ptr<IndexedFile> previous,
|
|
|
|
std::unique_ptr<IndexedFile> current)
|
|
|
|
: previous(std::move(previous)),
|
|
|
|
current(std::move(current)) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Index_OnIdMapped {
|
|
|
|
std::unique_ptr<IndexedFile> previous_index;
|
|
|
|
std::unique_ptr<IndexedFile> current_index;
|
|
|
|
std::unique_ptr<IdMap> previous_id_map;
|
|
|
|
std::unique_ptr<IdMap> current_id_map;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Index_OnIndexed {
|
2017-03-25 19:18:25 +00:00
|
|
|
IndexUpdate update;
|
2017-04-08 06:45:28 +00:00
|
|
|
explicit Index_OnIndexed(IndexUpdate& update) : update(update) {}
|
2017-03-25 19:18:25 +00:00
|
|
|
};
|
|
|
|
|
2017-04-08 20:00:08 +00:00
|
|
|
using Index_DoIndexQueue = ThreadedQueue<Index_DoIndex>;
|
|
|
|
using Index_DoIdMapQueue = ThreadedQueue<Index_DoIdMap>;
|
|
|
|
using Index_OnIdMappedQueue = ThreadedQueue<Index_OnIdMapped>;
|
|
|
|
using Index_OnIndexedQueue = ThreadedQueue<Index_OnIndexed>;
|
2017-03-25 19:18:25 +00:00
|
|
|
|
|
|
|
void RegisterMessageTypes() {
|
2017-03-25 21:02:45 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_CancelRequest>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_InitializeRequest>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_InitializedNotification>();
|
2017-03-26 06:47:59 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDidOpen>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDidChange>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDidClose>();
|
2017-04-10 00:08:54 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDidSave>();
|
2017-04-14 08:21:03 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentRename>();
|
2017-03-26 06:47:59 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentComplete>();
|
2017-04-03 02:21:21 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDefinition>();
|
2017-04-14 06:43:50 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDocumentHighlight>();
|
2017-04-14 05:18:02 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentHover>();
|
2017-04-10 05:34:06 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentReferences>();
|
2017-03-25 21:02:45 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDocumentSymbol>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentCodeLens>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_CodeLensResolve>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_WorkspaceSymbol>();
|
2017-03-12 00:36:00 +00:00
|
|
|
}
|
2017-03-02 09:28:07 +00:00
|
|
|
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-18 02:59:48 +00:00
|
|
|
bool IndexMain_DoIndex(IndexerConfig* config,
|
|
|
|
FileConsumer::SharedState* file_consumer_shared,
|
2017-04-20 05:46:10 +00:00
|
|
|
Project* project,
|
2017-04-08 22:54:36 +00:00
|
|
|
Index_DoIndexQueue* queue_do_index,
|
|
|
|
Index_DoIdMapQueue* queue_do_id_map) {
|
2017-04-08 20:00:08 +00:00
|
|
|
optional<Index_DoIndex> index_request = queue_do_index->TryDequeue();
|
|
|
|
if (!index_request)
|
2017-04-08 06:45:28 +00:00
|
|
|
return false;
|
2017-04-03 01:34:15 +00:00
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
Timer time;
|
|
|
|
|
|
|
|
// If the index update is an import, then we will load the previous index
|
|
|
|
// into memory if we have a previous index. After that, we dispatch an
|
|
|
|
// update request to get the latest version.
|
2017-04-19 07:32:59 +00:00
|
|
|
if (index_request->type == Index_DoIndex::Type::ImportAndUpdate ||
|
|
|
|
index_request->type == Index_DoIndex::Type::ImportOnly) {
|
|
|
|
|
|
|
|
std::unique_ptr<IndexedFile> old_index = LoadCachedFile(config, index_request->path);
|
2017-04-11 05:26:27 +00:00
|
|
|
time.ResetAndPrint("Reading cached index from disk " + index_request->path);
|
2017-04-08 20:00:08 +00:00
|
|
|
|
|
|
|
// If import fails just do a standard update.
|
|
|
|
if (old_index) {
|
2017-04-11 05:26:27 +00:00
|
|
|
for (auto& dependency_path : old_index->dependencies) {
|
2017-04-19 07:32:59 +00:00
|
|
|
// TODO: These requests should go to the front of the queue.
|
2017-04-11 05:26:27 +00:00
|
|
|
std::cerr << "- Dispatching dependency import " << dependency_path << std::endl;
|
2017-04-19 07:32:59 +00:00
|
|
|
Index_DoIndex dep_index_request(Index_DoIndex::Type::ImportOnly);
|
2017-04-11 05:26:27 +00:00
|
|
|
dep_index_request.path = dependency_path;
|
|
|
|
dep_index_request.args = index_request->args;
|
2017-04-20 05:46:10 +00:00
|
|
|
queue_do_index->PriorityEnqueue(std::move(dep_index_request));
|
2017-04-11 05:26:27 +00:00
|
|
|
}
|
2017-04-20 05:46:10 +00:00
|
|
|
|
|
|
|
project->UpdateModificationTime(index_request->path, old_index->last_modification_time);
|
2017-04-11 05:26:27 +00:00
|
|
|
|
2017-04-08 20:00:08 +00:00
|
|
|
Index_DoIdMap response(nullptr, std::move(old_index));
|
|
|
|
queue_do_id_map->Enqueue(std::move(response));
|
|
|
|
|
2017-04-19 07:32:59 +00:00
|
|
|
// If we need a reparse, send the document to the back of the queue so it
|
|
|
|
// gets processed.
|
|
|
|
if (index_request->type == Index_DoIndex::Type::ImportAndUpdate) {
|
|
|
|
index_request->type = Index_DoIndex::Type::Update;
|
|
|
|
queue_do_index->Enqueue(std::move(*index_request));
|
|
|
|
}
|
2017-04-08 20:00:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
2017-04-08 06:45:28 +00:00
|
|
|
}
|
|
|
|
|
2017-04-08 20:00:08 +00:00
|
|
|
// Parse request and send a response.
|
2017-04-20 05:46:10 +00:00
|
|
|
|
|
|
|
// Skip index if file modification time didn't change.
|
|
|
|
optional<Project::Entry> entry = project->FindCompilationEntryForFile(index_request->path);
|
|
|
|
if (entry && entry->last_modification_time) {
|
|
|
|
int64_t modification_time = GetLastModificationTime(index_request->path);
|
|
|
|
if (modification_time == *entry->last_modification_time) {
|
|
|
|
time.ResetAndPrint("Skipping index update on " + index_request->path + " since file modification time has not changed");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 04:06:01 +00:00
|
|
|
std::vector<std::unique_ptr<IndexedFile>> indexes = Parse(config, file_consumer_shared, index_request->path, index_request->args);
|
2017-04-10 00:08:54 +00:00
|
|
|
time.ResetAndPrint("Parsing/indexing " + index_request->path);
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-04-08 20:00:08 +00:00
|
|
|
for (auto& current_index : indexes) {
|
2017-04-08 22:54:36 +00:00
|
|
|
std::cerr << "Got index for " << current_index->path << std::endl;
|
|
|
|
|
2017-04-19 07:32:59 +00:00
|
|
|
std::unique_ptr<IndexedFile> old_index = LoadCachedFile(config, current_index->path);
|
2017-04-08 20:00:08 +00:00
|
|
|
time.ResetAndPrint("Loading cached index");
|
|
|
|
|
|
|
|
// TODO: Cache to disk on a separate thread. Maybe we do the cache after we
|
|
|
|
// have imported the index (so the import pipeline has five stages instead
|
|
|
|
// of the current 4).
|
2017-03-31 05:30:50 +00:00
|
|
|
|
|
|
|
// Cache file so we can diff it later.
|
2017-04-19 07:32:59 +00:00
|
|
|
WriteToCache(config, current_index->path, *current_index);
|
2017-03-31 05:30:50 +00:00
|
|
|
time.ResetAndPrint("Cache index update to disk");
|
2017-04-08 20:00:08 +00:00
|
|
|
|
|
|
|
// Send response to create id map.
|
|
|
|
Index_DoIdMap response(std::move(old_index), std::move(current_index));
|
|
|
|
queue_do_id_map->Enqueue(std::move(response));
|
2017-03-14 08:33:39 +00:00
|
|
|
}
|
2017-04-08 06:45:28 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-04-11 05:26:27 +00:00
|
|
|
bool IndexMain_DoCreateIndexUpdate(
|
|
|
|
Index_OnIdMappedQueue* queue_on_id_mapped,
|
|
|
|
Index_OnIndexedQueue* queue_on_indexed) {
|
2017-04-08 20:00:08 +00:00
|
|
|
optional<Index_OnIdMapped> response = queue_on_id_mapped->TryDequeue();
|
|
|
|
if (!response)
|
2017-04-08 06:45:28 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
Timer time;
|
|
|
|
IndexUpdate update = IndexUpdate::CreateDelta(response->previous_id_map.get(), response->current_id_map.get(),
|
2017-04-08 20:00:08 +00:00
|
|
|
response->previous_index.get(), response->current_index.get());
|
2017-04-08 06:45:28 +00:00
|
|
|
time.ResetAndPrint("Creating delta IndexUpdate");
|
2017-04-08 20:00:08 +00:00
|
|
|
Index_OnIndexed reply(update);
|
2017-04-08 06:45:28 +00:00
|
|
|
queue_on_indexed->Enqueue(std::move(reply));
|
|
|
|
time.ResetAndPrint("Sending update to server");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-04-11 05:26:27 +00:00
|
|
|
void IndexJoinIndexUpdates(Index_OnIndexedQueue* queue_on_indexed) {
|
|
|
|
optional<Index_OnIndexed> root = queue_on_indexed->TryDequeue();
|
|
|
|
if (!root)
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
optional<Index_OnIndexed> to_join = queue_on_indexed->TryDequeue();
|
|
|
|
if (!to_join) {
|
|
|
|
queue_on_indexed->Enqueue(std::move(*root));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Timer time;
|
|
|
|
root->update.Merge(to_join->update);
|
|
|
|
time.ResetAndPrint("Indexer joining two querydb updates");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-08 22:54:36 +00:00
|
|
|
void IndexMain(
|
2017-04-18 02:59:48 +00:00
|
|
|
IndexerConfig* config,
|
2017-04-08 22:54:36 +00:00
|
|
|
FileConsumer::SharedState* file_consumer_shared,
|
2017-04-20 05:46:10 +00:00
|
|
|
Project* project,
|
2017-04-08 22:54:36 +00:00
|
|
|
Index_DoIndexQueue* queue_do_index,
|
2017-04-08 20:00:08 +00:00
|
|
|
Index_DoIdMapQueue* queue_do_id_map,
|
|
|
|
Index_OnIdMappedQueue* queue_on_id_mapped,
|
|
|
|
Index_OnIndexedQueue* queue_on_indexed) {
|
2017-04-08 22:54:36 +00:00
|
|
|
|
2017-04-19 00:05:14 +00:00
|
|
|
SetCurrentThreadName("indexer");
|
2017-04-08 06:45:28 +00:00
|
|
|
while (true) {
|
|
|
|
// TODO: process all off IndexMain_DoIndex before calling IndexMain_DoCreateIndexUpdate for
|
|
|
|
// better icache behavior. We need to have some threads spinning on both though
|
|
|
|
// otherwise memory usage will get bad.
|
|
|
|
|
2017-04-11 05:26:27 +00:00
|
|
|
int count = 0;
|
|
|
|
|
2017-04-19 07:32:59 +00:00
|
|
|
// We need to make sure to run both IndexMain_DoIndex and
|
|
|
|
// IndexMain_DoCreateIndexUpdate so we don't starve querydb from doing any
|
|
|
|
// work. Running both also lets the user query the partially constructed
|
|
|
|
// index.
|
2017-04-20 05:46:10 +00:00
|
|
|
bool did_index = IndexMain_DoIndex(config, file_consumer_shared, project, queue_do_index, queue_do_id_map);
|
2017-04-19 07:32:59 +00:00
|
|
|
bool did_create_update = IndexMain_DoCreateIndexUpdate(queue_on_id_mapped, queue_on_indexed);
|
|
|
|
if (!did_index && !did_create_update) {
|
2017-04-11 05:26:27 +00:00
|
|
|
|
|
|
|
//if (count++ > 2) {
|
|
|
|
// count = 0;
|
|
|
|
IndexJoinIndexUpdates(queue_on_indexed);
|
|
|
|
//}
|
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
// TODO: use CV to wakeup?
|
2017-04-11 05:26:27 +00:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(25));
|
2017-04-08 06:45:28 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-14 08:33:39 +00:00
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-04-08 07:52:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-04-08 07:52:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-08 07:52:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-16 07:36:49 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
void QueryDbMainLoop(
|
2017-04-18 02:59:48 +00:00
|
|
|
IndexerConfig* config,
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryDatabase* db,
|
2017-04-08 06:45:28 +00:00
|
|
|
Index_DoIndexQueue* queue_do_index,
|
|
|
|
Index_DoIdMapQueue* queue_do_id_map,
|
|
|
|
Index_OnIdMappedQueue* queue_on_id_mapped,
|
|
|
|
Index_OnIndexedQueue* queue_on_indexed,
|
2017-03-26 21:40:34 +00:00
|
|
|
Project* project,
|
|
|
|
WorkingFiles* working_files,
|
|
|
|
CompletionManager* completion_manager) {
|
2017-04-16 21:49:48 +00:00
|
|
|
IpcManager* ipc = IpcManager::instance();
|
2017-03-26 21:40:34 +00:00
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> messages = ipc->GetMessages(IpcManager::Destination::Server);
|
2017-03-05 19:48:05 +00:00
|
|
|
for (auto& message : messages) {
|
2017-04-16 21:49:48 +00:00
|
|
|
std::cerr << "[querydb] Processing message " << IpcIdToString(message->method_id) << std::endl;
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
switch (message->method_id) {
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::Quit: {
|
2017-04-16 22:48:54 +00:00
|
|
|
std::cerr << "[querydb] Got quit message (exiting)" << std::endl;
|
2017-03-25 19:18:25 +00:00
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::IsAlive: {
|
2017-04-16 21:49:48 +00:00
|
|
|
std::cerr << "[querydb] Sending IsAlive response to client" << std::endl;
|
|
|
|
ipc->SendMessage(IpcManager::Destination::Client, MakeUnique<Ipc_IsAlive>());
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-03-15 07:14:44 +00:00
|
|
|
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::OpenProject: {
|
2017-03-25 21:02:45 +00:00
|
|
|
Ipc_OpenProject* msg = static_cast<Ipc_OpenProject*>(message.get());
|
2017-03-25 19:18:25 +00:00
|
|
|
std::string path = msg->project_path;
|
|
|
|
|
2017-04-16 23:52:42 +00:00
|
|
|
std::vector<Matcher> whitelist;
|
|
|
|
std::cerr << "Using whitelist" << std::endl;
|
2017-04-18 02:59:48 +00:00
|
|
|
for (const std::string& entry : config->whitelist) {
|
2017-04-16 23:52:42 +00:00
|
|
|
std::cerr << " - " << entry << std::endl;
|
|
|
|
whitelist.push_back(Matcher(entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Matcher> blacklist;
|
|
|
|
std::cerr << "Using blacklist" << std::endl;
|
2017-04-18 02:59:48 +00:00
|
|
|
for (const std::string& entry : config->blacklist) {
|
2017-04-16 23:52:42 +00:00
|
|
|
std::cerr << " - " << entry << std::endl;
|
|
|
|
blacklist.push_back(Matcher(entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-31 04:21:52 +00:00
|
|
|
project->Load(path);
|
2017-03-28 01:04:37 +00:00
|
|
|
std::cerr << "Loaded compilation entries (" << project->entries.size() << " files)" << std::endl;
|
2017-03-28 01:47:12 +00:00
|
|
|
//for (int i = 0; i < 10; ++i)
|
|
|
|
//std::cerr << project->entries[i].filename << std::endl;
|
2017-03-26 21:40:34 +00:00
|
|
|
for (int i = 0; i < project->entries.size(); ++i) {
|
2017-04-20 05:01:36 +00:00
|
|
|
const Project::Entry& entry = project->entries[i];
|
2017-03-26 21:40:34 +00:00
|
|
|
std::string filepath = entry.filename;
|
|
|
|
|
2017-04-16 23:52:42 +00:00
|
|
|
|
|
|
|
const Matcher* is_bad = nullptr;
|
|
|
|
for (const Matcher& m : whitelist) {
|
|
|
|
if (!m.IsMatch(filepath)) {
|
|
|
|
is_bad = &m;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (is_bad) {
|
|
|
|
std::cerr << "[" << i << "/" << (project->entries.size() - 1) << "] Failed whitelist check \"" << is_bad->regex_string << "\"; skipping " << filepath << std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const Matcher& m : blacklist) {
|
|
|
|
if (m.IsMatch(filepath)) {
|
|
|
|
is_bad = &m;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (is_bad) {
|
|
|
|
std::cerr << "[" << i << "/" << (project->entries.size() - 1) << "] Failed blacklist check \"" << is_bad->regex_string << "\"; skipping " << filepath << std::endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-26 21:40:34 +00:00
|
|
|
std::cerr << "[" << i << "/" << (project->entries.size() - 1)
|
2017-03-25 19:18:25 +00:00
|
|
|
<< "] Dispatching index request for file " << filepath
|
|
|
|
<< std::endl;
|
|
|
|
|
2017-04-19 07:32:59 +00:00
|
|
|
Index_DoIndex request(Index_DoIndex::Type::ImportAndUpdate);
|
2017-04-08 20:00:08 +00:00
|
|
|
request.path = filepath;
|
|
|
|
request.args = entry.args;
|
2017-04-08 06:45:28 +00:00
|
|
|
queue_do_index->Enqueue(std::move(request));
|
2017-03-15 07:14:44 +00:00
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-03-15 07:14:44 +00:00
|
|
|
|
2017-03-26 06:47:59 +00:00
|
|
|
case IpcId::TextDocumentDidOpen: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentDidOpen*>(message.get());
|
2017-03-26 21:40:34 +00:00
|
|
|
//std::cerr << "Opening " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
working_files->OnOpen(msg->params);
|
2017-03-26 06:47:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case IpcId::TextDocumentDidChange: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentDidChange*>(message.get());
|
2017-03-26 21:40:34 +00:00
|
|
|
working_files->OnChange(msg->params);
|
2017-04-10 00:08:54 +00:00
|
|
|
//std::cerr << "Changing " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case IpcId::TextDocumentDidClose: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentDidClose*>(message.get());
|
2017-04-16 21:49:48 +00:00
|
|
|
//std::cerr << "Closing " << msg->params.textDocument.uri.GetPath() << std::endl;
|
2017-04-10 00:08:54 +00:00
|
|
|
working_files->OnClose(msg->params);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-09 19:38:52 +00:00
|
|
|
|
2017-04-10 00:08:54 +00:00
|
|
|
case IpcId::TextDocumentDidSave: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentDidSave*>(message.get());
|
2017-04-09 19:38:52 +00:00
|
|
|
|
2017-04-10 00:17:49 +00:00
|
|
|
WorkingFile* working_file = working_files->GetFileByFilename(msg->params.textDocument.uri.GetPath());
|
2017-04-16 08:09:12 +00:00
|
|
|
if (working_file) {
|
|
|
|
// TODO: Update working file indexed content when we actually get the
|
|
|
|
// index update.
|
|
|
|
working_file->SetIndexContent(working_file->buffer_content);
|
|
|
|
}
|
2017-04-10 00:17:49 +00:00
|
|
|
|
2017-04-10 00:08:54 +00:00
|
|
|
// Send an index update request.
|
2017-04-09 19:38:52 +00:00
|
|
|
Index_DoIndex request(Index_DoIndex::Type::Update);
|
2017-04-20 05:01:36 +00:00
|
|
|
optional<Project::Entry> entry = project->FindCompilationEntryForFile(msg->params.textDocument.uri.GetPath());
|
2017-04-09 19:38:52 +00:00
|
|
|
request.path = msg->params.textDocument.uri.GetPath();
|
|
|
|
if (entry)
|
|
|
|
request.args = entry->args;
|
|
|
|
queue_do_index->Enqueue(std::move(request));
|
2017-03-26 06:47:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-14 08:21:03 +00:00
|
|
|
case IpcId::TextDocumentRename: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentRename*>(message.get());
|
|
|
|
|
|
|
|
QueryFileId file_id;
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = FindFile(db, msg->params.textDocument.uri.GetPath(), &file_id);
|
2017-04-14 08:21:03 +00:00
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
2017-04-19 07:52:48 +00:00
|
|
|
WorkingFile* working_file = working_files->GetFileByFilename(file->def.path);
|
|
|
|
|
2017-04-14 08:21:03 +00:00
|
|
|
Out_TextDocumentRename response;
|
|
|
|
response.id = msg->id;
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
for (const SymbolRef& ref : FindSymbolsAtLocation(working_file, file, msg->params.position)) {
|
2017-04-15 05:14:05 +00:00
|
|
|
// Found symbol. Return references to rename.
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> uses = GetUsesOfSymbol(db, ref.idx);
|
2017-04-15 05:14:05 +00:00
|
|
|
response.result = BuildWorkspaceEdit(db, working_files, uses, msg->params.newName);
|
|
|
|
break;
|
2017-04-14 08:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
response.Write(std::cerr);
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-04-14 08:21:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-26 06:47:59 +00:00
|
|
|
case IpcId::TextDocumentCompletion: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentComplete*>(message.get());
|
2017-04-17 01:22:59 +00:00
|
|
|
lsTextDocumentPositionParams params = msg->params;
|
|
|
|
|
|
|
|
CompletionManager::OnComplete callback = std::bind([](BaseIpcMessage* message, const NonElidedVector<lsCompletionItem>& results) {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentComplete*>(message);
|
|
|
|
auto ipc = IpcManager::instance();
|
|
|
|
|
|
|
|
Out_TextDocumentComplete response;
|
|
|
|
response.id = msg->id;
|
|
|
|
response.result.isIncomplete = false;
|
|
|
|
response.result.items = results;
|
|
|
|
|
|
|
|
Timer timer;
|
|
|
|
ipc->SendOutMessageToClient(response);
|
|
|
|
timer.ResetAndPrint("Writing completion results");
|
|
|
|
|
|
|
|
delete message;
|
|
|
|
}, message.release(), std::placeholders::_1);
|
|
|
|
|
|
|
|
completion_manager->CodeComplete(params, std::move(callback));
|
2017-03-26 06:47:59 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-03 02:21:21 +00:00
|
|
|
case IpcId::TextDocumentDefinition: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentDefinition*>(message.get());
|
|
|
|
|
2017-04-11 05:43:01 +00:00
|
|
|
QueryFileId file_id;
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = FindFile(db, msg->params.textDocument.uri.GetPath(), &file_id);
|
2017-04-03 02:21:21 +00:00
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
2017-04-19 07:52:48 +00:00
|
|
|
WorkingFile* working_file = working_files->GetFileByFilename(file->def.path);
|
2017-04-03 02:21:21 +00:00
|
|
|
|
|
|
|
Out_TextDocumentDefinition response;
|
|
|
|
response.id = msg->id;
|
|
|
|
|
|
|
|
int target_line = msg->params.position.line + 1;
|
|
|
|
int target_column = msg->params.position.character + 1;
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
for (const SymbolRef& ref : FindSymbolsAtLocation(working_file, file, msg->params.position)) {
|
2017-04-15 05:14:05 +00:00
|
|
|
// Found symbol. Return definition.
|
|
|
|
|
|
|
|
// Special cases which are handled:
|
|
|
|
// - symbol has declaration but no definition (ie, pure virtual)
|
|
|
|
// - start at spelling but end at extent for better mouse tooltip
|
|
|
|
// - goto declaration while in definition of recursive type
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> def_loc = GetDefinitionSpellingOfSymbol(db, ref.idx);
|
2017-04-15 05:14:05 +00:00
|
|
|
|
|
|
|
// We use spelling start and extent end because this causes vscode to
|
|
|
|
// highlight the entire definition when previewing / hoving with the
|
|
|
|
// mouse.
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> def_extent = GetDefinitionExtentOfSymbol(db, ref.idx);
|
2017-04-15 05:14:05 +00:00
|
|
|
if (def_loc && def_extent)
|
|
|
|
def_loc->range.end = def_extent->range.end;
|
|
|
|
|
|
|
|
// If the cursor is currently at or in the definition we should goto
|
|
|
|
// the declaration if possible. We also want to use declarations if
|
|
|
|
// we're pointing to, ie, a pure virtual function which has no
|
|
|
|
// definition.
|
|
|
|
if (!def_loc || (def_loc->path == file_id &&
|
|
|
|
def_loc->range.Contains(target_line, target_column))) {
|
|
|
|
// Goto declaration.
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> declarations = GetDeclarationsOfSymbolForGotoDefinition(db, ref.idx);
|
2017-04-15 05:14:05 +00:00
|
|
|
for (auto declaration : declarations) {
|
|
|
|
optional<lsLocation> ls_declaration = GetLsLocation(db, working_files, declaration);
|
|
|
|
if (ls_declaration)
|
|
|
|
response.result.push_back(*ls_declaration);
|
2017-04-11 06:02:53 +00:00
|
|
|
}
|
2017-04-15 05:14:05 +00:00
|
|
|
// We found some declarations. Break so we don't add the definition location.
|
2017-04-13 08:21:24 +00:00
|
|
|
if (!response.result.empty())
|
|
|
|
break;
|
2017-04-03 02:21:21 +00:00
|
|
|
}
|
2017-04-15 05:14:05 +00:00
|
|
|
|
|
|
|
if (def_loc)
|
|
|
|
PushBack(&response.result, GetLsLocation(db, working_files, *def_loc));
|
|
|
|
|
|
|
|
if (!response.result.empty())
|
|
|
|
break;
|
2017-04-03 02:21:21 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-04-03 02:21:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-14 06:43:50 +00:00
|
|
|
case IpcId::TextDocumentDocumentHighlight: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentDocumentHighlight*>(message.get());
|
|
|
|
|
|
|
|
QueryFileId file_id;
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = FindFile(db, msg->params.textDocument.uri.GetPath(), &file_id);
|
2017-04-14 06:43:50 +00:00
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
2017-04-19 07:52:48 +00:00
|
|
|
WorkingFile* working_file = working_files->GetFileByFilename(file->def.path);
|
|
|
|
|
2017-04-14 06:43:50 +00:00
|
|
|
Out_TextDocumentDocumentHighlight response;
|
|
|
|
response.id = msg->id;
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
for (const SymbolRef& ref : FindSymbolsAtLocation(working_file, file, msg->params.position)) {
|
2017-04-15 05:14:05 +00:00
|
|
|
// Found symbol. Return references to highlight.
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> uses = GetUsesOfSymbol(db, ref.idx);
|
2017-04-15 05:14:05 +00:00
|
|
|
response.result.reserve(uses.size());
|
2017-04-15 05:41:35 +00:00
|
|
|
for (const QueryLocation& use : uses) {
|
2017-04-15 05:14:05 +00:00
|
|
|
if (use.path != file_id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
optional<lsLocation> ls_location = GetLsLocation(db, working_files, use);
|
|
|
|
if (!ls_location)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
lsDocumentHighlight highlight;
|
|
|
|
highlight.kind = lsDocumentHighlightKind::Text;
|
|
|
|
highlight.range = ls_location->range;
|
|
|
|
response.result.push_back(highlight);
|
2017-04-14 06:43:50 +00:00
|
|
|
}
|
2017-04-15 05:14:05 +00:00
|
|
|
break;
|
2017-04-14 06:43:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-04-14 06:43:50 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-14 05:18:02 +00:00
|
|
|
case IpcId::TextDocumentHover: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentHover*>(message.get());
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = FindFile(db, msg->params.textDocument.uri.GetPath());
|
2017-04-14 05:18:02 +00:00
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
2017-04-19 07:52:48 +00:00
|
|
|
WorkingFile* working_file = working_files->GetFileByFilename(file->def.path);
|
|
|
|
|
2017-04-14 05:18:02 +00:00
|
|
|
Out_TextDocumentHover response;
|
|
|
|
response.id = msg->id;
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
for (const SymbolRef& ref : FindSymbolsAtLocation(working_file, file, msg->params.position)) {
|
2017-04-15 05:14:05 +00:00
|
|
|
// Found symbol. Return hover.
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<lsRange> ls_range = GetLsRange(working_files->GetFileByFilename(file->def.path), ref.loc.range);
|
2017-04-15 05:14:05 +00:00
|
|
|
if (!ls_range)
|
|
|
|
continue;
|
2017-04-14 05:18:02 +00:00
|
|
|
|
2017-04-15 05:14:05 +00:00
|
|
|
response.result.contents = GetHoverForSymbol(db, ref.idx);
|
|
|
|
response.result.range = *ls_range;
|
|
|
|
break;
|
2017-04-14 05:18:02 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-04-14 05:18:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-10 05:34:06 +00:00
|
|
|
case IpcId::TextDocumentReferences: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentReferences*>(message.get());
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = FindFile(db, msg->params.textDocument.uri.GetPath());
|
2017-04-10 05:34:06 +00:00
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
2017-04-19 07:52:48 +00:00
|
|
|
WorkingFile* working_file = working_files->GetFileByFilename(file->def.path);
|
2017-04-10 05:34:06 +00:00
|
|
|
|
|
|
|
Out_TextDocumentReferences response;
|
|
|
|
response.id = msg->id;
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
for (const SymbolRef& ref : FindSymbolsAtLocation(working_file, file, msg->params.position)) {
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> excluded_declaration;
|
2017-04-15 05:14:05 +00:00
|
|
|
if (!msg->params.context.includeDeclaration) {
|
|
|
|
std::cerr << "Excluding declaration in references" << std::endl;
|
|
|
|
excluded_declaration = GetDefinitionSpellingOfSymbol(db, ref.idx);
|
|
|
|
}
|
2017-04-10 05:34:06 +00:00
|
|
|
|
2017-04-15 05:14:05 +00:00
|
|
|
// Found symbol. Return references.
|
2017-04-15 05:41:35 +00:00
|
|
|
std::vector<QueryLocation> uses = GetUsesOfSymbol(db, ref.idx);
|
2017-04-15 05:14:05 +00:00
|
|
|
response.result.reserve(uses.size());
|
2017-04-15 05:41:35 +00:00
|
|
|
for (const QueryLocation& use : uses) {
|
2017-04-15 05:14:05 +00:00
|
|
|
if (excluded_declaration.has_value() && use == *excluded_declaration)
|
|
|
|
continue;
|
2017-04-10 05:34:06 +00:00
|
|
|
|
2017-04-15 05:14:05 +00:00
|
|
|
optional<lsLocation> ls_location = GetLsLocation(db, working_files, use);
|
|
|
|
if (ls_location)
|
|
|
|
response.result.push_back(*ls_location);
|
2017-04-10 05:34:06 +00:00
|
|
|
}
|
2017-04-15 05:14:05 +00:00
|
|
|
break;
|
2017-04-10 05:34:06 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-04-10 05:34:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::TextDocumentDocumentSymbol: {
|
2017-03-25 21:02:45 +00:00
|
|
|
auto msg = static_cast<Ipc_TextDocumentDocumentSymbol*>(message.get());
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-03-25 21:02:45 +00:00
|
|
|
Out_TextDocumentDocumentSymbol response;
|
2017-03-25 19:18:25 +00:00
|
|
|
response.id = msg->id;
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = FindFile(db, msg->params.textDocument.uri.GetPath());
|
2017-03-29 06:33:38 +00:00
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-04-07 05:42:57 +00:00
|
|
|
std::cerr << "File outline size is " << file->def.outline.size() << std::endl;
|
2017-04-08 07:11:57 +00:00
|
|
|
for (SymbolRef ref : file->def.outline) {
|
2017-04-19 06:56:37 +00:00
|
|
|
optional<lsSymbolInformation> info = GetSymbolInfo(db, working_files, ref.idx);
|
|
|
|
if (!info)
|
|
|
|
continue;
|
|
|
|
|
2017-04-09 22:16:06 +00:00
|
|
|
optional<lsLocation> location = GetLsLocation(db, working_files, ref.loc);
|
|
|
|
if (!location)
|
|
|
|
continue;
|
2017-04-19 06:56:37 +00:00
|
|
|
info->location = *location;
|
|
|
|
response.result.push_back(*info);
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::TextDocumentCodeLens: {
|
2017-03-25 21:02:45 +00:00
|
|
|
auto msg = static_cast<Ipc_TextDocumentCodeLens*>(message.get());
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-03-25 21:02:45 +00:00
|
|
|
Out_TextDocumentCodeLens response;
|
2017-03-25 19:18:25 +00:00
|
|
|
response.id = msg->id;
|
|
|
|
|
|
|
|
lsDocumentUri file_as_uri = msg->params.textDocument.uri;
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFile* file = FindFile(db, file_as_uri.GetPath());
|
2017-03-29 06:33:38 +00:00
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
2017-04-11 07:29:36 +00:00
|
|
|
CommonCodeLensParams common;
|
|
|
|
common.result = &response.result;
|
|
|
|
common.db = db;
|
|
|
|
common.working_files = working_files;
|
2017-04-15 05:41:35 +00:00
|
|
|
common.working_file = working_files->GetFileByFilename(file->def.path);
|
2017-03-29 06:33:38 +00:00
|
|
|
|
2017-04-08 07:11:57 +00:00
|
|
|
for (SymbolRef ref : file->def.outline) {
|
2017-04-03 01:34:15 +00:00
|
|
|
// NOTE: We OffsetColumn so that the code lens always show up in a
|
|
|
|
// predictable order. Otherwise, the client may randomize it.
|
|
|
|
|
2017-04-08 07:11:57 +00:00
|
|
|
SymbolIdx symbol = ref.idx;
|
2017-03-29 06:33:38 +00:00
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type: {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryType& type = db->types[symbol.idx];
|
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(0), type.uses, "ref", "refs");
|
2017-04-19 05:28:33 +00:00
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(1), ToQueryLocation(db, type.derived), "derived", "derived");
|
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(2), ToQueryLocation(db, type.instantiations), "instantiation", "instantiations");
|
2017-03-29 06:33:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryFunc& func = db->funcs[symbol.idx];
|
2017-04-11 07:29:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
std::vector<QueryFuncRef> base_callers = GetCallersForAllBaseFunctions(db, func);
|
|
|
|
std::vector<QueryFuncRef> derived_callers = GetCallersForAllDerivedFunctions(db, func);
|
|
|
|
if (base_callers.empty() && derived_callers.empty()) {
|
|
|
|
// set exclude_loc to true to force the code lens to show up
|
2017-04-15 05:41:35 +00:00
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(offset++), ToQueryLocation(db, func.callers), "call", "calls", true /*exclude_loc*/);
|
2017-04-11 07:29:36 +00:00
|
|
|
}
|
|
|
|
else {
|
2017-04-15 05:41:35 +00:00
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(offset++), ToQueryLocation(db, func.callers), "direct call", "direct calls");
|
2017-04-11 07:29:36 +00:00
|
|
|
if (!base_callers.empty())
|
2017-04-15 05:41:35 +00:00
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(offset++), ToQueryLocation(db, base_callers), "base call", "base calls");
|
2017-04-11 07:29:36 +00:00
|
|
|
if (!derived_callers.empty())
|
2017-04-15 05:41:35 +00:00
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(offset++), ToQueryLocation(db, derived_callers), "derived call", "derived calls");
|
2017-04-11 07:29:36 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(offset++), ToQueryLocation(db, func.derived), "derived", "derived");
|
2017-04-11 08:43:35 +00:00
|
|
|
|
|
|
|
// "Base"
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> base_loc = GetBaseDefinitionOrDeclarationSpelling(db, func);
|
2017-04-12 06:30:31 +00:00
|
|
|
if (base_loc) {
|
|
|
|
optional<lsLocation> ls_base = GetLsLocation(db, working_files, *base_loc);
|
2017-04-11 08:43:35 +00:00
|
|
|
if (ls_base) {
|
|
|
|
optional<lsRange> range = GetLsRange(common.working_file, ref.loc.range);
|
|
|
|
if (range) {
|
|
|
|
TCodeLens code_lens;
|
|
|
|
code_lens.range = *range;
|
|
|
|
code_lens.range.start.character += offset++;
|
|
|
|
code_lens.command = lsCommand<lsCodeLensCommandArguments>();
|
|
|
|
code_lens.command->title = "Base";
|
|
|
|
code_lens.command->command = "superindex.goto";
|
|
|
|
code_lens.command->arguments.uri = ls_base->uri;
|
|
|
|
code_lens.command->arguments.position = ls_base->range.start;
|
|
|
|
response.result.push_back(code_lens);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-29 06:33:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryVar& var = db->vars[symbol.idx];
|
2017-04-19 05:28:33 +00:00
|
|
|
AddCodeLens(&common, ref.loc.OffsetStartColumn(0), var.uses, "ref", "refs", true /*exclude_loc*/);
|
2017-03-29 06:33:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-29 06:33:38 +00:00
|
|
|
};
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::WorkspaceSymbol: {
|
2017-03-25 21:02:45 +00:00
|
|
|
auto msg = static_cast<Ipc_WorkspaceSymbol*>(message.get());
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-03-25 21:02:45 +00:00
|
|
|
Out_WorkspaceSymbol response;
|
2017-03-25 19:18:25 +00:00
|
|
|
response.id = msg->id;
|
|
|
|
|
|
|
|
|
2017-04-15 04:58:07 +00:00
|
|
|
std::cerr << "- Considering " << db->detailed_names.size()
|
2017-04-14 22:30:33 +00:00
|
|
|
<< " candidates for query " << msg->params.query << std::endl;
|
2017-03-25 19:18:25 +00:00
|
|
|
|
|
|
|
std::string query = msg->params.query;
|
2017-04-15 04:58:07 +00:00
|
|
|
for (int i = 0; i < db->detailed_names.size(); ++i) {
|
2017-04-18 03:54:20 +00:00
|
|
|
if (response.result.size() >= config->maxWorkspaceSearchResults) {
|
|
|
|
std::cerr << "Query exceeded maximum number of responses (" << config->maxWorkspaceSearchResults << "), output may not contain all results" << std::endl;
|
2017-04-07 06:38:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-15 04:58:07 +00:00
|
|
|
if (db->detailed_names[i].find(query) != std::string::npos) {
|
2017-04-19 06:56:37 +00:00
|
|
|
optional<lsSymbolInformation> info = GetSymbolInfo(db, working_files, db->symbols[i]);
|
|
|
|
if (!info)
|
|
|
|
continue;
|
|
|
|
|
2017-04-15 05:41:35 +00:00
|
|
|
optional<QueryLocation> location = GetDefinitionExtentOfSymbol(db, db->symbols[i]);
|
2017-04-12 07:19:49 +00:00
|
|
|
if (!location) {
|
|
|
|
auto decls = GetDeclarationsOfSymbolForGotoDefinition(db, db->symbols[i]);
|
|
|
|
if (decls.empty())
|
|
|
|
continue;
|
|
|
|
location = decls[0];
|
|
|
|
}
|
|
|
|
|
2017-04-09 22:16:06 +00:00
|
|
|
optional<lsLocation> ls_location = GetLsLocation(db, working_files, *location);
|
|
|
|
if (!ls_location)
|
|
|
|
continue;
|
2017-04-19 06:56:37 +00:00
|
|
|
info->location = *ls_location;
|
|
|
|
response.result.push_back(*info);
|
2017-04-09 22:16:06 +00:00
|
|
|
}
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-04-15 04:53:10 +00:00
|
|
|
std::cerr << "- Found " << response.result.size() << " results for query " << query << std::endl;
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendOutMessageToClient(response);
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: {
|
2017-04-16 21:49:48 +00:00
|
|
|
std::cerr << "[querydb] Unhandled IPC message " << IpcIdToString(message->method_id) << std::endl;
|
2017-03-25 19:18:25 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2017-03-15 04:59:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
// TODO: consider rate-limiting and checking for IPC messages so we don't block
|
|
|
|
// requests / we can serve partial requests.
|
2017-04-08 06:45:28 +00:00
|
|
|
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
while (true) {
|
2017-04-08 20:00:08 +00:00
|
|
|
optional<Index_DoIdMap> request = queue_do_id_map->TryDequeue();
|
|
|
|
if (!request)
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
2017-04-08 06:45:28 +00:00
|
|
|
|
2017-04-08 20:00:08 +00:00
|
|
|
|
|
|
|
Index_OnIdMapped response;
|
2017-04-08 06:45:28 +00:00
|
|
|
Timer time;
|
|
|
|
if (request->previous) {
|
2017-04-08 20:00:08 +00:00
|
|
|
response.previous_id_map = MakeUnique<IdMap>(db, request->previous->id_cache);
|
|
|
|
response.previous_index = std::move(request->previous);
|
2017-04-08 06:45:28 +00:00
|
|
|
}
|
2017-04-08 20:00:08 +00:00
|
|
|
|
|
|
|
assert(request->current);
|
|
|
|
response.current_id_map = MakeUnique<IdMap>(db, request->current->id_cache);
|
2017-04-08 22:54:36 +00:00
|
|
|
time.ResetAndPrint("Create IdMap " + request->current->path);
|
2017-04-08 20:00:08 +00:00
|
|
|
response.current_index = std::move(request->current);
|
2017-04-08 06:45:28 +00:00
|
|
|
|
|
|
|
queue_on_id_mapped->Enqueue(std::move(response));
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true) {
|
2017-04-08 20:00:08 +00:00
|
|
|
optional<Index_OnIndexed> response = queue_on_indexed->TryDequeue();
|
|
|
|
if (!response)
|
2017-04-08 06:45:28 +00:00
|
|
|
break;
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
Timer time;
|
|
|
|
db->ApplyIndexUpdate(&response->update);
|
2017-03-31 04:13:58 +00:00
|
|
|
time.ResetAndPrint("Applying index update");
|
2017-03-05 02:16:23 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-04-18 02:59:48 +00:00
|
|
|
void QueryDbMain(IndexerConfig* config) {
|
2017-04-10 00:08:54 +00:00
|
|
|
//std::cerr << "Running QueryDb" << std::endl;
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
// Create queues.
|
2017-04-08 06:45:28 +00:00
|
|
|
Index_DoIndexQueue queue_do_index;
|
|
|
|
Index_DoIdMapQueue queue_do_id_map;
|
|
|
|
Index_OnIdMappedQueue queue_on_id_mapped;
|
|
|
|
Index_OnIndexedQueue queue_on_indexed;
|
|
|
|
|
2017-03-26 21:40:34 +00:00
|
|
|
Project project;
|
|
|
|
WorkingFiles working_files;
|
2017-04-18 04:06:01 +00:00
|
|
|
CompletionManager completion_manager(config, &project, &working_files);
|
2017-04-08 22:54:36 +00:00
|
|
|
FileConsumer::SharedState file_consumer_shared;
|
2017-03-25 19:18:25 +00:00
|
|
|
|
|
|
|
// Start indexer threads.
|
2017-04-18 03:23:52 +00:00
|
|
|
std::cerr << "[querydb] Starting " << config->indexerCount << " indexers" << std::endl;
|
|
|
|
for (int i = 0; i < config->indexerCount; ++i) {
|
2017-03-25 19:18:25 +00:00
|
|
|
new std::thread([&]() {
|
2017-04-20 05:46:10 +00:00
|
|
|
IndexMain(config, &file_consumer_shared, &project, &queue_do_index, &queue_do_id_map, &queue_on_id_mapped, &queue_on_indexed);
|
2017-03-25 19:18:25 +00:00
|
|
|
});
|
2017-03-15 04:59:05 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
// Run query db main loop.
|
2017-04-19 00:05:14 +00:00
|
|
|
SetCurrentThreadName("querydb");
|
2017-04-15 05:41:35 +00:00
|
|
|
QueryDatabase db;
|
2017-03-15 04:59:05 +00:00
|
|
|
while (true) {
|
2017-04-18 02:59:48 +00:00
|
|
|
QueryDbMainLoop(config, &db, &queue_do_index, &queue_do_id_map, &queue_on_id_mapped, &queue_on_indexed, &project, &working_files, &completion_manager);
|
2017-03-15 04:59:05 +00:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(10));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-05 19:48:05 +00:00
|
|
|
// TODO: global lock on stderr output.
|
|
|
|
|
|
|
|
// Separate thread whose only job is to read from stdin and
|
|
|
|
// dispatch read commands to the actual indexer program. This
|
|
|
|
// cannot be done on the main thread because reading from std::cin
|
|
|
|
// blocks.
|
|
|
|
//
|
|
|
|
// |ipc| is connected to a server.
|
2017-04-18 02:59:48 +00:00
|
|
|
void LanguageServerStdinLoop(IndexerConfig* config) {
|
2017-04-16 21:49:48 +00:00
|
|
|
IpcManager* ipc = IpcManager::instance();
|
|
|
|
|
2017-04-19 00:05:14 +00:00
|
|
|
SetCurrentThreadName("stdin");
|
2017-03-05 02:16:23 +00:00
|
|
|
while (true) {
|
2017-03-25 21:57:06 +00:00
|
|
|
std::unique_ptr<BaseIpcMessage> message = MessageRegistry::instance()->ReadMessageFromStdin();
|
2017-03-05 02:16:23 +00:00
|
|
|
|
|
|
|
// Message parsing can fail if we don't recognize the method.
|
|
|
|
if (!message)
|
|
|
|
continue;
|
|
|
|
|
2017-04-16 23:52:42 +00:00
|
|
|
std::cerr << "[stdin] Got message \"" << IpcIdToString(message->method_id) << '"' << std::endl;
|
2017-03-05 02:16:23 +00:00
|
|
|
switch (message->method_id) {
|
2017-03-25 19:18:25 +00:00
|
|
|
// TODO: For simplicitly lets just proxy the initialize request like
|
|
|
|
// all other requests so that stdin loop thread becomes super simple.
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::Initialize: {
|
2017-03-25 21:02:45 +00:00
|
|
|
auto request = static_cast<Ipc_InitializeRequest*>(message.get());
|
2017-03-25 19:18:25 +00:00
|
|
|
if (request->params.rootUri) {
|
|
|
|
std::string project_path = request->params.rootUri->GetPath();
|
2017-04-16 23:52:42 +00:00
|
|
|
std::cerr << "[stdin] Initialize in directory " << project_path
|
2017-03-25 19:18:25 +00:00
|
|
|
<< " with uri " << request->params.rootUri->raw_uri
|
|
|
|
<< std::endl;
|
2017-04-16 21:49:48 +00:00
|
|
|
auto open_project = MakeUnique<Ipc_OpenProject>();
|
|
|
|
open_project->project_path = project_path;
|
2017-04-18 02:59:48 +00:00
|
|
|
|
|
|
|
if (!request->params.initializationOptions) {
|
|
|
|
std::cerr << "Initialization parameters (particularily cacheDirectory) are required" << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
*config = *request->params.initializationOptions;
|
|
|
|
|
|
|
|
// Make sure cache directory is valid.
|
|
|
|
if (config->cacheDirectory.empty()) {
|
|
|
|
std::cerr << "No cache directory" << std::endl;
|
|
|
|
exit(1);
|
2017-04-16 23:52:42 +00:00
|
|
|
}
|
2017-04-18 02:59:48 +00:00
|
|
|
config->cacheDirectory = NormalizePath(config->cacheDirectory);
|
|
|
|
if (config->cacheDirectory[config->cacheDirectory.size() - 1] != '/')
|
|
|
|
config->cacheDirectory += '/';
|
|
|
|
MakeDirectoryRecursive(config->cacheDirectory);
|
|
|
|
|
2017-04-18 03:23:52 +00:00
|
|
|
// Startup querydb now that we have initialization state.
|
|
|
|
// TODO: Pass init data to out of process querydb.
|
|
|
|
bool has_querydb = IsQueryDbProcessRunningOutOfProcess();
|
|
|
|
if (!has_querydb) {
|
|
|
|
new std::thread([&config]() {
|
|
|
|
QueryDbMain(config);
|
|
|
|
});
|
|
|
|
}
|
2017-04-18 02:59:48 +00:00
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendMessage(IpcManager::Destination::Server, std::move(open_project));
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-03-26 06:47:59 +00:00
|
|
|
// TODO: query request->params.capabilities.textDocument and support only things
|
|
|
|
// the client supports.
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
auto response = Out_InitializeResponse();
|
|
|
|
response.id = request->id;
|
2017-03-26 06:47:59 +00:00
|
|
|
|
|
|
|
//response.result.capabilities.textDocumentSync = lsTextDocumentSyncOptions();
|
|
|
|
//response.result.capabilities.textDocumentSync->openClose = true;
|
|
|
|
//response.result.capabilities.textDocumentSync->change = lsTextDocumentSyncKind::Full;
|
|
|
|
//response.result.capabilities.textDocumentSync->willSave = true;
|
|
|
|
//response.result.capabilities.textDocumentSync->willSaveWaitUntil = true;
|
2017-04-10 00:08:54 +00:00
|
|
|
response.result.capabilities.textDocumentSync = lsTextDocumentSyncKind::Incremental;
|
2017-03-26 06:47:59 +00:00
|
|
|
|
2017-04-14 08:21:03 +00:00
|
|
|
response.result.capabilities.renameProvider = true;
|
|
|
|
|
2017-03-26 06:47:59 +00:00
|
|
|
response.result.capabilities.completionProvider = lsCompletionOptions();
|
|
|
|
response.result.capabilities.completionProvider->resolveProvider = false;
|
2017-03-29 06:33:38 +00:00
|
|
|
response.result.capabilities.completionProvider->triggerCharacters = { ".", "::", "->" };
|
2017-03-26 06:47:59 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
response.result.capabilities.codeLensProvider = lsCodeLensOptions();
|
|
|
|
response.result.capabilities.codeLensProvider->resolveProvider = false;
|
2017-03-26 06:47:59 +00:00
|
|
|
|
2017-04-03 02:21:21 +00:00
|
|
|
response.result.capabilities.definitionProvider = true;
|
2017-04-14 06:43:50 +00:00
|
|
|
response.result.capabilities.documentHighlightProvider = true;
|
2017-04-14 05:18:02 +00:00
|
|
|
response.result.capabilities.hoverProvider = true;
|
2017-04-10 05:34:06 +00:00
|
|
|
response.result.capabilities.referencesProvider = true;
|
2017-04-14 05:18:02 +00:00
|
|
|
|
2017-03-26 06:47:59 +00:00
|
|
|
response.result.capabilities.documentSymbolProvider = true;
|
2017-03-25 19:18:25 +00:00
|
|
|
response.result.capabilities.workspaceSymbolProvider = true;
|
2017-03-26 06:47:59 +00:00
|
|
|
|
2017-04-10 00:08:54 +00:00
|
|
|
//response.Write(std::cerr);
|
2017-03-25 21:45:49 +00:00
|
|
|
response.Write(std::cout);
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-03-15 07:14:44 +00:00
|
|
|
|
2017-03-26 06:47:59 +00:00
|
|
|
case IpcId::Initialized: {
|
|
|
|
// TODO: don't send output until we get this notification
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IpcId::CancelRequest: {
|
|
|
|
// TODO: support cancellation
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-26 21:40:34 +00:00
|
|
|
case IpcId::TextDocumentDidOpen:
|
|
|
|
case IpcId::TextDocumentDidChange:
|
2017-04-10 00:08:54 +00:00
|
|
|
case IpcId::TextDocumentDidClose:
|
|
|
|
case IpcId::TextDocumentDidSave:
|
2017-04-14 08:21:03 +00:00
|
|
|
case IpcId::TextDocumentRename:
|
2017-03-26 06:47:59 +00:00
|
|
|
case IpcId::TextDocumentCompletion:
|
2017-04-03 02:21:21 +00:00
|
|
|
case IpcId::TextDocumentDefinition:
|
2017-04-14 06:43:50 +00:00
|
|
|
case IpcId::TextDocumentDocumentHighlight:
|
2017-04-14 05:18:02 +00:00
|
|
|
case IpcId::TextDocumentHover:
|
2017-04-10 05:34:06 +00:00
|
|
|
case IpcId::TextDocumentReferences:
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::TextDocumentDocumentSymbol:
|
|
|
|
case IpcId::TextDocumentCodeLens:
|
2017-04-10 00:08:54 +00:00
|
|
|
case IpcId::WorkspaceSymbol: {
|
2017-04-16 21:49:48 +00:00
|
|
|
ipc->SendMessage(IpcManager::Destination::Server, std::move(message));
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-03-26 06:47:59 +00:00
|
|
|
|
|
|
|
default: {
|
2017-04-16 21:49:48 +00:00
|
|
|
std::cerr << "[stdin] Unhandled IPC message " << IpcIdToString(message->method_id) << std::endl;
|
2017-03-26 06:47:59 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2017-03-03 08:12:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 21:49:48 +00:00
|
|
|
|
|
|
|
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-16 23:57:31 +00:00
|
|
|
void LanguageServerMainLoop() {
|
|
|
|
IpcManager* ipc = IpcManager::instance();
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-16 23:57:31 +00:00
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> messages = ipc->GetMessages(IpcManager::Destination::Client);
|
|
|
|
for (auto& message : messages) {
|
|
|
|
std::cerr << "[server] Processing message " << IpcIdToString(message->method_id) << std::endl;
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-16 23:57:31 +00:00
|
|
|
switch (message->method_id) {
|
|
|
|
case IpcId::Quit: {
|
|
|
|
std::cerr << "[server] Got quit message (exiting)" << std::endl;
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-16 23:57:31 +00:00
|
|
|
case IpcId::Cout: {
|
|
|
|
auto msg = static_cast<Ipc_Cout*>(message.get());
|
|
|
|
std::cout << msg->content;
|
|
|
|
std::cout.flush();
|
|
|
|
break;
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-16 23:57:31 +00:00
|
|
|
default: {
|
|
|
|
std::cerr << "[server] Unhandled IPC message " << IpcIdToString(message->method_id) << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-04-18 02:59:48 +00:00
|
|
|
void LanguageServerMain(IndexerConfig* config) {
|
2017-03-14 06:30:41 +00:00
|
|
|
// Run language client.
|
2017-04-18 02:59:48 +00:00
|
|
|
new std::thread([&config]() {
|
|
|
|
LanguageServerStdinLoop(config);
|
|
|
|
});
|
2017-04-19 00:05:14 +00:00
|
|
|
|
|
|
|
SetCurrentThreadName("server");
|
2017-03-14 06:30:41 +00:00
|
|
|
while (true) {
|
2017-04-16 21:49:48 +00:00
|
|
|
LanguageServerMainLoop();
|
2017-04-16 23:57:31 +00:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(2));
|
2017-03-05 19:48:05 +00:00
|
|
|
}
|
2017-03-16 07:36:49 +00:00
|
|
|
}
|
2017-03-03 08:12:11 +00:00
|
|
|
|
2017-04-16 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-25 01:28:09 +00:00
|
|
|
int main(int argc, char** argv) {
|
2017-04-16 22:48:54 +00:00
|
|
|
IpcManager::CreateInstance();
|
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
//bool loop = true;
|
|
|
|
//while (loop)
|
|
|
|
// std::this_thread::sleep_for(std::chrono::milliseconds(10));
|
2017-04-11 05:26:27 +00:00
|
|
|
//std::this_thread::sleep_for(std::chrono::seconds(3));
|
2017-03-03 08:12:11 +00:00
|
|
|
|
2017-03-25 20:27:28 +00:00
|
|
|
PlatformInit();
|
2017-04-16 21:51:47 +00:00
|
|
|
IndexInit();
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
RegisterMessageTypes();
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
// if (argc == 1) {
|
2017-03-16 07:36:49 +00:00
|
|
|
// QueryDbMain();
|
|
|
|
// return 0;
|
|
|
|
//}
|
2017-03-25 19:18:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
std::unordered_map<std::string, std::string> options =
|
|
|
|
ParseOptions(argc, argv);
|
|
|
|
|
|
|
|
if (argc == 1 || HasOption(options, "--test")) {
|
2017-03-17 23:45:10 +00:00
|
|
|
doctest::Context context;
|
|
|
|
context.applyCommandLine(argc, argv);
|
|
|
|
int res = context.run();
|
|
|
|
if (context.shouldExit())
|
2017-03-25 19:18:25 +00:00
|
|
|
return res;
|
2017-03-17 23:45:10 +00:00
|
|
|
|
2017-04-10 05:34:06 +00:00
|
|
|
RunTests();
|
2017-03-15 04:59:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
else if (options.find("--help") != options.end()) {
|
|
|
|
std::cout << R"help(clang-querydb help:
|
|
|
|
|
|
|
|
clang-querydb is a low-latency C++ language server.
|
|
|
|
|
|
|
|
General:
|
|
|
|
--help Print this help information.
|
|
|
|
--language-server
|
|
|
|
Run as a language server. The language server will look for
|
|
|
|
an existing querydb process, otherwise it will run querydb
|
|
|
|
in-process. This implements the language server spec.
|
|
|
|
--querydb Run the querydb. The querydb stores the program index and
|
|
|
|
serves index request tasks.
|
|
|
|
--test Run tests. Does nothing if test support is not compiled in.
|
|
|
|
|
|
|
|
Configuration:
|
|
|
|
When opening up a directory, clang-querydb will look for a
|
|
|
|
compile_commands.json file emitted by your preferred build system. If not
|
|
|
|
present, clang-querydb will use a recursive directory listing instead.
|
|
|
|
Command line flags can be provided by adding a "clang_args" file in the
|
|
|
|
top-level directory. Each line in that file is a separate argument.
|
|
|
|
)help";
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
else if (HasOption(options, "--language-server")) {
|
2017-04-10 00:08:54 +00:00
|
|
|
//std::cerr << "Running language server" << std::endl;
|
2017-04-18 02:59:48 +00:00
|
|
|
IndexerConfig config;
|
|
|
|
LanguageServerMain(&config);
|
2017-03-05 19:48:05 +00:00
|
|
|
return 0;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
else if (HasOption(options, "--querydb")) {
|
2017-04-10 00:08:54 +00:00
|
|
|
//std::cerr << "Running querydb" << std::endl;
|
2017-04-18 02:59:48 +00:00
|
|
|
// TODO/FIXME: config is not shared between processes.
|
|
|
|
IndexerConfig config;
|
|
|
|
QueryDbMain(&config);
|
2017-03-05 19:48:05 +00:00
|
|
|
return 0;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
else {
|
2017-04-10 00:08:54 +00:00
|
|
|
//std::cerr << "Running language server" << std::endl;
|
2017-04-18 02:59:48 +00:00
|
|
|
IndexerConfig config;
|
|
|
|
LanguageServerMain(&config);
|
2017-03-05 19:48:05 +00:00
|
|
|
return 0;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 19:48:05 +00:00
|
|
|
return 1;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|