ccls/src/messages/cquery_freshen_index.cc

68 lines
2.4 KiB
C++
Raw Normal View History

#include "cache_manager.h"
#include "match.h"
2017-12-06 03:32:33 +00:00
#include "message_handler.h"
#include "platform.h"
2017-12-29 16:29:47 +00:00
#include "project.h"
#include "queue_manager.h"
#include "timestamp_manager.h"
#include "working_files.h"
2017-12-06 03:32:33 +00:00
#include <loguru.hpp>
namespace {
struct Ipc_CqueryFreshenIndex : public RequestMessage<Ipc_CqueryFreshenIndex> {
2017-12-06 04:39:44 +00:00
const static IpcId kIpcId = IpcId::CqueryFreshenIndex;
std::vector<std::string> whitelist;
std::vector<std::string> blacklist;
2017-12-06 04:39:44 +00:00
};
MAKE_REFLECT_STRUCT(Ipc_CqueryFreshenIndex, id, whitelist, blacklist);
2017-12-06 04:39:44 +00:00
REGISTER_IPC_MESSAGE(Ipc_CqueryFreshenIndex);
struct CqueryFreshenIndexHandler : BaseMessageHandler<Ipc_CqueryFreshenIndex> {
void Run(Ipc_CqueryFreshenIndex* request) override {
2017-12-06 03:32:33 +00:00
LOG_S(INFO) << "Freshening " << project->entries.size() << " files";
// TODO: think about this flow and test it more.
GroupMatch matcher(request->whitelist, request->blacklist);
2017-12-06 03:32:33 +00:00
// Unmark all files whose timestamp has changed.
std::unique_ptr<ICacheManager> cache_manager = ICacheManager::Make(config);
2017-12-06 03:32:33 +00:00
for (const auto& file : db->files) {
if (!file.def || !matcher.IsMatch(file.def->path))
2017-12-06 03:32:33 +00:00
continue;
optional<int64_t> modification_timestamp =
GetLastModificationTime(file.def->path);
if (!modification_timestamp)
continue;
optional<int64_t> cached_modification =
timestamp_manager->GetLastCachedModificationTime(cache_manager.get(),
2017-12-06 03:32:33 +00:00
file.def->path);
if (modification_timestamp != cached_modification)
file_consumer_shared->Reset(file.def->path);
}
2017-12-24 00:25:18 +00:00
auto* queue = QueueManager::instance();
2017-12-06 03:32:33 +00:00
// Send index requests for every file.
project->ForAllFilteredFiles(
config, [&](int i, const Project::Entry& entry) {
if (!matcher.IsMatch(entry.filename))
return;
optional<std::string> content = ReadContent(entry.filename);
if (!content) {
LOG_S(ERROR) << "When freshening index, cannot read file "
<< entry.filename;
return;
}
bool is_interactive =
working_files->GetFileByFilename(entry.filename) != nullptr;
queue->index_request.Enqueue(Index_Request(entry.filename, entry.args,
is_interactive, *content));
});
2017-12-06 03:32:33 +00:00
}
};
REGISTER_MESSAGE_HANDLER(CqueryFreshenIndexHandler);
} // namespace