2017-03-25 20:15:00 +00:00
|
|
|
// TODO: cleanup includes
|
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-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-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-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-03-25 20:27:28 +00:00
|
|
|
namespace {
|
2017-03-15 04:59:05 +00:00
|
|
|
const char* kIpcLanguageClientName = "language_client";
|
|
|
|
|
|
|
|
const int kNumIndexers = 8 - 1;
|
2017-03-28 02:28:45 +00:00
|
|
|
const int kQueueSizeBytes = 1024 * 8;
|
2017-04-07 06:38:01 +00:00
|
|
|
const int kMaxWorkspaceSearchResults = 1000;
|
2017-03-25 20:27:28 +00:00
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
struct Index_DoIndex {
|
2017-04-03 01:34:15 +00:00
|
|
|
enum class Type {
|
|
|
|
Import,
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: Rename TypedBidiMessageQueue to IpcTransport?
|
2017-03-25 21:57:06 +00:00
|
|
|
using IpcMessageQueue = TypedBidiMessageQueue<IpcId, BaseIpcMessage>;
|
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
|
|
|
|
|
|
|
template<typename TMessage>
|
|
|
|
void SendMessage(IpcMessageQueue& t, MessageQueue* destination, TMessage& message) {
|
2017-03-25 21:57:06 +00:00
|
|
|
t.SendMessage(destination, TMessage::kIpcId, message);
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
std::unordered_map<std::string, std::string> ParseOptions(int argc,
|
2017-03-25 19:18:25 +00:00
|
|
|
char** argv) {
|
2017-02-25 23:59:09 +00:00
|
|
|
std::unordered_map<std::string, std::string> output;
|
|
|
|
|
|
|
|
std::string previous_arg;
|
|
|
|
|
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
|
|
std::string arg = argv[i];
|
|
|
|
|
|
|
|
if (arg[0] != '-') {
|
|
|
|
if (previous_arg.size() == 0) {
|
2017-03-17 07:58:41 +00:00
|
|
|
std::cerr << "Invalid arguments; switches must start with -"
|
2017-03-25 19:18:25 +00:00
|
|
|
<< std::endl;
|
2017-02-25 23:59:09 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
output[previous_arg] = arg;
|
|
|
|
previous_arg = "";
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
|
|
|
else {
|
2017-02-25 23:59:09 +00:00
|
|
|
output[arg] = "";
|
|
|
|
previous_arg = arg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2017-03-17 07:58:41 +00:00
|
|
|
bool HasOption(const std::unordered_map<std::string, std::string>& options,
|
2017-03-25 19:18:25 +00:00
|
|
|
const std::string& option) {
|
2017-02-25 23:59:09 +00:00
|
|
|
return options.find(option) != options.end();
|
|
|
|
}
|
|
|
|
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-03-14 08:33:39 +00:00
|
|
|
std::string Join(const std::vector<std::string>& elements, std::string sep) {
|
|
|
|
bool first = true;
|
|
|
|
std::string result;
|
|
|
|
for (const auto& element : elements) {
|
|
|
|
if (!first)
|
|
|
|
result += ", ";
|
|
|
|
first = false;
|
|
|
|
result += element;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-04-08 07:52:57 +00:00
|
|
|
optional<QueryableLocation> GetDefinitionSpellingOfSymbol(QueryableDatabase* db, const QueryTypeId& id) {
|
|
|
|
QueryableTypeDef* def = &db->types[id.id];
|
|
|
|
return def->def.definition_spelling;
|
|
|
|
}
|
|
|
|
optional<QueryableLocation> GetDefinitionSpellingOfSymbol(QueryableDatabase* db, const QueryFuncId& id) {
|
|
|
|
QueryableFuncDef* def = &db->funcs[id.id];
|
|
|
|
return def->def.definition_spelling;
|
|
|
|
}
|
|
|
|
optional<QueryableLocation> GetDefinitionSpellingOfSymbol(QueryableDatabase* db, const QueryVarId& id) {
|
|
|
|
QueryableVarDef* def = &db->vars[id.id];
|
|
|
|
return def->def.definition_spelling;
|
|
|
|
}
|
2017-04-05 08:06:18 +00:00
|
|
|
|
2017-04-08 07:11:57 +00:00
|
|
|
optional<QueryableLocation> GetDefinitionSpellingOfSymbol(QueryableDatabase* db, const SymbolIdx& symbol) {
|
2017-04-05 08:06:18 +00:00
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type: {
|
|
|
|
QueryableTypeDef* def = &db->types[symbol.idx];
|
|
|
|
return def->def.definition_spelling;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
|
|
|
QueryableFuncDef* def = &db->funcs[symbol.idx];
|
|
|
|
return def->def.definition_spelling;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
|
|
|
QueryableVarDef* def = &db->vars[symbol.idx];
|
|
|
|
return def->def.definition_spelling;
|
|
|
|
}
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
|
2017-04-08 07:11:57 +00:00
|
|
|
optional<QueryableLocation> GetDefinitionSpellingOfUsr(QueryableDatabase* db, const Usr& usr) {
|
|
|
|
return GetDefinitionSpellingOfSymbol(db, db->usr_to_symbol[usr]);
|
|
|
|
}
|
|
|
|
|
2017-04-07 06:20:30 +00:00
|
|
|
optional<QueryableLocation> GetDefinitionExtentOfUsr(QueryableDatabase* db, const Usr& usr) {
|
2017-04-05 08:06:18 +00:00
|
|
|
SymbolIdx symbol = db->usr_to_symbol[usr];
|
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type: {
|
|
|
|
QueryableTypeDef* def = &db->types[symbol.idx];
|
|
|
|
return def->def.definition_extent;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
|
|
|
QueryableFuncDef* def = &db->funcs[symbol.idx];
|
|
|
|
return def->def.definition_extent;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
|
|
|
QueryableVarDef* def = &db->vars[symbol.idx];
|
|
|
|
return def->def.definition_extent;
|
|
|
|
}
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
|
2017-03-25 21:45:49 +00:00
|
|
|
template<typename T>
|
|
|
|
void SendOutMessageToClient(IpcMessageQueue* queue, T& response) {
|
|
|
|
std::ostringstream sstream;
|
|
|
|
response.Write(sstream);
|
|
|
|
|
|
|
|
Ipc_Cout out;
|
|
|
|
out.content = sstream.str();
|
2017-03-25 21:57:06 +00:00
|
|
|
queue->SendMessage(&queue->for_client, Ipc_Cout::kIpcId, out);
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
2017-03-14 08:33:39 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
template<typename T>
|
|
|
|
void RegisterId(IpcMessageQueue* t) {
|
2017-03-25 21:57:06 +00:00
|
|
|
t->RegisterId(T::kIpcId,
|
2017-03-25 21:02:45 +00:00
|
|
|
[](Writer& visitor, BaseIpcMessage& message) {
|
2017-03-25 19:18:25 +00:00
|
|
|
T& m = static_cast<T&>(message);
|
|
|
|
Reflect(visitor, m);
|
|
|
|
}, [](Reader& visitor) {
|
|
|
|
auto m = MakeUnique<T>();
|
|
|
|
Reflect(visitor, *m);
|
|
|
|
return m;
|
|
|
|
});
|
2017-03-14 08:33:39 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
std::unique_ptr<IpcMessageQueue> BuildIpcMessageQueue(const std::string& name, size_t buffer_size) {
|
|
|
|
auto ipc = MakeUnique<IpcMessageQueue>(name, buffer_size);
|
2017-03-25 21:02:45 +00:00
|
|
|
RegisterId<Ipc_CancelRequest>(ipc.get());
|
|
|
|
RegisterId<Ipc_InitializeRequest>(ipc.get());
|
|
|
|
RegisterId<Ipc_InitializedNotification>(ipc.get());
|
2017-03-26 06:47:59 +00:00
|
|
|
RegisterId<Ipc_TextDocumentDidOpen>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDidChange>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentDidClose>(ipc.get());
|
|
|
|
RegisterId<Ipc_TextDocumentComplete>(ipc.get());
|
2017-04-03 02:21:21 +00:00
|
|
|
RegisterId<Ipc_TextDocumentDefinition>(ipc.get());
|
2017-03-25 21:02:45 +00:00
|
|
|
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());
|
2017-03-25 19:18:25 +00:00
|
|
|
return ipc;
|
|
|
|
}
|
|
|
|
|
|
|
|
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>();
|
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentComplete>();
|
2017-04-03 02:21:21 +00:00
|
|
|
MessageRegistry::instance()->Register<Ipc_TextDocumentDefinition>();
|
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-03 01:34:15 +00:00
|
|
|
std::string GetCachedFileName(std::string source_file) {
|
2017-03-31 05:30:50 +00:00
|
|
|
// TODO/FIXME
|
|
|
|
const char* kCacheDirectory = "C:/Users/jacob/Desktop/superindex/indexer/CACHE/";
|
2017-04-03 01:34:15 +00:00
|
|
|
std::replace(source_file.begin(), source_file.end(), '\\', '_');
|
|
|
|
std::replace(source_file.begin(), source_file.end(), '/', '_');
|
|
|
|
std::replace(source_file.begin(), source_file.end(), ':', '_');
|
|
|
|
std::replace(source_file.begin(), source_file.end(), '.', '_');
|
|
|
|
return kCacheDirectory + source_file + ".json";
|
|
|
|
}
|
2017-03-31 05:30:50 +00:00
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
std::unique_ptr<IndexedFile> LoadCachedFile(std::string filename) {
|
2017-04-03 01:34:15 +00:00
|
|
|
// TODO FIXME FIXME FIXME
|
2017-04-08 06:45:28 +00:00
|
|
|
return nullptr;
|
2017-04-03 01:34:15 +00:00
|
|
|
|
|
|
|
std::string cache_file = GetCachedFileName(filename);
|
|
|
|
|
|
|
|
std::ifstream cache;
|
|
|
|
cache.open(GetCachedFileName(filename));
|
|
|
|
if (!cache.good())
|
2017-04-08 06:45:28 +00:00
|
|
|
return nullptr;
|
2017-03-31 05:30:50 +00:00
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
std::string file_content = std::string(
|
|
|
|
std::istreambuf_iterator<char>(cache),
|
|
|
|
std::istreambuf_iterator<char>());
|
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
optional<IndexedFile> indexed = Deserialize(filename, file_content);
|
|
|
|
if (indexed)
|
|
|
|
return MakeUnique<IndexedFile>(indexed.value());
|
|
|
|
|
|
|
|
return nullptr;
|
2017-04-03 01:34:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WriteToCache(std::string filename, IndexedFile& file) {
|
|
|
|
std::string indexed_content = Serialize(file);
|
2017-03-31 05:30:50 +00:00
|
|
|
|
|
|
|
std::ofstream cache;
|
2017-04-03 01:34:15 +00:00
|
|
|
cache.open(GetCachedFileName(filename));
|
2017-03-31 05:30:50 +00:00
|
|
|
assert(cache.good());
|
|
|
|
cache << indexed_content;
|
|
|
|
cache.close();
|
|
|
|
}
|
|
|
|
|
2017-03-14 08:33:39 +00:00
|
|
|
|
2017-04-08 22:54:36 +00:00
|
|
|
bool IndexMain_DoIndex(FileConsumer* file_consumer,
|
|
|
|
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;
|
|
|
|
|
2017-04-08 20:00:08 +00:00
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
|
|
|
|
|
2017-04-08 06:45:28 +00:00
|
|
|
// 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-08 20:00:08 +00:00
|
|
|
if (index_request->type == Index_DoIndex::Type::Import) {
|
2017-04-08 06:45:28 +00:00
|
|
|
index_request->type = Index_DoIndex::Type::Update;
|
2017-04-08 20:00:08 +00:00
|
|
|
std::unique_ptr<IndexedFile> old_index = LoadCachedFile(index_request->path);
|
|
|
|
time.ResetAndPrint("Loading cached index");
|
|
|
|
|
|
|
|
// If import fails just do a standard update.
|
|
|
|
if (old_index) {
|
|
|
|
Index_DoIdMap response(nullptr, std::move(old_index));
|
|
|
|
queue_do_id_map->Enqueue(std::move(response));
|
|
|
|
|
|
|
|
queue_do_index->Enqueue(std::move(*index_request));
|
|
|
|
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-08 22:54:36 +00:00
|
|
|
std::vector<std::unique_ptr<IndexedFile>> indexes = Parse(file_consumer, index_request->path, index_request->args);
|
2017-04-08 20:00:08 +00:00
|
|
|
time.ResetAndPrint("Parsing/indexing");
|
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-08 20:00:08 +00:00
|
|
|
std::unique_ptr<IndexedFile> old_index = LoadCachedFile(current_index->path);
|
|
|
|
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-08 20:00:08 +00:00
|
|
|
WriteToCache(index_request->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;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IndexMain_DoCreateIndexUpdate(Index_OnIdMappedQueue* queue_on_id_mapped,
|
2017-04-08 20:00:08 +00:00
|
|
|
Index_OnIndexedQueue* queue_on_indexed) {
|
|
|
|
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-08 22:54:36 +00:00
|
|
|
void IndexMain(
|
|
|
|
FileConsumer::SharedState* file_consumer_shared,
|
|
|
|
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
|
|
|
|
|
|
|
FileConsumer file_consumer(file_consumer_shared);
|
|
|
|
|
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-08 22:54:36 +00:00
|
|
|
if (!IndexMain_DoIndex(&file_consumer, queue_do_index, queue_do_id_map) &&
|
2017-04-08 20:00:08 +00:00
|
|
|
!IndexMain_DoCreateIndexUpdate(queue_on_id_mapped, queue_on_indexed)) {
|
2017-04-08 06:45:28 +00:00
|
|
|
// TODO: use CV to wakeup?
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
|
|
|
}
|
|
|
|
}
|
2017-03-14 08:33:39 +00:00
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-03-15 07:14:44 +00:00
|
|
|
QueryableFile* FindFile(QueryableDatabase* db, const std::string& filename) {
|
2017-04-08 20:00:08 +00:00
|
|
|
auto it = db->usr_to_symbol.find(filename);
|
|
|
|
if (it != db->usr_to_symbol.end())
|
|
|
|
return &db->files[it->second.idx];
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-03-15 07:14:44 +00:00
|
|
|
std::cerr << "Unable to find file " << filename << std::endl;
|
|
|
|
return nullptr;
|
|
|
|
}
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-04-07 06:20:30 +00:00
|
|
|
lsRange GetLsRange(const Range& location) {
|
2017-04-05 08:06:18 +00:00
|
|
|
return lsRange(
|
2017-04-08 20:00:08 +00:00
|
|
|
lsPosition(location.start.line - 1, location.start.column - 1),
|
|
|
|
lsPosition(location.end.line - 1, location.end.column - 1));
|
2017-04-05 08:06:18 +00:00
|
|
|
}
|
|
|
|
|
2017-04-08 07:21:00 +00:00
|
|
|
lsDocumentUri GetLsDocumentUri(QueryableDatabase* db, QueryFileId file_id) {
|
|
|
|
std::string path = db->files[file_id.id].def.usr;
|
|
|
|
return lsDocumentUri::FromPath(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
lsLocation GetLsLocation(QueryableDatabase* db, const QueryableLocation& location) {
|
2017-03-15 07:14:44 +00:00
|
|
|
return lsLocation(
|
2017-04-08 07:21:00 +00:00
|
|
|
GetLsDocumentUri(db, location.path),
|
2017-04-07 06:20:30 +00:00
|
|
|
GetLsRange(location.range));
|
2017-03-15 07:14:44 +00:00
|
|
|
}
|
2017-04-08 07:52:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-04-08 07:21:00 +00:00
|
|
|
void AddCodeLens(
|
|
|
|
QueryableDatabase* db,
|
|
|
|
std::vector<TCodeLens>* result,
|
2017-04-07 06:20:30 +00:00
|
|
|
QueryableLocation loc,
|
|
|
|
const std::vector<QueryableLocation>& uses,
|
2017-04-03 01:34:15 +00:00
|
|
|
bool exclude_loc,
|
2017-03-25 19:18:25 +00:00
|
|
|
bool only_interesting,
|
|
|
|
const char* singular,
|
|
|
|
const char* plural) {
|
2017-03-16 07:36:49 +00:00
|
|
|
TCodeLens code_lens;
|
2017-04-07 06:20:30 +00:00
|
|
|
code_lens.range = GetLsRange(loc.range);
|
2017-03-16 07:36:49 +00:00
|
|
|
code_lens.command = lsCommand<lsCodeLensCommandArguments>();
|
|
|
|
code_lens.command->command = "superindex.showReferences";
|
2017-04-08 07:21:00 +00:00
|
|
|
code_lens.command->arguments.uri = GetLsDocumentUri(db, loc.path);
|
2017-03-16 07:36:49 +00:00
|
|
|
code_lens.command->arguments.position = code_lens.range.start;
|
|
|
|
|
|
|
|
// Add unique uses.
|
|
|
|
std::unordered_set<lsLocation> unique_uses;
|
2017-04-07 06:20:30 +00:00
|
|
|
for (const QueryableLocation& use : uses) {
|
2017-04-03 01:34:15 +00:00
|
|
|
if (exclude_loc && use == loc)
|
|
|
|
continue;
|
2017-04-07 06:20:30 +00:00
|
|
|
if (only_interesting && !use.range.interesting)
|
2017-03-17 07:58:41 +00:00
|
|
|
continue;
|
2017-04-08 07:21:00 +00:00
|
|
|
unique_uses.insert(GetLsLocation(db, use));
|
2017-03-16 07:36:49 +00:00
|
|
|
}
|
2017-03-17 07:58:41 +00:00
|
|
|
code_lens.command->arguments.locations.assign(unique_uses.begin(),
|
2017-03-25 19:18:25 +00:00
|
|
|
unique_uses.end());
|
2017-03-16 07:36:49 +00:00
|
|
|
|
|
|
|
// User visible label
|
2017-04-05 08:06:18 +00:00
|
|
|
size_t num_usages = unique_uses.size();
|
2017-03-16 07:36:49 +00:00
|
|
|
code_lens.command->title = std::to_string(num_usages) + " ";
|
|
|
|
if (num_usages == 1)
|
|
|
|
code_lens.command->title += singular;
|
|
|
|
else
|
|
|
|
code_lens.command->title += plural;
|
|
|
|
|
2017-04-03 01:34:15 +00:00
|
|
|
if (exclude_loc || unique_uses.size() > 0)
|
2017-03-16 07:36:49 +00:00
|
|
|
result->push_back(code_lens);
|
|
|
|
}
|
|
|
|
|
2017-04-08 07:52:57 +00:00
|
|
|
// TODO: clean these overrides up...
|
2017-04-08 07:21:00 +00:00
|
|
|
void AddCodeLens(
|
|
|
|
QueryableDatabase* db,
|
|
|
|
std::vector<TCodeLens>* result,
|
2017-04-07 06:20:30 +00:00
|
|
|
QueryableLocation loc,
|
2017-03-25 19:18:25 +00:00
|
|
|
const std::vector<UsrRef>& uses,
|
2017-04-03 01:34:15 +00:00
|
|
|
bool exclude_loc,
|
2017-03-25 19:18:25 +00:00
|
|
|
bool only_interesting,
|
|
|
|
const char* singular,
|
|
|
|
const char* plural) {
|
2017-04-07 06:20:30 +00:00
|
|
|
std::vector<QueryableLocation> uses0;
|
2017-03-16 07:36:49 +00:00
|
|
|
uses0.reserve(uses.size());
|
|
|
|
for (const UsrRef& use : uses)
|
|
|
|
uses0.push_back(use.loc);
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, result, loc, uses0, exclude_loc, only_interesting, singular, plural);
|
2017-03-16 07:36:49 +00:00
|
|
|
}
|
|
|
|
|
2017-04-08 08:04:38 +00:00
|
|
|
void AddCodeLens(
|
|
|
|
QueryableDatabase* db,
|
|
|
|
std::vector<TCodeLens>* result,
|
|
|
|
QueryableLocation loc,
|
|
|
|
const std::vector<QueryFuncRef>& uses,
|
|
|
|
bool exclude_loc,
|
|
|
|
bool only_interesting,
|
|
|
|
const char* singular,
|
|
|
|
const char* plural) {
|
|
|
|
std::vector<QueryableLocation> uses0;
|
|
|
|
uses0.reserve(uses.size());
|
|
|
|
for (const QueryFuncRef& use : uses)
|
|
|
|
uses0.push_back(use.loc);
|
|
|
|
AddCodeLens(db, result, loc, uses0, exclude_loc, only_interesting, singular, plural);
|
|
|
|
}
|
|
|
|
|
2017-04-08 07:21:00 +00:00
|
|
|
void AddCodeLens(
|
2017-03-25 19:18:25 +00:00
|
|
|
QueryableDatabase* db,
|
2017-04-08 07:21:00 +00:00
|
|
|
std::vector<TCodeLens>* result,
|
2017-04-07 06:20:30 +00:00
|
|
|
QueryableLocation loc,
|
2017-03-25 19:18:25 +00:00
|
|
|
const std::vector<Usr>& usrs,
|
2017-04-03 01:34:15 +00:00
|
|
|
bool exclude_loc,
|
2017-03-25 19:18:25 +00:00
|
|
|
bool only_interesting,
|
|
|
|
const char* singular,
|
|
|
|
const char* plural) {
|
2017-04-07 06:20:30 +00:00
|
|
|
std::vector<QueryableLocation> uses0;
|
2017-03-16 07:36:49 +00:00
|
|
|
uses0.reserve(usrs.size());
|
|
|
|
for (const Usr& usr : usrs) {
|
2017-04-07 06:20:30 +00:00
|
|
|
optional<QueryableLocation> loc = GetDefinitionSpellingOfUsr(db, usr);
|
2017-04-03 02:21:21 +00:00
|
|
|
if (loc)
|
|
|
|
uses0.push_back(loc.value());
|
2017-03-16 07:36:49 +00:00
|
|
|
}
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, result, loc, uses0, exclude_loc, only_interesting, singular, plural);
|
2017-03-16 07:36:49 +00:00
|
|
|
}
|
2017-04-08 07:52:57 +00:00
|
|
|
|
|
|
|
void AddCodeLens(
|
|
|
|
QueryableDatabase* db,
|
|
|
|
std::vector<TCodeLens>* result,
|
|
|
|
QueryableLocation loc,
|
|
|
|
const std::vector<QueryTypeId>& usrs,
|
|
|
|
bool exclude_loc,
|
|
|
|
bool only_interesting,
|
|
|
|
const char* singular,
|
|
|
|
const char* plural) {
|
|
|
|
std::vector<QueryableLocation> uses0;
|
|
|
|
uses0.reserve(usrs.size());
|
|
|
|
for (const QueryTypeId& usr : usrs) {
|
|
|
|
optional<QueryableLocation> loc = GetDefinitionSpellingOfSymbol(db, usr);
|
|
|
|
if (loc)
|
|
|
|
uses0.push_back(loc.value());
|
|
|
|
}
|
|
|
|
AddCodeLens(db, result, loc, uses0, exclude_loc, only_interesting, singular, plural);
|
|
|
|
}
|
|
|
|
|
2017-04-08 08:04:38 +00:00
|
|
|
void AddCodeLens(
|
|
|
|
QueryableDatabase* db,
|
|
|
|
std::vector<TCodeLens>* result,
|
|
|
|
QueryableLocation loc,
|
|
|
|
const std::vector<QueryFuncId>& usrs,
|
|
|
|
bool exclude_loc,
|
|
|
|
bool only_interesting,
|
|
|
|
const char* singular,
|
|
|
|
const char* plural) {
|
|
|
|
std::vector<QueryableLocation> uses0;
|
|
|
|
uses0.reserve(usrs.size());
|
|
|
|
for (const QueryFuncId& usr : usrs) {
|
|
|
|
optional<QueryableLocation> loc = GetDefinitionSpellingOfSymbol(db, usr);
|
|
|
|
if (loc)
|
|
|
|
uses0.push_back(loc.value());
|
|
|
|
}
|
|
|
|
AddCodeLens(db, result, loc, uses0, exclude_loc, only_interesting, singular, plural);
|
|
|
|
}
|
|
|
|
|
2017-04-08 07:52:57 +00:00
|
|
|
void AddCodeLens(
|
|
|
|
QueryableDatabase* db,
|
|
|
|
std::vector<TCodeLens>* result,
|
|
|
|
QueryableLocation loc,
|
|
|
|
const std::vector<QueryVarId>& usrs,
|
|
|
|
bool exclude_loc,
|
|
|
|
bool only_interesting,
|
|
|
|
const char* singular,
|
|
|
|
const char* plural) {
|
|
|
|
std::vector<QueryableLocation> uses0;
|
|
|
|
uses0.reserve(usrs.size());
|
|
|
|
for (const QueryVarId& usr : usrs) {
|
|
|
|
optional<QueryableLocation> loc = GetDefinitionSpellingOfSymbol(db, usr);
|
|
|
|
if (loc)
|
|
|
|
uses0.push_back(loc.value());
|
|
|
|
}
|
|
|
|
AddCodeLens(db, result, loc, uses0, exclude_loc, only_interesting, singular, plural);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-16 07:36:49 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
void QueryDbMainLoop(
|
|
|
|
QueryableDatabase* db,
|
|
|
|
IpcMessageQueue* language_client,
|
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-03-25 21:02:45 +00:00
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> messages = language_client->GetMessages(&language_client->for_server);
|
2017-03-05 19:48:05 +00:00
|
|
|
for (auto& message : messages) {
|
2017-03-29 06:33:38 +00:00
|
|
|
std::cerr << "[querydb] Processing message " << static_cast<int>(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-03-25 19:18:25 +00:00
|
|
|
std::cerr << "Got quit message (exiting)" << std::endl;
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::IsAlive: {
|
2017-03-25 21:02:45 +00:00
|
|
|
Ipc_IsAlive response;
|
2017-03-25 19:18:25 +00:00
|
|
|
language_client->SendMessage(&language_client->for_client, response.method_id, response);
|
|
|
|
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-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) {
|
|
|
|
const CompilationEntry& entry = project->entries[i];
|
|
|
|
std::string filepath = entry.filename;
|
|
|
|
|
|
|
|
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-08 20:00:08 +00:00
|
|
|
Index_DoIndex request(Index_DoIndex::Type::Import);
|
|
|
|
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);
|
|
|
|
//std::cerr << "Changing " << msg->params.textDocument.uri.GetPath() << std::endl;
|
2017-03-26 06:47:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case IpcId::TextDocumentDidClose: {
|
|
|
|
auto msg = static_cast<Ipc_TextDocumentDidClose*>(message.get());
|
|
|
|
std::cerr << "Closing " << msg->params.textDocument.uri.GetPath() << std::endl;
|
2017-03-26 21:40:34 +00:00
|
|
|
//working_files->OnClose(msg->params);
|
2017-03-26 06:47:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IpcId::TextDocumentCompletion: {
|
2017-04-03 02:21:21 +00:00
|
|
|
// TODO: better performance
|
2017-03-26 06:47:59 +00:00
|
|
|
auto msg = static_cast<Ipc_TextDocumentComplete*>(message.get());
|
|
|
|
Out_TextDocumentComplete response;
|
|
|
|
response.id = msg->id;
|
|
|
|
response.result.isIncomplete = false;
|
2017-03-26 21:40:34 +00:00
|
|
|
response.result.items = completion_manager->CodeComplete(msg->params);
|
2017-03-26 06:47:59 +00:00
|
|
|
|
2017-03-26 21:40:34 +00:00
|
|
|
Timer timer;
|
|
|
|
response.Write(std::cout);
|
2017-03-31 04:13:58 +00:00
|
|
|
timer.ResetAndPrint("Writing completion results");
|
2017-03-26 21:40:34 +00:00
|
|
|
//SendOutMessageToClient(language_client, response);
|
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());
|
|
|
|
|
|
|
|
QueryableFile* file = FindFile(db, msg->params.textDocument.uri.GetPath());
|
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Unable to find file " << msg->params.textDocument.uri.GetPath() << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Out_TextDocumentDefinition response;
|
|
|
|
response.id = msg->id;
|
|
|
|
|
|
|
|
// TODO: Edge cases (whitespace, etc) will work a lot better
|
|
|
|
// if we store range information instead of hacking it.
|
|
|
|
int target_line = msg->params.position.line + 1;
|
|
|
|
int target_column = msg->params.position.character + 1;
|
|
|
|
|
2017-04-08 07:11:57 +00:00
|
|
|
for (const SymbolRef& ref : file->def.all_symbols) {
|
2017-04-07 06:20:30 +00:00
|
|
|
if (ref.loc.range.start.line >= target_line && ref.loc.range.end.line <= target_line &&
|
2017-04-08 20:00:08 +00:00
|
|
|
ref.loc.range.start.column <= target_column && ref.loc.range.end.column >= target_column) {
|
2017-04-08 07:11:57 +00:00
|
|
|
optional<QueryableLocation> location = GetDefinitionSpellingOfSymbol(db, ref.idx);
|
2017-04-05 08:06:18 +00:00
|
|
|
if (location)
|
2017-04-08 07:21:00 +00:00
|
|
|
response.result.push_back(GetLsLocation(db, location.value()));
|
2017-04-05 08:06:18 +00:00
|
|
|
break;
|
2017-04-03 02:21:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SendOutMessageToClient(language_client, response);
|
|
|
|
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;
|
|
|
|
|
|
|
|
QueryableFile* 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) {
|
|
|
|
SymbolIdx symbol = ref.idx;
|
2017-03-29 06:33:38 +00:00
|
|
|
|
|
|
|
lsSymbolInformation info;
|
2017-04-08 07:21:00 +00:00
|
|
|
info.location = GetLsLocation(db, ref.loc);
|
2017-03-29 06:33:38 +00:00
|
|
|
|
|
|
|
switch (symbol.kind) {
|
|
|
|
case SymbolKind::Type: {
|
|
|
|
QueryableTypeDef& def = db->types[symbol.idx];
|
|
|
|
info.name = def.def.qualified_name;
|
|
|
|
info.kind = lsSymbolKind::Class;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
|
|
|
QueryableFuncDef& def = db->funcs[symbol.idx];
|
|
|
|
info.name = def.def.qualified_name;
|
|
|
|
if (def.def.declaring_type.has_value()) {
|
|
|
|
info.kind = lsSymbolKind::Method;
|
2017-04-08 08:04:38 +00:00
|
|
|
info.containerName = db->types[def.def.declaring_type->id].def.qualified_name;
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
2017-03-29 06:33:38 +00:00
|
|
|
else {
|
|
|
|
info.kind = lsSymbolKind::Function;
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
2017-03-29 06:33:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
|
|
|
QueryableVarDef& def = db->vars[symbol.idx];
|
|
|
|
info.name = def.def.qualified_name;
|
|
|
|
info.kind = lsSymbolKind::Variable;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::File:
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
2017-03-29 06:33:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
response.result.push_back(info);
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
SendOutMessageToClient(language_client, response);
|
|
|
|
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;
|
|
|
|
|
|
|
|
QueryableFile* 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-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: {
|
|
|
|
QueryableTypeDef& def = db->types[symbol.idx];
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, &response.result, ref.loc.OffsetStartColumn(0), def.uses,
|
2017-04-05 08:06:18 +00:00
|
|
|
false /*exclude_loc*/, false /*only_interesting*/, "ref",
|
|
|
|
"refs");
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, &response.result, ref.loc.OffsetStartColumn(1), def.uses,
|
2017-04-05 08:06:18 +00:00
|
|
|
false /*exclude_loc*/, true /*only_interesting*/, "iref",
|
|
|
|
"irefs");
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, &response.result, ref.loc.OffsetStartColumn(2), def.derived,
|
2017-04-03 01:34:15 +00:00
|
|
|
false /*exclude_loc*/, false /*only_interesting*/, "derived", "derived");
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, &response.result, ref.loc.OffsetStartColumn(3), def.instantiations,
|
2017-04-03 01:34:15 +00:00
|
|
|
false /*exclude_loc*/, false /*only_interesting*/, "instantiation", "instantiations");
|
2017-03-29 06:33:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Func: {
|
|
|
|
QueryableFuncDef& def = db->funcs[symbol.idx];
|
2017-04-05 08:06:18 +00:00
|
|
|
//AddCodeLens(&response.result, ref.loc.OffsetStartColumn(0), def.uses,
|
2017-04-03 01:34:15 +00:00
|
|
|
// false /*exclude_loc*/, false /*only_interesting*/, "reference",
|
|
|
|
// "references");
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, &response.result, ref.loc.OffsetStartColumn(1), def.callers,
|
2017-04-03 02:21:21 +00:00
|
|
|
true /*exclude_loc*/, false /*only_interesting*/, "caller", "callers");
|
|
|
|
//AddCodeLens(&response.result, ref.loc.OffsetColumn(2), def.def.callees,
|
|
|
|
// false /*exclude_loc*/, false /*only_interesting*/, "callee", "callees");
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, &response.result, ref.loc.OffsetStartColumn(3), def.derived,
|
2017-04-03 01:34:15 +00:00
|
|
|
false /*exclude_loc*/, false /*only_interesting*/, "derived", "derived");
|
2017-03-29 06:33:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
|
|
|
QueryableVarDef& def = db->vars[symbol.idx];
|
2017-04-08 07:21:00 +00:00
|
|
|
AddCodeLens(db, &response.result, ref.loc.OffsetStartColumn(0), def.uses,
|
2017-04-03 01:34:15 +00:00
|
|
|
true /*exclude_loc*/, false /*only_interesting*/, "reference",
|
2017-03-29 06:33:38 +00:00
|
|
|
"references");
|
|
|
|
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-03-25 19:18:25 +00:00
|
|
|
SendOutMessageToClient(language_client, response);
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
std::cerr << "- Considering " << db->qualified_names.size()
|
|
|
|
<< " candidates " << std::endl;
|
|
|
|
|
|
|
|
std::string query = msg->params.query;
|
|
|
|
for (int i = 0; i < db->qualified_names.size(); ++i) {
|
2017-04-07 06:38:01 +00:00
|
|
|
if (response.result.size() > kMaxWorkspaceSearchResults) {
|
2017-04-08 06:45:28 +00:00
|
|
|
std::cerr << "Query exceeded maximum number of responses (" << kMaxWorkspaceSearchResults << "), output may not contain all results" << std::endl;
|
2017-04-07 06:38:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
const std::string& name = db->qualified_names[i];
|
|
|
|
// std::cerr << "- Considering " << name << std::endl;
|
|
|
|
|
|
|
|
if (name.find(query) != std::string::npos) {
|
|
|
|
lsSymbolInformation info;
|
|
|
|
info.name = name;
|
|
|
|
|
|
|
|
SymbolIdx symbol = db->symbols[i];
|
|
|
|
|
|
|
|
// TODO: dedup this code w/ above (ie, add ctor to convert symbol to
|
|
|
|
// SymbolInformation)
|
|
|
|
switch (symbol.kind) {
|
2017-04-07 06:38:01 +00:00
|
|
|
case SymbolKind::File: {
|
|
|
|
QueryableFile& def = db->files[symbol.idx];
|
2017-04-08 06:45:28 +00:00
|
|
|
info.name = def.def.usr;
|
|
|
|
info.kind = lsSymbolKind::File;
|
2017-04-07 06:38:01 +00:00
|
|
|
info.location.uri.SetPath(def.def.usr);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-08 20:00:08 +00:00
|
|
|
// TODO: file
|
2017-03-25 19:18:25 +00:00
|
|
|
case SymbolKind::Type: {
|
|
|
|
QueryableTypeDef& def = db->types[symbol.idx];
|
|
|
|
info.name = def.def.qualified_name;
|
|
|
|
info.kind = lsSymbolKind::Class;
|
|
|
|
|
2017-04-07 06:20:30 +00:00
|
|
|
if (def.def.definition_extent.has_value())
|
2017-04-08 07:21:00 +00:00
|
|
|
info.location = GetLsLocation(db, def.def.definition_extent.value());
|
2017-03-25 19:18:25 +00:00
|
|
|
break;
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
case SymbolKind::Func: {
|
|
|
|
QueryableFuncDef& def = db->funcs[symbol.idx];
|
|
|
|
info.name = def.def.qualified_name;
|
|
|
|
if (def.def.declaring_type.has_value()) {
|
|
|
|
info.kind = lsSymbolKind::Method;
|
2017-04-08 08:04:38 +00:00
|
|
|
info.containerName = db->types[def.def.declaring_type->id].def.qualified_name;
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
info.kind = lsSymbolKind::Function;
|
|
|
|
}
|
|
|
|
|
2017-04-05 08:06:18 +00:00
|
|
|
if (def.def.definition_extent.has_value()) {
|
2017-04-08 07:21:00 +00:00
|
|
|
info.location = GetLsLocation(db, def.def.definition_extent.value());
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Var: {
|
|
|
|
QueryableVarDef& def = db->vars[symbol.idx];
|
|
|
|
info.name = def.def.qualified_name;
|
|
|
|
info.kind = lsSymbolKind::Variable;
|
|
|
|
|
2017-04-05 08:06:18 +00:00
|
|
|
if (def.def.definition_extent.has_value()) {
|
2017-04-08 07:21:00 +00:00
|
|
|
info.location = GetLsLocation(db, def.def.definition_extent.value());
|
2017-03-25 19:18:25 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SymbolKind::Invalid: {
|
|
|
|
assert(false && "unexpected");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
response.result.push_back(info);
|
|
|
|
}
|
2017-03-17 07:58:41 +00:00
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
|
|
|
|
SendOutMessageToClient(language_client, response);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: {
|
|
|
|
std::cerr << "Unhandled IPC message with kind "
|
|
|
|
<< static_cast<int>(message->method_id) << std::endl;
|
|
|
|
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
|
|
|
|
|
|
|
void QueryDbMain() {
|
|
|
|
std::cerr << "Running QueryDb" << std::endl;
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
// Create queues.
|
|
|
|
std::unique_ptr<IpcMessageQueue> ipc = BuildIpcMessageQueue(kIpcLanguageClientName, kQueueSizeBytes);
|
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(&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-03-15 04:59:05 +00:00
|
|
|
for (int i = 0; i < kNumIndexers; ++i) {
|
2017-03-25 19:18:25 +00:00
|
|
|
new std::thread([&]() {
|
2017-04-08 22:54:36 +00:00
|
|
|
IndexMain(&file_consumer_shared, &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.
|
|
|
|
QueryableDatabase db;
|
2017-03-15 04:59:05 +00:00
|
|
|
while (true) {
|
2017-04-08 06:45:28 +00:00
|
|
|
QueryDbMainLoop(&db, ipc.get(), &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-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-03-25 19:18:25 +00:00
|
|
|
void LanguageServerStdinLoop(IpcMessageQueue* ipc) {
|
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-03-26 21:40:34 +00:00
|
|
|
//std::cerr << "[info]: Got message of type "
|
|
|
|
// << 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();
|
|
|
|
std::cerr << "Initialize in directory " << project_path
|
|
|
|
<< " with uri " << request->params.rootUri->raw_uri
|
|
|
|
<< std::endl;
|
2017-03-25 21:02:45 +00:00
|
|
|
Ipc_OpenProject open_project;
|
2017-03-25 19:18:25 +00:00
|
|
|
open_project.project_path = project_path;
|
2017-03-25 21:57:06 +00:00
|
|
|
ipc->SendMessage(&ipc->for_server, Ipc_OpenProject::kIpcId, 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-03-26 21:40:34 +00:00
|
|
|
response.result.capabilities.textDocumentSync = lsTextDocumentSyncKind::Full; // TODO: use incremental at some point
|
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-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
|
|
|
|
|
|
|
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:
|
|
|
|
case IpcId::TextDocumentDidClose: {
|
2017-03-26 06:47:59 +00:00
|
|
|
case IpcId::TextDocumentCompletion:
|
2017-04-03 02:21:21 +00:00
|
|
|
case IpcId::TextDocumentDefinition:
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::TextDocumentDocumentSymbol:
|
|
|
|
case IpcId::TextDocumentCodeLens:
|
2017-03-26 06:47:59 +00:00
|
|
|
case IpcId::WorkspaceSymbol:
|
2017-03-29 06:33:38 +00:00
|
|
|
std::cerr << "Spending message " << (int)message->method_id << std::endl;
|
2017-03-25 19:18:25 +00:00
|
|
|
ipc->SendMessage(&ipc->for_server, message->method_id, *message.get());
|
|
|
|
break;
|
|
|
|
}
|
2017-03-26 06:47:59 +00:00
|
|
|
|
|
|
|
default: {
|
|
|
|
std::cerr << "Unhandled IPC message with kind "
|
|
|
|
<< static_cast<int>(message->method_id) << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
2017-03-03 08:12:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
void LanguageServerMainLoop(IpcMessageQueue* ipc) {
|
2017-03-25 21:02:45 +00:00
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> messages = ipc->GetMessages(&ipc->for_client);
|
2017-03-05 19:48:05 +00:00
|
|
|
for (auto& message : messages) {
|
2017-03-25 19:18:25 +00:00
|
|
|
switch (message->method_id) {
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::Quit: {
|
2017-03-25 19:18:25 +00:00
|
|
|
std::cerr << "Got quit message (exiting)" << std::endl;
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-03-25 21:57:06 +00:00
|
|
|
case IpcId::Cout: {
|
2017-03-25 21:02:45 +00:00
|
|
|
auto msg = static_cast<Ipc_Cout*>(message.get());
|
2017-03-25 19:18:25 +00:00
|
|
|
std::cout << msg->content;
|
|
|
|
std::cout.flush();
|
|
|
|
break;
|
|
|
|
}
|
2017-03-06 08:48:51 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
default: {
|
|
|
|
std::cerr << "Unhandled IPC message with kind "
|
|
|
|
<< static_cast<int>(message->method_id) << std::endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
2017-03-12 00:36:00 +00:00
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
bool IsQueryDbProcessRunning(IpcMessageQueue* ipc) {
|
2017-03-02 09:28:07 +00:00
|
|
|
// Emit an alive check. Sleep so the server has time to respond.
|
2017-03-25 21:02:45 +00:00
|
|
|
Ipc_IsAlive check_alive;
|
2017-03-25 19:18:25 +00:00
|
|
|
SendMessage(*ipc, &ipc->for_server, check_alive);
|
2017-03-04 01:45:20 +00:00
|
|
|
|
|
|
|
// TODO: Tune this value or make it configurable.
|
2017-03-16 07:36:49 +00:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
2017-03-02 09:28:07 +00:00
|
|
|
|
|
|
|
// Check if we got an IsAlive message back.
|
2017-03-25 21:02:45 +00:00
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> messages = ipc->GetMessages(&ipc->for_client);
|
2017-03-02 09:28:07 +00:00
|
|
|
for (auto& message : messages) {
|
2017-03-25 21:57:06 +00:00
|
|
|
if (IpcId::IsAlive == message->method_id)
|
2017-03-25 19:18:25 +00:00
|
|
|
return true;
|
2017-03-02 09:28:07 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-03-05 02:16:23 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
void LanguageServerMain(std::string process_name) {
|
|
|
|
std::unique_ptr<IpcMessageQueue> ipc = BuildIpcMessageQueue(kIpcLanguageClientName, kQueueSizeBytes);
|
|
|
|
|
|
|
|
// Discard any left-over messages from previous runs.
|
|
|
|
ipc->GetMessages(&ipc->for_client);
|
2017-03-14 08:33:39 +00:00
|
|
|
|
2017-03-25 19:18:25 +00:00
|
|
|
bool has_server = IsQueryDbProcessRunning(ipc.get());
|
|
|
|
|
|
|
|
// No server is running. Start it in-process. If the user wants to run the
|
|
|
|
// server out of process they have to start it themselves.
|
2017-03-05 19:48:05 +00:00
|
|
|
if (!has_server) {
|
2017-03-25 19:18:25 +00:00
|
|
|
new std::thread(&QueryDbMain);
|
2017-03-05 19:48:05 +00:00
|
|
|
}
|
2017-03-05 02:16:23 +00:00
|
|
|
|
2017-03-14 06:30:41 +00:00
|
|
|
// Run language client.
|
2017-03-25 19:18:25 +00:00
|
|
|
new std::thread(&LanguageServerStdinLoop, ipc.get());
|
2017-03-14 06:30:41 +00:00
|
|
|
while (true) {
|
2017-03-25 19:18:25 +00:00
|
|
|
LanguageServerMainLoop(ipc.get());
|
2017-03-14 08:33:39 +00:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(10));
|
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-03-25 01:28:09 +00:00
|
|
|
int main(int argc, char** argv) {
|
2017-04-03 01:34:15 +00:00
|
|
|
//bool loop = true;
|
|
|
|
//while (loop)
|
|
|
|
// std::this_thread::sleep_for(std::chrono::milliseconds(10));
|
2017-04-07 06:38:01 +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-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-03-25 23:58:11 +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-03-05 19:48:05 +00:00
|
|
|
std::cerr << "Running language server" << std::endl;
|
|
|
|
LanguageServerMain(argv[0]);
|
|
|
|
return 0;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-03-05 19:48:05 +00:00
|
|
|
else if (HasOption(options, "--querydb")) {
|
|
|
|
std::cerr << "Running querydb" << std::endl;
|
2017-03-25 19:18:25 +00:00
|
|
|
QueryDbMain();
|
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-03-05 19:48:05 +00:00
|
|
|
std::cerr << "Running language server" << std::endl;
|
|
|
|
LanguageServerMain(argv[0]);
|
|
|
|
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
|
|
|
}
|