2017-12-24 00:25:18 +00:00
|
|
|
#include "queue_manager.h"
|
2017-05-22 05:54:27 +00:00
|
|
|
|
2017-12-04 08:13:35 +00:00
|
|
|
#include "language_server_api.h"
|
2017-12-05 07:57:41 +00:00
|
|
|
#include "query.h"
|
2017-12-04 08:13:35 +00:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
2017-12-05 07:57:41 +00:00
|
|
|
Index_Request::Index_Request(const std::string& path,
|
|
|
|
const std::vector<std::string>& args,
|
|
|
|
bool is_interactive,
|
2017-12-29 18:00:44 +00:00
|
|
|
const std::string& contents)
|
2017-12-05 07:57:41 +00:00
|
|
|
: path(path),
|
|
|
|
args(args),
|
|
|
|
is_interactive(is_interactive),
|
|
|
|
contents(contents) {}
|
|
|
|
|
|
|
|
Index_DoIdMap::Index_DoIdMap(std::unique_ptr<IndexFile> current,
|
|
|
|
PerformanceImportFile perf,
|
|
|
|
bool is_interactive,
|
|
|
|
bool write_to_disk)
|
|
|
|
: current(std::move(current)),
|
|
|
|
perf(perf),
|
|
|
|
is_interactive(is_interactive),
|
|
|
|
write_to_disk(write_to_disk) {
|
|
|
|
assert(this->current);
|
|
|
|
}
|
|
|
|
|
|
|
|
Index_OnIdMapped::File::File(std::unique_ptr<IndexFile> file,
|
|
|
|
std::unique_ptr<IdMap> ids)
|
|
|
|
: file(std::move(file)), ids(std::move(ids)) {}
|
|
|
|
|
|
|
|
Index_OnIdMapped::Index_OnIdMapped(PerformanceImportFile perf,
|
|
|
|
bool is_interactive,
|
|
|
|
bool write_to_disk)
|
|
|
|
: perf(perf),
|
|
|
|
is_interactive(is_interactive),
|
|
|
|
write_to_disk(write_to_disk) {}
|
|
|
|
|
|
|
|
Index_OnIndexed::Index_OnIndexed(IndexUpdate& update,
|
|
|
|
PerformanceImportFile perf)
|
|
|
|
: update(update), perf(perf) {}
|
|
|
|
|
2017-12-24 00:25:18 +00:00
|
|
|
QueueManager* QueueManager::instance_ = nullptr;
|
|
|
|
|
|
|
|
// static
|
|
|
|
QueueManager* QueueManager::instance() {
|
|
|
|
return instance_;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2018-01-02 07:40:36 +00:00
|
|
|
void QueueManager::CreateInstance(MultiQueueWaiter* querydb_waiter,
|
|
|
|
MultiQueueWaiter* indexer_waiter,
|
|
|
|
MultiQueueWaiter* stdout_waiter) {
|
|
|
|
instance_ = new QueueManager(querydb_waiter, indexer_waiter, stdout_waiter);
|
2017-12-24 00:25:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void QueueManager::WriteStdout(IpcId id, lsBaseOutMessage& response) {
|
|
|
|
std::ostringstream sstream;
|
|
|
|
response.Write(sstream);
|
|
|
|
|
|
|
|
Stdout_Request out;
|
|
|
|
out.content = sstream.str();
|
|
|
|
out.id = id;
|
|
|
|
instance()->for_stdout.Enqueue(std::move(out));
|
|
|
|
}
|
|
|
|
|
2018-01-02 07:40:36 +00:00
|
|
|
QueueManager::QueueManager(MultiQueueWaiter* querydb_waiter,
|
|
|
|
MultiQueueWaiter* indexer_waiter,
|
|
|
|
MultiQueueWaiter* stdout_waiter)
|
|
|
|
: for_stdout(stdout_waiter),
|
|
|
|
for_querydb(querydb_waiter),
|
|
|
|
do_id_map(querydb_waiter),
|
|
|
|
index_request(indexer_waiter),
|
|
|
|
load_previous_index(indexer_waiter),
|
|
|
|
on_id_mapped(indexer_waiter),
|
|
|
|
// TODO on_indexed is shared by "querydb" and "indexer"
|
|
|
|
on_indexed(querydb_waiter, indexer_waiter) {}
|
2017-12-05 07:57:41 +00:00
|
|
|
|
|
|
|
bool QueueManager::HasWork() {
|
|
|
|
return !index_request.IsEmpty() || !do_id_map.IsEmpty() ||
|
|
|
|
!load_previous_index.IsEmpty() || !on_id_mapped.IsEmpty() ||
|
|
|
|
!on_indexed.IsEmpty();
|
|
|
|
}
|