2017-03-25 20:15:00 +00:00
|
|
|
// TODO: cleanup includes
|
2017-12-29 17:27:56 +00:00
|
|
|
#include "cache_manager.h"
|
2017-05-27 04:21:00 +00:00
|
|
|
#include "clang_complete.h"
|
2017-12-29 16:29:47 +00:00
|
|
|
#include "code_complete_cache.h"
|
2017-04-08 22:54:36 +00:00
|
|
|
#include "file_consumer.h"
|
2017-12-29 16:29:47 +00:00
|
|
|
#include "import_manager.h"
|
2017-12-24 01:30:52 +00:00
|
|
|
#include "import_pipeline.h"
|
2017-05-27 04:21:00 +00:00
|
|
|
#include "include_complete.h"
|
2017-02-25 23:59:09 +00:00
|
|
|
#include "indexer.h"
|
2017-03-05 02:16:23 +00:00
|
|
|
#include "language_server_api.h"
|
2017-06-15 05:32:23 +00:00
|
|
|
#include "lex_utils.h"
|
2017-12-04 02:23:14 +00:00
|
|
|
#include "lru_cache.h"
|
2017-09-22 01:14:57 +00:00
|
|
|
#include "match.h"
|
2017-12-05 07:57:41 +00:00
|
|
|
#include "message_handler.h"
|
2017-04-09 02:24:32 +00:00
|
|
|
#include "options.h"
|
2017-03-25 20:27:28 +00:00
|
|
|
#include "platform.h"
|
2017-09-22 01:14:57 +00:00
|
|
|
#include "project.h"
|
|
|
|
#include "query.h"
|
|
|
|
#include "query_utils.h"
|
2017-12-24 00:25:18 +00:00
|
|
|
#include "queue_manager.h"
|
2017-12-29 16:29:47 +00:00
|
|
|
#include "semantic_highlight_symbol_cache.h"
|
2017-07-30 04:24:02 +00:00
|
|
|
#include "serializer.h"
|
2017-05-21 07:37:53 +00:00
|
|
|
#include "standard_includes.h"
|
2017-03-10 07:06:01 +00:00
|
|
|
#include "test.h"
|
2017-03-25 20:15:00 +00:00
|
|
|
#include "threaded_queue.h"
|
2017-09-22 01:14:57 +00:00
|
|
|
#include "timer.h"
|
2017-12-05 07:57:41 +00:00
|
|
|
#include "timestamp_manager.h"
|
2017-09-13 03:35:27 +00:00
|
|
|
#include "work_thread.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-11-04 22:29:03 +00:00
|
|
|
#include <loguru.hpp>
|
2017-03-25 20:27:28 +00:00
|
|
|
|
2017-06-10 01:02:48 +00:00
|
|
|
#include <climits>
|
2017-03-31 05:30:50 +00:00
|
|
|
#include <fstream>
|
2017-04-17 01:22:59 +00:00
|
|
|
#include <functional>
|
2017-09-22 01:14:57 +00:00
|
|
|
#include <future>
|
2017-03-25 20:27:28 +00:00
|
|
|
#include <iostream>
|
2017-05-21 07:37:53 +00:00
|
|
|
#include <iterator>
|
2017-05-17 07:08:45 +00:00
|
|
|
#include <sstream>
|
2017-09-22 01:14:57 +00:00
|
|
|
#include <string>
|
2017-03-25 20:27:28 +00:00
|
|
|
#include <thread>
|
2017-09-22 01:14:57 +00:00
|
|
|
#include <unordered_map>
|
2017-03-25 20:27:28 +00:00
|
|
|
#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-09-22 01:14:57 +00:00
|
|
|
// TODO: implement ThreadPool type which monitors CPU usage / number of work
|
|
|
|
// items per second completed and scales up/down number of running threads.
|
2017-05-20 19:31:07 +00:00
|
|
|
|
2017-08-17 02:08:00 +00:00
|
|
|
namespace {
|
2017-04-09 02:24:32 +00:00
|
|
|
|
2017-04-21 04:06:15 +00:00
|
|
|
std::vector<std::string> kEmptyArgs;
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-11-30 04:22:10 +00:00
|
|
|
// If true stdout will be printed to stderr.
|
|
|
|
bool g_log_stdin_stdout_to_stderr = false;
|
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
// This function returns true if e2e timing should be displayed for the given
|
|
|
|
// IpcId.
|
2017-05-20 08:07:29 +00:00
|
|
|
bool ShouldDisplayIpcTiming(IpcId id) {
|
|
|
|
switch (id) {
|
2017-09-22 01:14:57 +00:00
|
|
|
case IpcId::TextDocumentPublishDiagnostics:
|
|
|
|
case IpcId::CqueryPublishInactiveRegions:
|
2017-12-04 08:16:19 +00:00
|
|
|
case IpcId::Unknown:
|
2017-09-22 01:14:57 +00:00
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
2017-05-20 08:07:29 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-12-06 04:05:01 +00:00
|
|
|
REGISTER_IPC_MESSAGE(Ipc_CancelRequest);
|
2017-03-02 09:28:07 +00:00
|
|
|
|
2017-08-17 02:08:00 +00:00
|
|
|
} // namespace
|
2017-04-23 20:02:41 +00:00
|
|
|
|
2017-09-22 01:32:55 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// QUERYDB MAIN ////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2017-09-22 01:14:57 +00:00
|
|
|
|
|
|
|
bool QueryDbMainLoop(Config* config,
|
|
|
|
QueryDatabase* db,
|
|
|
|
MultiQueueWaiter* waiter,
|
|
|
|
Project* project,
|
2017-12-29 16:29:47 +00:00
|
|
|
FileConsumerSharedState* file_consumer_shared,
|
2017-09-22 01:14:57 +00:00
|
|
|
ImportManager* import_manager,
|
|
|
|
TimestampManager* timestamp_manager,
|
2017-12-04 02:23:14 +00:00
|
|
|
SemanticHighlightSymbolCache* semantic_cache,
|
2017-09-22 01:14:57 +00:00
|
|
|
WorkingFiles* working_files,
|
|
|
|
ClangCompleteManager* clang_complete,
|
|
|
|
IncludeComplete* include_complete,
|
|
|
|
CodeCompleteCache* global_code_complete_cache,
|
|
|
|
CodeCompleteCache* non_global_code_complete_cache,
|
|
|
|
CodeCompleteCache* signature_cache) {
|
2017-12-24 00:25:18 +00:00
|
|
|
auto* queue = QueueManager::instance();
|
2017-04-23 22:45:40 +00:00
|
|
|
bool did_work = false;
|
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
std::vector<std::unique_ptr<BaseIpcMessage>> messages =
|
2017-12-24 00:25:18 +00:00
|
|
|
queue->for_querydb.DequeueAll();
|
2017-03-05 19:48:05 +00:00
|
|
|
for (auto& message : messages) {
|
2017-04-23 22:45:40 +00:00
|
|
|
did_work = true;
|
2017-03-05 19:48:05 +00:00
|
|
|
|
2017-12-05 07:57:41 +00:00
|
|
|
for (MessageHandler* handler : *MessageHandler::message_handlers) {
|
|
|
|
if (handler->GetId() == message->method_id) {
|
|
|
|
handler->Run(std::move(message));
|
2017-04-23 20:19:09 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-12-05 07:57:41 +00:00
|
|
|
}
|
2017-12-06 03:32:33 +00:00
|
|
|
if (message) {
|
|
|
|
LOG_S(FATAL) << "Exiting; unhandled IPC message "
|
|
|
|
<< IpcIdToString(message->method_id);
|
|
|
|
exit(1);
|
2017-03-15 04:59:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 01:14:57 +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-12-24 00:25:18 +00:00
|
|
|
if (QueryDb_ImportMain(config, db, import_manager, semantic_cache,
|
2017-12-04 02:23:14 +00:00
|
|
|
working_files)) {
|
2017-04-23 22:45:40 +00:00
|
|
|
did_work = true;
|
2017-12-04 02:23:14 +00:00
|
|
|
}
|
2017-04-08 20:00:08 +00:00
|
|
|
|
2017-04-23 22:45:40 +00:00
|
|
|
return did_work;
|
2017-03-05 02:16:23 +00:00
|
|
|
}
|
2017-03-15 04:59:05 +00:00
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
void RunQueryDbThread(const std::string& bin_name,
|
|
|
|
Config* config,
|
2017-12-24 00:25:18 +00:00
|
|
|
MultiQueueWaiter* waiter) {
|
2017-03-26 21:40:34 +00:00
|
|
|
Project project;
|
2017-12-04 02:23:14 +00:00
|
|
|
SemanticHighlightSymbolCache semantic_cache;
|
2017-03-26 21:40:34 +00:00
|
|
|
WorkingFiles working_files;
|
2017-12-29 16:29:47 +00:00
|
|
|
FileConsumerSharedState file_consumer_shared;
|
2017-09-27 06:03:43 +00:00
|
|
|
|
2017-06-10 04:13:16 +00:00
|
|
|
ClangCompleteManager clang_complete(
|
2017-09-22 01:14:57 +00:00
|
|
|
config, &project, &working_files,
|
|
|
|
std::bind(&EmitDiagnostics, &working_files, std::placeholders::_1,
|
2017-09-27 06:03:43 +00:00
|
|
|
std::placeholders::_2),
|
2017-12-24 00:25:18 +00:00
|
|
|
std::bind(&IndexWithTuFromCodeCompletion, &file_consumer_shared,
|
2017-09-27 06:03:43 +00:00
|
|
|
std::placeholders::_1, std::placeholders::_2,
|
|
|
|
std::placeholders::_3, std::placeholders::_4));
|
|
|
|
|
2017-05-27 04:21:00 +00:00
|
|
|
IncludeComplete include_complete(config, &project);
|
2017-06-30 06:51:22 +00:00
|
|
|
auto global_code_complete_cache = MakeUnique<CodeCompleteCache>();
|
|
|
|
auto non_global_code_complete_cache = MakeUnique<CodeCompleteCache>();
|
|
|
|
auto signature_cache = MakeUnique<CodeCompleteCache>();
|
2017-08-17 03:39:00 +00:00
|
|
|
ImportManager import_manager;
|
2017-12-28 16:55:46 +00:00
|
|
|
ImportPipelineStatus import_pipeline_status;
|
2017-08-16 03:54:59 +00:00
|
|
|
TimestampManager timestamp_manager;
|
2017-12-05 07:57:41 +00:00
|
|
|
QueryDatabase db;
|
|
|
|
|
|
|
|
// Setup shared references.
|
|
|
|
for (MessageHandler* handler : *MessageHandler::message_handlers) {
|
|
|
|
handler->config = config;
|
|
|
|
handler->db = &db;
|
|
|
|
handler->waiter = waiter;
|
|
|
|
handler->project = &project;
|
|
|
|
handler->file_consumer_shared = &file_consumer_shared;
|
|
|
|
handler->import_manager = &import_manager;
|
2017-12-28 16:55:46 +00:00
|
|
|
handler->import_pipeline_status = &import_pipeline_status;
|
2017-12-05 07:57:41 +00:00
|
|
|
handler->timestamp_manager = ×tamp_manager;
|
2017-12-06 03:32:33 +00:00
|
|
|
handler->semantic_cache = &semantic_cache;
|
2017-12-05 07:57:41 +00:00
|
|
|
handler->working_files = &working_files;
|
|
|
|
handler->clang_complete = &clang_complete;
|
|
|
|
handler->include_complete = &include_complete;
|
|
|
|
handler->global_code_complete_cache = global_code_complete_cache.get();
|
|
|
|
handler->non_global_code_complete_cache =
|
|
|
|
non_global_code_complete_cache.get();
|
|
|
|
handler->signature_cache = signature_cache.get();
|
|
|
|
}
|
2017-03-25 19:18:25 +00:00
|
|
|
|
|
|
|
// Run query db main loop.
|
2017-04-19 00:05:14 +00:00
|
|
|
SetCurrentThreadName("querydb");
|
2017-03-15 04:59:05 +00:00
|
|
|
while (true) {
|
2017-05-21 19:51:15 +00:00
|
|
|
bool did_work = QueryDbMainLoop(
|
2017-12-28 17:18:54 +00:00
|
|
|
config, &db, waiter, &project, &file_consumer_shared, &import_manager,
|
|
|
|
×tamp_manager, &semantic_cache, &working_files, &clang_complete,
|
|
|
|
&include_complete, global_code_complete_cache.get(),
|
2017-12-24 00:25:18 +00:00
|
|
|
non_global_code_complete_cache.get(), signature_cache.get());
|
2017-08-17 18:02:47 +00:00
|
|
|
|
|
|
|
// Cleanup and free any unused memory.
|
|
|
|
FreeUnusedMemory();
|
|
|
|
|
2017-04-23 22:45:40 +00:00
|
|
|
if (!did_work) {
|
2017-12-24 00:25:18 +00:00
|
|
|
auto* queue = QueueManager::instance();
|
2018-01-01 23:09:46 +00:00
|
|
|
waiter->Wait(&queue->on_indexed, &queue->for_querydb, &queue->do_id_map);
|
2017-04-23 22:45:40 +00:00
|
|
|
}
|
2017-03-15 04:59:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 01:32:55 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// STDIN MAIN //////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2017-03-05 19:48:05 +00:00
|
|
|
// 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-09-22 01:14:57 +00:00
|
|
|
void LaunchStdinLoop(Config* config,
|
|
|
|
std::unordered_map<IpcId, Timer>* request_times) {
|
2017-12-20 17:09:05 +00:00
|
|
|
// If flushing cin requires flushing cout there could be deadlocks in some
|
|
|
|
// clients.
|
|
|
|
std::cin.tie(nullptr);
|
|
|
|
|
2017-11-17 09:30:58 +00:00
|
|
|
WorkThread::StartThread("stdin", [request_times]() {
|
2017-12-24 00:25:18 +00:00
|
|
|
auto* queue = QueueManager::instance();
|
2017-12-28 17:18:54 +00:00
|
|
|
while (true) {
|
|
|
|
std::unique_ptr<BaseIpcMessage> message =
|
|
|
|
MessageRegistry::instance()->ReadMessageFromStdin(
|
|
|
|
g_log_stdin_stdout_to_stderr);
|
|
|
|
|
|
|
|
// Message parsing can fail if we don't recognize the method.
|
|
|
|
if (!message)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Cache |method_id| so we can access it after moving |message|.
|
|
|
|
IpcId method_id = message->method_id;
|
|
|
|
|
|
|
|
(*request_times)[message->method_id] = Timer();
|
|
|
|
|
|
|
|
switch (method_id) {
|
|
|
|
case IpcId::Initialized: {
|
|
|
|
// TODO: don't send output until we get this notification
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IpcId::CancelRequest: {
|
|
|
|
// TODO: support cancellation
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IpcId::Exit:
|
|
|
|
case IpcId::Initialize:
|
|
|
|
case IpcId::TextDocumentDidOpen:
|
|
|
|
case IpcId::CqueryTextDocumentDidView:
|
|
|
|
case IpcId::TextDocumentDidChange:
|
|
|
|
case IpcId::TextDocumentDidClose:
|
|
|
|
case IpcId::TextDocumentDidSave:
|
2017-12-31 22:52:06 +00:00
|
|
|
case IpcId::TextDocumentFormatting:
|
|
|
|
case IpcId::TextDocumentRangeFormatting:
|
|
|
|
case IpcId::TextDocumentOnTypeFormatting:
|
2017-12-28 17:18:54 +00:00
|
|
|
case IpcId::TextDocumentRename:
|
|
|
|
case IpcId::TextDocumentCompletion:
|
|
|
|
case IpcId::TextDocumentSignatureHelp:
|
|
|
|
case IpcId::TextDocumentDefinition:
|
|
|
|
case IpcId::TextDocumentDocumentHighlight:
|
|
|
|
case IpcId::TextDocumentHover:
|
|
|
|
case IpcId::TextDocumentReferences:
|
|
|
|
case IpcId::TextDocumentDocumentSymbol:
|
|
|
|
case IpcId::TextDocumentDocumentLink:
|
|
|
|
case IpcId::TextDocumentCodeAction:
|
|
|
|
case IpcId::TextDocumentCodeLens:
|
|
|
|
case IpcId::WorkspaceSymbol:
|
|
|
|
case IpcId::CqueryFreshenIndex:
|
|
|
|
case IpcId::CqueryTypeHierarchyTree:
|
|
|
|
case IpcId::CqueryCallTreeInitial:
|
|
|
|
case IpcId::CqueryCallTreeExpand:
|
|
|
|
case IpcId::CqueryVars:
|
|
|
|
case IpcId::CqueryCallers:
|
|
|
|
case IpcId::CqueryBase:
|
|
|
|
case IpcId::CqueryDerived:
|
|
|
|
case IpcId::CqueryIndexFile:
|
|
|
|
case IpcId::CqueryWait: {
|
|
|
|
queue->for_querydb.Enqueue(std::move(message));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: {
|
|
|
|
LOG_S(ERROR) << "Unhandled IPC message " << IpcIdToString(method_id);
|
|
|
|
exit(1);
|
|
|
|
}
|
2017-09-22 01:14:57 +00:00
|
|
|
}
|
2017-03-26 06:47:59 +00:00
|
|
|
|
2017-12-28 17:18:54 +00:00
|
|
|
// If the message was to exit then querydb will take care of the actual
|
|
|
|
// exit. Stop reading from stdin since it might be detached.
|
|
|
|
if (method_id == IpcId::Exit)
|
2017-09-22 01:14:57 +00:00
|
|
|
break;
|
2017-03-03 08:12:11 +00:00
|
|
|
}
|
2017-09-13 03:35:27 +00:00
|
|
|
});
|
2017-03-03 08:12:11 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
void LaunchStdoutThread(std::unordered_map<IpcId, Timer>* request_times,
|
2017-12-24 00:25:18 +00:00
|
|
|
MultiQueueWaiter* waiter) {
|
2017-09-13 03:35:27 +00:00
|
|
|
WorkThread::StartThread("stdout", [=]() {
|
2017-12-24 00:25:18 +00:00
|
|
|
auto* queue = QueueManager::instance();
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-12-28 17:18:54 +00:00
|
|
|
while (true) {
|
|
|
|
std::vector<Stdout_Request> messages = queue->for_stdout.DequeueAll();
|
|
|
|
if (messages.empty()) {
|
2018-01-01 23:09:46 +00:00
|
|
|
waiter->Wait(&queue->for_stdout);
|
2017-12-28 17:18:54 +00:00
|
|
|
continue;
|
2017-12-04 08:13:35 +00:00
|
|
|
}
|
2017-04-23 22:45:40 +00:00
|
|
|
|
2017-12-28 17:18:54 +00:00
|
|
|
for (auto& message : messages) {
|
|
|
|
if (ShouldDisplayIpcTiming(message.id)) {
|
|
|
|
Timer time = (*request_times)[message.id];
|
|
|
|
time.ResetAndPrint("[e2e] Running " +
|
|
|
|
std::string(IpcIdToString(message.id)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_log_stdin_stdout_to_stderr) {
|
|
|
|
std::ostringstream sstream;
|
|
|
|
sstream << "[COUT] |";
|
|
|
|
sstream << message.content;
|
|
|
|
sstream << "|\n";
|
|
|
|
std::cerr << sstream.str();
|
|
|
|
std::cerr.flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << message.content;
|
|
|
|
std::cout.flush();
|
2017-04-16 23:57:31 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-13 03:35:27 +00:00
|
|
|
});
|
2017-04-16 23:57:31 +00:00
|
|
|
}
|
2017-04-16 19:02:29 +00:00
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
void LanguageServerMain(const std::string& bin_name,
|
|
|
|
Config* config,
|
|
|
|
MultiQueueWaiter* waiter) {
|
2017-04-21 07:46:51 +00:00
|
|
|
std::unordered_map<IpcId, Timer> request_times;
|
|
|
|
|
2017-09-13 03:35:27 +00:00
|
|
|
LaunchStdinLoop(config, &request_times);
|
2017-04-23 20:19:09 +00:00
|
|
|
|
|
|
|
// We run a dedicated thread for writing to stdout because there can be an
|
|
|
|
// unknown number of delays when output information.
|
2017-12-24 00:25:18 +00:00
|
|
|
LaunchStdoutThread(&request_times, waiter);
|
2017-09-13 03:35:27 +00:00
|
|
|
|
|
|
|
// Start querydb which takes over this thread. The querydb will launch
|
|
|
|
// indexer threads as needed.
|
2017-12-24 00:25:18 +00:00
|
|
|
RunQueryDbThread(bin_name, config, waiter);
|
2017-03-16 07:36:49 +00:00
|
|
|
}
|
2017-03-03 08:12:11 +00:00
|
|
|
|
2017-09-22 01:32:55 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// MAIN ////////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2017-03-25 01:28:09 +00:00
|
|
|
int main(int argc, char** argv) {
|
2017-12-06 18:34:26 +00:00
|
|
|
std::unordered_map<std::string, std::string> options =
|
|
|
|
ParseOptions(argc, argv);
|
|
|
|
|
|
|
|
if (!HasOption(options, "--log-all-to-stderr"))
|
|
|
|
loguru::g_stderr_verbosity = loguru::Verbosity_WARNING;
|
|
|
|
|
2017-07-28 02:14:33 +00:00
|
|
|
loguru::g_flush_interval_ms = 0;
|
2017-12-06 18:34:26 +00:00
|
|
|
loguru::init(argc, argv);
|
2017-07-28 02:14:33 +00:00
|
|
|
|
2017-04-23 22:45:40 +00:00
|
|
|
MultiQueueWaiter waiter;
|
2017-12-24 00:25:18 +00:00
|
|
|
QueueManager::CreateInstance(&waiter);
|
2017-04-16 22:48:54 +00:00
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
// bool loop = true;
|
|
|
|
// while (loop)
|
2017-04-03 01:34:15 +00:00
|
|
|
// std::this_thread::sleep_for(std::chrono::milliseconds(10));
|
2017-09-22 01:14:57 +00:00
|
|
|
// std::this_thread::sleep_for(std::chrono::seconds(10));
|
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-11-19 22:35:16 +00:00
|
|
|
bool print_help = true;
|
|
|
|
|
2017-12-06 18:34:26 +00:00
|
|
|
if (HasOption(options, "--log-file")) {
|
|
|
|
loguru::add_file(options["--log-file"].c_str(), loguru::Truncate,
|
|
|
|
loguru::Verbosity_MAX);
|
2017-12-01 17:45:44 +00:00
|
|
|
}
|
|
|
|
|
2017-11-30 04:22:10 +00:00
|
|
|
if (HasOption(options, "--log-stdin-stdout-to-stderr"))
|
|
|
|
g_log_stdin_stdout_to_stderr = true;
|
|
|
|
|
2017-12-06 18:34:26 +00:00
|
|
|
if (HasOption(options, "--clang-sanity-check")) {
|
|
|
|
print_help = false;
|
|
|
|
ClangSanityCheck();
|
|
|
|
}
|
|
|
|
|
2017-11-19 22:35:16 +00:00
|
|
|
if (HasOption(options, "--test-unit")) {
|
|
|
|
print_help = false;
|
2017-03-17 23:45:10 +00:00
|
|
|
doctest::Context context;
|
|
|
|
context.applyCommandLine(argc, argv);
|
|
|
|
int res = context.run();
|
2017-12-27 15:54:03 +00:00
|
|
|
if (res != 0 || context.shouldExit())
|
2017-03-25 19:18:25 +00:00
|
|
|
return res;
|
2017-11-19 22:35:16 +00:00
|
|
|
}
|
2017-03-17 23:45:10 +00:00
|
|
|
|
2017-11-19 22:35:16 +00:00
|
|
|
if (HasOption(options, "--test-index")) {
|
|
|
|
print_help = false;
|
2017-12-20 17:10:57 +00:00
|
|
|
RunIndexTests(options["--test-index"]);
|
2017-11-19 22:35:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-25 02:47:39 +00:00
|
|
|
if (HasOption(options, "--enable-comments")) {
|
|
|
|
// TODO Place this global variable into config
|
|
|
|
extern bool g_enable_comments;
|
|
|
|
g_enable_comments = true;
|
|
|
|
}
|
|
|
|
|
2017-11-19 22:35:16 +00:00
|
|
|
if (HasOption(options, "--language-server")) {
|
|
|
|
print_help = false;
|
2017-09-22 01:14:57 +00:00
|
|
|
// std::cerr << "Running language server" << std::endl;
|
2017-09-24 00:36:28 +00:00
|
|
|
auto config = MakeUnique<Config>();
|
|
|
|
LanguageServerMain(argv[0], config.get(), &waiter);
|
2017-04-23 19:45:58 +00:00
|
|
|
return 0;
|
2017-11-19 22:35:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-23 22:52:46 +00:00
|
|
|
if (HasOption(options, "--wait-for-input")) {
|
|
|
|
std::cerr << std::endl << "[Enter] to exit" << std::endl;
|
|
|
|
std::cin.get();
|
|
|
|
}
|
|
|
|
|
2017-11-19 22:35:16 +00:00
|
|
|
if (print_help) {
|
2017-12-23 16:01:43 +00:00
|
|
|
std::cout
|
|
|
|
<< R"help(cquery is a low-latency C/C++/Objective-C language server.
|
2017-12-06 18:34:26 +00:00
|
|
|
|
|
|
|
Command line options:
|
|
|
|
--language-server
|
|
|
|
Run as a language server. This implements the language server
|
|
|
|
spec over STDIN and STDOUT.
|
|
|
|
--test-unit Run unit tests.
|
2017-12-20 17:10:57 +00:00
|
|
|
--test-index <opt_filter_path>
|
|
|
|
Run index tests. opt_filter_path can be used to specify which
|
2017-12-28 17:55:17 +00:00
|
|
|
test to run (ie, "foo" will run all tests which contain "foo"
|
|
|
|
in the path). If not provided all tests are run.
|
2017-12-06 18:34:26 +00:00
|
|
|
--log-stdin-stdout-to-stderr
|
|
|
|
Print stdin and stdout messages to stderr. This is a aid for
|
|
|
|
developing new language clients, as it makes it easier to figure
|
|
|
|
out how the client is interacting with cquery.
|
|
|
|
--log-file <absoulte_path>
|
|
|
|
Emit diagnostic logging to the given path, which is taken
|
|
|
|
literally, ie, it will be relative to the current working
|
|
|
|
directory.
|
|
|
|
--log-all-to-stderr
|
|
|
|
Write all log messages to STDERR.
|
|
|
|
--clang-sanity-check
|
|
|
|
Run a simple index test. Verifies basic clang functionality.
|
|
|
|
Needs to be executed from the cquery root checkout directory.
|
2017-12-23 22:52:46 +00:00
|
|
|
--wait-for-input
|
|
|
|
If true, cquery will wait for an '[Enter]' before exiting.
|
|
|
|
Useful on windows.
|
2017-12-06 18:34:26 +00:00
|
|
|
--help Print this help information.
|
|
|
|
|
|
|
|
Configuration:
|
|
|
|
When opening up a directory, cquery will look for a compile_commands.json file
|
|
|
|
emitted by your preferred build system. If not present, cquery will use a
|
|
|
|
recursive directory listing instead. Command line flags can be provided by
|
|
|
|
adding a file named `.cquery` in the top-level directory. Each line in that
|
|
|
|
file is a separate argument.
|
|
|
|
|
|
|
|
There are also a number of configuration options available when initializing
|
|
|
|
the language server - your editor should have tooling to describe those
|
|
|
|
options. See |Config| in this source code for a detailed list of all
|
|
|
|
currently supported options.
|
2017-03-25 19:18:25 +00:00
|
|
|
)help";
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|
2017-11-19 22:35:16 +00:00
|
|
|
|
|
|
|
return 0;
|
2017-02-25 23:59:09 +00:00
|
|
|
}
|